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

113 lines
3.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.
use crate::req::InlayConfigDef;
2020-03-12 11:38:48 -05:00
use ra_ide::InlayHintsOptions;
2019-08-22 06:44:16 -05:00
use rustc_hash::FxHashMap;
2019-12-13 04:16:34 -06:00
use ra_project_model::CargoFeatures;
use serde::{Deserialize, Deserializer};
/// Client provided initialization options
#[derive(Deserialize, Clone, Debug, PartialEq, Eq)]
#[serde(rename_all = "camelCase", default)]
2019-08-06 06:12:58 -05:00
pub struct ServerConfig {
/// Whether the client supports our custom highlighting publishing decorations.
/// This is different to the highlightingOn setting, which is whether the user
/// wants our custom highlighting to be used.
///
/// Defaults to `false`
#[serde(deserialize_with = "nullable_bool_false")]
pub publish_decorations: bool,
pub exclude_globs: Vec<String>,
2019-09-06 08:25:24 -05:00
#[serde(deserialize_with = "nullable_bool_false")]
pub use_client_watching: bool,
2019-06-07 12:49:29 -05:00
pub lru_capacity: Option<usize>,
2019-08-19 07:41:18 -05:00
#[serde(with = "InlayConfigDef")]
2020-03-12 11:38:48 -05:00
pub inlay_hints: InlayHintsOptions,
pub cargo_watch_enable: bool,
pub cargo_watch_args: Vec<String>,
pub cargo_watch_command: String,
pub cargo_watch_all_targets: bool,
2019-08-19 07:41:18 -05:00
/// For internal usage to make integrated tests faster.
#[serde(deserialize_with = "nullable_bool_true")]
pub with_sysroot: bool,
2019-08-22 06:44:16 -05:00
/// Fine grained feature flags to disable specific features.
pub feature_flags: FxHashMap<String, bool>,
2019-12-13 04:16:34 -06:00
2020-03-10 08:58:15 -05:00
/// Fine grained controls for additional `OUT_DIR` env variables
pub additional_out_dirs: FxHashMap<String, String>,
2020-02-17 02:44:58 -06:00
pub rustfmt_args: Vec<String>,
2019-12-13 04:16:34 -06:00
/// Cargo feature configurations.
pub cargo_features: CargoFeatures,
}
2019-08-06 06:12:58 -05:00
impl Default for ServerConfig {
fn default() -> ServerConfig {
ServerConfig {
publish_decorations: false,
exclude_globs: Vec::new(),
2019-09-06 08:25:24 -05:00
use_client_watching: false,
lru_capacity: None,
inlay_hints: Default::default(),
cargo_watch_enable: true,
cargo_watch_args: Vec::new(),
cargo_watch_command: "check".to_string(),
cargo_watch_all_targets: true,
2019-08-19 07:41:18 -05:00
with_sysroot: true,
2019-08-22 06:44:16 -05:00
feature_flags: FxHashMap::default(),
2020-03-10 08:58:15 -05:00
additional_out_dirs: FxHashMap::default(),
2019-12-13 04:16:34 -06:00
cargo_features: Default::default(),
2020-02-17 02:44:58 -06:00
rustfmt_args: Vec::new(),
}
}
}
/// Deserializes a null value to a bool false by default
fn nullable_bool_false<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
D: Deserializer<'de>,
{
let opt = Option::deserialize(deserializer)?;
Ok(opt.unwrap_or(false))
}
/// Deserializes a null value to a bool true by default
fn nullable_bool_true<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
D: Deserializer<'de>,
{
let opt = Option::deserialize(deserializer)?;
Ok(opt.unwrap_or(true))
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn deserialize_init_options_defaults() {
// check that null == default for both fields
2019-08-06 06:12:58 -05:00
let default = ServerConfig::default();
assert_eq!(default, serde_json::from_str(r#"{}"#).unwrap());
assert_eq!(
default,
2019-10-25 01:00:30 -05:00
serde_json::from_str(r#"{"publishDecorations":null, "lruCapacity":null}"#).unwrap()
);
}
}