1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
use figment::{providers::Serialized, Figment};
use jsona_util::{
schema::{associations::DEFAULT_SCHEMASTORES, cache::DEFAULT_LRU_CACHE_EXPIRATION_TIME},
HashMap,
};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::path::PathBuf;
use url::Url;
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitConfig {
pub cache_path: Option<PathBuf>,
#[serde(default = "default_configuration_section")]
pub configuration_section: String,
}
impl Default for InitConfig {
fn default() -> Self {
Self {
cache_path: Default::default(),
configuration_section: default_configuration_section(),
}
}
}
fn default_configuration_section() -> String {
String::from("jsona")
}
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LspConfig {
pub config_file: ConfigFileConfig,
pub schema: SchemaConfig,
pub formatter: jsona::formatter::OptionsIncompleteCamel,
}
impl LspConfig {
pub fn update_from_json(&mut self, json: &Value) -> Result<(), anyhow::Error> {
*self = Figment::new()
.merge(Serialized::defaults(&self))
.merge(Serialized::defaults(json))
.extract()?;
Ok(())
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SchemaConfig {
pub enabled: bool,
pub associations: HashMap<String, String>,
pub catalogs: Vec<Url>,
pub links: bool,
pub cache: SchemaCacheConfig,
}
impl Default for SchemaConfig {
fn default() -> Self {
Self {
enabled: true,
associations: Default::default(),
catalogs: DEFAULT_SCHEMASTORES
.iter()
.map(|c| c.parse().unwrap())
.collect(),
links: false,
cache: Default::default(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SchemaCacheConfig {
pub memory_expiration: u64,
pub disk_expiration: u64,
}
impl Default for SchemaCacheConfig {
fn default() -> Self {
Self {
memory_expiration: DEFAULT_LRU_CACHE_EXPIRATION_TIME.as_secs(),
disk_expiration: DEFAULT_LRU_CACHE_EXPIRATION_TIME.as_secs(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConfigFileConfig {
pub path: Option<PathBuf>,
pub enabled: bool,
}
impl Default for ConfigFileConfig {
fn default() -> Self {
Self {
path: Default::default(),
enabled: true,
}
}
}