mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Fix FS-related issues that were causing a test failure on linux (#13072)
This fixes `project_tests::rescan_and_remote_updates` . That test was actually correctly failing, revealing two bugs on Linux. Release Notes: - Fixed an issue where file renames were not detected on Linux. - Fixed performance problems caused by excessive file system events on Linux. --------- Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
fab4b01655
commit
af45db6d1e
@ -135,8 +135,6 @@ pub struct RealFs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub struct RealWatcher {
|
pub struct RealWatcher {
|
||||||
#[cfg(target_os = "linux")]
|
|
||||||
root_path: PathBuf,
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
fs_watcher: parking_lot::Mutex<notify::INotifyWatcher>,
|
fs_watcher: parking_lot::Mutex<notify::INotifyWatcher>,
|
||||||
}
|
}
|
||||||
@ -452,25 +450,38 @@ impl Fs for RealFs {
|
|||||||
async fn watch(
|
async fn watch(
|
||||||
&self,
|
&self,
|
||||||
path: &Path,
|
path: &Path,
|
||||||
_latency: Duration,
|
latency: Duration,
|
||||||
) -> (
|
) -> (
|
||||||
Pin<Box<dyn Send + Stream<Item = Vec<PathBuf>>>>,
|
Pin<Box<dyn Send + Stream<Item = Vec<PathBuf>>>>,
|
||||||
Arc<dyn Watcher>,
|
Arc<dyn Watcher>,
|
||||||
) {
|
) {
|
||||||
|
use parking_lot::Mutex;
|
||||||
|
|
||||||
let (tx, rx) = smol::channel::unbounded();
|
let (tx, rx) = smol::channel::unbounded();
|
||||||
|
let pending_paths: Arc<Mutex<Vec<PathBuf>>> = Default::default();
|
||||||
|
let root_path = path.to_path_buf();
|
||||||
|
|
||||||
let file_watcher = notify::recommended_watcher({
|
let file_watcher = notify::recommended_watcher({
|
||||||
let tx = tx.clone();
|
let tx = tx.clone();
|
||||||
|
let pending_paths = pending_paths.clone();
|
||||||
move |event: Result<notify::Event, _>| {
|
move |event: Result<notify::Event, _>| {
|
||||||
if let Some(event) = event.log_err() {
|
if let Some(event) = event.log_err() {
|
||||||
tx.try_send(event.paths).ok();
|
let mut paths = event.paths;
|
||||||
|
paths.retain(|path| path.starts_with(&root_path));
|
||||||
|
if !paths.is_empty() {
|
||||||
|
paths.sort();
|
||||||
|
let mut pending_paths = pending_paths.lock();
|
||||||
|
if pending_paths.is_empty() {
|
||||||
|
tx.try_send(()).ok();
|
||||||
|
}
|
||||||
|
util::extend_sorted(&mut *pending_paths, paths, usize::MAX, PathBuf::cmp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.expect("Could not start file watcher");
|
.expect("Could not start file watcher");
|
||||||
|
|
||||||
let watcher = Arc::new(RealWatcher {
|
let watcher = Arc::new(RealWatcher {
|
||||||
root_path: path.to_path_buf(),
|
|
||||||
fs_watcher: parking_lot::Mutex::new(file_watcher),
|
fs_watcher: parking_lot::Mutex::new(file_watcher),
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -484,14 +495,13 @@ impl Fs for RealFs {
|
|||||||
(
|
(
|
||||||
Box::pin(rx.filter_map({
|
Box::pin(rx.filter_map({
|
||||||
let watcher = watcher.clone();
|
let watcher = watcher.clone();
|
||||||
move |mut paths| {
|
move |_| {
|
||||||
paths.retain(|path| path.starts_with(&watcher.root_path));
|
let _ = watcher.clone();
|
||||||
|
let pending_paths = pending_paths.clone();
|
||||||
async move {
|
async move {
|
||||||
if paths.is_empty() {
|
smol::Timer::after(latency).await;
|
||||||
None
|
let paths = std::mem::take(&mut *pending_paths.lock());
|
||||||
} else {
|
(!paths.is_empty()).then_some(paths)
|
||||||
Some(paths)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})),
|
})),
|
||||||
|
@ -2977,8 +2977,6 @@ async fn test_save_as(cx: &mut gpui::TestAppContext) {
|
|||||||
assert_eq!(opened_buffer, buffer);
|
assert_eq!(opened_buffer, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This test is currently disabled on Linux as it fails fails pretty consistently on that target.
|
|
||||||
#[cfg(not(target_os = "linux"))]
|
|
||||||
#[gpui::test(retries = 5)]
|
#[gpui::test(retries = 5)]
|
||||||
async fn test_rescan_and_remote_updates(cx: &mut gpui::TestAppContext) {
|
async fn test_rescan_and_remote_updates(cx: &mut gpui::TestAppContext) {
|
||||||
use worktree::WorktreeModelHandle as _;
|
use worktree::WorktreeModelHandle as _;
|
||||||
|
@ -303,7 +303,7 @@ struct BackgroundScannerState {
|
|||||||
/// as part of the current update. These entry ids may be re-used
|
/// as part of the current update. These entry ids may be re-used
|
||||||
/// if the same inode is discovered at a new path, or if the given
|
/// if the same inode is discovered at a new path, or if the given
|
||||||
/// path is re-created after being deleted.
|
/// path is re-created after being deleted.
|
||||||
removed_entry_ids: HashMap<u64, ProjectEntryId>,
|
removed_entry_ids: HashMap<(u64, SystemTime), ProjectEntryId>,
|
||||||
changed_paths: Vec<Arc<Path>>,
|
changed_paths: Vec<Arc<Path>>,
|
||||||
prev_snapshot: Snapshot,
|
prev_snapshot: Snapshot,
|
||||||
}
|
}
|
||||||
@ -2638,10 +2638,13 @@ impl BackgroundScannerState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn reuse_entry_id(&mut self, entry: &mut Entry) {
|
fn reuse_entry_id(&mut self, entry: &mut Entry) {
|
||||||
if let Some(removed_entry_id) = self.removed_entry_ids.remove(&entry.inode) {
|
if let Some(mtime) = entry.mtime {
|
||||||
entry.id = removed_entry_id;
|
if let Some(removed_entry_id) = self.removed_entry_ids.remove(&(entry.inode, mtime)) {
|
||||||
} else if let Some(existing_entry) = self.snapshot.entry_for_path(&entry.path) {
|
eprintln!("detected that entry {entry:?} was renamed from inode and mtime reusing id {removed_entry_id:?}");
|
||||||
entry.id = existing_entry.id;
|
entry.id = removed_entry_id;
|
||||||
|
} else if let Some(existing_entry) = self.snapshot.entry_for_path(&entry.path) {
|
||||||
|
entry.id = existing_entry.id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2732,11 +2735,13 @@ impl BackgroundScannerState {
|
|||||||
|
|
||||||
let mut entries_by_id_edits = Vec::new();
|
let mut entries_by_id_edits = Vec::new();
|
||||||
for entry in removed_entries.cursor::<()>() {
|
for entry in removed_entries.cursor::<()>() {
|
||||||
let removed_entry_id = self
|
if let Some(mtime) = entry.mtime {
|
||||||
.removed_entry_ids
|
let removed_entry_id = self
|
||||||
.entry(entry.inode)
|
.removed_entry_ids
|
||||||
.or_insert(entry.id);
|
.entry((entry.inode, mtime))
|
||||||
*removed_entry_id = cmp::max(*removed_entry_id, entry.id);
|
.or_insert(entry.id);
|
||||||
|
*removed_entry_id = cmp::max(*removed_entry_id, entry.id);
|
||||||
|
}
|
||||||
entries_by_id_edits.push(Edit::Remove(entry.id));
|
entries_by_id_edits.push(Edit::Remove(entry.id));
|
||||||
}
|
}
|
||||||
self.snapshot.entries_by_id.edit(entries_by_id_edits, &());
|
self.snapshot.entries_by_id.edit(entries_by_id_edits, &());
|
||||||
|
Loading…
Reference in New Issue
Block a user