Skip to content

Commit 28b21c8

Browse files
authored
Add support for installing Ada Language Server. (#4336)
1 parent a5f5ca9 commit 28b21c8

File tree

3 files changed

+53
-1
lines changed

3 files changed

+53
-1
lines changed

CHANGELOG.org

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
* Allow customizing Ada semantic token and token modifier faces.
109109
* Add Hylang support.
110110
* Add support for clojure-ts derived modes.
111+
* Add support for installing Ada Language Server.
111112
** Release 8.0.0
112113
* Add ~lsp-clients-angular-node-get-prefix-command~ to get the Angular server from another location which is still has ~/lib/node_modules~ in it.
113114
* Set ~lsp-clients-angular-language-server-command~ after the first connection to speed up subsequent connections.

clients/lsp-ada.el

+51-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,44 @@
9494
:group 'lsp-ada
9595
:package-version '(lsp-mode "8.0.1"))
9696

97+
(defvar lsp-ada--als-download-url-cache nil)
98+
99+
(defvar lsp-ada--als-downloaded-executable
100+
(f-join lsp-server-install-dir
101+
"ada-ls"
102+
(symbol-name (lsp-resolve-value lsp--system-arch))
103+
(pcase system-type
104+
('gnu/linux "linux")
105+
('darwin "darwin")
106+
('windows-nt "win32")
107+
(_ "linux"))
108+
(concat "ada_language_server"
109+
(pcase system-type
110+
('windows-nt ".exe")
111+
(_ "")))))
112+
113+
(defun lsp-ada--als-latest-release-url ()
114+
"URL for the latest release of the Ada Language Server."
115+
(setq lsp-ada--als-download-url-cache
116+
(lsp--find-latest-gh-release-url
117+
"https://api.github.com/repos/AdaCore/ada_language_server/releases/latest"
118+
(format "%s.zip"
119+
(pcase (list system-type (lsp-resolve-value lsp--system-arch))
120+
('(gnu/linux x64) "Linux_amd64")
121+
('(gnu/linux arm64) "Linux_aarch64")
122+
('(darwin x64) "macOS_amd64")
123+
('(darwin arm64) "macOS_aarch64")
124+
('(windows-nt x64) "Windows_amd64")
125+
(`(,_ x64) "Linux_amd64"))))))
126+
127+
(defun lsp-ada--als-store-path ()
128+
"Store Path for the downloaded Ada Language Server."
129+
(f-join lsp-server-install-dir
130+
"ada-ls"
131+
(file-name-base (or lsp-ada--als-download-url-cache
132+
(lsp-ada--als-latest-release-url)
133+
"ada-ls"))))
134+
97135
(defun lsp-ada--environment ()
98136
"Add environmental variables if needed."
99137
(let ((project-root (lsp-workspace-root)))
@@ -114,14 +152,26 @@
114152
var-strings)))
115153
(lsp--error "Found alire.toml but the executable %s could not be found" alr-executable))))))
116154

155+
(lsp-dependency
156+
'ada-ls
157+
'(:download :url lsp-ada--als-latest-release-url
158+
:store-path lsp-ada--als-store-path
159+
:decompress :zip
160+
:binary-path lsp-ada--als-downloaded-executable
161+
:set-executable? t)
162+
'(:system lsp-ada-als-executable))
163+
117164
(lsp-register-client
118-
(make-lsp-client :new-connection (lsp-stdio-connection lsp-ada-als-executable)
165+
(make-lsp-client :new-connection (lsp-stdio-connection
166+
(lambda () (lsp-package-path 'ada-ls)))
119167
:major-modes '(ada-mode ada-ts-mode)
120168
:priority -1
121169
:initialized-fn (lambda (workspace)
122170
(with-lsp-workspace workspace
123171
(lsp--set-configuration
124172
(lsp-configuration-section "ada"))))
173+
:download-server-fn (lambda (_client callback error-callback _update?)
174+
(lsp-package-ensure 'ada-ls callback error-callback))
125175
:semantic-tokens-faces-overrides `( :types ,lsp-ada-semantic-token-face-overrides
126176
:modifiers ,lsp-ada-semantic-token-modifier-face-overrides)
127177
:server-id 'ada-ls

docs/lsp-clients.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"server-name": "ada_language_server",
1414
"server-url": "https://github.com/AdaCore/ada_language_server",
1515
"installation-url": "https://github.com/AdaCore/ada_language_server#install",
16+
"lsp-install-server": "ada-ls",
1617
"debugger": "Yes (gdb)"
1718
},
1819
{

0 commit comments

Comments
 (0)