-
Notifications
You must be signed in to change notification settings - Fork 182
/
dap-utils.el
240 lines (212 loc) · 10.2 KB
/
dap-utils.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
;;; dap-utils.el --- DAP UTILS -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Kien Nguyen
;; Author: Kien Nguyen <[email protected]>
;; Keywords: languages, utils
;; 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:
;; Dap-mode utils
;;; Code:
(require 'dap-mode)
(require 'xml)
(require 'dom)
(require 'json)
(defconst dap-utils--ext-unzip-script "bash -c 'mkdir -p %2$s && unzip -qq %1$s -d %2$s'"
"Unzip script to unzip vscode extension package file.")
(defconst dap-utils--ext-pwsh-script "powershell -noprofile -noninteractive \
-nologo -ex bypass Expand-Archive -path '%s' -dest '%s'"
"Powershell script to unzip vscode extension package file.")
(defcustom dap-utils-unzip-script (cond ((executable-find "powershell") dap-utils--ext-pwsh-script)
((executable-find "unzip") dap-utils--ext-unzip-script)
(t nil))
"The script to unzip vscode extension package file."
:group 'dap-utils
:type 'string)
(defun dap-utils--get-extension (url dest)
"Get extension from URL and extract to DEST."
(let ((temp-file (make-temp-file "ext" nil ".zip")))
(url-copy-file url temp-file 'overwrite)
(if (file-exists-p dest) (delete-directory dest 'recursive))
(shell-command (format dap-utils-unzip-script temp-file dest))))
(defcustom dap-utils-vscode-ext-url
"https://marketplace.visualstudio.com/_apis/public/gallery/publishers/%s/vsextensions/%s/%s/vspackage"
"Vscode extension template url."
:group 'dap-utils
:type 'string)
(defcustom dap-utils-openvsx-extension-api-url
"https://open-vsx.org/api/%s/%s/%s"
"Open VSX extension api url."
:group 'dap-utils
:type 'string)
(defcustom dap-utils-github-extension-url
"https://github.com/%s/%s/archive/v%s.zip"
"Github extension template url."
:group 'dap-utils
:type 'string)
(defcustom dap-utils-extension-path (expand-file-name ".extension" user-emacs-directory)
"Directory to store vscode extension."
:group 'dap-utils
:type 'directory)
(defun dap-utils-get-vscode-extension (publisher name &optional version path)
"Get vscode extension from PUBLISHER named NAME.
VERSION is the version of the extenssion, otherwise the latest.
PATH is the download destination dir."
(let* ((version (or version "latest"))
(url (format dap-utils-vscode-ext-url publisher name version))
(dest (or path
(f-join dap-utils-extension-path "vscode" (concat publisher "." name)))))
(dap-utils--get-extension url dest)))
(defun dap-utils-get-openvsx-extension (publisher name &optional version path)
"Get openvsx extension from PUBLISHER named NAME.
VERSION is the version of the extenssion, otherwise the latest.
PATH is the download destination dir."
(let* ((version (or version "latest"))
(api-url (format dap-utils-openvsx-extension-api-url publisher name version))
(url (alist-get 'download
(alist-get 'files
(with-temp-buffer
(url-insert-file-contents api-url)
(json-read)))))
(dest (or path
(f-join dap-utils-extension-path "openvsx" (concat publisher "." name)))))
(dap-utils--get-extension url dest)))
(defun dap-utils-get-github-extension (owner repo version &optional path)
"Get extension from github named OWNER/REPO with VERSION.
PATH is the download destination path."
(let* ((url (format dap-utils-github-extension-url owner repo version))
(dest (or path
(f-join dap-utils-extension-path "github" (concat owner "." repo)))))
(dap-utils--get-extension url dest)))
(defun dap-utils-vscode-get-installed-extension-version (path)
"Check the version of the vscode extension installed in PATH.
Returns nil if the extension is not installed."
(require 'xml)
(require 'dom)
(let* ((extension-manifest (f-join path "extension.vsixmanifest")))
(when (f-exists? extension-manifest)
(let ((pkg-identity (dom-by-tag (xml-parse-file extension-manifest) 'Identity)))
(dom-attr pkg-identity 'Version)))))
(defmacro dap-utils-vscode-setup-function (dapfile publisher name &optional path version callback)
"Helper to create DAPFILE setup function for vscode debug extension.
PUBLISHER is the vscode extension publisher.
NAME is the vscode extension name.
PATH is the download destination dir.
if VERSION is nil, use latest version from vscode marketplace.
If CALLBACK is non nil, call it after download the extension."
(let* ((extension-name (concat publisher "." name))
(dest (or path
(f-join dap-utils-extension-path "vscode" extension-name)))
(help-string (format "Downloading %s to path specified.
With prefix, FORCED to redownload the extension." extension-name)))
`(progn
(defun ,(intern (format "%s-setup" dapfile)) (&optional forced)
,help-string
(interactive "P")
(unless (and (not forced) (file-exists-p ,dest))
(dap-utils-get-vscode-extension ,publisher ,name ,version ,dest)
(message "%s: Downloading done!" ,dapfile)))
(when ,callback
(funcall ,callback))
(unless (file-exists-p ,dest)
(message "%s: %s debug extension are not set. You can download it with M-x %s-setup"
,dapfile ,extension-name ,dapfile)))))
(defmacro dap-utils-openvsx-setup-function (dapfile publisher name &optional path version callback)
"Helper to create DAPFILE setup function for openvsx debug extension.
PUBLISHER is the openvsx extension publisher.
NAME is the openvsx extension name.
PATH is the download destination dir.
if VERSION is nil, use latest version from openvsx registry.
If CALLBACK is non nil, call it after download the extension."
(let* ((extension-name (concat publisher "." name))
(dest (or path
(f-join dap-utils-extension-path "openvsx" extension-name)))
(help-string (format "Downloading %s to path specified.
With prefix, FORCED to redownload the extension." extension-name)))
`(progn
(defun ,(intern (format "%s-setup" dapfile)) (&optional forced)
,help-string
(interactive "P")
(unless (and (not forced) (file-exists-p ,dest))
(dap-utils-get-openvsx-extension ,publisher ,name ,version ,dest)
(message "%s: Downloading done!" ,dapfile)))
(when ,callback
(funcall ,callback))
(unless (file-exists-p ,dest)
(message "%s: %s debug extension are not set. You can download it with M-x %s-setup"
,dapfile ,extension-name ,dapfile)))))
(defmacro dap-utils-github-extension-setup-function (dapfile owner repo version &optional path callback)
"Helper to create DAPFILE setup function for debug extension from github.
OWNER is the github owner.
REPO is the github repository.
VERSION is the github extension version.
PATH is the download destination dir.
CALLBACK is the fn to be called after the download."
(let* ((extension-name (concat owner "." repo))
(dest (or path
(f-join dap-utils-extension-path "github" extension-name)))
(help-string (format "Downloading %s to path specified.
With prefix, FORCED to redownload the extension." extension-name)))
`(progn
(defun ,(intern (format "%s-setup" dapfile)) (&optional forced)
,help-string
(interactive "P")
(unless (and (not forced) (file-exists-p ,dest))
(dap-utils-get-github-extension ,owner ,repo ,version ,dest)
(rename-file (concat ,dest "/" (concat ,repo "-" ,version))
(concat ,dest "/extension"))
(message "%s: Downloading done!" ,dapfile)
(when ,callback
(funcall ,callback))))
(unless (file-exists-p ,dest)
(message "%s: %s debug extension are not set. You can download it with M-x %s-setup"
,dapfile ,extension-name ,dapfile)))))
(defun dap-utils-sanitize-json ()
"Remove all C-style comments and trailing commas in the current buffer.
Comments in strings are ignored. The buffer is modified in place.
Replacement starts at point, and strings before it are ignored,
so you may want to move point to `point-min' with `goto-char'
first. This function moves `point'. Both // and /**/ comments are
supported."
(let ((saved-point (point)))
;; First pass: remove comments
(while (re-search-forward
(rx
(or (group
(or (: "//" (* nonl) eol)
(: "/*" (* (or (not (any ?*))
(: (+ ?*) (not (any ?/))))) (+ ?*) ?/)))
(: "\"" (* (or (not (any ?\\ ?\")) (: ?\\ nonl))) "\"")))
nil t)
;; we matched a comment
(when (match-beginning 1)
(replace-match (or (match-string 2) ""))))
(goto-char saved-point)
;; Second pass: remove trailing commas
(while (re-search-forward
(rx
(or (group (: "," (group (* (any blank space ?\v ?\u2028 ?\u2029))
(any ?\} ?\]))))
(: "\"" (* (or (not (any ?\\ ?\")) (: ?\\ nonl))) "\"")))
nil t)
;; we matched a trailing commas
(when (match-beginning 1)
(replace-match (or (match-string 2) ""))))))
(defun dap-utils-get-os-key ()
"Get an applicable OS name used for keys in launch/tasks configurations."
(pcase system-type
('darwin "osx")
('gnu/linux "linux")
(_ "windows")))
(defun dap-utils-string-to-keyword (str)
"Convert a STR to a keyword symbol."
(intern-soft (format ":%s" str)))
(provide 'dap-utils)
;;; dap-utils.el ends here