-
Notifications
You must be signed in to change notification settings - Fork 182
/
dap-magik.el
109 lines (85 loc) · 3.65 KB
/
dap-magik.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
;;; dap-magik.el --- Debug Adapter Protocol mode for Magik -*- lexical-binding: t; -*-
;; Copyright (C) 2022 Steven Looman
;; Author: Steven Looman <[email protected]>
;; Keywords: dap, magik
;; 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:
;; LSP client for the Magik programming language
;; https://github.com/StevenLooman/magik-tools
;;; Code:
(require 'dap-mode)
(require 'dap-utils)
(defgroup dap-magik nil
"DAP support for Magik."
:link '(url-link "https://github.com/StevenLooman/magik-tools")
:group 'dap-mode
:tag "Dap Magik"
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-version "0.7.1"
"Version of DAP server."
:type 'string
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-download-url (format "https://github.com/StevenLooman/magik-tools/releases/download/%s/magik-debug-adapter-%s.jar" dap-magik-version dap-magik-version)
"URL of DAP server to download."
:type 'string
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-path (f-join dap-utils-extension-path (format "magik/magik-debug-adapter-%s.jar" dap-magik-version))
"Path of the debug adapter."
:type 'string
:group 'dap-magik
:package-version '(dap . "0.9.1"))
(defcustom dap-magik-java-path (cond ((eq system-type 'windows-nt) "$JAVA_HOME/bin/java")
(t "java"))
"Path of the java executable."
:type 'string
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-attach-host "127.0.0.1"
"Host to connect to when attaching to a session."
:type 'string
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-attach-port 32000
"Port to connect to when attaching to a session."
:type 'integer
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defcustom dap-magik-path-mapping []
"Path mapping to apply."
:type 'vector
:group 'dap-magik
:package-version '(dap-mode . "0.9.1"))
(defun dap-magik-download-da ()
"Download the Magik Debug Adapter."
(unless (file-exists-p (f-join dap-utils-extension-path "magik"))
(make-directory (f-join dap-utils-extension-path "magik") t))
(unless (file-exists-p dap-magik-path)
(url-copy-file dap-magik-download-url dap-magik-path 'overwrite)
(message "%s: Downloading done!" "dap-magik")))
(dap-magik-download-da)
(defun dap-magik--populate-attach-args (conf)
"Populate CONF with the required arguments."
(-> conf
(dap--put-if-absent :dap-server-path (list dap-magik-java-path "-jar" dap-magik-path "--debug"))
(dap--put-if-absent :type "magik")
(dap--put-if-absent :request "attach")
(dap--put-if-absent :connect (list :host dap-magik-attach-host
:port dap-magik-attach-port))))
(dap-register-debug-template "Magik Attach Configuration"
(list :type "magik"
:request "attach"
:name "Magik::Attach"))
(dap-register-debug-provider "magik" #'dap-magik--populate-attach-args)
(provide 'dap-magik)
;;; dap-magik.el ends here