-
Notifications
You must be signed in to change notification settings - Fork 183
/
dap-gdb-lldb.el
139 lines (111 loc) · 5.7 KB
/
dap-gdb-lldb.el
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
;;; dap-gdb-lldb.el --- Debug Adapter Protocol mode for LLDB/GDB -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Ivan Yonchovski
;; Author: Ivan Yonchovski [email protected]
;; Keywords: languages
;; This program 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.
;; This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Adapter for https://github.com/WebFreak001/code-debug
;;; Code:
(require 'dap-mode)
(require 'dap-utils)
(defcustom dap-gdb-lldb-extension-version "0.26.1"
"The version of the gdb-lldb vscode extension."
:group 'dap-gdb-lldb
:type 'string)
(defcustom dap-gdb-lldb-download-url
(format "https://github.com/WebFreak001/code-debug/releases/download/v%s/debug-%s.vsix"
dap-gdb-lldb-extension-version dap-gdb-lldb-extension-version)
"The download url."
:group 'dap-gdb-lldb
:type 'string)
(defcustom dap-gdb-lldb-path (expand-file-name "vscode/webfreak.debug" dap-utils-extension-path)
"The path to the place at which the webfreak.debug extension.
Link: https://marketplace.visualstudio.com/items?itemName=webfreak.debug ."
:group 'dap-gdb-lldb
:type 'string)
(defcustom dap-gdb-lldb-debug-program `("node"
,(f-join dap-gdb-lldb-path "extension/out/src/gdb.js"))
"The path to the LLDB debugger."
:group 'dap-gdb-lldb
:type '(repeat string))
(defun dap-gdb-lldb-setup (&optional forced)
"Downloading webfreak.debug to path specified.
With prefix, FORCED to redownload the extension."
(interactive "P")
(unless (and (not forced) (file-exists-p dap-gdb-lldb-path))
(dap-utils--get-extension dap-gdb-lldb-download-url dap-gdb-lldb-path)
(message "%s: Downloading done!" "dap-gdb-lldb")))
(defun dap-gdb-lldb--populate-gdb (conf)
"Populate CONF with the required arguments."
(-> conf
(dap--put-if-absent :dap-server-path dap-gdb-lldb-debug-program)
(dap--put-if-absent :type "gdb")
(dap--put-if-absent :cwd default-directory)
(dap--put-if-absent :target (expand-file-name (read-file-name "Select file to debug.")))
(dap--put-if-absent :name "GDB Debug")
;; This may become unnecessary once https://github.com/WebFreak001/code-debug/issues/344 is resolved.
(dap--put-if-absent :valuesFormatting "prettyPrinters")))
(dap-register-debug-provider "gdb" 'dap-gdb-lldb--populate-gdb)
(dap-register-debug-template "GDB Run Configuration"
(list :type "gdb"
:request "launch"
:name "GDB::Run"
:target nil
:cwd nil))
(defun dap-gdb-lldb--populate-gdbserver (conf)
"Populate CONF with the required arguments."
(-> conf
(dap--put-if-absent :dap-server-path dap-gdb-lldb-debug-program)
(dap--put-if-absent :type "gdbserver")
(dap--put-if-absent :name "GDB Server")
(dap--put-if-absent :request "attach")
(dap--put-if-absent :gdbpath "gdb")
(dap--put-if-absent :cwd default-directory)
(dap--put-if-absent :target (read-string "target?(host:port) "))
(dap--put-if-absent :remote :json-true)
;; This may become unnecessary once https://github.com/WebFreak001/code-debug/issues/344 is resolved.
(dap--put-if-absent :valuesFormatting "prettyPrinters")))
(dap-register-debug-provider "gdbserver" 'dap-gdb-lldb--populate-gdbserver)
(dap-register-debug-template "GDBServer Connect Configuration"
(list :type "gdbserver"
:name "GDBServer::Connect"
:target nil ;;host:port
:cwd nil
:executable nil ;;usually not needed as symbols can be donwloaded from gdbserver
:autorun nil
:debugger_args nil
:env nil
:showDevDebugOutput :json-false
:printCalls :json-false))
(defcustom dap-gdb-lldb-path-lldb `("node" ,(expand-file-name (f-join dap-gdb-lldb-path "extension/out/src/lldb.js")))
"The path to the LLDB debugger."
:group 'dap-gdb-lldb
:type '(repeat string))
(defun dap-gdb-lldb--populate-lldb (conf)
"Populate CONF with the required arguments."
(-> conf
(dap--put-if-absent :dap-server-path dap-gdb-lldb-path-lldb)
(dap--put-if-absent :type "lldb")
(dap--put-if-absent :cwd default-directory)
(dap--put-if-absent :target (expand-file-name (read-file-name "Select file to debug.")))
(dap--put-if-absent :name "LLDB Debug")
;; This may become unnecessary once https://github.com/WebFreak001/code-debug/issues/344 is resolved.
(dap--put-if-absent :valuesFormatting "prettyPrinters")))
(dap-register-debug-provider "lldb-mi" 'dap-gdb-lldb--populate-lldb)
(dap-register-debug-template "LLDB Run Configuration"
(list :type "lldb-mi"
:request "launch"
:name "LLDB::Run"
:target nil
:cwd nil))
(provide 'dap-gdb-lldb)
;;; dap-gdb-lldb.el ends here