rust/crates/rust-analyzer/src/config.rs

186 lines
6.5 KiB
Rust
Raw Normal View History

2019-10-25 01:00:30 -05:00
//! Config used by the language server.
//!
//! We currently get this config from `initialize` LSP request, which is not the
//! best way to do it, but was the simplest thing we could implement.
//!
//! Of particular interest is the `feature_flags` hash map: while other fields
//! configure the server itself, feature flags are passed into analysis, and
//! tweak things like automatic insertion of `()` in completions.
2020-04-01 07:32:04 -05:00
use lsp_types::TextDocumentClientCapabilities;
use ra_flycheck::FlycheckConfig;
2020-04-01 10:00:37 -05:00
use ra_ide::{CompletionConfig, InlayHintsConfig};
2020-04-01 11:51:16 -05:00
use ra_project_model::CargoConfig;
2020-04-01 11:41:43 -05:00
use serde::Deserialize;
2020-04-01 07:32:04 -05:00
#[derive(Debug, Clone)]
pub struct Config {
2020-04-01 11:46:26 -05:00
pub client_caps: ClientCapsConfig,
2020-04-02 04:33:49 -05:00
pub with_sysroot: bool,
2020-04-02 04:55:04 -05:00
// TODO: verify that it means what I think it means
2020-04-01 10:00:37 -05:00
pub publish_diagnostics: bool,
2020-04-02 04:33:49 -05:00
// TODO: move to experimental capabilities
2020-04-01 07:32:04 -05:00
pub vscode_lldb: bool,
2020-04-01 10:22:56 -05:00
pub lru_capacity: Option<usize>,
2020-04-02 04:33:49 -05:00
pub proc_macro_srv: Option<String>,
2020-04-02 04:55:04 -05:00
pub files: FilesConfig,
2020-04-02 04:33:49 -05:00
pub notifications: NotificationsConfig,
2020-04-01 11:51:16 -05:00
pub cargo: CargoConfig,
2020-04-02 04:33:49 -05:00
pub rustfmt: RustfmtConfig,
pub check: Option<FlycheckConfig>,
pub inlay_hints: InlayHintsConfig,
pub completion: CompletionConfig,
pub call_info_full: bool,
2020-04-01 07:32:04 -05:00
}
2020-04-02 04:55:04 -05:00
#[derive(Debug, Clone)]
pub struct FilesConfig {
watcher: FilesWatcher,
exclude: Vec<String>,
}
#[derive(Debug, Clone)]
enum FilesWatcher {
Client,
Notify,
}
2020-04-01 10:00:37 -05:00
#[derive(Debug, Clone)]
pub struct NotificationsConfig {
pub workspace_loaded: bool,
pub cargo_toml_not_found: bool,
}
2020-04-01 07:32:04 -05:00
#[derive(Debug, Clone)]
pub enum RustfmtConfig {
Rustfmt {
extra_args: Vec<String>,
},
#[allow(unused)]
CustomCommand {
command: String,
args: Vec<String>,
},
}
2020-04-01 11:46:26 -05:00
#[derive(Debug, Clone, Default)]
pub struct ClientCapsConfig {
pub location_link: bool,
pub line_folding_only: bool,
}
2020-04-01 11:41:43 -05:00
impl Default for Config {
fn default() -> Self {
Config {
2020-04-02 04:33:49 -05:00
client_caps: ClientCapsConfig::default(),
with_sysroot: true,
2020-04-01 11:41:43 -05:00
publish_diagnostics: true,
2020-04-02 04:33:49 -05:00
vscode_lldb: false,
lru_capacity: None,
proc_macro_srv: None,
2020-04-02 04:55:04 -05:00
files: FilesConfig { watcher: FilesWatcher::Notify, exclude: Vec::new() },
2020-04-01 11:41:43 -05:00
notifications: NotificationsConfig {
workspace_loaded: true,
cargo_toml_not_found: true,
},
2020-04-02 04:33:49 -05:00
cargo: CargoConfig::default(),
rustfmt: RustfmtConfig::Rustfmt { extra_args: Vec::new() },
check: Some(FlycheckConfig::CargoCommand {
command: "check".to_string(),
all_targets: true,
extra_args: Vec::new(),
}),
2020-04-01 11:41:43 -05:00
inlay_hints: InlayHintsConfig {
type_hints: true,
parameter_hints: true,
chaining_hints: true,
max_length: None,
},
completion: CompletionConfig {
enable_postfix_completions: true,
add_call_parenthesis: true,
add_call_argument_snippets: true,
},
call_info_full: true,
2020-04-01 10:00:37 -05:00
}
}
}
2020-04-01 11:41:43 -05:00
impl Config {
#[rustfmt::skip]
pub fn update(&mut self, value: &serde_json::Value) {
2020-04-01 12:27:45 -05:00
log::info!("Config::update({:#})", value);
2020-04-01 11:46:26 -05:00
let client_caps = self.client_caps.clone();
2020-04-01 11:41:43 -05:00
*self = Default::default();
2020-04-01 11:46:26 -05:00
self.client_caps = client_caps;
2020-04-01 11:41:43 -05:00
2020-04-02 04:33:49 -05:00
set(value, "/withSysroot", &mut self.with_sysroot);
set(value, "/featureFlags/lsp.diagnostics", &mut self.publish_diagnostics);
set(value, "/vscodeLldb", &mut self.vscode_lldb);
2020-04-01 12:27:45 -05:00
set(value, "/lruCapacity", &mut self.lru_capacity);
2020-04-02 04:55:04 -05:00
if let Some(watcher) = get::<String>(value, "/files/watcher") {
self.files.watcher = match watcher.as_str() {
"client" => FilesWatcher::Client,
"notify"| _ => FilesWatcher::Notify,
}
}
set(value, "/notifications/workspaceLoaded", &mut self.notifications.workspace_loaded);
set(value, "/notifications/cargoTomlNotFound", &mut self.notifications.cargo_toml_not_found);
set(value, "/cargo/noDefaultFeatures", &mut self.cargo.no_default_features);
set(value, "/cargo/allFeatures", &mut self.cargo.all_features);
set(value, "/cargo/features", &mut self.cargo.features);
set(value, "/cargo/loadOutDirsFromCheck", &mut self.cargo.load_out_dirs_from_check);
2020-04-02 04:33:49 -05:00
if let RustfmtConfig::Rustfmt { extra_args } = &mut self.rustfmt {
2020-04-02 04:55:04 -05:00
set(value, "/rustfmt/extraArgs", extra_args);
2020-04-02 04:33:49 -05:00
}
2020-04-02 04:55:04 -05:00
if let Some(false) = get(value, "/checkOnSave/enable") {
2020-04-01 11:41:43 -05:00
self.check = None
} else {
if let Some(FlycheckConfig::CargoCommand { command, extra_args, all_targets }) = &mut self.check
{
2020-04-02 04:55:04 -05:00
set(value, "/checkOnSave/extraArgs", extra_args);
set(value, "/checkOnSave/command", command);
set(value, "/checkOnSave/allTargets", all_targets);
2020-04-01 11:41:43 -05:00
}
};
2020-04-02 04:55:04 -05:00
set(value, "/inlayHints/typeHints", &mut self.inlay_hints.type_hints);
set(value, "/inlayHints/parameterHints", &mut self.inlay_hints.parameter_hints);
set(value, "/inlayHints/chainingHints", &mut self.inlay_hints.chaining_hints);
set(value, "/inlayHints/maxLength", &mut self.inlay_hints.max_length);
set(value, "/completion/postfix/enable", &mut self.completion.enable_postfix_completions);
set(value, "/completion/addCallParenthesis", &mut self.completion.add_call_parenthesis);
set(value, "/completion/addCallArgumentSnippets", &mut self.completion.add_call_argument_snippets);
set(value, "/callInfo/full", &mut self.call_info_full);
2020-02-17 02:44:58 -06:00
2020-04-01 12:27:45 -05:00
log::info!("Config::update() = {:#?}", self);
2020-04-01 11:41:43 -05:00
fn get<'a, T: Deserialize<'a>>(value: &'a serde_json::Value, pointer: &str) -> Option<T> {
value.pointer(pointer).and_then(|it| T::deserialize(it).ok())
}
2020-04-01 12:27:45 -05:00
fn set<'a, T: Deserialize<'a> + std::fmt::Debug>(value: &'a serde_json::Value, pointer: &str, slot: &mut T) {
2020-04-01 11:41:43 -05:00
if let Some(new_value) = get(value, pointer) {
*slot = new_value
}
}
}
2020-04-01 11:41:43 -05:00
pub fn update_caps(&mut self, caps: &TextDocumentClientCapabilities) {
if let Some(value) = caps.definition.as_ref().and_then(|it| it.link_support) {
2020-04-01 11:46:26 -05:00
self.client_caps.location_link = value;
2020-04-01 11:41:43 -05:00
}
if let Some(value) = caps.folding_range.as_ref().and_then(|it| it.line_folding_only) {
2020-04-01 11:46:26 -05:00
self.client_caps.line_folding_only = value
2020-04-01 11:41:43 -05:00
}
}
}