Skip to content

Commit ac4782e

Browse files
authored
Merge pull request #4382 from woody77/json_cfgs
Begin transition to new fields for JsonProject crate cfgs
2 parents c29175f + beb79ed commit ac4782e

File tree

3 files changed

+92
-2
lines changed

3 files changed

+92
-2
lines changed

crates/ra_project_model/src/json_project.rs

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,17 @@ pub struct Crate {
2020
pub(crate) root_module: PathBuf,
2121
pub(crate) edition: Edition,
2222
pub(crate) deps: Vec<Dep>,
23+
24+
// This is the preferred method of providing cfg options.
25+
#[serde(default)]
26+
pub(crate) cfg: FxHashSet<String>,
27+
28+
// These two are here for transition only.
29+
#[serde(default)]
2330
pub(crate) atom_cfgs: FxHashSet<String>,
31+
#[serde(default)]
2432
pub(crate) key_value_cfgs: FxHashMap<String, String>,
33+
2534
pub(crate) out_dir: Option<PathBuf>,
2635
pub(crate) proc_macro_dylib_path: Option<PathBuf>,
2736
}
@@ -54,3 +63,73 @@ pub struct JsonProject {
5463
pub(crate) roots: Vec<Root>,
5564
pub(crate) crates: Vec<Crate>,
5665
}
66+
67+
#[cfg(test)]
68+
mod tests {
69+
use super::*;
70+
use serde_json::json;
71+
72+
#[test]
73+
fn test_crate_deserialization() {
74+
let raw_json = json!( {
75+
"crate_id": 2,
76+
"root_module": "this/is/a/file/path.rs",
77+
"deps": [
78+
{
79+
"crate": 1,
80+
"name": "some_dep_crate"
81+
},
82+
],
83+
"edition": "2015",
84+
"cfg": [
85+
"atom_1",
86+
"atom_2",
87+
"feature=feature_1",
88+
"feature=feature_2",
89+
"other=value",
90+
],
91+
92+
});
93+
94+
let krate: Crate = serde_json::from_value(raw_json).unwrap();
95+
96+
assert!(krate.cfg.contains(&"atom_1".to_string()));
97+
assert!(krate.cfg.contains(&"atom_2".to_string()));
98+
assert!(krate.cfg.contains(&"feature=feature_1".to_string()));
99+
assert!(krate.cfg.contains(&"feature=feature_2".to_string()));
100+
assert!(krate.cfg.contains(&"other=value".to_string()));
101+
}
102+
103+
#[test]
104+
fn test_crate_deserialization_old_json() {
105+
let raw_json = json!( {
106+
"crate_id": 2,
107+
"root_module": "this/is/a/file/path.rs",
108+
"deps": [
109+
{
110+
"crate": 1,
111+
"name": "some_dep_crate"
112+
},
113+
],
114+
"edition": "2015",
115+
"atom_cfgs": [
116+
"atom_1",
117+
"atom_2",
118+
],
119+
"key_value_cfgs": {
120+
"feature": "feature_1",
121+
"feature": "feature_2",
122+
"other": "value",
123+
},
124+
});
125+
126+
let krate: Crate = serde_json::from_value(raw_json).unwrap();
127+
128+
assert!(krate.atom_cfgs.contains(&"atom_1".to_string()));
129+
assert!(krate.atom_cfgs.contains(&"atom_2".to_string()));
130+
assert!(krate.key_value_cfgs.contains_key(&"feature".to_string()));
131+
assert_eq!(krate.key_value_cfgs.get("feature"), Some(&"feature_2".to_string()));
132+
assert!(krate.key_value_cfgs.contains_key(&"other".to_string()));
133+
assert_eq!(krate.key_value_cfgs.get("other"), Some(&"value".to_string()));
134+
}
135+
}

crates/ra_project_model/src/lib.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,16 @@ impl ProjectWorkspace {
252252
};
253253
let cfg_options = {
254254
let mut opts = default_cfg_options.clone();
255+
for cfg in &krate.cfg {
256+
match cfg.find('=') {
257+
None => opts.insert_atom(cfg.into()),
258+
Some(pos) => {
259+
let key = &cfg[..pos];
260+
let value = cfg[pos + 1..].trim_matches('"');
261+
opts.insert_key_value(key.into(), value.into());
262+
}
263+
}
264+
}
255265
for name in &krate.atom_cfgs {
256266
opts.insert_atom(name.into());
257267
}

crates/rust-analyzer/tests/heavy_tests/main.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,9 @@ fn test_missing_module_code_action_in_json_project() {
379379
"root_module": path.join("src/lib.rs"),
380380
"deps": [],
381381
"edition": "2015",
382-
"atom_cfgs": [],
383-
"key_value_cfgs": {}
382+
"cfg": [ "cfg_atom_1", "feature=cfg_1"],
383+
"atom_cfgs": ["atom_2"],
384+
"key_value_cfgs": { "feature": "key_value_feature", "other": "value"}
384385
} ]
385386
});
386387

0 commit comments

Comments
 (0)