blob: 6e60f69e5ee5aca65579093b9d2d4ab3987c7db6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
;;;; DevTools Protocol messages.
;;; Copyright (c) 2021 Teddy Wing
;;;
;;; This file is part of Extreload.
;;;
;;; Extreload is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; Extreload is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Extreload. If not, see <https://www.gnu.org/licenses/>.
(in-package :extreload)
(defun target-get-targets-msg (call-id)
"DevTools Protocol `Target.getTargets` message."
(jsown:to-json
`(:obj ("id" . ,call-id)
("method" . "Target.getTargets"))))
(defun target-attach-to-target-msg (call-id target-id)
"DevTools Protocol `Target.attachToTarget` message."
(jsown:to-json
`(:obj ("id" . ,call-id)
("method" . "Target.attachToTarget")
("params" . (:obj ("targetId" . ,target-id)
("flatten" . t))))))
(defun target-attached-to-target-msg-p (message)
"Returns true if `message` is `Target.attachedToTarget`."
(equal
(json-obj-get message "method")
"Target.attachedToTarget"))
(defun runtime-evaluate-msg (call-id session-id expression)
"DevTools Protocol `Runtime.evaluate` message."
(jsown:to-json
`(:obj ("id" . ,call-id)
("sessionId" . ,session-id)
("method" . "Runtime.evaluate")
("params" . (:obj ("expression" . ,expression))))))
(defun runtime-evaluate-msg-p (message)
"Returns true if `message` is a response to `Runtime.evaluate`."
(jsown:keyp (json-obj-get message "result") "sessionId"))
(defun runtime-evaluate-exception-p (message)
"Returns true if `message` describes a runtime exception"
(jsown:keyp (json-obj-get message "result") "exceptionDetails"))
(defun parse-get-targets-response (response)
"Parses a list of target info objects from the response to `Target.getTargets`."
(let* ((result (json-obj-get response "result"))
(targetInfos (json-obj-get result "targetInfos")))
targetInfos))
|