mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 02:37:21 +00:00
e85848a695
Some checks are pending
CI / Check Postgres and Protobuf migrations, mergability (push) Waiting to run
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Linux) Build Remote Server (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
CI / Auto release preview (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Script / ShellCheck Scripts (push) Waiting to run
Closes #ISSUE Release Notes: - pylsp will now use version installed in user venv, if one is available.
294 lines
9.1 KiB
Rust
294 lines
9.1 KiB
Rust
use anyhow::{anyhow, Result};
|
|
use async_trait::async_trait;
|
|
use collections::HashMap;
|
|
use gpui::AsyncAppContext;
|
|
use language::{LanguageToolchainStore, LspAdapter, LspAdapterDelegate};
|
|
use lsp::{CodeActionKind, LanguageServerBinary, LanguageServerName};
|
|
use node_runtime::NodeRuntime;
|
|
use project::lsp_store::language_server_settings;
|
|
use serde_json::Value;
|
|
use std::{
|
|
any::Any,
|
|
ffi::OsString,
|
|
path::{Path, PathBuf},
|
|
sync::Arc,
|
|
};
|
|
use util::{maybe, merge_json_value_into, ResultExt};
|
|
|
|
fn typescript_server_binary_arguments(server_path: &Path) -> Vec<OsString> {
|
|
vec![server_path.into(), "--stdio".into()]
|
|
}
|
|
|
|
pub struct VtslsLspAdapter {
|
|
node: NodeRuntime,
|
|
}
|
|
|
|
impl VtslsLspAdapter {
|
|
const PACKAGE_NAME: &'static str = "@vtsls/language-server";
|
|
const SERVER_PATH: &'static str = "node_modules/@vtsls/language-server/bin/vtsls.js";
|
|
|
|
const TYPESCRIPT_PACKAGE_NAME: &'static str = "typescript";
|
|
const TYPESCRIPT_TSDK_PATH: &'static str = "node_modules/typescript/lib";
|
|
|
|
pub fn new(node: NodeRuntime) -> Self {
|
|
VtslsLspAdapter { node }
|
|
}
|
|
|
|
async fn tsdk_path(adapter: &Arc<dyn LspAdapterDelegate>) -> &'static str {
|
|
let is_yarn = adapter
|
|
.read_text_file(PathBuf::from(".yarn/sdks/typescript/lib/typescript.js"))
|
|
.await
|
|
.is_ok();
|
|
|
|
if is_yarn {
|
|
".yarn/sdks/typescript/lib"
|
|
} else {
|
|
Self::TYPESCRIPT_TSDK_PATH
|
|
}
|
|
}
|
|
}
|
|
|
|
struct TypeScriptVersions {
|
|
typescript_version: String,
|
|
server_version: String,
|
|
}
|
|
|
|
const SERVER_NAME: LanguageServerName = LanguageServerName::new_static("vtsls");
|
|
|
|
#[async_trait(?Send)]
|
|
impl LspAdapter for VtslsLspAdapter {
|
|
fn name(&self) -> LanguageServerName {
|
|
SERVER_NAME.clone()
|
|
}
|
|
|
|
async fn fetch_latest_server_version(
|
|
&self,
|
|
_: &dyn LspAdapterDelegate,
|
|
) -> Result<Box<dyn 'static + Send + Any>> {
|
|
Ok(Box::new(TypeScriptVersions {
|
|
typescript_version: self.node.npm_package_latest_version("typescript").await?,
|
|
server_version: self
|
|
.node
|
|
.npm_package_latest_version("@vtsls/language-server")
|
|
.await?,
|
|
}) as Box<_>)
|
|
}
|
|
|
|
async fn check_if_user_installed(
|
|
&self,
|
|
delegate: &dyn LspAdapterDelegate,
|
|
_: Arc<dyn LanguageToolchainStore>,
|
|
_: &AsyncAppContext,
|
|
) -> Option<LanguageServerBinary> {
|
|
let env = delegate.shell_env().await;
|
|
let path = delegate.which(SERVER_NAME.as_ref()).await?;
|
|
Some(LanguageServerBinary {
|
|
path: path.clone(),
|
|
arguments: typescript_server_binary_arguments(&path),
|
|
env: Some(env),
|
|
})
|
|
}
|
|
|
|
async fn fetch_server_binary(
|
|
&self,
|
|
latest_version: Box<dyn 'static + Send + Any>,
|
|
container_dir: PathBuf,
|
|
_: &dyn LspAdapterDelegate,
|
|
) -> Result<LanguageServerBinary> {
|
|
let latest_version = latest_version.downcast::<TypeScriptVersions>().unwrap();
|
|
let server_path = container_dir.join(Self::SERVER_PATH);
|
|
|
|
let mut packages_to_install = Vec::new();
|
|
|
|
if self
|
|
.node
|
|
.should_install_npm_package(
|
|
Self::PACKAGE_NAME,
|
|
&server_path,
|
|
&container_dir,
|
|
&latest_version.server_version,
|
|
)
|
|
.await
|
|
{
|
|
packages_to_install.push((Self::PACKAGE_NAME, latest_version.server_version.as_str()));
|
|
}
|
|
|
|
if self
|
|
.node
|
|
.should_install_npm_package(
|
|
Self::TYPESCRIPT_PACKAGE_NAME,
|
|
&container_dir.join(Self::TYPESCRIPT_TSDK_PATH),
|
|
&container_dir,
|
|
&latest_version.typescript_version,
|
|
)
|
|
.await
|
|
{
|
|
packages_to_install.push((
|
|
Self::TYPESCRIPT_PACKAGE_NAME,
|
|
latest_version.typescript_version.as_str(),
|
|
));
|
|
}
|
|
|
|
self.node
|
|
.npm_install_packages(&container_dir, &packages_to_install)
|
|
.await?;
|
|
|
|
Ok(LanguageServerBinary {
|
|
path: self.node.binary_path().await?,
|
|
env: None,
|
|
arguments: typescript_server_binary_arguments(&server_path),
|
|
})
|
|
}
|
|
|
|
async fn cached_server_binary(
|
|
&self,
|
|
container_dir: PathBuf,
|
|
_: &dyn LspAdapterDelegate,
|
|
) -> Option<LanguageServerBinary> {
|
|
get_cached_ts_server_binary(container_dir, &self.node).await
|
|
}
|
|
|
|
fn code_action_kinds(&self) -> Option<Vec<CodeActionKind>> {
|
|
Some(vec![
|
|
CodeActionKind::QUICKFIX,
|
|
CodeActionKind::REFACTOR,
|
|
CodeActionKind::REFACTOR_EXTRACT,
|
|
CodeActionKind::SOURCE,
|
|
])
|
|
}
|
|
|
|
async fn label_for_completion(
|
|
&self,
|
|
item: &lsp::CompletionItem,
|
|
language: &Arc<language::Language>,
|
|
) -> Option<language::CodeLabel> {
|
|
use lsp::CompletionItemKind as Kind;
|
|
let len = item.label.len();
|
|
let grammar = language.grammar()?;
|
|
let highlight_id = match item.kind? {
|
|
Kind::CLASS | Kind::INTERFACE | Kind::ENUM => grammar.highlight_id_for_name("type"),
|
|
Kind::CONSTRUCTOR => grammar.highlight_id_for_name("type"),
|
|
Kind::CONSTANT => grammar.highlight_id_for_name("constant"),
|
|
Kind::FUNCTION | Kind::METHOD => grammar.highlight_id_for_name("function"),
|
|
Kind::PROPERTY | Kind::FIELD => grammar.highlight_id_for_name("property"),
|
|
Kind::VARIABLE => grammar.highlight_id_for_name("variable"),
|
|
_ => None,
|
|
}?;
|
|
|
|
let one_line = |s: &str| s.replace(" ", "").replace('\n', " ");
|
|
|
|
let text = if let Some(description) = item
|
|
.label_details
|
|
.as_ref()
|
|
.and_then(|label_details| label_details.description.as_ref())
|
|
{
|
|
format!("{} {}", item.label, one_line(description))
|
|
} else if let Some(detail) = &item.detail {
|
|
format!("{} {}", item.label, one_line(detail))
|
|
} else {
|
|
item.label.clone()
|
|
};
|
|
|
|
Some(language::CodeLabel {
|
|
text,
|
|
runs: vec![(0..len, highlight_id)],
|
|
filter_range: 0..len,
|
|
})
|
|
}
|
|
|
|
async fn workspace_configuration(
|
|
self: Arc<Self>,
|
|
delegate: &Arc<dyn LspAdapterDelegate>,
|
|
_: Arc<dyn LanguageToolchainStore>,
|
|
cx: &mut AsyncAppContext,
|
|
) -> Result<Value> {
|
|
let tsdk_path = Self::tsdk_path(delegate).await;
|
|
let config = serde_json::json!({
|
|
"tsdk": tsdk_path,
|
|
"suggest": {
|
|
"completeFunctionCalls": true
|
|
},
|
|
"inlayHints": {
|
|
"parameterNames": {
|
|
"enabled": "all",
|
|
"suppressWhenArgumentMatchesName": false
|
|
},
|
|
"parameterTypes": {
|
|
"enabled": true
|
|
},
|
|
"variableTypes": {
|
|
"enabled": true,
|
|
"suppressWhenTypeMatchesName": false
|
|
},
|
|
"propertyDeclarationTypes": {
|
|
"enabled": true
|
|
},
|
|
"functionLikeReturnTypes": {
|
|
"enabled": true
|
|
},
|
|
"enumMemberValues": {
|
|
"enabled": true
|
|
}
|
|
},
|
|
"tsserver": {
|
|
"maxTsServerMemory": 8092
|
|
},
|
|
});
|
|
|
|
let mut default_workspace_configuration = serde_json::json!({
|
|
"typescript": config,
|
|
"javascript": config,
|
|
"vtsls": {
|
|
"experimental": {
|
|
"completion": {
|
|
"enableServerSideFuzzyMatch": true,
|
|
"entriesLimit": 5000,
|
|
}
|
|
},
|
|
"autoUseWorkspaceTsdk": true
|
|
}
|
|
});
|
|
|
|
let override_options = cx.update(|cx| {
|
|
language_server_settings(delegate.as_ref(), &SERVER_NAME, cx)
|
|
.and_then(|s| s.settings.clone())
|
|
})?;
|
|
|
|
if let Some(override_options) = override_options {
|
|
merge_json_value_into(override_options, &mut default_workspace_configuration)
|
|
}
|
|
|
|
Ok(default_workspace_configuration)
|
|
}
|
|
|
|
fn language_ids(&self) -> HashMap<String, String> {
|
|
HashMap::from_iter([
|
|
("TypeScript".into(), "typescript".into()),
|
|
("JavaScript".into(), "javascript".into()),
|
|
("TSX".into(), "typescriptreact".into()),
|
|
])
|
|
}
|
|
}
|
|
|
|
async fn get_cached_ts_server_binary(
|
|
container_dir: PathBuf,
|
|
node: &NodeRuntime,
|
|
) -> Option<LanguageServerBinary> {
|
|
maybe!(async {
|
|
let server_path = container_dir.join(VtslsLspAdapter::SERVER_PATH);
|
|
if server_path.exists() {
|
|
Ok(LanguageServerBinary {
|
|
path: node.binary_path().await?,
|
|
env: None,
|
|
arguments: typescript_server_binary_arguments(&server_path),
|
|
})
|
|
} else {
|
|
Err(anyhow!(
|
|
"missing executable in directory {:?}",
|
|
container_dir
|
|
))
|
|
}
|
|
})
|
|
.await
|
|
.log_err()
|
|
}
|