aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/rpc.lua
diff options
context:
space:
mode:
authorMathias Fußenegger <mfussenegger@users.noreply.github.com>2024-04-18 15:34:10 +0200
committerGitHub <noreply@github.com>2024-04-18 15:34:10 +0200
commit97323d821be97deeb1a5797b4ca534156b9e9b0c (patch)
tree363af04083159214a9b7d1fd01e0a3d060f6e5b6 /runtime/lua/vim/lsp/rpc.lua
parent206475d7919ccdefd32022a32b204c8941b48fa6 (diff)
downloadrneovim-97323d821be97deeb1a5797b4ca534156b9e9b0c.tar.gz
rneovim-97323d821be97deeb1a5797b4ca534156b9e9b0c.tar.bz2
rneovim-97323d821be97deeb1a5797b4ca534156b9e9b0c.zip
refactor(lsp): merge rpc.domain_socket_connect into rpc.connect (#28398)
See discussion in https://github.com/neovim/neovim/pull/26850
Diffstat (limited to 'runtime/lua/vim/lsp/rpc.lua')
-rw-r--r--runtime/lua/vim/lsp/rpc.lua95
1 files changed, 29 insertions, 66 deletions
diff --git a/runtime/lua/vim/lsp/rpc.lua b/runtime/lua/vim/lsp/rpc.lua
index 984e4f040a..6748b32ec0 100644
--- a/runtime/lua/vim/lsp/rpc.lua
+++ b/runtime/lua/vim/lsp/rpc.lua
@@ -621,95 +621,53 @@ local function merge_dispatchers(dispatchers)
return merged
end
---- Create a LSP RPC client factory that connects via TCP to the given host and port.
+--- Create a LSP RPC client factory that connects to either:
+---
+--- - a named pipe (windows)
+--- - a domain socket (unix)
+--- - a host and port via TCP
---
--- Return a function that can be passed to the `cmd` field for
--- |vim.lsp.start_client()| or |vim.lsp.start()|.
---
----@param host string host to connect to
----@param port integer port to connect to
+---@param host_or_path string host to connect to or path to a pipe/domain socket
+---@param port integer? TCP port to connect to. If absent the first argument must be a pipe
---@return fun(dispatchers: vim.lsp.rpc.Dispatchers): vim.lsp.rpc.PublicClient
-function M.connect(host, port)
+function M.connect(host_or_path, port)
return function(dispatchers)
dispatchers = merge_dispatchers(dispatchers)
- local tcp = assert(uv.new_tcp())
+ local handle = (
+ port == nil
+ and assert(
+ uv.new_pipe(false),
+ string.format('Pipe with name %s could not be opened.', host_or_path)
+ )
+ or assert(uv.new_tcp(), 'Could not create new TCP socket')
+ )
local closing = false
local transport = {
write = function(msg)
- tcp:write(msg)
- end,
- is_closing = function()
- return closing
- end,
- terminate = function()
- if not closing then
- closing = true
- tcp:shutdown()
- tcp:close()
- dispatchers.on_exit(0, 0)
- end
+ handle:write(msg)
end,
- }
- local client = new_client(dispatchers, transport)
- tcp:connect(host, port, function(err)
- if err then
- vim.schedule(function()
- vim.notify(
- string.format('Could not connect to %s:%s, reason: %s', host, port, vim.inspect(err)),
- vim.log.levels.WARN
- )
- end)
- return
- end
- local handle_body = function(body)
- client:handle_body(body)
- end
- tcp:read_start(M.create_read_loop(handle_body, transport.terminate, function(read_err)
- client:on_error(M.client_errors.READ_ERROR, read_err)
- end))
- end)
-
- return public_client(client)
- end
-end
-
---- Create a LSP RPC client factory that connects via named pipes (Windows)
---- or unix domain sockets (Unix) to the given pipe_path (file path on
---- Unix and name on Windows).
----
---- Return a function that can be passed to the `cmd` field for
---- |vim.lsp.start_client()| or |vim.lsp.start()|.
----
----@param pipe_path string file path of the domain socket (Unix) or name of the named pipe (Windows) to connect to
----@return fun(dispatchers: vim.lsp.rpc.Dispatchers): vim.lsp.rpc.PublicClient
-function M.domain_socket_connect(pipe_path)
- return function(dispatchers)
- dispatchers = merge_dispatchers(dispatchers)
- local pipe =
- assert(uv.new_pipe(false), string.format('pipe with name %s could not be opened.', pipe_path))
- local closing = false
- local transport = {
- write = vim.schedule_wrap(function(msg)
- pipe:write(msg)
- end),
is_closing = function()
return closing
end,
terminate = function()
if not closing then
closing = true
- pipe:shutdown()
- pipe:close()
+ handle:shutdown()
+ handle:close()
dispatchers.on_exit(0, 0)
end
end,
}
local client = new_client(dispatchers, transport)
- pipe:connect(pipe_path, function(err)
+ local function on_connect(err)
if err then
+ local address = port == nil and host_or_path or (host_or_path .. ':' .. port)
vim.schedule(function()
vim.notify(
- string.format('Could not connect to :%s, reason: %s', pipe_path, vim.inspect(err)),
+ string.format('Could not connect to %s, reason: %s', address, vim.inspect(err)),
vim.log.levels.WARN
)
end)
@@ -718,10 +676,15 @@ function M.domain_socket_connect(pipe_path)
local handle_body = function(body)
client:handle_body(body)
end
- pipe:read_start(M.create_read_loop(handle_body, transport.terminate, function(read_err)
+ handle:read_start(M.create_read_loop(handle_body, transport.terminate, function(read_err)
client:on_error(M.client_errors.READ_ERROR, read_err)
end))
- end)
+ end
+ if port == nil then
+ handle:connect(host_or_path, on_connect)
+ else
+ handle:connect(host_or_path, port, on_connect)
+ end
return public_client(client)
end