@@ -690,7 +690,7 @@ pub struct Config {
690
690
root_ratoml : Option < GlobalLocalConfigInput > ,
691
691
692
692
/// For every `SourceRoot` there can be at most one RATOML file.
693
- ratoml_files : FxHashMap < SourceRootId , GlobalLocalConfigInput > ,
693
+ ratoml_files : FxHashMap < SourceRootId , LocalConfigInput > ,
694
694
695
695
/// Clone of the value that is stored inside a `GlobalState`.
696
696
source_root_parent_map : Arc < FxHashMap < SourceRootId , SourceRootId > > ,
@@ -761,7 +761,7 @@ impl Config {
761
761
if let Ok ( change) = toml:: from_str ( & text) {
762
762
config. ratoml_files . insert (
763
763
source_root_id,
764
- GlobalLocalConfigInput :: from_toml ( change, & mut toml_errors) ,
764
+ LocalConfigInput :: from_toml ( & change, & mut toml_errors) ,
765
765
) ;
766
766
}
767
767
}
@@ -2476,12 +2476,18 @@ macro_rules! _impl_for_config_data {
2476
2476
while let Some ( source_root_id) = par {
2477
2477
par = self . source_root_parent_map. get( & source_root_id) . copied( ) ;
2478
2478
if let Some ( config) = self . ratoml_files. get( & source_root_id) {
2479
- if let Some ( value) = config. local . $field. as_ref( ) {
2479
+ if let Some ( value) = config. $field. as_ref( ) {
2480
2480
return value;
2481
2481
}
2482
2482
}
2483
2483
}
2484
2484
2485
+ if let Some ( root_path_ratoml) = self . root_ratoml. as_ref( ) {
2486
+ if let Some ( v) = root_path_ratoml. local. $field. as_ref( ) {
2487
+ return & v;
2488
+ }
2489
+ }
2490
+
2485
2491
if let Some ( v) = self . client_config. local. $field. as_ref( ) {
2486
2492
return & v;
2487
2493
}
@@ -2612,7 +2618,7 @@ macro_rules! _config_data {
2612
2618
) * }
2613
2619
}
2614
2620
2615
- fn from_toml( toml: & mut toml:: Table , error_sink: & mut Vec <( String , toml:: de:: Error ) >) -> Self {
2621
+ fn from_toml( toml: & toml:: Table , error_sink: & mut Vec <( String , toml:: de:: Error ) >) -> Self {
2616
2622
Self { $(
2617
2623
$field: get_field_toml:: <$ty>(
2618
2624
toml,
@@ -2681,7 +2687,6 @@ impl FullConfigInput {
2681
2687
GlobalConfigInput :: schema_fields ( & mut fields) ;
2682
2688
LocalConfigInput :: schema_fields ( & mut fields) ;
2683
2689
ClientConfigInput :: schema_fields ( & mut fields) ;
2684
- // HACK: sort the fields, so the diffs on the generated docs/schema are smaller
2685
2690
fields. sort_by_key ( |& ( x, ..) | x) ;
2686
2691
fields
2687
2692
}
@@ -2707,12 +2712,12 @@ struct GlobalLocalConfigInput {
2707
2712
2708
2713
impl GlobalLocalConfigInput {
2709
2714
fn from_toml (
2710
- mut toml : toml:: Table ,
2715
+ toml : toml:: Table ,
2711
2716
error_sink : & mut Vec < ( String , toml:: de:: Error ) > ,
2712
2717
) -> GlobalLocalConfigInput {
2713
2718
GlobalLocalConfigInput {
2714
- global : GlobalConfigInput :: from_toml ( & mut toml, error_sink) ,
2715
- local : LocalConfigInput :: from_toml ( & mut toml, error_sink) ,
2719
+ global : GlobalConfigInput :: from_toml ( & toml, error_sink) ,
2720
+ local : LocalConfigInput :: from_toml ( & toml, error_sink) ,
2716
2721
}
2717
2722
}
2718
2723
}
@@ -2730,14 +2735,11 @@ fn get_field_toml<T: DeserializeOwned>(
2730
2735
let subkeys = field. split ( '_' ) ;
2731
2736
let mut v = val;
2732
2737
for subkey in subkeys {
2733
- if let Some ( val) = v. get ( subkey) {
2734
- if let Some ( map) = val. as_table ( ) {
2735
- v = map;
2736
- } else {
2737
- return Some ( toml:: Value :: try_into ( val. clone ( ) ) . map_err ( |e| ( e, v) ) ) ;
2738
- }
2738
+ let val = v. get ( subkey) ?;
2739
+ if let Some ( map) = val. as_table ( ) {
2740
+ v = map;
2739
2741
} else {
2740
- return None ;
2742
+ return Some ( toml :: Value :: try_into ( val . clone ( ) ) . map_err ( |e| ( e , v ) ) ) ;
2741
2743
}
2742
2744
}
2743
2745
None
0 commit comments