@@ -81,6 +81,10 @@ name of the container/image for the described language server.")
81
81
" Server ID of a registered LSP server. You can find the list of
82
82
registered servers evaluating: `(ht-keys lsp-clients)'." )
83
83
84
+ (defconst lsp-docker--srv-cfg-launch-parameters-key 'launch_parameters
85
+ " Command parameters (docker or podman) to launch the language server with.
86
+ Pay attention that these parameters have to be supported by the selected subtype." )
87
+
84
88
(defconst lsp-docker--srv-cfg-launch-command-key 'launch_command
85
89
" Command to launch the language server in stdio mode. This key is
86
90
not used when the `lsp-docker--srv-cfg-subtype-key' is set to
@@ -119,23 +123,26 @@ Argument PATH the path to translate."
119
123
(defvar lsp-docker-command " docker"
120
124
" The docker command to use." )
121
125
122
- (defun lsp-docker-launch-new-container (docker-container-name path-mappings docker-image-id server-command )
126
+ (defun lsp-docker-launch-new-container (docker-container-name path-mappings launch-parameters docker-image-id server-command )
123
127
" Return the docker command to be executed on host.
124
128
Argument DOCKER-CONTAINER-NAME name to use for container.
125
129
Argument PATH-MAPPINGS dotted pair of (host-path . container-path).
126
130
Argument DOCKER-IMAGE-ID the docker container to run language servers with.
131
+ Argument LAUNCH-PARAMETERS parameters (for docker or podman) to run language servers with.
127
132
Argument SERVER-COMMAND the language server command to run inside the container."
128
- (split-string
129
- (--doto (format " %s run --name %s --rm -i %s %s %s "
130
- lsp-docker-command
131
- docker-container-name
132
- (->> path-mappings
133
- (-map (-lambda ((path . docker-path))
134
- (format " -v %s :%s " path docker-path)))
135
- (s-join " " ))
136
- docker-image-id
137
- server-command))
138
- " " ))
133
+ (-remove #'s-blank?
134
+ (split-string
135
+ (format " %s run --name %s --rm -i %s %s %s %s "
136
+ lsp-docker-command
137
+ docker-container-name
138
+ (->> path-mappings
139
+ (-map (-lambda ((path . docker-path))
140
+ (format " -v %s :%s " path docker-path)))
141
+ (s-join " " ))
142
+ (s-join " " launch-parameters)
143
+ docker-image-id
144
+ server-command)
145
+ " " )))
139
146
140
147
(defun lsp-docker-exec-in-container (docker-container-name server-command )
141
148
" Return command to exec into running container.
@@ -157,6 +164,7 @@ Argument SERVER-COMMAND the command to execute inside the running container."
157
164
(cl-defun lsp-docker-register-client (&key server-id
158
165
docker-server-id
159
166
path-mappings
167
+ launch-parameters
160
168
docker-image-id
161
169
docker-container-name
162
170
priority
@@ -177,6 +185,7 @@ Argument SERVER-COMMAND the command to execute inside the running container."
177
185
(funcall (or launch-server-cmd-fn #'lsp-docker-launch-new-container )
178
186
docker-container-name-full
179
187
path-mappings
188
+ launch-parameters
180
189
docker-image-id
181
190
server-command)))
182
191
:test? (lambda (&rest _ )
@@ -279,6 +288,7 @@ the docker container to run the language server."
279
288
default-docker-container-name)
280
289
:server-command server-command
281
290
:path-mappings path-mappings
291
+ :launch-parameters nil
282
292
:launch-server-cmd-fn #'lsp-docker-launch-new-container ))
283
293
client-configs)))
284
294
@@ -371,6 +381,13 @@ be bigger than default servers in order to override them)")
371
381
(if (equal lsp-server-subtype " image" )
372
382
(gethash 'name server-config))))
373
383
384
+ (defun lsp-docker--get-server-launch-parameters (server-config )
385
+ " Get the server launch parameters from the SERVER-CONFIG hash-table"
386
+ (let ((launch-parameters (gethash lsp-docker--srv-cfg-launch-parameters-key server-config)))
387
+ (if (or (vectorp launch-parameters)
388
+ (not launch-parameters))
389
+ launch-parameters
390
+ (user-error " Cannot find the right launch parameters" ))))
374
391
375
392
(defun lsp-docker-get-server-id (server-config )
376
393
" Get the server id from the SERVER-CONFIG hash-table"
@@ -579,6 +596,7 @@ output)"
579
596
server-id
580
597
docker-server-id
581
598
path-mappings
599
+ launch-parameters
582
600
image-name
583
601
docker-container-name
584
602
activation-fn
@@ -589,6 +607,7 @@ output)"
589
607
:server-id ', server-id
590
608
:docker-server-id ', docker-server-id
591
609
:path-mappings ', path-mappings
610
+ :launch-parameters , launch-parameters
592
611
:docker-image-id ', image-name
593
612
:docker-container-name ', docker-container-name
594
613
:activation-fn , activation-fn
@@ -601,6 +620,7 @@ output)"
601
620
server-id
602
621
docker-server-id
603
622
path-mappings
623
+ launch-parameters
604
624
docker-container-name
605
625
activation-fn
606
626
server-command
@@ -630,6 +650,7 @@ output)"
630
650
server-id
631
651
docker-server-id
632
652
path-mappings
653
+ launch-parameters
633
654
image-name
634
655
docker-container-name
635
656
activation-fn
@@ -640,6 +661,7 @@ output)"
640
661
(cl-defun lsp-docker-register-client-with-activation-fn (&key server-id
641
662
docker-server-id
642
663
path-mappings
664
+ launch-parameters
643
665
docker-image-id
644
666
docker-container-name
645
667
activation-fn
@@ -661,6 +683,7 @@ output)"
661
683
(funcall (or launch-server-cmd-fn #'lsp-docker-launch-new-container )
662
684
docker-container-name
663
685
path-mappings
686
+ launch-parameters
664
687
docker-image-id
665
688
server-command)))
666
689
:test? (lambda (&rest _ )
@@ -686,6 +709,7 @@ dockerized server."
686
709
(server-image-name (lsp-docker-get-server-image-name server-config))
687
710
(regular-server-id (lsp-docker-get-server-id server-config))
688
711
(server-id (lsp-docker-generate-docker-server-id server-config (lsp-workspace-root)))
712
+ (server-launch-parameters (lsp-docker--get-server-launch-parameters server-config))
689
713
(server-launch-command (lsp-docker-get-launch-command server-config))
690
714
(base-client (lsp-docker--get-base-client regular-server-id))
691
715
(activation-fn (lsp-docker--create-activation-function-by-project-dir-and-base-client
@@ -706,6 +730,7 @@ dockerized server."
706
730
:server-id regular-server-id
707
731
:docker-server-id server-id
708
732
:path-mappings path-mappings
733
+ :launch-parameters server-launch-parameters
709
734
:docker-image-id server-image-name
710
735
:docker-container-name server-container-name
711
736
:activation-fn activation-fn
@@ -718,6 +743,7 @@ dockerized server."
718
743
:server-id regular-server-id
719
744
:docker-server-id server-id
720
745
:path-mappings path-mappings
746
+ :launch-parameters server-launch-parameters
721
747
:docker-container-name server-container-name
722
748
:activation-fn activation-fn
723
749
:server-command server-launch-command)))
@@ -726,6 +752,7 @@ dockerized server."
726
752
:server-id regular-server-id
727
753
:docker-server-id server-id
728
754
:path-mappings path-mappings
755
+ :launch-parameters nil
729
756
:docker-image-id nil
730
757
:docker-container-name server-container-name
731
758
:activation-fn activation-fn
0 commit comments