Skip to content

Commit 292bb94

Browse files
alibektasVeykril
authored andcommitted
Apply requested changes round 3
1 parent ff6e912 commit 292bb94

File tree

7 files changed

+36
-31
lines changed

7 files changed

+36
-31
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/bin/main.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,10 @@ fn run_server() -> anyhow::Result<()> {
228228
if let Some(json) = initialization_options {
229229
let mut change = ConfigChange::default();
230230
change.change_client_config(json);
231-
let mut error_sink = ConfigError::default();
232-
(config, _) = config.apply_change(change, &mut error_sink);
231+
232+
let error_sink: ConfigError;
233+
(config, error_sink, _) = config.apply_change(change);
234+
233235
if !error_sink.is_empty() {
234236
use lsp_types::{
235237
notification::{Notification, ShowMessage},

src/tools/rust-analyzer/crates/rust-analyzer/src/cli/scip.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use tracing::error;
1414

1515
use crate::{
1616
cli::flags,
17-
config::{ConfigChange, ConfigError},
17+
config::ConfigChange,
1818
line_index::{LineEndings, LineIndex, PositionEncoding},
1919
};
2020

@@ -45,8 +45,10 @@ impl flags::Scip {
4545
let json = serde_json::from_reader(&mut file)?;
4646
let mut change = ConfigChange::default();
4747
change.change_client_config(json);
48-
let mut error_sink = ConfigError::default();
49-
(config, _) = config.apply_change(change, &mut error_sink);
48+
49+
let error_sink;
50+
(config, error_sink, _) = config.apply_change(change);
51+
5052
// FIXME @alibektas : What happens to errors without logging?
5153
error!(?error_sink, "Config Error(s)");
5254
}

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

+13-16
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ impl Config {
705705
// FIXME @alibektas : Server's health uses error sink but in other places it is not used atm.
706706
/// Changes made to client and global configurations will partially not be reflected even after `.apply_change()` was called.
707707
/// The return tuple's bool component signals whether the `GlobalState` should call its `update_configuration()` method.
708-
pub fn apply_change(
708+
fn apply_change_with_sink(
709709
&self,
710710
change: ConfigChange,
711711
error_sink: &mut ConfigError,
@@ -809,10 +809,13 @@ impl Config {
809809
(config, should_update)
810810
}
811811

812-
pub fn apply_change_whatever(&self, change: ConfigChange) -> (Config, ConfigError) {
812+
/// Given `change` this generates a new `Config`, thereby collecting errors of type `ConfigError`.
813+
/// If there are changes that have global/client level effect, the last component of the return type
814+
/// will be set to `true`, which should be used by the `GlobalState` to update itself.
815+
pub fn apply_change(&self, change: ConfigChange) -> (Config, ConfigError, bool) {
813816
let mut e = ConfigError(vec![]);
814-
let (config, _) = self.apply_change(change, &mut e);
815-
(config, e)
817+
let (config, should_update) = self.apply_change_with_sink(change, &mut e);
818+
(config, e, should_update)
816819
}
817820
}
818821

@@ -3300,8 +3303,7 @@ mod tests {
33003303
"server": null,
33013304
}}));
33023305

3303-
let mut error_sink = ConfigError::default();
3304-
(config, _) = config.apply_change(change, &mut error_sink);
3306+
(config, _, _) = config.apply_change(change);
33053307
assert_eq!(config.proc_macro_srv(), None);
33063308
}
33073309

@@ -3320,8 +3322,7 @@ mod tests {
33203322
"server": project_root().display().to_string(),
33213323
}}));
33223324

3323-
let mut error_sink = ConfigError::default();
3324-
(config, _) = config.apply_change(change, &mut error_sink);
3325+
(config, _, _) = config.apply_change(change);
33253326
assert_eq!(config.proc_macro_srv(), Some(AbsPathBuf::try_from(project_root()).unwrap()));
33263327
}
33273328

@@ -3342,8 +3343,7 @@ mod tests {
33423343
"server": "./server"
33433344
}}));
33443345

3345-
let mut error_sink = ConfigError::default();
3346-
(config, _) = config.apply_change(change, &mut error_sink);
3346+
(config, _, _) = config.apply_change(change);
33473347

33483348
assert_eq!(
33493349
config.proc_macro_srv(),
@@ -3367,8 +3367,7 @@ mod tests {
33673367
"rust" : { "analyzerTargetDir" : null }
33683368
}));
33693369

3370-
let mut error_sink = ConfigError::default();
3371-
(config, _) = config.apply_change(change, &mut error_sink);
3370+
(config, _, _) = config.apply_change(change);
33723371
assert_eq!(config.cargo_targetDir(), &None);
33733372
assert!(
33743373
matches!(config.flycheck(), FlycheckConfig::CargoCommand { options, .. } if options.target_dir.is_none())
@@ -3390,8 +3389,7 @@ mod tests {
33903389
"rust" : { "analyzerTargetDir" : true }
33913390
}));
33923391

3393-
let mut error_sink = ConfigError::default();
3394-
(config, _) = config.apply_change(change, &mut error_sink);
3392+
(config, _, _) = config.apply_change(change);
33953393

33963394
assert_eq!(config.cargo_targetDir(), &Some(TargetDirectory::UseSubdirectory(true)));
33973395
assert!(
@@ -3414,8 +3412,7 @@ mod tests {
34143412
"rust" : { "analyzerTargetDir" : "other_folder" }
34153413
}));
34163414

3417-
let mut error_sink = ConfigError::default();
3418-
(config, _) = config.apply_change(change, &mut error_sink);
3415+
(config, _, _) = config.apply_change(change);
34193416

34203417
assert_eq!(
34213418
config.cargo_targetDir(),

src/tools/rust-analyzer/crates/rust-analyzer/src/global_state.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ impl GlobalState {
404404

405405
change
406406
};
407-
let mut error_sink = ConfigError::default();
408-
let (config, should_update) = self.config.apply_change(config_change, &mut error_sink);
407+
408+
let (config, _, should_update) = self.config.apply_change(config_change);
409409

410410
if should_update {
411411
self.update_configuration(config);

src/tools/rust-analyzer/crates/rust-analyzer/src/handlers/notification.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use triomphe::Arc;
1313
use vfs::{AbsPathBuf, ChangeKind, VfsPath};
1414

1515
use crate::{
16-
config::{Config, ConfigChange, ConfigError},
16+
config::{Config, ConfigChange},
1717
global_state::GlobalState,
1818
lsp::{from_proto, utils::apply_document_changes},
1919
lsp_ext::{self, RunFlycheckParams},
@@ -200,8 +200,9 @@ pub(crate) fn handle_did_change_configuration(
200200
let mut config = Config::clone(&*this.config);
201201
let mut change = ConfigChange::default();
202202
change.change_client_config(json.take());
203-
let mut error_sink = ConfigError::default();
204-
(config, _) = config.apply_change(change, &mut error_sink);
203+
204+
(config, _, _) = config.apply_change(change);
205+
205206
// Client config changes neccesitates .update_config method to be called.
206207
this.update_configuration(config);
207208
}

src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ use triomphe::Arc;
3333
use vfs::{AbsPath, AbsPathBuf, ChangeKind};
3434

3535
use crate::{
36-
config::{Config, ConfigChange, ConfigError, FilesWatcher, LinkedProject},
36+
config::{Config, ConfigChange, FilesWatcher, LinkedProject},
3737
global_state::GlobalState,
3838
lsp_ext,
3939
main_loop::Task,
@@ -604,8 +604,9 @@ impl GlobalState {
604604

605605
let mut config_change = ConfigChange::default();
606606
config_change.change_source_root_parent_map(self.local_roots_parent_map.clone());
607-
let mut error_sink = ConfigError::default();
608-
let (config, _) = self.config.apply_change(config_change, &mut error_sink);
607+
608+
let (config, _, _) = self.config.apply_change(config_change);
609+
609610
self.config = Arc::new(config);
610611

611612
self.recreate_crate_graph(cause);

src/tools/rust-analyzer/crates/rust-analyzer/tests/slow-tests/support.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,11 @@ impl Project<'_> {
206206
let mut change = ConfigChange::default();
207207

208208
change.change_client_config(self.config);
209-
let mut error_sink = ConfigError::default();
209+
210+
let error_sink: ConfigError;
211+
(config, error_sink, _) = config.apply_change(change);
210212
assert!(error_sink.is_empty(), "{error_sink:?}");
211-
(config, _) = config.apply_change(change, &mut error_sink);
213+
212214
config.rediscover_workspaces();
213215

214216
Server::new(tmp_dir.keep(), config)

0 commit comments

Comments
 (0)