Ensure all client LSP queries are forwarded via collab

This commit is contained in:
Kirill Bulatov 2023-08-31 13:41:20 +03:00
parent fff385a585
commit 292af55ebc

View File

@ -156,6 +156,11 @@ struct DelayedDebounced {
cancel_channel: Option<oneshot::Sender<()>>, cancel_channel: Option<oneshot::Sender<()>>,
} }
enum LanguageServerToQuery {
Primary,
Other(LanguageServerId),
}
impl DelayedDebounced { impl DelayedDebounced {
fn new() -> DelayedDebounced { fn new() -> DelayedDebounced {
DelayedDebounced { DelayedDebounced {
@ -4199,7 +4204,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Vec<LocationLink>>> { ) -> Task<Result<Vec<LocationLink>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer.clone(), GetDefinition { position }, cx) self.request_lsp(
buffer.clone(),
LanguageServerToQuery::Primary,
GetDefinition { position },
cx,
)
} }
pub fn type_definition<T: ToPointUtf16>( pub fn type_definition<T: ToPointUtf16>(
@ -4209,7 +4219,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Vec<LocationLink>>> { ) -> Task<Result<Vec<LocationLink>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer.clone(), GetTypeDefinition { position }, cx) self.request_lsp(
buffer.clone(),
LanguageServerToQuery::Primary,
GetTypeDefinition { position },
cx,
)
} }
pub fn references<T: ToPointUtf16>( pub fn references<T: ToPointUtf16>(
@ -4219,7 +4234,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Vec<Location>>> { ) -> Task<Result<Vec<Location>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer.clone(), GetReferences { position }, cx) self.request_lsp(
buffer.clone(),
LanguageServerToQuery::Primary,
GetReferences { position },
cx,
)
} }
pub fn document_highlights<T: ToPointUtf16>( pub fn document_highlights<T: ToPointUtf16>(
@ -4229,7 +4249,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Vec<DocumentHighlight>>> { ) -> Task<Result<Vec<DocumentHighlight>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer.clone(), GetDocumentHighlights { position }, cx) self.request_lsp(
buffer.clone(),
LanguageServerToQuery::Primary,
GetDocumentHighlights { position },
cx,
)
} }
pub fn symbols(&self, query: &str, cx: &mut ModelContext<Self>) -> Task<Result<Vec<Symbol>>> { pub fn symbols(&self, query: &str, cx: &mut ModelContext<Self>) -> Task<Result<Vec<Symbol>>> {
@ -4457,7 +4482,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Option<Hover>>> { ) -> Task<Result<Option<Hover>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer.clone(), GetHover { position }, cx) self.request_lsp(
buffer.clone(),
LanguageServerToQuery::Primary,
GetHover { position },
cx,
)
} }
pub fn completions<T: ToOffset + ToPointUtf16>( pub fn completions<T: ToOffset + ToPointUtf16>(
@ -4491,7 +4521,7 @@ impl Project {
for server_id in server_ids { for server_id in server_ids {
tasks.push(this.request_lsp( tasks.push(this.request_lsp(
buffer.clone(), buffer.clone(),
server_id, LanguageServerToQuery::Other(server_id),
GetCompletions { position }, GetCompletions { position },
cx, cx,
)); ));
@ -4628,7 +4658,12 @@ impl Project {
) -> Task<Result<Vec<CodeAction>>> { ) -> Task<Result<Vec<CodeAction>>> {
let buffer = buffer_handle.read(cx); let buffer = buffer_handle.read(cx);
let range = buffer.anchor_before(range.start)..buffer.anchor_before(range.end); let range = buffer.anchor_before(range.start)..buffer.anchor_before(range.end);
self.request_primary_lsp(buffer_handle.clone(), GetCodeActions { range }, cx) self.request_lsp(
buffer_handle.clone(),
LanguageServerToQuery::Primary,
GetCodeActions { range },
cx,
)
} }
pub fn apply_code_action( pub fn apply_code_action(
@ -4984,7 +5019,12 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<Option<Range<Anchor>>>> { ) -> Task<Result<Option<Range<Anchor>>>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp(buffer, PrepareRename { position }, cx) self.request_lsp(
buffer,
LanguageServerToQuery::Primary,
PrepareRename { position },
cx,
)
} }
pub fn perform_rename<T: ToPointUtf16>( pub fn perform_rename<T: ToPointUtf16>(
@ -4996,8 +5036,9 @@ impl Project {
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<ProjectTransaction>> { ) -> Task<Result<ProjectTransaction>> {
let position = position.to_point_utf16(buffer.read(cx)); let position = position.to_point_utf16(buffer.read(cx));
self.request_primary_lsp( self.request_lsp(
buffer, buffer,
LanguageServerToQuery::Primary,
PerformRename { PerformRename {
position, position,
new_name, new_name,
@ -5023,8 +5064,9 @@ impl Project {
.tab_size, .tab_size,
) )
}); });
self.request_primary_lsp( self.request_lsp(
buffer.clone(), buffer.clone(),
LanguageServerToQuery::Primary,
OnTypeFormatting { OnTypeFormatting {
position, position,
trigger, trigger,
@ -5050,7 +5092,12 @@ impl Project {
let lsp_request = InlayHints { range }; let lsp_request = InlayHints { range };
if self.is_local() { if self.is_local() {
let lsp_request_task = self.request_primary_lsp(buffer_handle.clone(), lsp_request, cx); let lsp_request_task = self.request_lsp(
buffer_handle.clone(),
LanguageServerToQuery::Primary,
lsp_request,
cx,
);
cx.spawn(|_, mut cx| async move { cx.spawn(|_, mut cx| async move {
buffer_handle buffer_handle
.update(&mut cx, |buffer, _| { .update(&mut cx, |buffer, _| {
@ -5483,28 +5530,10 @@ impl Project {
.await; .await;
} }
fn request_primary_lsp<R: LspCommand>(
&self,
buffer_handle: ModelHandle<Buffer>,
request: R,
cx: &mut ModelContext<Self>,
) -> Task<Result<R::Response>>
where
<R::LspRequest as lsp::request::Request>::Result: Send,
{
let buffer = buffer_handle.read(cx);
let server_id = match self.primary_language_server_for_buffer(buffer, cx) {
Some((_, server)) => server.server_id(),
None => return Task::ready(Ok(Default::default())),
};
self.request_lsp(buffer_handle, server_id, request, cx)
}
fn request_lsp<R: LspCommand>( fn request_lsp<R: LspCommand>(
&self, &self,
buffer_handle: ModelHandle<Buffer>, buffer_handle: ModelHandle<Buffer>,
server_id: LanguageServerId, server: LanguageServerToQuery,
request: R, request: R,
cx: &mut ModelContext<Self>, cx: &mut ModelContext<Self>,
) -> Task<Result<R::Response>> ) -> Task<Result<R::Response>>
@ -5513,11 +5542,18 @@ impl Project {
{ {
let buffer = buffer_handle.read(cx); let buffer = buffer_handle.read(cx);
if self.is_local() { if self.is_local() {
let language_server = match server {
LanguageServerToQuery::Primary => {
match self.primary_language_server_for_buffer(buffer, cx) {
Some((_, server)) => Some(Arc::clone(server)),
None => return Task::ready(Ok(Default::default())),
}
}
LanguageServerToQuery::Other(id) => self
.language_server_for_buffer(buffer, id, cx)
.map(|(_, server)| Arc::clone(server)),
};
let file = File::from_dyn(buffer.file()).and_then(File::as_local); let file = File::from_dyn(buffer.file()).and_then(File::as_local);
let language_server = self
.language_server_for_buffer(buffer, server_id, cx)
.map(|(_, server)| server.clone());
if let (Some(file), Some(language_server)) = (file, language_server) { if let (Some(file), Some(language_server)) = (file, language_server) {
let lsp_params = request.to_lsp(&file.abs_path(cx), buffer, &language_server, cx); let lsp_params = request.to_lsp(&file.abs_path(cx), buffer, &language_server, cx);
return cx.spawn(|this, cx| async move { return cx.spawn(|this, cx| async move {
@ -7212,7 +7248,7 @@ impl Project {
let buffer_version = buffer_handle.read_with(&cx, |buffer, _| buffer.version()); let buffer_version = buffer_handle.read_with(&cx, |buffer, _| buffer.version());
let response = this let response = this
.update(&mut cx, |this, cx| { .update(&mut cx, |this, cx| {
this.request_primary_lsp(buffer_handle, request, cx) this.request_lsp(buffer_handle, LanguageServerToQuery::Primary, request, cx)
}) })
.await?; .await?;
this.update(&mut cx, |this, cx| { this.update(&mut cx, |this, cx| {