refactor(lsp): move workspace folder logic into the client

- Changed `reuse_client` to check workspace folders in addition to
  root_dir.
This commit is contained in:
Lewis Russell 2024-04-02 11:56:29 +01:00 committed by Lewis Russell
parent ffe3002568
commit d9235efa76
3 changed files with 70 additions and 41 deletions

View File

@ -164,6 +164,28 @@ local function once(fn)
end end
end end
--- @param client vim.lsp.Client
--- @param config vim.lsp.ClientConfig
--- @return boolean
local function reuse_client_default(client, config)
if client.name ~= config.name then
return false
end
if config.root_dir then
for _, dir in ipairs(client.workspace_folders or {}) do
-- note: do not need to check client.root_dir since that should be client.workspace_folders[1]
if config.root_dir == dir.name then
return true
end
end
end
-- TODO(lewis6991): also check config.workspace_folders
return false
end
--- @class vim.lsp.start.Opts --- @class vim.lsp.start.Opts
--- @inlinedoc --- @inlinedoc
--- ---
@ -216,11 +238,7 @@ end
--- @return integer? client_id --- @return integer? client_id
function lsp.start(config, opts) function lsp.start(config, opts)
opts = opts or {} opts = opts or {}
local reuse_client = opts.reuse_client local reuse_client = opts.reuse_client or reuse_client_default
or function(client, conf)
return client.root_dir == conf.root_dir and client.name == conf.name
end
local bufnr = resolve_bufnr(opts.bufnr) local bufnr = resolve_bufnr(opts.bufnr)
for _, client in pairs(all_clients) do for _, client in pairs(all_clients) do

View File

@ -521,28 +521,9 @@ function M.add_workspace_folder(workspace_folder)
print(workspace_folder, ' is not a valid directory') print(workspace_folder, ' is not a valid directory')
return return
end end
local new_workspace = { local bufnr = api.nvim_get_current_buf()
uri = vim.uri_from_fname(workspace_folder),
name = workspace_folder,
}
local params = { event = { added = { new_workspace }, removed = {} } }
local bufnr = vim.api.nvim_get_current_buf()
for _, client in pairs(vim.lsp.get_clients({ bufnr = bufnr })) do for _, client in pairs(vim.lsp.get_clients({ bufnr = bufnr })) do
local found = false client:_add_workspace_folder(workspace_folder)
for _, folder in pairs(client.workspace_folders or {}) do
if folder.name == workspace_folder then
found = true
print(workspace_folder, 'is already part of this workspace')
break
end
end
if not found then
client.notify(ms.workspace_didChangeWorkspaceFolders, params)
if not client.workspace_folders then
client.workspace_folders = {}
end
table.insert(client.workspace_folders, new_workspace)
end
end end
end end
@ -554,23 +535,12 @@ function M.remove_workspace_folder(workspace_folder)
workspace_folder = workspace_folder workspace_folder = workspace_folder
or npcall(vim.fn.input, 'Workspace Folder: ', vim.fn.expand('%:p:h')) or npcall(vim.fn.input, 'Workspace Folder: ', vim.fn.expand('%:p:h'))
api.nvim_command('redraw') api.nvim_command('redraw')
if not (workspace_folder and #workspace_folder > 0) then if not workspace_folder or #workspace_folder == 0 then
return return
end end
local workspace = { local bufnr = api.nvim_get_current_buf()
uri = vim.uri_from_fname(workspace_folder),
name = workspace_folder,
}
local params = { event = { added = {}, removed = { workspace } } }
local bufnr = vim.api.nvim_get_current_buf()
for _, client in pairs(vim.lsp.get_clients({ bufnr = bufnr })) do for _, client in pairs(vim.lsp.get_clients({ bufnr = bufnr })) do
for idx, folder in pairs(client.workspace_folders) do client:_remove_workspace_folder(workspace_folder)
if folder.name == workspace_folder then
client.notify(ms.workspace_didChangeWorkspaceFolders, params)
client.workspace_folders[idx] = nil
return
end
end
end end
print(workspace_folder, 'is not currently part of the workspace') print(workspace_folder, 'is not currently part of the workspace')
end end

View File

@ -420,7 +420,7 @@ local function get_workspace_folders(workspace_folders, root_dir)
return { return {
{ {
uri = vim.uri_from_fname(root_dir), uri = vim.uri_from_fname(root_dir),
name = string.format('%s', root_dir), name = root_dir,
}, },
} }
end end
@ -1065,4 +1065,45 @@ function Client:_on_exit(code, signal)
) )
end end
--- @package
--- Add a directory to the workspace folders.
--- @param dir string?
function Client:_add_workspace_folder(dir)
for _, folder in pairs(self.workspace_folders or {}) do
if folder.name == dir then
print(dir, 'is already part of this workspace')
return
end
end
local wf = assert(get_workspace_folders(nil, dir))
self:_notify(ms.workspace_didChangeWorkspaceFolders, {
event = { added = wf, removed = {} },
})
if not self.workspace_folders then
self.workspace_folders = {}
end
vim.list_extend(self.workspace_folders, wf)
end
--- @package
--- Remove a directory to the workspace folders.
--- @param dir string?
function Client:_remove_workspace_folder(dir)
local wf = assert(get_workspace_folders(nil, dir))
self:_notify(ms.workspace_didChangeWorkspaceFolders, {
event = { added = {}, removed = wf },
})
for idx, folder in pairs(self.workspace_folders) do
if folder.name == dir then
table.remove(self.workspace_folders, idx)
break
end
end
end
return Client return Client