|
94 | 94 | :group 'lsp-ada
|
95 | 95 | :package-version '(lsp-mode "8.0.1"))
|
96 | 96 |
|
| 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 | + |
97 | 135 | (defun lsp-ada--environment ()
|
98 | 136 | "Add environmental variables if needed."
|
99 | 137 | (let ((project-root (lsp-workspace-root)))
|
|
114 | 152 | var-strings)))
|
115 | 153 | (lsp--error "Found alire.toml but the executable %s could not be found" alr-executable))))))
|
116 | 154 |
|
| 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 | + |
117 | 164 | (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))) |
119 | 167 | :major-modes '(ada-mode ada-ts-mode)
|
120 | 168 | :priority -1
|
121 | 169 | :initialized-fn (lambda (workspace)
|
122 | 170 | (with-lsp-workspace workspace
|
123 | 171 | (lsp--set-configuration
|
124 | 172 | (lsp-configuration-section "ada"))))
|
| 173 | + :download-server-fn (lambda (_client callback error-callback _update?) |
| 174 | + (lsp-package-ensure 'ada-ls callback error-callback)) |
125 | 175 | :semantic-tokens-faces-overrides `( :types ,lsp-ada-semantic-token-face-overrides
|
126 | 176 | :modifiers ,lsp-ada-semantic-token-modifier-face-overrides)
|
127 | 177 | :server-id 'ada-ls
|
|
0 commit comments