mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
121 lines
3.3 KiB
Rust
121 lines
3.3 KiB
Rust
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_core::serde::Deserialize;
|
|
use deno_core::serde_json;
|
|
use deno_core::serde_json::Value;
|
|
use deno_core::url::Url;
|
|
use lspower::jsonrpc::Error as LSPError;
|
|
use lspower::jsonrpc::Result as LSPResult;
|
|
use lspower::lsp;
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct ClientCapabilities {
|
|
pub status_notification: bool,
|
|
pub workspace_configuration: bool,
|
|
pub workspace_did_change_watched_files: bool,
|
|
}
|
|
|
|
#[derive(Debug, Default, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct CodeLensSettings {
|
|
/// Flag for providing implementation code lenses.
|
|
#[serde(default)]
|
|
pub implementations: bool,
|
|
/// Flag for providing reference code lenses.
|
|
#[serde(default)]
|
|
pub references: bool,
|
|
/// Flag for providing reference code lens on all functions. For this to have
|
|
/// an impact, the `references` flag needs to be `true`.
|
|
#[serde(default)]
|
|
pub references_all_functions: bool,
|
|
}
|
|
|
|
#[derive(Debug, Default, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct WorkspaceSettings {
|
|
pub enable: bool,
|
|
pub config: Option<String>,
|
|
pub import_map: Option<String>,
|
|
pub code_lens: Option<CodeLensSettings>,
|
|
|
|
#[serde(default)]
|
|
pub lint: bool,
|
|
#[serde(default)]
|
|
pub unstable: bool,
|
|
}
|
|
|
|
impl WorkspaceSettings {
|
|
/// Determine if any code lenses are enabled at all. This allows short
|
|
/// circuiting when there are no code lenses enabled.
|
|
pub fn enabled_code_lens(&self) -> bool {
|
|
if let Some(code_lens) = &self.code_lens {
|
|
// This should contain all the "top level" code lens references
|
|
code_lens.implementations || code_lens.references
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
pub fn enabled_code_lens_implementations(&self) -> bool {
|
|
if let Some(code_lens) = &self.code_lens {
|
|
code_lens.implementations
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
pub fn enabled_code_lens_references(&self) -> bool {
|
|
if let Some(code_lens) = &self.code_lens {
|
|
code_lens.references
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
pub fn enabled_code_lens_references_all_functions(&self) -> bool {
|
|
if let Some(code_lens) = &self.code_lens {
|
|
code_lens.references_all_functions
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct Config {
|
|
pub client_capabilities: ClientCapabilities,
|
|
pub root_uri: Option<Url>,
|
|
pub settings: WorkspaceSettings,
|
|
}
|
|
|
|
impl Config {
|
|
pub fn update(&mut self, value: Value) -> LSPResult<()> {
|
|
let settings: WorkspaceSettings = serde_json::from_value(value)
|
|
.map_err(|err| LSPError::invalid_params(err.to_string()))?;
|
|
self.settings = settings;
|
|
Ok(())
|
|
}
|
|
|
|
#[allow(clippy::redundant_closure_call)]
|
|
pub fn update_capabilities(
|
|
&mut self,
|
|
capabilities: &lsp::ClientCapabilities,
|
|
) {
|
|
if let Some(experimental) = &capabilities.experimental {
|
|
let get_bool =
|
|
|k: &str| experimental.get(k).and_then(|it| it.as_bool()) == Some(true);
|
|
|
|
self.client_capabilities.status_notification =
|
|
get_bool("statusNotification");
|
|
}
|
|
|
|
if let Some(workspace) = &capabilities.workspace {
|
|
self.client_capabilities.workspace_configuration =
|
|
workspace.configuration.unwrap_or(false);
|
|
self.client_capabilities.workspace_did_change_watched_files = workspace
|
|
.did_change_watched_files
|
|
.and_then(|it| it.dynamic_registration)
|
|
.unwrap_or(false);
|
|
}
|
|
}
|
|
}
|