forked from emacs-lsp/dap-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dap-cpptools.el
99 lines (80 loc) · 3.73 KB
/
dap-cpptools.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
;;; dap-cpptools.el --- Debug Adapter Protocol mode for cpptools -*- lexical-binding: t; -*-
;; Copyright (C) 2021 Ivan Yonchovski
;; Author: Ivan Yonchovski <[email protected]>
;; Keywords: language, tools
;; 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/microsoft/vscode-cpptools
;;; Code:
(require 'dap-mode)
(require 'dap-utils)
(defcustom dap-cpptools-debug-path (expand-file-name "vscode/cpptools" dap-utils-extension-path)
"The path to cpptools vscode extension."
:group 'dap-cpptools
:type 'string)
(defcustom dap-cpptools-extension-version "0.29.0"
"The version of the cpptools vscode extension."
:group 'dap-cpptools
:type 'string)
(defcustom dap-cpptools-download-url
(format "https://github.com/microsoft/vscode-cpptools/releases/download/%s/cpptools-%s.vsix"
dap-cpptools-extension-version
(alist-get system-type
'((windows-nt . "win32")
(darwin . "osx")
(gnu/linux . "linux"))))
"The download url."
:group 'dap-cpptools
:type 'string)
(defcustom dap-cpptools-debug-program
`(,(concat dap-cpptools-debug-path
(if (eq system-type 'windows-nt)
"/extension/debugAdapters/bin/OpenDebugAD7.exe"
"/extension/debugAdapters/OpenDebugAD7")))
"The path to the cpptools debug adapter."
:group 'dap-cpptools
:type '(repeat string))
(defun dap-cpptools-setup (&optional forced)
"Downloading ms-vscode.cpptools to path specified.
With prefix, FORCED to redownload the extension."
(interactive "P")
(unless (and (not forced) (file-exists-p dap-cpptools-debug-path))
(dap-utils--get-extension dap-cpptools-download-url dap-cpptools-debug-path)
(let* ((adapter-binary (cl-first dap-cpptools-debug-program))
(mono (f-join (f-parent adapter-binary) "mono.linux-x86_64"))
(mono-mac (f-join (f-parent adapter-binary) "mono.osx"))
(lldb-mi (f-join (f-parent adapter-binary) "lldb-mi/bin/lldb-mi")))
(set-file-modes adapter-binary #o0700)
(when (f-exists? mono)
(set-file-modes mono #o0700))
(when (f-exists? mono-mac)
(set-file-modes mono #o0700))
(when (f-exists? lldb-mi)
(set-file-modes lldb-mi #o0700)))
(message "%s: Downloading done!" "dap-cpptools")))
(defun dap-cpptools--populate-args (conf)
"Populate auto arguments."
(-> conf
(dap--put-if-absent :dap-server-path dap-cpptools-debug-program)
(dap--put-if-absent :request "launch")
(dap--put-if-absent :type "cppdbg")
(dap--put-if-absent :environment [])))
(dap-register-debug-provider "cppdbg" #'dap-cpptools--populate-args)
(dap-register-debug-template "cpptools::Run Configuration"
(list :type "cppdbg"
:request "launch"
:name "cpptools::Run Configuration"
:MIMode "gdb"
:program "${workspaceFolder}/ replace with your binary"
:cwd "${workspaceFolder}"))
(provide 'dap-cpptools)
;;; dap-cpptools.el ends here