Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Ignore irrelevant DidChangeWatchedFiles notifications #534

Merged
merged 3 commits into from
Oct 30, 2017

Conversation

alexheretic
Copy link
Member

A big improvement for atom-ide-rust.

Resolves #531

Copy link
Member

@nrc nrc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR! The basic idea here is great, but I have a worry inline.

// ignore irrelevant files from more spammy clients
if !params.changes.iter().any(|change| {
change.uri.as_str().ends_with("/Cargo.toml") ||
change.uri.as_str().ends_with("/Cargo.lock") ||
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm a bit worried about having these strings hard-coded here, and the corresponding patterns at https://github.com/rust-lang-nursery/rls/blob/master/src/actions/notifications.rs#L46, it seems like it would be an easy mistake to change one without the other. I would like them to come from a single source of truth. I think the easiest solution is to have an object or type with methods to provide the data.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep that's probably a good shout, I'll take another look at it when I get time

@alexheretic
Copy link
Member Author

I've bound the watcher & not relevant filter together in FileWatch struct. Feel free to rename any of the methods/struct if you can think of an improvement.

The filter logic matches the glob requested. It should be obvious to keep them inline when the globs change (ie for workspaces).


let local = &path[self.project_uri.len()..];

local == "/Cargo.lock" || local == "Cargo.toml"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be /Cargo.toml?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks I'll fix that

}

impl<'ctx> FileWatch<'ctx> {
pub fn new(ctx: &'ctx InitActionContext) -> Self {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be simpler to make FileWatch a module and make the two interesting methods functions which take ctx as an arg.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This design allows fast calls of is_relevant. Notifications can include hundreds of thousands of file change references, so it makes sense to avoid allocations in the loop.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, good point! Could you leave a comment about that somewhere please?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I've added a note to the is_relevant method.


let local = &path[self.project_uri.len()..];

local == "/Cargo.lock" || local == "/Cargo.toml"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While I understand that changing Cargo.{lock, toml} files should warrant a Cargo rebuild, I think it's also reasonable not to ignore any *.rs file here, even at risk of being a bit over-eager. I think it's safe to do here and this can happen a couple of times, e.g. when files are changed via source control or when a quick fix might've been applied outside current editor.
Note to self: previous eager rebuilds on every change might've triggered unnecessary Cargo rebuilds due to build scripts and similar, so maybe it's important to ignore build script-emitted files.
While it'd be nice to still watch *.rs files, I think we can't reliably do that unless we analyze what changed externally and what changed via build, so disregard what I said and I'll just leave it here to have that in mind.

@nrc nrc merged commit 56bee0e into rust-lang:master Oct 30, 2017
@nrc
Copy link
Member

nrc commented Oct 30, 2017

Thank you!

@alexheretic alexheretic mentioned this pull request Nov 9, 2017
17 tasks
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants