worktree.rs

   1use crate::{copy_recursive, ProjectEntryId, RemoveOptions};
   2
   3use super::{
   4    fs::{self, Fs},
   5    ignore::IgnoreStack,
   6    DiagnosticSummary,
   7};
   8use ::ignore::gitignore::{Gitignore, GitignoreBuilder};
   9use anyhow::{anyhow, Context, Result};
  10use client::{proto, Client};
  11use clock::ReplicaId;
  12use collections::{HashMap, VecDeque};
  13use futures::{
  14    channel::{
  15        mpsc::{self, UnboundedSender},
  16        oneshot,
  17    },
  18    Stream, StreamExt,
  19};
  20use fuzzy::CharBag;
  21use gpui::{
  22    executor, AppContext, AsyncAppContext, Entity, ModelContext, ModelHandle, MutableAppContext,
  23    Task,
  24};
  25use language::{
  26    proto::{deserialize_version, serialize_line_ending, serialize_version},
  27    Buffer, DiagnosticEntry, LineEnding, PointUtf16, Rope,
  28};
  29use lazy_static::lazy_static;
  30use parking_lot::Mutex;
  31use postage::{
  32    prelude::{Sink as _, Stream as _},
  33    watch,
  34};
  35use smol::channel::{self, Sender};
  36use std::{
  37    any::Any,
  38    cmp::{self, Ordering},
  39    convert::TryFrom,
  40    ffi::{OsStr, OsString},
  41    fmt,
  42    future::Future,
  43    ops::{Deref, DerefMut},
  44    os::unix::prelude::{OsStrExt, OsStringExt},
  45    path::{Path, PathBuf},
  46    sync::{atomic::AtomicUsize, Arc},
  47    task::Poll,
  48    time::{Duration, SystemTime},
  49};
  50use sum_tree::{Bias, Edit, SeekTarget, SumTree, TreeMap};
  51use util::{ResultExt, TryFutureExt};
  52
  53lazy_static! {
  54    static ref GITIGNORE: &'static OsStr = OsStr::new(".gitignore");
  55}
  56
  57#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash, PartialOrd, Ord)]
  58pub struct WorktreeId(usize);
  59
  60pub enum Worktree {
  61    Local(LocalWorktree),
  62    Remote(RemoteWorktree),
  63}
  64
  65pub struct LocalWorktree {
  66    snapshot: LocalSnapshot,
  67    background_snapshot: Arc<Mutex<LocalSnapshot>>,
  68    last_scan_state_rx: watch::Receiver<ScanState>,
  69    _background_scanner_task: Option<Task<()>>,
  70    poll_task: Option<Task<()>>,
  71    share: Option<ShareState>,
  72    diagnostics: HashMap<Arc<Path>, Vec<DiagnosticEntry<PointUtf16>>>,
  73    diagnostic_summaries: TreeMap<PathKey, DiagnosticSummary>,
  74    client: Arc<Client>,
  75    fs: Arc<dyn Fs>,
  76    visible: bool,
  77}
  78
  79pub struct RemoteWorktree {
  80    pub snapshot: Snapshot,
  81    pub(crate) background_snapshot: Arc<Mutex<Snapshot>>,
  82    project_id: u64,
  83    client: Arc<Client>,
  84    updates_tx: Option<UnboundedSender<proto::UpdateWorktree>>,
  85    snapshot_subscriptions: VecDeque<(usize, oneshot::Sender<()>)>,
  86    replica_id: ReplicaId,
  87    diagnostic_summaries: TreeMap<PathKey, DiagnosticSummary>,
  88    visible: bool,
  89}
  90
  91#[derive(Clone)]
  92pub struct Snapshot {
  93    id: WorktreeId,
  94    root_name: String,
  95    root_char_bag: CharBag,
  96    entries_by_path: SumTree<Entry>,
  97    entries_by_id: SumTree<PathEntry>,
  98    scan_id: usize,
  99    is_complete: bool,
 100}
 101
 102#[derive(Clone)]
 103pub struct LocalSnapshot {
 104    abs_path: Arc<Path>,
 105    ignores_by_parent_abs_path: HashMap<Arc<Path>, (Arc<Gitignore>, usize)>,
 106    removed_entry_ids: HashMap<u64, ProjectEntryId>,
 107    next_entry_id: Arc<AtomicUsize>,
 108    snapshot: Snapshot,
 109    extension_counts: HashMap<OsString, usize>,
 110}
 111
 112impl Deref for LocalSnapshot {
 113    type Target = Snapshot;
 114
 115    fn deref(&self) -> &Self::Target {
 116        &self.snapshot
 117    }
 118}
 119
 120impl DerefMut for LocalSnapshot {
 121    fn deref_mut(&mut self) -> &mut Self::Target {
 122        &mut self.snapshot
 123    }
 124}
 125
 126#[derive(Clone, Debug)]
 127enum ScanState {
 128    Idle,
 129    /// The worktree is performing its initial scan of the filesystem.
 130    Initializing,
 131    /// The worktree is updating in response to filesystem events.
 132    Updating,
 133    Err(Arc<anyhow::Error>),
 134}
 135
 136struct ShareState {
 137    project_id: u64,
 138    snapshots_tx: watch::Sender<LocalSnapshot>,
 139    _maintain_remote_snapshot: Option<Task<Option<()>>>,
 140}
 141
 142pub enum Event {
 143    UpdatedEntries,
 144}
 145
 146impl Entity for Worktree {
 147    type Event = Event;
 148}
 149
 150impl Worktree {
 151    pub async fn local(
 152        client: Arc<Client>,
 153        path: impl Into<Arc<Path>>,
 154        visible: bool,
 155        fs: Arc<dyn Fs>,
 156        next_entry_id: Arc<AtomicUsize>,
 157        cx: &mut AsyncAppContext,
 158    ) -> Result<ModelHandle<Self>> {
 159        let (tree, scan_states_tx) =
 160            LocalWorktree::new(client, path, visible, fs.clone(), next_entry_id, cx).await?;
 161        tree.update(cx, |tree, cx| {
 162            let tree = tree.as_local_mut().unwrap();
 163            let abs_path = tree.abs_path().clone();
 164            let background_snapshot = tree.background_snapshot.clone();
 165            let background = cx.background().clone();
 166            tree._background_scanner_task = Some(cx.background().spawn(async move {
 167                let events = fs.watch(&abs_path, Duration::from_millis(100)).await;
 168                let scanner =
 169                    BackgroundScanner::new(background_snapshot, scan_states_tx, fs, background);
 170                scanner.run(events).await;
 171            }));
 172        });
 173        Ok(tree)
 174    }
 175
 176    pub fn remote(
 177        project_remote_id: u64,
 178        replica_id: ReplicaId,
 179        worktree: proto::WorktreeMetadata,
 180        client: Arc<Client>,
 181        cx: &mut MutableAppContext,
 182    ) -> ModelHandle<Self> {
 183        let remote_id = worktree.id;
 184        let root_char_bag: CharBag = worktree
 185            .root_name
 186            .chars()
 187            .map(|c| c.to_ascii_lowercase())
 188            .collect();
 189        let root_name = worktree.root_name.clone();
 190        let visible = worktree.visible;
 191        let snapshot = Snapshot {
 192            id: WorktreeId(remote_id as usize),
 193            root_name,
 194            root_char_bag,
 195            entries_by_path: Default::default(),
 196            entries_by_id: Default::default(),
 197            scan_id: 0,
 198            is_complete: false,
 199        };
 200
 201        let (updates_tx, mut updates_rx) = mpsc::unbounded();
 202        let background_snapshot = Arc::new(Mutex::new(snapshot.clone()));
 203        let (mut snapshot_updated_tx, mut snapshot_updated_rx) = watch::channel();
 204        let worktree_handle = cx.add_model(|_: &mut ModelContext<Worktree>| {
 205            Worktree::Remote(RemoteWorktree {
 206                project_id: project_remote_id,
 207                replica_id,
 208                snapshot: snapshot.clone(),
 209                background_snapshot: background_snapshot.clone(),
 210                updates_tx: Some(updates_tx),
 211                snapshot_subscriptions: Default::default(),
 212                client: client.clone(),
 213                diagnostic_summaries: Default::default(),
 214                visible,
 215            })
 216        });
 217
 218        cx.background()
 219            .spawn(async move {
 220                while let Some(update) = updates_rx.next().await {
 221                    if let Err(error) = background_snapshot.lock().apply_remote_update(update) {
 222                        log::error!("error applying worktree update: {}", error);
 223                    }
 224                    snapshot_updated_tx.send(()).await.ok();
 225                }
 226            })
 227            .detach();
 228
 229        cx.spawn(|mut cx| {
 230            let this = worktree_handle.downgrade();
 231            async move {
 232                while let Some(_) = snapshot_updated_rx.recv().await {
 233                    if let Some(this) = this.upgrade(&cx) {
 234                        this.update(&mut cx, |this, cx| {
 235                            this.poll_snapshot(cx);
 236                            let this = this.as_remote_mut().unwrap();
 237                            while let Some((scan_id, _)) = this.snapshot_subscriptions.front() {
 238                                if this.observed_snapshot(*scan_id) {
 239                                    let (_, tx) = this.snapshot_subscriptions.pop_front().unwrap();
 240                                    let _ = tx.send(());
 241                                } else {
 242                                    break;
 243                                }
 244                            }
 245                        });
 246                    } else {
 247                        break;
 248                    }
 249                }
 250            }
 251        })
 252        .detach();
 253
 254        worktree_handle
 255    }
 256
 257    pub fn as_local(&self) -> Option<&LocalWorktree> {
 258        if let Worktree::Local(worktree) = self {
 259            Some(worktree)
 260        } else {
 261            None
 262        }
 263    }
 264
 265    pub fn as_remote(&self) -> Option<&RemoteWorktree> {
 266        if let Worktree::Remote(worktree) = self {
 267            Some(worktree)
 268        } else {
 269            None
 270        }
 271    }
 272
 273    pub fn as_local_mut(&mut self) -> Option<&mut LocalWorktree> {
 274        if let Worktree::Local(worktree) = self {
 275            Some(worktree)
 276        } else {
 277            None
 278        }
 279    }
 280
 281    pub fn as_remote_mut(&mut self) -> Option<&mut RemoteWorktree> {
 282        if let Worktree::Remote(worktree) = self {
 283            Some(worktree)
 284        } else {
 285            None
 286        }
 287    }
 288
 289    pub fn is_local(&self) -> bool {
 290        matches!(self, Worktree::Local(_))
 291    }
 292
 293    pub fn is_remote(&self) -> bool {
 294        !self.is_local()
 295    }
 296
 297    pub fn snapshot(&self) -> Snapshot {
 298        match self {
 299            Worktree::Local(worktree) => worktree.snapshot().snapshot,
 300            Worktree::Remote(worktree) => worktree.snapshot(),
 301        }
 302    }
 303
 304    pub fn scan_id(&self) -> usize {
 305        match self {
 306            Worktree::Local(worktree) => worktree.snapshot.scan_id,
 307            Worktree::Remote(worktree) => worktree.snapshot.scan_id,
 308        }
 309    }
 310
 311    pub fn is_visible(&self) -> bool {
 312        match self {
 313            Worktree::Local(worktree) => worktree.visible,
 314            Worktree::Remote(worktree) => worktree.visible,
 315        }
 316    }
 317
 318    pub fn replica_id(&self) -> ReplicaId {
 319        match self {
 320            Worktree::Local(_) => 0,
 321            Worktree::Remote(worktree) => worktree.replica_id,
 322        }
 323    }
 324
 325    pub fn diagnostic_summaries<'a>(
 326        &'a self,
 327    ) -> impl Iterator<Item = (Arc<Path>, DiagnosticSummary)> + 'a {
 328        match self {
 329            Worktree::Local(worktree) => &worktree.diagnostic_summaries,
 330            Worktree::Remote(worktree) => &worktree.diagnostic_summaries,
 331        }
 332        .iter()
 333        .map(|(path, summary)| (path.0.clone(), summary.clone()))
 334    }
 335
 336    fn poll_snapshot(&mut self, cx: &mut ModelContext<Self>) {
 337        match self {
 338            Self::Local(worktree) => worktree.poll_snapshot(false, cx),
 339            Self::Remote(worktree) => worktree.poll_snapshot(cx),
 340        };
 341    }
 342}
 343
 344impl LocalWorktree {
 345    async fn new(
 346        client: Arc<Client>,
 347        path: impl Into<Arc<Path>>,
 348        visible: bool,
 349        fs: Arc<dyn Fs>,
 350        next_entry_id: Arc<AtomicUsize>,
 351        cx: &mut AsyncAppContext,
 352    ) -> Result<(ModelHandle<Worktree>, UnboundedSender<ScanState>)> {
 353        let abs_path = path.into();
 354        let path: Arc<Path> = Arc::from(Path::new(""));
 355
 356        // After determining whether the root entry is a file or a directory, populate the
 357        // snapshot's "root name", which will be used for the purpose of fuzzy matching.
 358        let root_name = abs_path
 359            .file_name()
 360            .map_or(String::new(), |f| f.to_string_lossy().to_string());
 361        let root_char_bag = root_name.chars().map(|c| c.to_ascii_lowercase()).collect();
 362        let metadata = fs
 363            .metadata(&abs_path)
 364            .await
 365            .context("failed to stat worktree path")?;
 366
 367        let (scan_states_tx, mut scan_states_rx) = mpsc::unbounded();
 368        let (mut last_scan_state_tx, last_scan_state_rx) =
 369            watch::channel_with(ScanState::Initializing);
 370        let tree = cx.add_model(move |cx: &mut ModelContext<Worktree>| {
 371            let mut snapshot = LocalSnapshot {
 372                abs_path,
 373                ignores_by_parent_abs_path: Default::default(),
 374                removed_entry_ids: Default::default(),
 375                next_entry_id,
 376                snapshot: Snapshot {
 377                    id: WorktreeId::from_usize(cx.model_id()),
 378                    root_name: root_name.clone(),
 379                    root_char_bag,
 380                    entries_by_path: Default::default(),
 381                    entries_by_id: Default::default(),
 382                    scan_id: 0,
 383                    is_complete: true,
 384                },
 385                extension_counts: Default::default(),
 386            };
 387            if let Some(metadata) = metadata {
 388                let entry = Entry::new(
 389                    path.into(),
 390                    &metadata,
 391                    &snapshot.next_entry_id,
 392                    snapshot.root_char_bag,
 393                );
 394                snapshot.insert_entry(entry, fs.as_ref());
 395            }
 396
 397            let tree = Self {
 398                snapshot: snapshot.clone(),
 399                background_snapshot: Arc::new(Mutex::new(snapshot)),
 400                last_scan_state_rx,
 401                _background_scanner_task: None,
 402                share: None,
 403                poll_task: None,
 404                diagnostics: Default::default(),
 405                diagnostic_summaries: Default::default(),
 406                client,
 407                fs,
 408                visible,
 409            };
 410
 411            cx.spawn_weak(|this, mut cx| async move {
 412                while let Some(scan_state) = scan_states_rx.next().await {
 413                    if let Some(this) = this.upgrade(&cx) {
 414                        last_scan_state_tx.blocking_send(scan_state).ok();
 415                        this.update(&mut cx, |this, cx| this.poll_snapshot(cx));
 416                    } else {
 417                        break;
 418                    }
 419                }
 420            })
 421            .detach();
 422
 423            Worktree::Local(tree)
 424        });
 425
 426        Ok((tree, scan_states_tx))
 427    }
 428
 429    pub fn contains_abs_path(&self, path: &Path) -> bool {
 430        path.starts_with(&self.abs_path)
 431    }
 432
 433    fn absolutize(&self, path: &Path) -> PathBuf {
 434        if path.file_name().is_some() {
 435            self.abs_path.join(path)
 436        } else {
 437            self.abs_path.to_path_buf()
 438        }
 439    }
 440
 441    pub(crate) fn load_buffer(
 442        &mut self,
 443        path: &Path,
 444        cx: &mut ModelContext<Worktree>,
 445    ) -> Task<Result<ModelHandle<Buffer>>> {
 446        let path = Arc::from(path);
 447        cx.spawn(move |this, mut cx| async move {
 448            let (file, contents) = this
 449                .update(&mut cx, |t, cx| t.as_local().unwrap().load(&path, cx))
 450                .await?;
 451            Ok(cx.add_model(|cx| Buffer::from_file(0, contents, Arc::new(file), cx)))
 452        })
 453    }
 454
 455    pub fn diagnostics_for_path(&self, path: &Path) -> Option<Vec<DiagnosticEntry<PointUtf16>>> {
 456        self.diagnostics.get(path).cloned()
 457    }
 458
 459    pub fn update_diagnostics(
 460        &mut self,
 461        language_server_id: usize,
 462        worktree_path: Arc<Path>,
 463        diagnostics: Vec<DiagnosticEntry<PointUtf16>>,
 464        _: &mut ModelContext<Worktree>,
 465    ) -> Result<bool> {
 466        self.diagnostics.remove(&worktree_path);
 467        let old_summary = self
 468            .diagnostic_summaries
 469            .remove(&PathKey(worktree_path.clone()))
 470            .unwrap_or_default();
 471        let new_summary = DiagnosticSummary::new(language_server_id, &diagnostics);
 472        if !new_summary.is_empty() {
 473            self.diagnostic_summaries
 474                .insert(PathKey(worktree_path.clone()), new_summary);
 475            self.diagnostics.insert(worktree_path.clone(), diagnostics);
 476        }
 477
 478        let updated = !old_summary.is_empty() || !new_summary.is_empty();
 479        if updated {
 480            if let Some(share) = self.share.as_ref() {
 481                self.client
 482                    .send(proto::UpdateDiagnosticSummary {
 483                        project_id: share.project_id,
 484                        worktree_id: self.id().to_proto(),
 485                        summary: Some(proto::DiagnosticSummary {
 486                            path: worktree_path.to_string_lossy().to_string(),
 487                            language_server_id: language_server_id as u64,
 488                            error_count: new_summary.error_count as u32,
 489                            warning_count: new_summary.warning_count as u32,
 490                        }),
 491                    })
 492                    .log_err();
 493            }
 494        }
 495
 496        Ok(updated)
 497    }
 498
 499    fn poll_snapshot(&mut self, force: bool, cx: &mut ModelContext<Worktree>) {
 500        self.poll_task.take();
 501        match self.scan_state() {
 502            ScanState::Idle => {
 503                self.snapshot = self.background_snapshot.lock().clone();
 504                if let Some(share) = self.share.as_mut() {
 505                    *share.snapshots_tx.borrow_mut() = self.snapshot.clone();
 506                }
 507                cx.emit(Event::UpdatedEntries);
 508            }
 509            ScanState::Initializing => {
 510                let is_fake_fs = self.fs.is_fake();
 511                self.snapshot = self.background_snapshot.lock().clone();
 512                self.poll_task = Some(cx.spawn_weak(|this, mut cx| async move {
 513                    if is_fake_fs {
 514                        #[cfg(any(test, feature = "test-support"))]
 515                        cx.background().simulate_random_delay().await;
 516                    } else {
 517                        smol::Timer::after(Duration::from_millis(100)).await;
 518                    }
 519                    if let Some(this) = this.upgrade(&cx) {
 520                        this.update(&mut cx, |this, cx| this.poll_snapshot(cx));
 521                    }
 522                }));
 523                cx.emit(Event::UpdatedEntries);
 524            }
 525            _ => {
 526                if force {
 527                    self.snapshot = self.background_snapshot.lock().clone();
 528                }
 529            }
 530        }
 531        cx.notify();
 532    }
 533
 534    pub fn scan_complete(&self) -> impl Future<Output = ()> {
 535        let mut scan_state_rx = self.last_scan_state_rx.clone();
 536        async move {
 537            let mut scan_state = Some(scan_state_rx.borrow().clone());
 538            while let Some(ScanState::Initializing | ScanState::Updating) = scan_state {
 539                scan_state = scan_state_rx.recv().await;
 540            }
 541        }
 542    }
 543
 544    fn scan_state(&self) -> ScanState {
 545        self.last_scan_state_rx.borrow().clone()
 546    }
 547
 548    pub fn snapshot(&self) -> LocalSnapshot {
 549        self.snapshot.clone()
 550    }
 551
 552    pub fn metadata_proto(&self) -> proto::WorktreeMetadata {
 553        proto::WorktreeMetadata {
 554            id: self.id().to_proto(),
 555            root_name: self.root_name().to_string(),
 556            visible: self.visible,
 557        }
 558    }
 559
 560    fn load(&self, path: &Path, cx: &mut ModelContext<Worktree>) -> Task<Result<(File, String)>> {
 561        let handle = cx.handle();
 562        let path = Arc::from(path);
 563        let abs_path = self.absolutize(&path);
 564        let fs = self.fs.clone();
 565        cx.spawn(|this, mut cx| async move {
 566            let text = fs.load(&abs_path).await?;
 567            // Eagerly populate the snapshot with an updated entry for the loaded file
 568            let entry = this
 569                .update(&mut cx, |this, cx| {
 570                    this.as_local()
 571                        .unwrap()
 572                        .refresh_entry(path, abs_path, None, cx)
 573                })
 574                .await?;
 575            Ok((
 576                File {
 577                    entry_id: Some(entry.id),
 578                    worktree: handle,
 579                    path: entry.path,
 580                    mtime: entry.mtime,
 581                    is_local: true,
 582                },
 583                text,
 584            ))
 585        })
 586    }
 587
 588    pub fn save_buffer_as(
 589        &self,
 590        buffer_handle: ModelHandle<Buffer>,
 591        path: impl Into<Arc<Path>>,
 592        cx: &mut ModelContext<Worktree>,
 593    ) -> Task<Result<()>> {
 594        let buffer = buffer_handle.read(cx);
 595        let text = buffer.as_rope().clone();
 596        let fingerprint = text.fingerprint();
 597        let version = buffer.version();
 598        let save = self.write_file(path, text, buffer.line_ending(), cx);
 599        let handle = cx.handle();
 600        cx.as_mut().spawn(|mut cx| async move {
 601            let entry = save.await?;
 602            let file = File {
 603                entry_id: Some(entry.id),
 604                worktree: handle,
 605                path: entry.path,
 606                mtime: entry.mtime,
 607                is_local: true,
 608            };
 609
 610            buffer_handle.update(&mut cx, |buffer, cx| {
 611                buffer.did_save(version, fingerprint, file.mtime, Some(Arc::new(file)), cx);
 612            });
 613
 614            Ok(())
 615        })
 616    }
 617
 618    pub fn create_entry(
 619        &self,
 620        path: impl Into<Arc<Path>>,
 621        is_dir: bool,
 622        cx: &mut ModelContext<Worktree>,
 623    ) -> Task<Result<Entry>> {
 624        self.write_entry_internal(
 625            path,
 626            if is_dir {
 627                None
 628            } else {
 629                Some(Default::default())
 630            },
 631            cx,
 632        )
 633    }
 634
 635    pub fn write_file(
 636        &self,
 637        path: impl Into<Arc<Path>>,
 638        text: Rope,
 639        line_ending: LineEnding,
 640        cx: &mut ModelContext<Worktree>,
 641    ) -> Task<Result<Entry>> {
 642        self.write_entry_internal(path, Some((text, line_ending)), cx)
 643    }
 644
 645    pub fn delete_entry(
 646        &self,
 647        entry_id: ProjectEntryId,
 648        cx: &mut ModelContext<Worktree>,
 649    ) -> Option<Task<Result<()>>> {
 650        let entry = self.entry_for_id(entry_id)?.clone();
 651        let abs_path = self.absolutize(&entry.path);
 652        let delete = cx.background().spawn({
 653            let fs = self.fs.clone();
 654            let abs_path = abs_path.clone();
 655            async move {
 656                if entry.is_file() {
 657                    fs.remove_file(&abs_path, Default::default()).await
 658                } else {
 659                    fs.remove_dir(
 660                        &abs_path,
 661                        RemoveOptions {
 662                            recursive: true,
 663                            ignore_if_not_exists: false,
 664                        },
 665                    )
 666                    .await
 667                }
 668            }
 669        });
 670
 671        Some(cx.spawn(|this, mut cx| async move {
 672            delete.await?;
 673            this.update(&mut cx, |this, cx| {
 674                let this = this.as_local_mut().unwrap();
 675                {
 676                    let mut snapshot = this.background_snapshot.lock();
 677                    snapshot.delete_entry(entry_id);
 678                }
 679                this.poll_snapshot(true, cx);
 680            });
 681            Ok(())
 682        }))
 683    }
 684
 685    pub fn rename_entry(
 686        &self,
 687        entry_id: ProjectEntryId,
 688        new_path: impl Into<Arc<Path>>,
 689        cx: &mut ModelContext<Worktree>,
 690    ) -> Option<Task<Result<Entry>>> {
 691        let old_path = self.entry_for_id(entry_id)?.path.clone();
 692        let new_path = new_path.into();
 693        let abs_old_path = self.absolutize(&old_path);
 694        let abs_new_path = self.absolutize(&new_path);
 695        let rename = cx.background().spawn({
 696            let fs = self.fs.clone();
 697            let abs_new_path = abs_new_path.clone();
 698            async move {
 699                fs.rename(&abs_old_path, &abs_new_path, Default::default())
 700                    .await
 701            }
 702        });
 703
 704        Some(cx.spawn(|this, mut cx| async move {
 705            rename.await?;
 706            let entry = this
 707                .update(&mut cx, |this, cx| {
 708                    this.as_local_mut().unwrap().refresh_entry(
 709                        new_path.clone(),
 710                        abs_new_path,
 711                        Some(old_path),
 712                        cx,
 713                    )
 714                })
 715                .await?;
 716            Ok(entry)
 717        }))
 718    }
 719
 720    pub fn copy_entry(
 721        &self,
 722        entry_id: ProjectEntryId,
 723        new_path: impl Into<Arc<Path>>,
 724        cx: &mut ModelContext<Worktree>,
 725    ) -> Option<Task<Result<Entry>>> {
 726        let old_path = self.entry_for_id(entry_id)?.path.clone();
 727        let new_path = new_path.into();
 728        let abs_old_path = self.absolutize(&old_path);
 729        let abs_new_path = self.absolutize(&new_path);
 730        let copy = cx.background().spawn({
 731            let fs = self.fs.clone();
 732            let abs_new_path = abs_new_path.clone();
 733            async move {
 734                copy_recursive(
 735                    fs.as_ref(),
 736                    &abs_old_path,
 737                    &abs_new_path,
 738                    Default::default(),
 739                )
 740                .await
 741            }
 742        });
 743
 744        Some(cx.spawn(|this, mut cx| async move {
 745            copy.await?;
 746            let entry = this
 747                .update(&mut cx, |this, cx| {
 748                    this.as_local_mut().unwrap().refresh_entry(
 749                        new_path.clone(),
 750                        abs_new_path,
 751                        None,
 752                        cx,
 753                    )
 754                })
 755                .await?;
 756            Ok(entry)
 757        }))
 758    }
 759
 760    fn write_entry_internal(
 761        &self,
 762        path: impl Into<Arc<Path>>,
 763        text_if_file: Option<(Rope, LineEnding)>,
 764        cx: &mut ModelContext<Worktree>,
 765    ) -> Task<Result<Entry>> {
 766        let path = path.into();
 767        let abs_path = self.absolutize(&path);
 768        let write = cx.background().spawn({
 769            let fs = self.fs.clone();
 770            let abs_path = abs_path.clone();
 771            async move {
 772                if let Some((text, line_ending)) = text_if_file {
 773                    fs.save(&abs_path, &text, line_ending).await
 774                } else {
 775                    fs.create_dir(&abs_path).await
 776                }
 777            }
 778        });
 779
 780        cx.spawn(|this, mut cx| async move {
 781            write.await?;
 782            let entry = this
 783                .update(&mut cx, |this, cx| {
 784                    this.as_local_mut()
 785                        .unwrap()
 786                        .refresh_entry(path, abs_path, None, cx)
 787                })
 788                .await?;
 789            Ok(entry)
 790        })
 791    }
 792
 793    fn refresh_entry(
 794        &self,
 795        path: Arc<Path>,
 796        abs_path: PathBuf,
 797        old_path: Option<Arc<Path>>,
 798        cx: &mut ModelContext<Worktree>,
 799    ) -> Task<Result<Entry>> {
 800        let fs = self.fs.clone();
 801        let root_char_bag;
 802        let next_entry_id;
 803        {
 804            let snapshot = self.background_snapshot.lock();
 805            root_char_bag = snapshot.root_char_bag;
 806            next_entry_id = snapshot.next_entry_id.clone();
 807        }
 808        cx.spawn_weak(|this, mut cx| async move {
 809            let mut entry = Entry::new(
 810                path.clone(),
 811                &fs.metadata(&abs_path)
 812                    .await?
 813                    .ok_or_else(|| anyhow!("could not read saved file metadata"))?,
 814                &next_entry_id,
 815                root_char_bag,
 816            );
 817
 818            let this = this
 819                .upgrade(&cx)
 820                .ok_or_else(|| anyhow!("worktree was dropped"))?;
 821            this.update(&mut cx, |this, cx| {
 822                let this = this.as_local_mut().unwrap();
 823                let inserted_entry;
 824                {
 825                    let mut snapshot = this.background_snapshot.lock();
 826                    entry.is_ignored = snapshot
 827                        .ignore_stack_for_abs_path(&abs_path, entry.is_dir())
 828                        .is_abs_path_ignored(&abs_path, entry.is_dir());
 829                    if let Some(old_path) = old_path {
 830                        snapshot.remove_path(&old_path);
 831                    }
 832                    inserted_entry = snapshot.insert_entry(entry, fs.as_ref());
 833                    snapshot.scan_id += 1;
 834                }
 835                this.poll_snapshot(true, cx);
 836                Ok(inserted_entry)
 837            })
 838        })
 839    }
 840
 841    pub fn share(&mut self, project_id: u64, cx: &mut ModelContext<Worktree>) -> Task<Result<()>> {
 842        let (share_tx, share_rx) = oneshot::channel();
 843
 844        if self.share.is_some() {
 845            let _ = share_tx.send(Ok(()));
 846        } else {
 847            let (snapshots_tx, mut snapshots_rx) = watch::channel_with(self.snapshot());
 848            let rpc = self.client.clone();
 849            let worktree_id = cx.model_id() as u64;
 850            let maintain_remote_snapshot = cx.background().spawn({
 851                let rpc = rpc.clone();
 852                let diagnostic_summaries = self.diagnostic_summaries.clone();
 853                async move {
 854                    let mut prev_snapshot = match snapshots_rx.recv().await {
 855                        Some(snapshot) => {
 856                            let update = proto::UpdateWorktree {
 857                                project_id,
 858                                worktree_id,
 859                                root_name: snapshot.root_name().to_string(),
 860                                updated_entries: snapshot
 861                                    .entries_by_path
 862                                    .iter()
 863                                    .map(Into::into)
 864                                    .collect(),
 865                                removed_entries: Default::default(),
 866                                scan_id: snapshot.scan_id as u64,
 867                                is_last_update: true,
 868                            };
 869                            if let Err(error) = send_worktree_update(&rpc, update).await {
 870                                let _ = share_tx.send(Err(error));
 871                                return Err(anyhow!("failed to send initial update worktree"));
 872                            } else {
 873                                let _ = share_tx.send(Ok(()));
 874                                snapshot
 875                            }
 876                        }
 877                        None => {
 878                            share_tx
 879                                .send(Err(anyhow!("worktree dropped before share completed")))
 880                                .ok();
 881                            return Err(anyhow!("failed to send initial update worktree"));
 882                        }
 883                    };
 884
 885                    for (path, summary) in diagnostic_summaries.iter() {
 886                        rpc.send(proto::UpdateDiagnosticSummary {
 887                            project_id,
 888                            worktree_id,
 889                            summary: Some(summary.to_proto(&path.0)),
 890                        })?;
 891                    }
 892
 893                    while let Some(snapshot) = snapshots_rx.recv().await {
 894                        send_worktree_update(
 895                            &rpc,
 896                            snapshot.build_update(&prev_snapshot, project_id, worktree_id, true),
 897                        )
 898                        .await?;
 899                        prev_snapshot = snapshot;
 900                    }
 901
 902                    Ok::<_, anyhow::Error>(())
 903                }
 904                .log_err()
 905            });
 906            self.share = Some(ShareState {
 907                project_id,
 908                snapshots_tx,
 909                _maintain_remote_snapshot: Some(maintain_remote_snapshot),
 910            });
 911        }
 912
 913        cx.foreground().spawn(async move {
 914            share_rx
 915                .await
 916                .unwrap_or_else(|_| Err(anyhow!("share ended")))
 917        })
 918    }
 919
 920    pub fn unshare(&mut self) {
 921        self.share.take();
 922    }
 923
 924    pub fn is_shared(&self) -> bool {
 925        self.share.is_some()
 926    }
 927
 928    pub fn send_extension_counts(&self, project_id: u64) {
 929        let mut extensions = Vec::new();
 930        let mut counts = Vec::new();
 931
 932        for (extension, count) in self.extension_counts() {
 933            extensions.push(extension.to_string_lossy().to_string());
 934            counts.push(*count as u32);
 935        }
 936
 937        self.client
 938            .send(proto::UpdateWorktreeExtensions {
 939                project_id,
 940                worktree_id: self.id().to_proto(),
 941                extensions,
 942                counts,
 943            })
 944            .log_err();
 945    }
 946}
 947
 948impl RemoteWorktree {
 949    fn snapshot(&self) -> Snapshot {
 950        self.snapshot.clone()
 951    }
 952
 953    fn poll_snapshot(&mut self, cx: &mut ModelContext<Worktree>) {
 954        self.snapshot = self.background_snapshot.lock().clone();
 955        cx.emit(Event::UpdatedEntries);
 956        cx.notify();
 957    }
 958
 959    pub fn disconnected_from_host(&mut self) {
 960        self.updates_tx.take();
 961        self.snapshot_subscriptions.clear();
 962    }
 963
 964    pub fn update_from_remote(&mut self, update: proto::UpdateWorktree) {
 965        if let Some(updates_tx) = &self.updates_tx {
 966            updates_tx
 967                .unbounded_send(update)
 968                .expect("consumer runs to completion");
 969        }
 970    }
 971
 972    fn observed_snapshot(&self, scan_id: usize) -> bool {
 973        self.scan_id > scan_id || (self.scan_id == scan_id && self.is_complete)
 974    }
 975
 976    fn wait_for_snapshot(&mut self, scan_id: usize) -> impl Future<Output = ()> {
 977        let (tx, rx) = oneshot::channel();
 978        if self.observed_snapshot(scan_id) {
 979            let _ = tx.send(());
 980        } else {
 981            match self
 982                .snapshot_subscriptions
 983                .binary_search_by_key(&scan_id, |probe| probe.0)
 984            {
 985                Ok(ix) | Err(ix) => self.snapshot_subscriptions.insert(ix, (scan_id, tx)),
 986            }
 987        }
 988
 989        async move {
 990            let _ = rx.await;
 991        }
 992    }
 993
 994    pub fn update_diagnostic_summary(
 995        &mut self,
 996        path: Arc<Path>,
 997        summary: &proto::DiagnosticSummary,
 998    ) {
 999        let summary = DiagnosticSummary {
1000            language_server_id: summary.language_server_id as usize,
1001            error_count: summary.error_count as usize,
1002            warning_count: summary.warning_count as usize,
1003        };
1004        if summary.is_empty() {
1005            self.diagnostic_summaries.remove(&PathKey(path.clone()));
1006        } else {
1007            self.diagnostic_summaries
1008                .insert(PathKey(path.clone()), summary);
1009        }
1010    }
1011
1012    pub fn insert_entry(
1013        &mut self,
1014        entry: proto::Entry,
1015        scan_id: usize,
1016        cx: &mut ModelContext<Worktree>,
1017    ) -> Task<Result<Entry>> {
1018        let wait_for_snapshot = self.wait_for_snapshot(scan_id);
1019        cx.spawn(|this, mut cx| async move {
1020            wait_for_snapshot.await;
1021            this.update(&mut cx, |worktree, _| {
1022                let worktree = worktree.as_remote_mut().unwrap();
1023                let mut snapshot = worktree.background_snapshot.lock();
1024                let entry = snapshot.insert_entry(entry);
1025                worktree.snapshot = snapshot.clone();
1026                entry
1027            })
1028        })
1029    }
1030
1031    pub(crate) fn delete_entry(
1032        &mut self,
1033        id: ProjectEntryId,
1034        scan_id: usize,
1035        cx: &mut ModelContext<Worktree>,
1036    ) -> Task<Result<()>> {
1037        let wait_for_snapshot = self.wait_for_snapshot(scan_id);
1038        cx.spawn(|this, mut cx| async move {
1039            wait_for_snapshot.await;
1040            this.update(&mut cx, |worktree, _| {
1041                let worktree = worktree.as_remote_mut().unwrap();
1042                let mut snapshot = worktree.background_snapshot.lock();
1043                snapshot.delete_entry(id);
1044                worktree.snapshot = snapshot.clone();
1045            });
1046            Ok(())
1047        })
1048    }
1049}
1050
1051impl Snapshot {
1052    pub fn id(&self) -> WorktreeId {
1053        self.id
1054    }
1055
1056    pub fn contains_entry(&self, entry_id: ProjectEntryId) -> bool {
1057        self.entries_by_id.get(&entry_id, &()).is_some()
1058    }
1059
1060    pub(crate) fn insert_entry(&mut self, entry: proto::Entry) -> Result<Entry> {
1061        let entry = Entry::try_from((&self.root_char_bag, entry))?;
1062        let old_entry = self.entries_by_id.insert_or_replace(
1063            PathEntry {
1064                id: entry.id,
1065                path: entry.path.clone(),
1066                is_ignored: entry.is_ignored,
1067                scan_id: 0,
1068            },
1069            &(),
1070        );
1071        if let Some(old_entry) = old_entry {
1072            self.entries_by_path.remove(&PathKey(old_entry.path), &());
1073        }
1074        self.entries_by_path.insert_or_replace(entry.clone(), &());
1075        Ok(entry)
1076    }
1077
1078    fn delete_entry(&mut self, entry_id: ProjectEntryId) -> bool {
1079        if let Some(removed_entry) = self.entries_by_id.remove(&entry_id, &()) {
1080            self.entries_by_path = {
1081                let mut cursor = self.entries_by_path.cursor();
1082                let mut new_entries_by_path =
1083                    cursor.slice(&TraversalTarget::Path(&removed_entry.path), Bias::Left, &());
1084                while let Some(entry) = cursor.item() {
1085                    if entry.path.starts_with(&removed_entry.path) {
1086                        self.entries_by_id.remove(&entry.id, &());
1087                        cursor.next(&());
1088                    } else {
1089                        break;
1090                    }
1091                }
1092                new_entries_by_path.push_tree(cursor.suffix(&()), &());
1093                new_entries_by_path
1094            };
1095
1096            true
1097        } else {
1098            false
1099        }
1100    }
1101
1102    pub(crate) fn apply_remote_update(&mut self, update: proto::UpdateWorktree) -> Result<()> {
1103        let mut entries_by_path_edits = Vec::new();
1104        let mut entries_by_id_edits = Vec::new();
1105        for entry_id in update.removed_entries {
1106            let entry = self
1107                .entry_for_id(ProjectEntryId::from_proto(entry_id))
1108                .ok_or_else(|| anyhow!("unknown entry {}", entry_id))?;
1109            entries_by_path_edits.push(Edit::Remove(PathKey(entry.path.clone())));
1110            entries_by_id_edits.push(Edit::Remove(entry.id));
1111        }
1112
1113        for entry in update.updated_entries {
1114            let entry = Entry::try_from((&self.root_char_bag, entry))?;
1115            if let Some(PathEntry { path, .. }) = self.entries_by_id.get(&entry.id, &()) {
1116                entries_by_path_edits.push(Edit::Remove(PathKey(path.clone())));
1117            }
1118            entries_by_id_edits.push(Edit::Insert(PathEntry {
1119                id: entry.id,
1120                path: entry.path.clone(),
1121                is_ignored: entry.is_ignored,
1122                scan_id: 0,
1123            }));
1124            entries_by_path_edits.push(Edit::Insert(entry));
1125        }
1126
1127        self.entries_by_path.edit(entries_by_path_edits, &());
1128        self.entries_by_id.edit(entries_by_id_edits, &());
1129        self.scan_id = update.scan_id as usize;
1130        self.is_complete = update.is_last_update;
1131
1132        Ok(())
1133    }
1134
1135    pub fn file_count(&self) -> usize {
1136        self.entries_by_path.summary().file_count
1137    }
1138
1139    pub fn visible_file_count(&self) -> usize {
1140        self.entries_by_path.summary().visible_file_count
1141    }
1142
1143    fn traverse_from_offset(
1144        &self,
1145        include_dirs: bool,
1146        include_ignored: bool,
1147        start_offset: usize,
1148    ) -> Traversal {
1149        let mut cursor = self.entries_by_path.cursor();
1150        cursor.seek(
1151            &TraversalTarget::Count {
1152                count: start_offset,
1153                include_dirs,
1154                include_ignored,
1155            },
1156            Bias::Right,
1157            &(),
1158        );
1159        Traversal {
1160            cursor,
1161            include_dirs,
1162            include_ignored,
1163        }
1164    }
1165
1166    fn traverse_from_path(
1167        &self,
1168        include_dirs: bool,
1169        include_ignored: bool,
1170        path: &Path,
1171    ) -> Traversal {
1172        let mut cursor = self.entries_by_path.cursor();
1173        cursor.seek(&TraversalTarget::Path(path), Bias::Left, &());
1174        Traversal {
1175            cursor,
1176            include_dirs,
1177            include_ignored,
1178        }
1179    }
1180
1181    pub fn files(&self, include_ignored: bool, start: usize) -> Traversal {
1182        self.traverse_from_offset(false, include_ignored, start)
1183    }
1184
1185    pub fn entries(&self, include_ignored: bool) -> Traversal {
1186        self.traverse_from_offset(true, include_ignored, 0)
1187    }
1188
1189    pub fn paths(&self) -> impl Iterator<Item = &Arc<Path>> {
1190        let empty_path = Path::new("");
1191        self.entries_by_path
1192            .cursor::<()>()
1193            .filter(move |entry| entry.path.as_ref() != empty_path)
1194            .map(|entry| &entry.path)
1195    }
1196
1197    fn child_entries<'a>(&'a self, parent_path: &'a Path) -> ChildEntriesIter<'a> {
1198        let mut cursor = self.entries_by_path.cursor();
1199        cursor.seek(&TraversalTarget::Path(parent_path), Bias::Right, &());
1200        let traversal = Traversal {
1201            cursor,
1202            include_dirs: true,
1203            include_ignored: true,
1204        };
1205        ChildEntriesIter {
1206            traversal,
1207            parent_path,
1208        }
1209    }
1210
1211    pub fn root_entry(&self) -> Option<&Entry> {
1212        self.entry_for_path("")
1213    }
1214
1215    pub fn root_name(&self) -> &str {
1216        &self.root_name
1217    }
1218
1219    pub fn scan_id(&self) -> usize {
1220        self.scan_id
1221    }
1222
1223    pub fn entry_for_path(&self, path: impl AsRef<Path>) -> Option<&Entry> {
1224        let path = path.as_ref();
1225        self.traverse_from_path(true, true, path)
1226            .entry()
1227            .and_then(|entry| {
1228                if entry.path.as_ref() == path {
1229                    Some(entry)
1230                } else {
1231                    None
1232                }
1233            })
1234    }
1235
1236    pub fn entry_for_id(&self, id: ProjectEntryId) -> Option<&Entry> {
1237        let entry = self.entries_by_id.get(&id, &())?;
1238        self.entry_for_path(&entry.path)
1239    }
1240
1241    pub fn inode_for_path(&self, path: impl AsRef<Path>) -> Option<u64> {
1242        self.entry_for_path(path.as_ref()).map(|e| e.inode)
1243    }
1244}
1245
1246impl LocalSnapshot {
1247    pub fn abs_path(&self) -> &Arc<Path> {
1248        &self.abs_path
1249    }
1250
1251    pub fn extension_counts(&self) -> &HashMap<OsString, usize> {
1252        &self.extension_counts
1253    }
1254
1255    #[cfg(test)]
1256    pub(crate) fn build_initial_update(&self, project_id: u64) -> proto::UpdateWorktree {
1257        let root_name = self.root_name.clone();
1258        proto::UpdateWorktree {
1259            project_id,
1260            worktree_id: self.id().to_proto(),
1261            root_name,
1262            updated_entries: self.entries_by_path.iter().map(Into::into).collect(),
1263            removed_entries: Default::default(),
1264            scan_id: self.scan_id as u64,
1265            is_last_update: true,
1266        }
1267    }
1268
1269    pub(crate) fn build_update(
1270        &self,
1271        other: &Self,
1272        project_id: u64,
1273        worktree_id: u64,
1274        include_ignored: bool,
1275    ) -> proto::UpdateWorktree {
1276        let mut updated_entries = Vec::new();
1277        let mut removed_entries = Vec::new();
1278        let mut self_entries = self
1279            .entries_by_id
1280            .cursor::<()>()
1281            .filter(|e| include_ignored || !e.is_ignored)
1282            .peekable();
1283        let mut other_entries = other
1284            .entries_by_id
1285            .cursor::<()>()
1286            .filter(|e| include_ignored || !e.is_ignored)
1287            .peekable();
1288        loop {
1289            match (self_entries.peek(), other_entries.peek()) {
1290                (Some(self_entry), Some(other_entry)) => {
1291                    match Ord::cmp(&self_entry.id, &other_entry.id) {
1292                        Ordering::Less => {
1293                            let entry = self.entry_for_id(self_entry.id).unwrap().into();
1294                            updated_entries.push(entry);
1295                            self_entries.next();
1296                        }
1297                        Ordering::Equal => {
1298                            if self_entry.scan_id != other_entry.scan_id {
1299                                let entry = self.entry_for_id(self_entry.id).unwrap().into();
1300                                updated_entries.push(entry);
1301                            }
1302
1303                            self_entries.next();
1304                            other_entries.next();
1305                        }
1306                        Ordering::Greater => {
1307                            removed_entries.push(other_entry.id.to_proto());
1308                            other_entries.next();
1309                        }
1310                    }
1311                }
1312                (Some(self_entry), None) => {
1313                    let entry = self.entry_for_id(self_entry.id).unwrap().into();
1314                    updated_entries.push(entry);
1315                    self_entries.next();
1316                }
1317                (None, Some(other_entry)) => {
1318                    removed_entries.push(other_entry.id.to_proto());
1319                    other_entries.next();
1320                }
1321                (None, None) => break,
1322            }
1323        }
1324
1325        proto::UpdateWorktree {
1326            project_id,
1327            worktree_id,
1328            root_name: self.root_name().to_string(),
1329            updated_entries,
1330            removed_entries,
1331            scan_id: self.scan_id as u64,
1332            is_last_update: true,
1333        }
1334    }
1335
1336    fn insert_entry(&mut self, mut entry: Entry, fs: &dyn Fs) -> Entry {
1337        if !entry.is_dir() && entry.path.file_name() == Some(&GITIGNORE) {
1338            let abs_path = self.abs_path.join(&entry.path);
1339            match smol::block_on(build_gitignore(&abs_path, fs)) {
1340                Ok(ignore) => {
1341                    self.ignores_by_parent_abs_path.insert(
1342                        abs_path.parent().unwrap().into(),
1343                        (Arc::new(ignore), self.scan_id),
1344                    );
1345                }
1346                Err(error) => {
1347                    log::error!(
1348                        "error loading .gitignore file {:?} - {:?}",
1349                        &entry.path,
1350                        error
1351                    );
1352                }
1353            }
1354        }
1355
1356        self.reuse_entry_id(&mut entry);
1357        self.entries_by_path.insert_or_replace(entry.clone(), &());
1358        let scan_id = self.scan_id;
1359        let removed_entry = self.entries_by_id.insert_or_replace(
1360            PathEntry {
1361                id: entry.id,
1362                path: entry.path.clone(),
1363                is_ignored: entry.is_ignored,
1364                scan_id,
1365            },
1366            &(),
1367        );
1368
1369        if let Some(removed_entry) = removed_entry {
1370            self.dec_extension_count(&removed_entry.path, removed_entry.is_ignored);
1371        }
1372        self.inc_extension_count(&entry.path, entry.is_ignored);
1373
1374        entry
1375    }
1376
1377    fn populate_dir(
1378        &mut self,
1379        parent_path: Arc<Path>,
1380        entries: impl IntoIterator<Item = Entry>,
1381        ignore: Option<Arc<Gitignore>>,
1382    ) {
1383        let mut parent_entry = if let Some(parent_entry) =
1384            self.entries_by_path.get(&PathKey(parent_path.clone()), &())
1385        {
1386            parent_entry.clone()
1387        } else {
1388            log::warn!(
1389                "populating a directory {:?} that has been removed",
1390                parent_path
1391            );
1392            return;
1393        };
1394
1395        if let Some(ignore) = ignore {
1396            self.ignores_by_parent_abs_path.insert(
1397                self.abs_path.join(&parent_path).into(),
1398                (ignore, self.scan_id),
1399            );
1400        }
1401        if matches!(parent_entry.kind, EntryKind::PendingDir) {
1402            parent_entry.kind = EntryKind::Dir;
1403        } else {
1404            unreachable!();
1405        }
1406
1407        let mut entries_by_path_edits = vec![Edit::Insert(parent_entry)];
1408        let mut entries_by_id_edits = Vec::new();
1409
1410        for mut entry in entries {
1411            self.reuse_entry_id(&mut entry);
1412            self.inc_extension_count(&entry.path, entry.is_ignored);
1413            entries_by_id_edits.push(Edit::Insert(PathEntry {
1414                id: entry.id,
1415                path: entry.path.clone(),
1416                is_ignored: entry.is_ignored,
1417                scan_id: self.scan_id,
1418            }));
1419            entries_by_path_edits.push(Edit::Insert(entry));
1420        }
1421
1422        self.entries_by_path.edit(entries_by_path_edits, &());
1423        let removed_entries = self.entries_by_id.edit(entries_by_id_edits, &());
1424
1425        for removed_entry in removed_entries {
1426            self.dec_extension_count(&removed_entry.path, removed_entry.is_ignored);
1427        }
1428    }
1429
1430    fn inc_extension_count(&mut self, path: &Path, ignored: bool) {
1431        if !ignored {
1432            if let Some(extension) = path.extension() {
1433                if let Some(count) = self.extension_counts.get_mut(extension) {
1434                    *count += 1;
1435                } else {
1436                    self.extension_counts.insert(extension.into(), 1);
1437                }
1438            }
1439        }
1440    }
1441
1442    fn dec_extension_count(&mut self, path: &Path, ignored: bool) {
1443        if !ignored {
1444            if let Some(extension) = path.extension() {
1445                if let Some(count) = self.extension_counts.get_mut(extension) {
1446                    *count -= 1;
1447                }
1448            }
1449        }
1450    }
1451
1452    fn reuse_entry_id(&mut self, entry: &mut Entry) {
1453        if let Some(removed_entry_id) = self.removed_entry_ids.remove(&entry.inode) {
1454            entry.id = removed_entry_id;
1455        } else if let Some(existing_entry) = self.entry_for_path(&entry.path) {
1456            entry.id = existing_entry.id;
1457        }
1458    }
1459
1460    fn remove_path(&mut self, path: &Path) {
1461        let mut new_entries;
1462        let removed_entries;
1463        {
1464            let mut cursor = self.entries_by_path.cursor::<TraversalProgress>();
1465            new_entries = cursor.slice(&TraversalTarget::Path(path), Bias::Left, &());
1466            removed_entries = cursor.slice(&TraversalTarget::PathSuccessor(path), Bias::Left, &());
1467            new_entries.push_tree(cursor.suffix(&()), &());
1468        }
1469        self.entries_by_path = new_entries;
1470
1471        let mut entries_by_id_edits = Vec::new();
1472        for entry in removed_entries.cursor::<()>() {
1473            let removed_entry_id = self
1474                .removed_entry_ids
1475                .entry(entry.inode)
1476                .or_insert(entry.id);
1477            *removed_entry_id = cmp::max(*removed_entry_id, entry.id);
1478            entries_by_id_edits.push(Edit::Remove(entry.id));
1479            self.dec_extension_count(&entry.path, entry.is_ignored);
1480        }
1481        self.entries_by_id.edit(entries_by_id_edits, &());
1482
1483        if path.file_name() == Some(&GITIGNORE) {
1484            let abs_parent_path = self.abs_path.join(path.parent().unwrap());
1485            if let Some((_, scan_id)) = self
1486                .ignores_by_parent_abs_path
1487                .get_mut(abs_parent_path.as_path())
1488            {
1489                *scan_id = self.snapshot.scan_id;
1490            }
1491        }
1492    }
1493
1494    fn ignore_stack_for_abs_path(&self, abs_path: &Path, is_dir: bool) -> Arc<IgnoreStack> {
1495        let mut new_ignores = Vec::new();
1496        for ancestor in abs_path.ancestors().skip(1) {
1497            if let Some((ignore, _)) = self.ignores_by_parent_abs_path.get(ancestor) {
1498                new_ignores.push((ancestor, Some(ignore.clone())));
1499            } else {
1500                new_ignores.push((ancestor, None));
1501            }
1502        }
1503
1504        let mut ignore_stack = IgnoreStack::none();
1505        for (parent_abs_path, ignore) in new_ignores.into_iter().rev() {
1506            if ignore_stack.is_abs_path_ignored(&parent_abs_path, true) {
1507                ignore_stack = IgnoreStack::all();
1508                break;
1509            } else if let Some(ignore) = ignore {
1510                ignore_stack = ignore_stack.append(parent_abs_path.into(), ignore);
1511            }
1512        }
1513
1514        if ignore_stack.is_abs_path_ignored(abs_path, is_dir) {
1515            ignore_stack = IgnoreStack::all();
1516        }
1517
1518        ignore_stack
1519    }
1520}
1521
1522async fn build_gitignore(abs_path: &Path, fs: &dyn Fs) -> Result<Gitignore> {
1523    let contents = fs.load(&abs_path).await?;
1524    let parent = abs_path.parent().unwrap_or(Path::new("/"));
1525    let mut builder = GitignoreBuilder::new(parent);
1526    for line in contents.lines() {
1527        builder.add_line(Some(abs_path.into()), line)?;
1528    }
1529    Ok(builder.build()?)
1530}
1531
1532impl WorktreeId {
1533    pub fn from_usize(handle_id: usize) -> Self {
1534        Self(handle_id)
1535    }
1536
1537    pub(crate) fn from_proto(id: u64) -> Self {
1538        Self(id as usize)
1539    }
1540
1541    pub fn to_proto(&self) -> u64 {
1542        self.0 as u64
1543    }
1544
1545    pub fn to_usize(&self) -> usize {
1546        self.0
1547    }
1548}
1549
1550impl fmt::Display for WorktreeId {
1551    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1552        self.0.fmt(f)
1553    }
1554}
1555
1556impl Deref for Worktree {
1557    type Target = Snapshot;
1558
1559    fn deref(&self) -> &Self::Target {
1560        match self {
1561            Worktree::Local(worktree) => &worktree.snapshot,
1562            Worktree::Remote(worktree) => &worktree.snapshot,
1563        }
1564    }
1565}
1566
1567impl Deref for LocalWorktree {
1568    type Target = LocalSnapshot;
1569
1570    fn deref(&self) -> &Self::Target {
1571        &self.snapshot
1572    }
1573}
1574
1575impl Deref for RemoteWorktree {
1576    type Target = Snapshot;
1577
1578    fn deref(&self) -> &Self::Target {
1579        &self.snapshot
1580    }
1581}
1582
1583impl fmt::Debug for LocalWorktree {
1584    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1585        self.snapshot.fmt(f)
1586    }
1587}
1588
1589impl fmt::Debug for Snapshot {
1590    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1591        struct EntriesById<'a>(&'a SumTree<PathEntry>);
1592        struct EntriesByPath<'a>(&'a SumTree<Entry>);
1593
1594        impl<'a> fmt::Debug for EntriesByPath<'a> {
1595            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1596                f.debug_map()
1597                    .entries(self.0.iter().map(|entry| (&entry.path, entry.id)))
1598                    .finish()
1599            }
1600        }
1601
1602        impl<'a> fmt::Debug for EntriesById<'a> {
1603            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1604                f.debug_list().entries(self.0.iter()).finish()
1605            }
1606        }
1607
1608        f.debug_struct("Snapshot")
1609            .field("id", &self.id)
1610            .field("root_name", &self.root_name)
1611            .field("entries_by_path", &EntriesByPath(&self.entries_by_path))
1612            .field("entries_by_id", &EntriesById(&self.entries_by_id))
1613            .finish()
1614    }
1615}
1616
1617#[derive(Clone, PartialEq)]
1618pub struct File {
1619    pub worktree: ModelHandle<Worktree>,
1620    pub path: Arc<Path>,
1621    pub mtime: SystemTime,
1622    pub(crate) entry_id: Option<ProjectEntryId>,
1623    pub(crate) is_local: bool,
1624}
1625
1626impl language::File for File {
1627    fn as_local(&self) -> Option<&dyn language::LocalFile> {
1628        if self.is_local {
1629            Some(self)
1630        } else {
1631            None
1632        }
1633    }
1634
1635    fn mtime(&self) -> SystemTime {
1636        self.mtime
1637    }
1638
1639    fn path(&self) -> &Arc<Path> {
1640        &self.path
1641    }
1642
1643    fn full_path(&self, cx: &AppContext) -> PathBuf {
1644        let mut full_path = PathBuf::new();
1645        full_path.push(self.worktree.read(cx).root_name());
1646        if self.path.components().next().is_some() {
1647            full_path.push(&self.path);
1648        }
1649        full_path
1650    }
1651
1652    /// Returns the last component of this handle's absolute path. If this handle refers to the root
1653    /// of its worktree, then this method will return the name of the worktree itself.
1654    fn file_name<'a>(&'a self, cx: &'a AppContext) -> &'a OsStr {
1655        self.path
1656            .file_name()
1657            .unwrap_or_else(|| OsStr::new(&self.worktree.read(cx).root_name))
1658    }
1659
1660    fn is_deleted(&self) -> bool {
1661        self.entry_id.is_none()
1662    }
1663
1664    fn save(
1665        &self,
1666        buffer_id: u64,
1667        text: Rope,
1668        version: clock::Global,
1669        line_ending: LineEnding,
1670        cx: &mut MutableAppContext,
1671    ) -> Task<Result<(clock::Global, String, SystemTime)>> {
1672        self.worktree.update(cx, |worktree, cx| match worktree {
1673            Worktree::Local(worktree) => {
1674                let rpc = worktree.client.clone();
1675                let project_id = worktree.share.as_ref().map(|share| share.project_id);
1676                let fingerprint = text.fingerprint();
1677                let save = worktree.write_file(self.path.clone(), text, line_ending, cx);
1678                cx.background().spawn(async move {
1679                    let entry = save.await?;
1680                    if let Some(project_id) = project_id {
1681                        rpc.send(proto::BufferSaved {
1682                            project_id,
1683                            buffer_id,
1684                            version: serialize_version(&version),
1685                            mtime: Some(entry.mtime.into()),
1686                            fingerprint: fingerprint.clone(),
1687                        })?;
1688                    }
1689                    Ok((version, fingerprint, entry.mtime))
1690                })
1691            }
1692            Worktree::Remote(worktree) => {
1693                let rpc = worktree.client.clone();
1694                let project_id = worktree.project_id;
1695                cx.foreground().spawn(async move {
1696                    let response = rpc
1697                        .request(proto::SaveBuffer {
1698                            project_id,
1699                            buffer_id,
1700                            version: serialize_version(&version),
1701                        })
1702                        .await?;
1703                    let version = deserialize_version(response.version);
1704                    let mtime = response
1705                        .mtime
1706                        .ok_or_else(|| anyhow!("missing mtime"))?
1707                        .into();
1708                    Ok((version, response.fingerprint, mtime))
1709                })
1710            }
1711        })
1712    }
1713
1714    fn as_any(&self) -> &dyn Any {
1715        self
1716    }
1717
1718    fn to_proto(&self) -> rpc::proto::File {
1719        rpc::proto::File {
1720            worktree_id: self.worktree.id() as u64,
1721            entry_id: self.entry_id.map(|entry_id| entry_id.to_proto()),
1722            path: self.path.to_string_lossy().into(),
1723            mtime: Some(self.mtime.into()),
1724        }
1725    }
1726}
1727
1728impl language::LocalFile for File {
1729    fn abs_path(&self, cx: &AppContext) -> PathBuf {
1730        self.worktree
1731            .read(cx)
1732            .as_local()
1733            .unwrap()
1734            .abs_path
1735            .join(&self.path)
1736    }
1737
1738    fn load(&self, cx: &AppContext) -> Task<Result<String>> {
1739        let worktree = self.worktree.read(cx).as_local().unwrap();
1740        let abs_path = worktree.absolutize(&self.path);
1741        let fs = worktree.fs.clone();
1742        cx.background()
1743            .spawn(async move { fs.load(&abs_path).await })
1744    }
1745
1746    fn buffer_reloaded(
1747        &self,
1748        buffer_id: u64,
1749        version: &clock::Global,
1750        fingerprint: String,
1751        line_ending: LineEnding,
1752        mtime: SystemTime,
1753        cx: &mut MutableAppContext,
1754    ) {
1755        let worktree = self.worktree.read(cx).as_local().unwrap();
1756        if let Some(project_id) = worktree.share.as_ref().map(|share| share.project_id) {
1757            worktree
1758                .client
1759                .send(proto::BufferReloaded {
1760                    project_id,
1761                    buffer_id,
1762                    version: serialize_version(&version),
1763                    mtime: Some(mtime.into()),
1764                    fingerprint,
1765                    line_ending: serialize_line_ending(line_ending) as i32,
1766                })
1767                .log_err();
1768        }
1769    }
1770}
1771
1772impl File {
1773    pub fn from_proto(
1774        proto: rpc::proto::File,
1775        worktree: ModelHandle<Worktree>,
1776        cx: &AppContext,
1777    ) -> Result<Self> {
1778        let worktree_id = worktree
1779            .read(cx)
1780            .as_remote()
1781            .ok_or_else(|| anyhow!("not remote"))?
1782            .id();
1783
1784        if worktree_id.to_proto() != proto.worktree_id {
1785            return Err(anyhow!("worktree id does not match file"));
1786        }
1787
1788        Ok(Self {
1789            worktree,
1790            path: Path::new(&proto.path).into(),
1791            mtime: proto.mtime.ok_or_else(|| anyhow!("no timestamp"))?.into(),
1792            entry_id: proto.entry_id.map(ProjectEntryId::from_proto),
1793            is_local: false,
1794        })
1795    }
1796
1797    pub fn from_dyn(file: Option<&dyn language::File>) -> Option<&Self> {
1798        file.and_then(|f| f.as_any().downcast_ref())
1799    }
1800
1801    pub fn worktree_id(&self, cx: &AppContext) -> WorktreeId {
1802        self.worktree.read(cx).id()
1803    }
1804
1805    pub fn project_entry_id(&self, _: &AppContext) -> Option<ProjectEntryId> {
1806        self.entry_id
1807    }
1808}
1809
1810#[derive(Clone, Debug, PartialEq, Eq)]
1811pub struct Entry {
1812    pub id: ProjectEntryId,
1813    pub kind: EntryKind,
1814    pub path: Arc<Path>,
1815    pub inode: u64,
1816    pub mtime: SystemTime,
1817    pub is_symlink: bool,
1818    pub is_ignored: bool,
1819}
1820
1821#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1822pub enum EntryKind {
1823    PendingDir,
1824    Dir,
1825    File(CharBag),
1826}
1827
1828impl Entry {
1829    fn new(
1830        path: Arc<Path>,
1831        metadata: &fs::Metadata,
1832        next_entry_id: &AtomicUsize,
1833        root_char_bag: CharBag,
1834    ) -> Self {
1835        Self {
1836            id: ProjectEntryId::new(next_entry_id),
1837            kind: if metadata.is_dir {
1838                EntryKind::PendingDir
1839            } else {
1840                EntryKind::File(char_bag_for_path(root_char_bag, &path))
1841            },
1842            path,
1843            inode: metadata.inode,
1844            mtime: metadata.mtime,
1845            is_symlink: metadata.is_symlink,
1846            is_ignored: false,
1847        }
1848    }
1849
1850    pub fn is_dir(&self) -> bool {
1851        matches!(self.kind, EntryKind::Dir | EntryKind::PendingDir)
1852    }
1853
1854    pub fn is_file(&self) -> bool {
1855        matches!(self.kind, EntryKind::File(_))
1856    }
1857}
1858
1859impl sum_tree::Item for Entry {
1860    type Summary = EntrySummary;
1861
1862    fn summary(&self) -> Self::Summary {
1863        let visible_count = if self.is_ignored { 0 } else { 1 };
1864        let file_count;
1865        let visible_file_count;
1866        if self.is_file() {
1867            file_count = 1;
1868            visible_file_count = visible_count;
1869        } else {
1870            file_count = 0;
1871            visible_file_count = 0;
1872        }
1873
1874        EntrySummary {
1875            max_path: self.path.clone(),
1876            count: 1,
1877            visible_count,
1878            file_count,
1879            visible_file_count,
1880        }
1881    }
1882}
1883
1884impl sum_tree::KeyedItem for Entry {
1885    type Key = PathKey;
1886
1887    fn key(&self) -> Self::Key {
1888        PathKey(self.path.clone())
1889    }
1890}
1891
1892#[derive(Clone, Debug)]
1893pub struct EntrySummary {
1894    max_path: Arc<Path>,
1895    count: usize,
1896    visible_count: usize,
1897    file_count: usize,
1898    visible_file_count: usize,
1899}
1900
1901impl Default for EntrySummary {
1902    fn default() -> Self {
1903        Self {
1904            max_path: Arc::from(Path::new("")),
1905            count: 0,
1906            visible_count: 0,
1907            file_count: 0,
1908            visible_file_count: 0,
1909        }
1910    }
1911}
1912
1913impl sum_tree::Summary for EntrySummary {
1914    type Context = ();
1915
1916    fn add_summary(&mut self, rhs: &Self, _: &()) {
1917        self.max_path = rhs.max_path.clone();
1918        self.count += rhs.count;
1919        self.visible_count += rhs.visible_count;
1920        self.file_count += rhs.file_count;
1921        self.visible_file_count += rhs.visible_file_count;
1922    }
1923}
1924
1925#[derive(Clone, Debug)]
1926struct PathEntry {
1927    id: ProjectEntryId,
1928    path: Arc<Path>,
1929    is_ignored: bool,
1930    scan_id: usize,
1931}
1932
1933impl sum_tree::Item for PathEntry {
1934    type Summary = PathEntrySummary;
1935
1936    fn summary(&self) -> Self::Summary {
1937        PathEntrySummary { max_id: self.id }
1938    }
1939}
1940
1941impl sum_tree::KeyedItem for PathEntry {
1942    type Key = ProjectEntryId;
1943
1944    fn key(&self) -> Self::Key {
1945        self.id
1946    }
1947}
1948
1949#[derive(Clone, Debug, Default)]
1950struct PathEntrySummary {
1951    max_id: ProjectEntryId,
1952}
1953
1954impl sum_tree::Summary for PathEntrySummary {
1955    type Context = ();
1956
1957    fn add_summary(&mut self, summary: &Self, _: &Self::Context) {
1958        self.max_id = summary.max_id;
1959    }
1960}
1961
1962impl<'a> sum_tree::Dimension<'a, PathEntrySummary> for ProjectEntryId {
1963    fn add_summary(&mut self, summary: &'a PathEntrySummary, _: &()) {
1964        *self = summary.max_id;
1965    }
1966}
1967
1968#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
1969pub struct PathKey(Arc<Path>);
1970
1971impl Default for PathKey {
1972    fn default() -> Self {
1973        Self(Path::new("").into())
1974    }
1975}
1976
1977impl<'a> sum_tree::Dimension<'a, EntrySummary> for PathKey {
1978    fn add_summary(&mut self, summary: &'a EntrySummary, _: &()) {
1979        self.0 = summary.max_path.clone();
1980    }
1981}
1982
1983struct BackgroundScanner {
1984    fs: Arc<dyn Fs>,
1985    snapshot: Arc<Mutex<LocalSnapshot>>,
1986    notify: UnboundedSender<ScanState>,
1987    executor: Arc<executor::Background>,
1988}
1989
1990impl BackgroundScanner {
1991    fn new(
1992        snapshot: Arc<Mutex<LocalSnapshot>>,
1993        notify: UnboundedSender<ScanState>,
1994        fs: Arc<dyn Fs>,
1995        executor: Arc<executor::Background>,
1996    ) -> Self {
1997        Self {
1998            fs,
1999            snapshot,
2000            notify,
2001            executor,
2002        }
2003    }
2004
2005    fn abs_path(&self) -> Arc<Path> {
2006        self.snapshot.lock().abs_path.clone()
2007    }
2008
2009    fn snapshot(&self) -> LocalSnapshot {
2010        self.snapshot.lock().clone()
2011    }
2012
2013    async fn run(mut self, events_rx: impl Stream<Item = Vec<fsevent::Event>>) {
2014        if self.notify.unbounded_send(ScanState::Initializing).is_err() {
2015            return;
2016        }
2017
2018        if let Err(err) = self.scan_dirs().await {
2019            if self
2020                .notify
2021                .unbounded_send(ScanState::Err(Arc::new(err)))
2022                .is_err()
2023            {
2024                return;
2025            }
2026        }
2027
2028        if self.notify.unbounded_send(ScanState::Idle).is_err() {
2029            return;
2030        }
2031
2032        futures::pin_mut!(events_rx);
2033
2034        while let Some(mut events) = events_rx.next().await {
2035            while let Poll::Ready(Some(additional_events)) = futures::poll!(events_rx.next()) {
2036                events.extend(additional_events);
2037            }
2038
2039            if self.notify.unbounded_send(ScanState::Updating).is_err() {
2040                break;
2041            }
2042
2043            if !self.process_events(events).await {
2044                break;
2045            }
2046
2047            if self.notify.unbounded_send(ScanState::Idle).is_err() {
2048                break;
2049            }
2050        }
2051    }
2052
2053    async fn scan_dirs(&mut self) -> Result<()> {
2054        let root_char_bag;
2055        let root_abs_path;
2056        let next_entry_id;
2057        let is_dir;
2058        {
2059            let snapshot = self.snapshot.lock();
2060            root_char_bag = snapshot.root_char_bag;
2061            root_abs_path = snapshot.abs_path.clone();
2062            next_entry_id = snapshot.next_entry_id.clone();
2063            is_dir = snapshot.root_entry().map_or(false, |e| e.is_dir())
2064        };
2065
2066        // Populate ignores above the root.
2067        for ancestor in root_abs_path.ancestors().skip(1) {
2068            if let Ok(ignore) = build_gitignore(&ancestor.join(&*GITIGNORE), self.fs.as_ref()).await
2069            {
2070                self.snapshot
2071                    .lock()
2072                    .ignores_by_parent_abs_path
2073                    .insert(ancestor.into(), (ignore.into(), 0));
2074            }
2075        }
2076
2077        let ignore_stack = {
2078            let mut snapshot = self.snapshot.lock();
2079            let ignore_stack = snapshot.ignore_stack_for_abs_path(&root_abs_path, true);
2080            if ignore_stack.is_all() {
2081                if let Some(mut root_entry) = snapshot.root_entry().cloned() {
2082                    root_entry.is_ignored = true;
2083                    snapshot.insert_entry(root_entry, self.fs.as_ref());
2084                }
2085            }
2086            ignore_stack
2087        };
2088
2089        if is_dir {
2090            let path: Arc<Path> = Arc::from(Path::new(""));
2091            let (tx, rx) = channel::unbounded();
2092            self.executor
2093                .block(tx.send(ScanJob {
2094                    abs_path: root_abs_path.to_path_buf(),
2095                    path,
2096                    ignore_stack,
2097                    scan_queue: tx.clone(),
2098                }))
2099                .unwrap();
2100            drop(tx);
2101
2102            self.executor
2103                .scoped(|scope| {
2104                    for _ in 0..self.executor.num_cpus() {
2105                        scope.spawn(async {
2106                            while let Ok(job) = rx.recv().await {
2107                                if let Err(err) = self
2108                                    .scan_dir(root_char_bag, next_entry_id.clone(), &job)
2109                                    .await
2110                                {
2111                                    log::error!("error scanning {:?}: {}", job.abs_path, err);
2112                                }
2113                            }
2114                        });
2115                    }
2116                })
2117                .await;
2118        }
2119
2120        Ok(())
2121    }
2122
2123    async fn scan_dir(
2124        &self,
2125        root_char_bag: CharBag,
2126        next_entry_id: Arc<AtomicUsize>,
2127        job: &ScanJob,
2128    ) -> Result<()> {
2129        let mut new_entries: Vec<Entry> = Vec::new();
2130        let mut new_jobs: Vec<ScanJob> = Vec::new();
2131        let mut ignore_stack = job.ignore_stack.clone();
2132        let mut new_ignore = None;
2133
2134        let mut child_paths = self.fs.read_dir(&job.abs_path).await?;
2135        while let Some(child_abs_path) = child_paths.next().await {
2136            let child_abs_path = match child_abs_path {
2137                Ok(child_abs_path) => child_abs_path,
2138                Err(error) => {
2139                    log::error!("error processing entry {:?}", error);
2140                    continue;
2141                }
2142            };
2143            let child_name = child_abs_path.file_name().unwrap();
2144            let child_path: Arc<Path> = job.path.join(child_name).into();
2145            let child_metadata = match self.fs.metadata(&child_abs_path).await {
2146                Ok(Some(metadata)) => metadata,
2147                Ok(None) => continue,
2148                Err(err) => {
2149                    log::error!("error processing {:?}: {:?}", child_abs_path, err);
2150                    continue;
2151                }
2152            };
2153
2154            // If we find a .gitignore, add it to the stack of ignores used to determine which paths are ignored
2155            if child_name == *GITIGNORE {
2156                match build_gitignore(&child_abs_path, self.fs.as_ref()).await {
2157                    Ok(ignore) => {
2158                        let ignore = Arc::new(ignore);
2159                        ignore_stack =
2160                            ignore_stack.append(job.abs_path.as_path().into(), ignore.clone());
2161                        new_ignore = Some(ignore);
2162                    }
2163                    Err(error) => {
2164                        log::error!(
2165                            "error loading .gitignore file {:?} - {:?}",
2166                            child_name,
2167                            error
2168                        );
2169                    }
2170                }
2171
2172                // Update ignore status of any child entries we've already processed to reflect the
2173                // ignore file in the current directory. Because `.gitignore` starts with a `.`,
2174                // there should rarely be too numerous. Update the ignore stack associated with any
2175                // new jobs as well.
2176                let mut new_jobs = new_jobs.iter_mut();
2177                for entry in &mut new_entries {
2178                    let entry_abs_path = self.abs_path().join(&entry.path);
2179                    entry.is_ignored =
2180                        ignore_stack.is_abs_path_ignored(&entry_abs_path, entry.is_dir());
2181                    if entry.is_dir() {
2182                        new_jobs.next().unwrap().ignore_stack = if entry.is_ignored {
2183                            IgnoreStack::all()
2184                        } else {
2185                            ignore_stack.clone()
2186                        };
2187                    }
2188                }
2189            }
2190
2191            let mut child_entry = Entry::new(
2192                child_path.clone(),
2193                &child_metadata,
2194                &next_entry_id,
2195                root_char_bag,
2196            );
2197
2198            if child_metadata.is_dir {
2199                let is_ignored = ignore_stack.is_abs_path_ignored(&child_abs_path, true);
2200                child_entry.is_ignored = is_ignored;
2201                new_entries.push(child_entry);
2202                new_jobs.push(ScanJob {
2203                    abs_path: child_abs_path,
2204                    path: child_path,
2205                    ignore_stack: if is_ignored {
2206                        IgnoreStack::all()
2207                    } else {
2208                        ignore_stack.clone()
2209                    },
2210                    scan_queue: job.scan_queue.clone(),
2211                });
2212            } else {
2213                child_entry.is_ignored = ignore_stack.is_abs_path_ignored(&child_abs_path, false);
2214                new_entries.push(child_entry);
2215            };
2216        }
2217
2218        self.snapshot
2219            .lock()
2220            .populate_dir(job.path.clone(), new_entries, new_ignore);
2221        for new_job in new_jobs {
2222            job.scan_queue.send(new_job).await.unwrap();
2223        }
2224
2225        Ok(())
2226    }
2227
2228    async fn process_events(&mut self, mut events: Vec<fsevent::Event>) -> bool {
2229        events.sort_unstable_by(|a, b| a.path.cmp(&b.path));
2230        events.dedup_by(|a, b| a.path.starts_with(&b.path));
2231
2232        let root_char_bag;
2233        let root_abs_path;
2234        let next_entry_id;
2235        {
2236            let snapshot = self.snapshot.lock();
2237            root_char_bag = snapshot.root_char_bag;
2238            root_abs_path = snapshot.abs_path.clone();
2239            next_entry_id = snapshot.next_entry_id.clone();
2240        }
2241
2242        let root_canonical_path = if let Ok(path) = self.fs.canonicalize(&root_abs_path).await {
2243            path
2244        } else {
2245            return false;
2246        };
2247        let metadata = futures::future::join_all(
2248            events
2249                .iter()
2250                .map(|event| self.fs.metadata(&event.path))
2251                .collect::<Vec<_>>(),
2252        )
2253        .await;
2254
2255        // Hold the snapshot lock while clearing and re-inserting the root entries
2256        // for each event. This way, the snapshot is not observable to the foreground
2257        // thread while this operation is in-progress.
2258        let (scan_queue_tx, scan_queue_rx) = channel::unbounded();
2259        {
2260            let mut snapshot = self.snapshot.lock();
2261            snapshot.scan_id += 1;
2262            for event in &events {
2263                if let Ok(path) = event.path.strip_prefix(&root_canonical_path) {
2264                    snapshot.remove_path(&path);
2265                }
2266            }
2267
2268            for (event, metadata) in events.into_iter().zip(metadata.into_iter()) {
2269                let path: Arc<Path> = match event.path.strip_prefix(&root_canonical_path) {
2270                    Ok(path) => Arc::from(path.to_path_buf()),
2271                    Err(_) => {
2272                        log::error!(
2273                            "unexpected event {:?} for root path {:?}",
2274                            event.path,
2275                            root_canonical_path
2276                        );
2277                        continue;
2278                    }
2279                };
2280                let abs_path = root_abs_path.join(&path);
2281
2282                match metadata {
2283                    Ok(Some(metadata)) => {
2284                        let ignore_stack =
2285                            snapshot.ignore_stack_for_abs_path(&abs_path, metadata.is_dir);
2286                        let mut fs_entry = Entry::new(
2287                            path.clone(),
2288                            &metadata,
2289                            snapshot.next_entry_id.as_ref(),
2290                            snapshot.root_char_bag,
2291                        );
2292                        fs_entry.is_ignored = ignore_stack.is_all();
2293                        snapshot.insert_entry(fs_entry, self.fs.as_ref());
2294                        if metadata.is_dir {
2295                            self.executor
2296                                .block(scan_queue_tx.send(ScanJob {
2297                                    abs_path,
2298                                    path,
2299                                    ignore_stack,
2300                                    scan_queue: scan_queue_tx.clone(),
2301                                }))
2302                                .unwrap();
2303                        }
2304                    }
2305                    Ok(None) => {}
2306                    Err(err) => {
2307                        // TODO - create a special 'error' entry in the entries tree to mark this
2308                        log::error!("error reading file on event {:?}", err);
2309                    }
2310                }
2311            }
2312            drop(scan_queue_tx);
2313        }
2314
2315        // Scan any directories that were created as part of this event batch.
2316        self.executor
2317            .scoped(|scope| {
2318                for _ in 0..self.executor.num_cpus() {
2319                    scope.spawn(async {
2320                        while let Ok(job) = scan_queue_rx.recv().await {
2321                            if let Err(err) = self
2322                                .scan_dir(root_char_bag, next_entry_id.clone(), &job)
2323                                .await
2324                            {
2325                                log::error!("error scanning {:?}: {}", job.abs_path, err);
2326                            }
2327                        }
2328                    });
2329                }
2330            })
2331            .await;
2332
2333        // Attempt to detect renames only over a single batch of file-system events.
2334        self.snapshot.lock().removed_entry_ids.clear();
2335
2336        self.update_ignore_statuses().await;
2337        true
2338    }
2339
2340    async fn update_ignore_statuses(&self) {
2341        let mut snapshot = self.snapshot();
2342
2343        let mut ignores_to_update = Vec::new();
2344        let mut ignores_to_delete = Vec::new();
2345        for (parent_abs_path, (_, scan_id)) in &snapshot.ignores_by_parent_abs_path {
2346            if let Ok(parent_path) = parent_abs_path.strip_prefix(&snapshot.abs_path) {
2347                if *scan_id == snapshot.scan_id && snapshot.entry_for_path(parent_path).is_some() {
2348                    ignores_to_update.push(parent_abs_path.clone());
2349                }
2350
2351                let ignore_path = parent_path.join(&*GITIGNORE);
2352                if snapshot.entry_for_path(ignore_path).is_none() {
2353                    ignores_to_delete.push(parent_abs_path.clone());
2354                }
2355            }
2356        }
2357
2358        for parent_abs_path in ignores_to_delete {
2359            snapshot.ignores_by_parent_abs_path.remove(&parent_abs_path);
2360            self.snapshot
2361                .lock()
2362                .ignores_by_parent_abs_path
2363                .remove(&parent_abs_path);
2364        }
2365
2366        let (ignore_queue_tx, ignore_queue_rx) = channel::unbounded();
2367        ignores_to_update.sort_unstable();
2368        let mut ignores_to_update = ignores_to_update.into_iter().peekable();
2369        while let Some(parent_abs_path) = ignores_to_update.next() {
2370            while ignores_to_update
2371                .peek()
2372                .map_or(false, |p| p.starts_with(&parent_abs_path))
2373            {
2374                ignores_to_update.next().unwrap();
2375            }
2376
2377            let ignore_stack = snapshot.ignore_stack_for_abs_path(&parent_abs_path, true);
2378            ignore_queue_tx
2379                .send(UpdateIgnoreStatusJob {
2380                    abs_path: parent_abs_path,
2381                    ignore_stack,
2382                    ignore_queue: ignore_queue_tx.clone(),
2383                })
2384                .await
2385                .unwrap();
2386        }
2387        drop(ignore_queue_tx);
2388
2389        self.executor
2390            .scoped(|scope| {
2391                for _ in 0..self.executor.num_cpus() {
2392                    scope.spawn(async {
2393                        while let Ok(job) = ignore_queue_rx.recv().await {
2394                            self.update_ignore_status(job, &snapshot).await;
2395                        }
2396                    });
2397                }
2398            })
2399            .await;
2400    }
2401
2402    async fn update_ignore_status(&self, job: UpdateIgnoreStatusJob, snapshot: &LocalSnapshot) {
2403        let mut ignore_stack = job.ignore_stack;
2404        if let Some((ignore, _)) = snapshot.ignores_by_parent_abs_path.get(&job.abs_path) {
2405            ignore_stack = ignore_stack.append(job.abs_path.clone(), ignore.clone());
2406        }
2407
2408        let mut entries_by_id_edits = Vec::new();
2409        let mut entries_by_path_edits = Vec::new();
2410        let path = job.abs_path.strip_prefix(&snapshot.abs_path).unwrap();
2411        for mut entry in snapshot.child_entries(path).cloned() {
2412            let was_ignored = entry.is_ignored;
2413            let abs_path = self.abs_path().join(&entry.path);
2414            entry.is_ignored = ignore_stack.is_abs_path_ignored(&abs_path, entry.is_dir());
2415            if entry.is_dir() {
2416                let child_ignore_stack = if entry.is_ignored {
2417                    IgnoreStack::all()
2418                } else {
2419                    ignore_stack.clone()
2420                };
2421                job.ignore_queue
2422                    .send(UpdateIgnoreStatusJob {
2423                        abs_path: abs_path.into(),
2424                        ignore_stack: child_ignore_stack,
2425                        ignore_queue: job.ignore_queue.clone(),
2426                    })
2427                    .await
2428                    .unwrap();
2429            }
2430
2431            if entry.is_ignored != was_ignored {
2432                let mut path_entry = snapshot.entries_by_id.get(&entry.id, &()).unwrap().clone();
2433                path_entry.scan_id = snapshot.scan_id;
2434                path_entry.is_ignored = entry.is_ignored;
2435                entries_by_id_edits.push(Edit::Insert(path_entry));
2436                entries_by_path_edits.push(Edit::Insert(entry));
2437            }
2438        }
2439
2440        let mut snapshot = self.snapshot.lock();
2441        snapshot.entries_by_path.edit(entries_by_path_edits, &());
2442        snapshot.entries_by_id.edit(entries_by_id_edits, &());
2443    }
2444}
2445
2446fn char_bag_for_path(root_char_bag: CharBag, path: &Path) -> CharBag {
2447    let mut result = root_char_bag;
2448    result.extend(
2449        path.to_string_lossy()
2450            .chars()
2451            .map(|c| c.to_ascii_lowercase()),
2452    );
2453    result
2454}
2455
2456struct ScanJob {
2457    abs_path: PathBuf,
2458    path: Arc<Path>,
2459    ignore_stack: Arc<IgnoreStack>,
2460    scan_queue: Sender<ScanJob>,
2461}
2462
2463struct UpdateIgnoreStatusJob {
2464    abs_path: Arc<Path>,
2465    ignore_stack: Arc<IgnoreStack>,
2466    ignore_queue: Sender<UpdateIgnoreStatusJob>,
2467}
2468
2469pub trait WorktreeHandle {
2470    #[cfg(any(test, feature = "test-support"))]
2471    fn flush_fs_events<'a>(
2472        &self,
2473        cx: &'a gpui::TestAppContext,
2474    ) -> futures::future::LocalBoxFuture<'a, ()>;
2475}
2476
2477impl WorktreeHandle for ModelHandle<Worktree> {
2478    // When the worktree's FS event stream sometimes delivers "redundant" events for FS changes that
2479    // occurred before the worktree was constructed. These events can cause the worktree to perfrom
2480    // extra directory scans, and emit extra scan-state notifications.
2481    //
2482    // This function mutates the worktree's directory and waits for those mutations to be picked up,
2483    // to ensure that all redundant FS events have already been processed.
2484    #[cfg(any(test, feature = "test-support"))]
2485    fn flush_fs_events<'a>(
2486        &self,
2487        cx: &'a gpui::TestAppContext,
2488    ) -> futures::future::LocalBoxFuture<'a, ()> {
2489        use smol::future::FutureExt;
2490
2491        let filename = "fs-event-sentinel";
2492        let tree = self.clone();
2493        let (fs, root_path) = self.read_with(cx, |tree, _| {
2494            let tree = tree.as_local().unwrap();
2495            (tree.fs.clone(), tree.abs_path().clone())
2496        });
2497
2498        async move {
2499            fs.create_file(&root_path.join(filename), Default::default())
2500                .await
2501                .unwrap();
2502            tree.condition(&cx, |tree, _| tree.entry_for_path(filename).is_some())
2503                .await;
2504
2505            fs.remove_file(&root_path.join(filename), Default::default())
2506                .await
2507                .unwrap();
2508            tree.condition(&cx, |tree, _| tree.entry_for_path(filename).is_none())
2509                .await;
2510
2511            cx.read(|cx| tree.read(cx).as_local().unwrap().scan_complete())
2512                .await;
2513        }
2514        .boxed_local()
2515    }
2516}
2517
2518#[derive(Clone, Debug)]
2519struct TraversalProgress<'a> {
2520    max_path: &'a Path,
2521    count: usize,
2522    visible_count: usize,
2523    file_count: usize,
2524    visible_file_count: usize,
2525}
2526
2527impl<'a> TraversalProgress<'a> {
2528    fn count(&self, include_dirs: bool, include_ignored: bool) -> usize {
2529        match (include_ignored, include_dirs) {
2530            (true, true) => self.count,
2531            (true, false) => self.file_count,
2532            (false, true) => self.visible_count,
2533            (false, false) => self.visible_file_count,
2534        }
2535    }
2536}
2537
2538impl<'a> sum_tree::Dimension<'a, EntrySummary> for TraversalProgress<'a> {
2539    fn add_summary(&mut self, summary: &'a EntrySummary, _: &()) {
2540        self.max_path = summary.max_path.as_ref();
2541        self.count += summary.count;
2542        self.visible_count += summary.visible_count;
2543        self.file_count += summary.file_count;
2544        self.visible_file_count += summary.visible_file_count;
2545    }
2546}
2547
2548impl<'a> Default for TraversalProgress<'a> {
2549    fn default() -> Self {
2550        Self {
2551            max_path: Path::new(""),
2552            count: 0,
2553            visible_count: 0,
2554            file_count: 0,
2555            visible_file_count: 0,
2556        }
2557    }
2558}
2559
2560pub struct Traversal<'a> {
2561    cursor: sum_tree::Cursor<'a, Entry, TraversalProgress<'a>>,
2562    include_ignored: bool,
2563    include_dirs: bool,
2564}
2565
2566impl<'a> Traversal<'a> {
2567    pub fn advance(&mut self) -> bool {
2568        self.advance_to_offset(self.offset() + 1)
2569    }
2570
2571    pub fn advance_to_offset(&mut self, offset: usize) -> bool {
2572        self.cursor.seek_forward(
2573            &TraversalTarget::Count {
2574                count: offset,
2575                include_dirs: self.include_dirs,
2576                include_ignored: self.include_ignored,
2577            },
2578            Bias::Right,
2579            &(),
2580        )
2581    }
2582
2583    pub fn advance_to_sibling(&mut self) -> bool {
2584        while let Some(entry) = self.cursor.item() {
2585            self.cursor.seek_forward(
2586                &TraversalTarget::PathSuccessor(&entry.path),
2587                Bias::Left,
2588                &(),
2589            );
2590            if let Some(entry) = self.cursor.item() {
2591                if (self.include_dirs || !entry.is_dir())
2592                    && (self.include_ignored || !entry.is_ignored)
2593                {
2594                    return true;
2595                }
2596            }
2597        }
2598        false
2599    }
2600
2601    pub fn entry(&self) -> Option<&'a Entry> {
2602        self.cursor.item()
2603    }
2604
2605    pub fn offset(&self) -> usize {
2606        self.cursor
2607            .start()
2608            .count(self.include_dirs, self.include_ignored)
2609    }
2610}
2611
2612impl<'a> Iterator for Traversal<'a> {
2613    type Item = &'a Entry;
2614
2615    fn next(&mut self) -> Option<Self::Item> {
2616        if let Some(item) = self.entry() {
2617            self.advance();
2618            Some(item)
2619        } else {
2620            None
2621        }
2622    }
2623}
2624
2625#[derive(Debug)]
2626enum TraversalTarget<'a> {
2627    Path(&'a Path),
2628    PathSuccessor(&'a Path),
2629    Count {
2630        count: usize,
2631        include_ignored: bool,
2632        include_dirs: bool,
2633    },
2634}
2635
2636impl<'a, 'b> SeekTarget<'a, EntrySummary, TraversalProgress<'a>> for TraversalTarget<'b> {
2637    fn cmp(&self, cursor_location: &TraversalProgress<'a>, _: &()) -> Ordering {
2638        match self {
2639            TraversalTarget::Path(path) => path.cmp(&cursor_location.max_path),
2640            TraversalTarget::PathSuccessor(path) => {
2641                if !cursor_location.max_path.starts_with(path) {
2642                    Ordering::Equal
2643                } else {
2644                    Ordering::Greater
2645                }
2646            }
2647            TraversalTarget::Count {
2648                count,
2649                include_dirs,
2650                include_ignored,
2651            } => Ord::cmp(
2652                count,
2653                &cursor_location.count(*include_dirs, *include_ignored),
2654            ),
2655        }
2656    }
2657}
2658
2659struct ChildEntriesIter<'a> {
2660    parent_path: &'a Path,
2661    traversal: Traversal<'a>,
2662}
2663
2664impl<'a> Iterator for ChildEntriesIter<'a> {
2665    type Item = &'a Entry;
2666
2667    fn next(&mut self) -> Option<Self::Item> {
2668        if let Some(item) = self.traversal.entry() {
2669            if item.path.starts_with(&self.parent_path) {
2670                self.traversal.advance_to_sibling();
2671                return Some(item);
2672            }
2673        }
2674        None
2675    }
2676}
2677
2678impl<'a> From<&'a Entry> for proto::Entry {
2679    fn from(entry: &'a Entry) -> Self {
2680        Self {
2681            id: entry.id.to_proto(),
2682            is_dir: entry.is_dir(),
2683            path: entry.path.as_os_str().as_bytes().to_vec(),
2684            inode: entry.inode,
2685            mtime: Some(entry.mtime.into()),
2686            is_symlink: entry.is_symlink,
2687            is_ignored: entry.is_ignored,
2688        }
2689    }
2690}
2691
2692impl<'a> TryFrom<(&'a CharBag, proto::Entry)> for Entry {
2693    type Error = anyhow::Error;
2694
2695    fn try_from((root_char_bag, entry): (&'a CharBag, proto::Entry)) -> Result<Self> {
2696        if let Some(mtime) = entry.mtime {
2697            let kind = if entry.is_dir {
2698                EntryKind::Dir
2699            } else {
2700                let mut char_bag = root_char_bag.clone();
2701                char_bag.extend(
2702                    String::from_utf8_lossy(&entry.path)
2703                        .chars()
2704                        .map(|c| c.to_ascii_lowercase()),
2705                );
2706                EntryKind::File(char_bag)
2707            };
2708            let path: Arc<Path> = PathBuf::from(OsString::from_vec(entry.path)).into();
2709            Ok(Entry {
2710                id: ProjectEntryId::from_proto(entry.id),
2711                kind,
2712                path: path.clone(),
2713                inode: entry.inode,
2714                mtime: mtime.into(),
2715                is_symlink: entry.is_symlink,
2716                is_ignored: entry.is_ignored,
2717            })
2718        } else {
2719            Err(anyhow!(
2720                "missing mtime in remote worktree entry {:?}",
2721                entry.path
2722            ))
2723        }
2724    }
2725}
2726
2727async fn send_worktree_update(client: &Arc<Client>, update: proto::UpdateWorktree) -> Result<()> {
2728    #[cfg(any(test, feature = "test-support"))]
2729    const MAX_CHUNK_SIZE: usize = 2;
2730    #[cfg(not(any(test, feature = "test-support")))]
2731    const MAX_CHUNK_SIZE: usize = 256;
2732
2733    for update in proto::split_worktree_update(update, MAX_CHUNK_SIZE) {
2734        client.request(update).await?;
2735    }
2736
2737    Ok(())
2738}
2739
2740#[cfg(test)]
2741mod tests {
2742    use super::*;
2743    use crate::fs::FakeFs;
2744    use anyhow::Result;
2745    use client::test::FakeHttpClient;
2746    use fs::RealFs;
2747    use gpui::TestAppContext;
2748    use rand::prelude::*;
2749    use serde_json::json;
2750    use std::{
2751        env,
2752        fmt::Write,
2753        time::{SystemTime, UNIX_EPOCH},
2754    };
2755    use util::test::temp_tree;
2756
2757    #[gpui::test]
2758    async fn test_traversal(cx: &mut TestAppContext) {
2759        let fs = FakeFs::new(cx.background());
2760        fs.insert_tree(
2761            "/root",
2762            json!({
2763               ".gitignore": "a/b\n",
2764               "a": {
2765                   "b": "",
2766                   "c": "",
2767               }
2768            }),
2769        )
2770        .await;
2771
2772        let http_client = FakeHttpClient::with_404_response();
2773        let client = Client::new(http_client);
2774
2775        let tree = Worktree::local(
2776            client,
2777            Arc::from(Path::new("/root")),
2778            true,
2779            fs,
2780            Default::default(),
2781            &mut cx.to_async(),
2782        )
2783        .await
2784        .unwrap();
2785        cx.read(|cx| tree.read(cx).as_local().unwrap().scan_complete())
2786            .await;
2787
2788        tree.read_with(cx, |tree, _| {
2789            assert_eq!(
2790                tree.entries(false)
2791                    .map(|entry| entry.path.as_ref())
2792                    .collect::<Vec<_>>(),
2793                vec![
2794                    Path::new(""),
2795                    Path::new(".gitignore"),
2796                    Path::new("a"),
2797                    Path::new("a/c"),
2798                ]
2799            );
2800            assert_eq!(
2801                tree.entries(true)
2802                    .map(|entry| entry.path.as_ref())
2803                    .collect::<Vec<_>>(),
2804                vec![
2805                    Path::new(""),
2806                    Path::new(".gitignore"),
2807                    Path::new("a"),
2808                    Path::new("a/b"),
2809                    Path::new("a/c"),
2810                ]
2811            );
2812        })
2813    }
2814
2815    #[gpui::test]
2816    async fn test_rescan_with_gitignore(cx: &mut TestAppContext) {
2817        let parent_dir = temp_tree(json!({
2818            ".gitignore": "ancestor-ignored-file1\nancestor-ignored-file2\n",
2819            "tree": {
2820                ".git": {},
2821                ".gitignore": "ignored-dir\n",
2822                "tracked-dir": {
2823                    "tracked-file1": "",
2824                    "ancestor-ignored-file1": "",
2825                },
2826                "ignored-dir": {
2827                    "ignored-file1": ""
2828                }
2829            }
2830        }));
2831        let dir = parent_dir.path().join("tree");
2832
2833        let http_client = FakeHttpClient::with_404_response();
2834        let client = Client::new(http_client.clone());
2835
2836        let tree = Worktree::local(
2837            client,
2838            dir.as_path(),
2839            true,
2840            Arc::new(RealFs),
2841            Default::default(),
2842            &mut cx.to_async(),
2843        )
2844        .await
2845        .unwrap();
2846        cx.read(|cx| tree.read(cx).as_local().unwrap().scan_complete())
2847            .await;
2848        tree.flush_fs_events(&cx).await;
2849        cx.read(|cx| {
2850            let tree = tree.read(cx);
2851            assert!(
2852                !tree
2853                    .entry_for_path("tracked-dir/tracked-file1")
2854                    .unwrap()
2855                    .is_ignored
2856            );
2857            assert!(
2858                tree.entry_for_path("tracked-dir/ancestor-ignored-file1")
2859                    .unwrap()
2860                    .is_ignored
2861            );
2862            assert!(
2863                tree.entry_for_path("ignored-dir/ignored-file1")
2864                    .unwrap()
2865                    .is_ignored
2866            );
2867        });
2868
2869        std::fs::write(dir.join("tracked-dir/tracked-file2"), "").unwrap();
2870        std::fs::write(dir.join("tracked-dir/ancestor-ignored-file2"), "").unwrap();
2871        std::fs::write(dir.join("ignored-dir/ignored-file2"), "").unwrap();
2872        tree.flush_fs_events(&cx).await;
2873        cx.read(|cx| {
2874            let tree = tree.read(cx);
2875            assert!(
2876                !tree
2877                    .entry_for_path("tracked-dir/tracked-file2")
2878                    .unwrap()
2879                    .is_ignored
2880            );
2881            assert!(
2882                tree.entry_for_path("tracked-dir/ancestor-ignored-file2")
2883                    .unwrap()
2884                    .is_ignored
2885            );
2886            assert!(
2887                tree.entry_for_path("ignored-dir/ignored-file2")
2888                    .unwrap()
2889                    .is_ignored
2890            );
2891            assert!(tree.entry_for_path(".git").unwrap().is_ignored);
2892        });
2893    }
2894
2895    #[gpui::test]
2896    async fn test_write_file(cx: &mut TestAppContext) {
2897        let dir = temp_tree(json!({
2898            ".git": {},
2899            ".gitignore": "ignored-dir\n",
2900            "tracked-dir": {},
2901            "ignored-dir": {}
2902        }));
2903
2904        let http_client = FakeHttpClient::with_404_response();
2905        let client = Client::new(http_client.clone());
2906
2907        let tree = Worktree::local(
2908            client,
2909            dir.path(),
2910            true,
2911            Arc::new(RealFs),
2912            Default::default(),
2913            &mut cx.to_async(),
2914        )
2915        .await
2916        .unwrap();
2917        cx.read(|cx| tree.read(cx).as_local().unwrap().scan_complete())
2918            .await;
2919        tree.flush_fs_events(&cx).await;
2920
2921        tree.update(cx, |tree, cx| {
2922            tree.as_local().unwrap().write_file(
2923                Path::new("tracked-dir/file.txt"),
2924                "hello".into(),
2925                Default::default(),
2926                cx,
2927            )
2928        })
2929        .await
2930        .unwrap();
2931        tree.update(cx, |tree, cx| {
2932            tree.as_local().unwrap().write_file(
2933                Path::new("ignored-dir/file.txt"),
2934                "world".into(),
2935                Default::default(),
2936                cx,
2937            )
2938        })
2939        .await
2940        .unwrap();
2941
2942        tree.read_with(cx, |tree, _| {
2943            let tracked = tree.entry_for_path("tracked-dir/file.txt").unwrap();
2944            let ignored = tree.entry_for_path("ignored-dir/file.txt").unwrap();
2945            assert_eq!(tracked.is_ignored, false);
2946            assert_eq!(ignored.is_ignored, true);
2947        });
2948    }
2949
2950    #[gpui::test(iterations = 100)]
2951    fn test_random(mut rng: StdRng) {
2952        let operations = env::var("OPERATIONS")
2953            .map(|o| o.parse().unwrap())
2954            .unwrap_or(40);
2955        let initial_entries = env::var("INITIAL_ENTRIES")
2956            .map(|o| o.parse().unwrap())
2957            .unwrap_or(20);
2958
2959        let root_dir = tempdir::TempDir::new("worktree-test").unwrap();
2960        for _ in 0..initial_entries {
2961            randomly_mutate_tree(root_dir.path(), 1.0, &mut rng).unwrap();
2962        }
2963        log::info!("Generated initial tree");
2964
2965        let (notify_tx, _notify_rx) = mpsc::unbounded();
2966        let fs = Arc::new(RealFs);
2967        let next_entry_id = Arc::new(AtomicUsize::new(0));
2968        let mut initial_snapshot = LocalSnapshot {
2969            abs_path: root_dir.path().into(),
2970            removed_entry_ids: Default::default(),
2971            ignores_by_parent_abs_path: Default::default(),
2972            next_entry_id: next_entry_id.clone(),
2973            snapshot: Snapshot {
2974                id: WorktreeId::from_usize(0),
2975                entries_by_path: Default::default(),
2976                entries_by_id: Default::default(),
2977                root_name: Default::default(),
2978                root_char_bag: Default::default(),
2979                scan_id: 0,
2980                is_complete: true,
2981            },
2982            extension_counts: Default::default(),
2983        };
2984        initial_snapshot.insert_entry(
2985            Entry::new(
2986                Path::new("").into(),
2987                &smol::block_on(fs.metadata(root_dir.path()))
2988                    .unwrap()
2989                    .unwrap(),
2990                &next_entry_id,
2991                Default::default(),
2992            ),
2993            fs.as_ref(),
2994        );
2995        let mut scanner = BackgroundScanner::new(
2996            Arc::new(Mutex::new(initial_snapshot.clone())),
2997            notify_tx,
2998            fs.clone(),
2999            Arc::new(gpui::executor::Background::new()),
3000        );
3001        smol::block_on(scanner.scan_dirs()).unwrap();
3002        scanner.snapshot().check_invariants();
3003
3004        let mut events = Vec::new();
3005        let mut snapshots = Vec::new();
3006        let mut mutations_len = operations;
3007        while mutations_len > 1 {
3008            if !events.is_empty() && rng.gen_bool(0.4) {
3009                let len = rng.gen_range(0..=events.len());
3010                let to_deliver = events.drain(0..len).collect::<Vec<_>>();
3011                log::info!("Delivering events: {:#?}", to_deliver);
3012                smol::block_on(scanner.process_events(to_deliver));
3013                scanner.snapshot().check_invariants();
3014            } else {
3015                events.extend(randomly_mutate_tree(root_dir.path(), 0.6, &mut rng).unwrap());
3016                mutations_len -= 1;
3017            }
3018
3019            if rng.gen_bool(0.2) {
3020                snapshots.push(scanner.snapshot());
3021            }
3022        }
3023        log::info!("Quiescing: {:#?}", events);
3024        smol::block_on(scanner.process_events(events));
3025        scanner.snapshot().check_invariants();
3026
3027        let (notify_tx, _notify_rx) = mpsc::unbounded();
3028        let mut new_scanner = BackgroundScanner::new(
3029            Arc::new(Mutex::new(initial_snapshot)),
3030            notify_tx,
3031            scanner.fs.clone(),
3032            scanner.executor.clone(),
3033        );
3034        smol::block_on(new_scanner.scan_dirs()).unwrap();
3035        assert_eq!(
3036            scanner.snapshot().to_vec(true),
3037            new_scanner.snapshot().to_vec(true)
3038        );
3039
3040        for mut prev_snapshot in snapshots {
3041            let include_ignored = rng.gen::<bool>();
3042            if !include_ignored {
3043                let mut entries_by_path_edits = Vec::new();
3044                let mut entries_by_id_edits = Vec::new();
3045                for entry in prev_snapshot
3046                    .entries_by_id
3047                    .cursor::<()>()
3048                    .filter(|e| e.is_ignored)
3049                {
3050                    entries_by_path_edits.push(Edit::Remove(PathKey(entry.path.clone())));
3051                    entries_by_id_edits.push(Edit::Remove(entry.id));
3052                }
3053
3054                prev_snapshot
3055                    .entries_by_path
3056                    .edit(entries_by_path_edits, &());
3057                prev_snapshot.entries_by_id.edit(entries_by_id_edits, &());
3058            }
3059
3060            let update = scanner
3061                .snapshot()
3062                .build_update(&prev_snapshot, 0, 0, include_ignored);
3063            prev_snapshot.apply_remote_update(update).unwrap();
3064            assert_eq!(
3065                prev_snapshot.to_vec(true),
3066                scanner.snapshot().to_vec(include_ignored)
3067            );
3068        }
3069    }
3070
3071    fn randomly_mutate_tree(
3072        root_path: &Path,
3073        insertion_probability: f64,
3074        rng: &mut impl Rng,
3075    ) -> Result<Vec<fsevent::Event>> {
3076        let root_path = root_path.canonicalize().unwrap();
3077        let (dirs, files) = read_dir_recursive(root_path.clone());
3078
3079        let mut events = Vec::new();
3080        let mut record_event = |path: PathBuf| {
3081            events.push(fsevent::Event {
3082                event_id: SystemTime::now()
3083                    .duration_since(UNIX_EPOCH)
3084                    .unwrap()
3085                    .as_secs(),
3086                flags: fsevent::StreamFlags::empty(),
3087                path,
3088            });
3089        };
3090
3091        if (files.is_empty() && dirs.len() == 1) || rng.gen_bool(insertion_probability) {
3092            let path = dirs.choose(rng).unwrap();
3093            let new_path = path.join(gen_name(rng));
3094
3095            if rng.gen() {
3096                log::info!("Creating dir {:?}", new_path.strip_prefix(root_path)?);
3097                std::fs::create_dir(&new_path)?;
3098            } else {
3099                log::info!("Creating file {:?}", new_path.strip_prefix(root_path)?);
3100                std::fs::write(&new_path, "")?;
3101            }
3102            record_event(new_path);
3103        } else if rng.gen_bool(0.05) {
3104            let ignore_dir_path = dirs.choose(rng).unwrap();
3105            let ignore_path = ignore_dir_path.join(&*GITIGNORE);
3106
3107            let (subdirs, subfiles) = read_dir_recursive(ignore_dir_path.clone());
3108            let files_to_ignore = {
3109                let len = rng.gen_range(0..=subfiles.len());
3110                subfiles.choose_multiple(rng, len)
3111            };
3112            let dirs_to_ignore = {
3113                let len = rng.gen_range(0..subdirs.len());
3114                subdirs.choose_multiple(rng, len)
3115            };
3116
3117            let mut ignore_contents = String::new();
3118            for path_to_ignore in files_to_ignore.chain(dirs_to_ignore) {
3119                write!(
3120                    ignore_contents,
3121                    "{}\n",
3122                    path_to_ignore
3123                        .strip_prefix(&ignore_dir_path)?
3124                        .to_str()
3125                        .unwrap()
3126                )
3127                .unwrap();
3128            }
3129            log::info!(
3130                "Creating {:?} with contents:\n{}",
3131                ignore_path.strip_prefix(&root_path)?,
3132                ignore_contents
3133            );
3134            std::fs::write(&ignore_path, ignore_contents).unwrap();
3135            record_event(ignore_path);
3136        } else {
3137            let old_path = {
3138                let file_path = files.choose(rng);
3139                let dir_path = dirs[1..].choose(rng);
3140                file_path.into_iter().chain(dir_path).choose(rng).unwrap()
3141            };
3142
3143            let is_rename = rng.gen();
3144            if is_rename {
3145                let new_path_parent = dirs
3146                    .iter()
3147                    .filter(|d| !d.starts_with(old_path))
3148                    .choose(rng)
3149                    .unwrap();
3150
3151                let overwrite_existing_dir =
3152                    !old_path.starts_with(&new_path_parent) && rng.gen_bool(0.3);
3153                let new_path = if overwrite_existing_dir {
3154                    std::fs::remove_dir_all(&new_path_parent).ok();
3155                    new_path_parent.to_path_buf()
3156                } else {
3157                    new_path_parent.join(gen_name(rng))
3158                };
3159
3160                log::info!(
3161                    "Renaming {:?} to {}{:?}",
3162                    old_path.strip_prefix(&root_path)?,
3163                    if overwrite_existing_dir {
3164                        "overwrite "
3165                    } else {
3166                        ""
3167                    },
3168                    new_path.strip_prefix(&root_path)?
3169                );
3170                std::fs::rename(&old_path, &new_path)?;
3171                record_event(old_path.clone());
3172                record_event(new_path);
3173            } else if old_path.is_dir() {
3174                let (dirs, files) = read_dir_recursive(old_path.clone());
3175
3176                log::info!("Deleting dir {:?}", old_path.strip_prefix(&root_path)?);
3177                std::fs::remove_dir_all(&old_path).unwrap();
3178                for file in files {
3179                    record_event(file);
3180                }
3181                for dir in dirs {
3182                    record_event(dir);
3183                }
3184            } else {
3185                log::info!("Deleting file {:?}", old_path.strip_prefix(&root_path)?);
3186                std::fs::remove_file(old_path).unwrap();
3187                record_event(old_path.clone());
3188            }
3189        }
3190
3191        Ok(events)
3192    }
3193
3194    fn read_dir_recursive(path: PathBuf) -> (Vec<PathBuf>, Vec<PathBuf>) {
3195        let child_entries = std::fs::read_dir(&path).unwrap();
3196        let mut dirs = vec![path];
3197        let mut files = Vec::new();
3198        for child_entry in child_entries {
3199            let child_path = child_entry.unwrap().path();
3200            if child_path.is_dir() {
3201                let (child_dirs, child_files) = read_dir_recursive(child_path);
3202                dirs.extend(child_dirs);
3203                files.extend(child_files);
3204            } else {
3205                files.push(child_path);
3206            }
3207        }
3208        (dirs, files)
3209    }
3210
3211    fn gen_name(rng: &mut impl Rng) -> String {
3212        (0..6)
3213            .map(|_| rng.sample(rand::distributions::Alphanumeric))
3214            .map(char::from)
3215            .collect()
3216    }
3217
3218    impl LocalSnapshot {
3219        fn check_invariants(&self) {
3220            let mut files = self.files(true, 0);
3221            let mut visible_files = self.files(false, 0);
3222            for entry in self.entries_by_path.cursor::<()>() {
3223                if entry.is_file() {
3224                    assert_eq!(files.next().unwrap().inode, entry.inode);
3225                    if !entry.is_ignored {
3226                        assert_eq!(visible_files.next().unwrap().inode, entry.inode);
3227                    }
3228                }
3229            }
3230            assert!(files.next().is_none());
3231            assert!(visible_files.next().is_none());
3232
3233            let mut bfs_paths = Vec::new();
3234            let mut stack = vec![Path::new("")];
3235            while let Some(path) = stack.pop() {
3236                bfs_paths.push(path);
3237                let ix = stack.len();
3238                for child_entry in self.child_entries(path) {
3239                    stack.insert(ix, &child_entry.path);
3240                }
3241            }
3242
3243            let dfs_paths_via_iter = self
3244                .entries_by_path
3245                .cursor::<()>()
3246                .map(|e| e.path.as_ref())
3247                .collect::<Vec<_>>();
3248            assert_eq!(bfs_paths, dfs_paths_via_iter);
3249
3250            let dfs_paths_via_traversal = self
3251                .entries(true)
3252                .map(|e| e.path.as_ref())
3253                .collect::<Vec<_>>();
3254            assert_eq!(dfs_paths_via_traversal, dfs_paths_via_iter);
3255
3256            for (ignore_parent_abs_path, _) in &self.ignores_by_parent_abs_path {
3257                let ignore_parent_path =
3258                    ignore_parent_abs_path.strip_prefix(&self.abs_path).unwrap();
3259                assert!(self.entry_for_path(&ignore_parent_path).is_some());
3260                assert!(self
3261                    .entry_for_path(ignore_parent_path.join(&*GITIGNORE))
3262                    .is_some());
3263            }
3264
3265            // Ensure extension counts are correct.
3266            let mut expected_extension_counts = HashMap::default();
3267            for extension in self.entries(false).filter_map(|e| e.path.extension()) {
3268                *expected_extension_counts
3269                    .entry(extension.into())
3270                    .or_insert(0) += 1;
3271            }
3272            assert_eq!(self.extension_counts, expected_extension_counts);
3273        }
3274
3275        fn to_vec(&self, include_ignored: bool) -> Vec<(&Path, u64, bool)> {
3276            let mut paths = Vec::new();
3277            for entry in self.entries_by_path.cursor::<()>() {
3278                if include_ignored || !entry.is_ignored {
3279                    paths.push((entry.path.as_ref(), entry.inode, entry.is_ignored));
3280                }
3281            }
3282            paths.sort_by(|a, b| a.0.cmp(&b.0));
3283            paths
3284        }
3285    }
3286}