worktree.rs

   1use crate::{
   2    copy_recursive, ignore::IgnoreStack, DiagnosticSummary, ProjectEntryId, RemoveOptions,
   3};
   4use ::ignore::gitignore::{Gitignore, GitignoreBuilder};
   5use anyhow::{anyhow, Context as _, Result};
   6use client::{proto, Client};
   7use clock::ReplicaId;
   8use collections::{HashMap, HashSet, VecDeque};
   9use fs::{
  10    repository::{GitFileStatus, GitRepository, RepoPath},
  11    Fs,
  12};
  13use futures::{
  14    channel::{
  15        mpsc::{self, UnboundedSender},
  16        oneshot,
  17    },
  18    select_biased,
  19    task::Poll,
  20    FutureExt as _, Stream, StreamExt,
  21};
  22use fuzzy::CharBag;
  23use git::{DOT_GIT, GITIGNORE};
  24use gpui::{
  25    AppContext, AsyncAppContext, BackgroundExecutor, Context, EventEmitter, Model, ModelContext,
  26    Task,
  27};
  28use language::{
  29    proto::{
  30        deserialize_fingerprint, deserialize_version, serialize_fingerprint, serialize_line_ending,
  31        serialize_version,
  32    },
  33    Buffer, DiagnosticEntry, File as _, LineEnding, PointUtf16, Rope, RopeFingerprint, Unclipped,
  34};
  35use lsp::LanguageServerId;
  36use parking_lot::Mutex;
  37use postage::{
  38    barrier,
  39    prelude::{Sink as _, Stream as _},
  40    watch,
  41};
  42use smol::channel::{self, Sender};
  43use std::{
  44    any::Any,
  45    cmp::{self, Ordering},
  46    convert::TryFrom,
  47    ffi::OsStr,
  48    fmt,
  49    future::Future,
  50    mem,
  51    ops::{AddAssign, Deref, DerefMut, Sub},
  52    path::{Path, PathBuf},
  53    pin::Pin,
  54    sync::{
  55        atomic::{AtomicUsize, Ordering::SeqCst},
  56        Arc,
  57    },
  58    time::{Duration, SystemTime},
  59};
  60use sum_tree::{Bias, Edit, SeekTarget, SumTree, TreeMap, TreeSet};
  61use util::{paths::HOME, ResultExt};
  62
  63#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash, PartialOrd, Ord)]
  64pub struct WorktreeId(usize);
  65
  66pub enum Worktree {
  67    Local(LocalWorktree),
  68    Remote(RemoteWorktree),
  69}
  70
  71pub struct LocalWorktree {
  72    snapshot: LocalSnapshot,
  73    scan_requests_tx: channel::Sender<ScanRequest>,
  74    path_prefixes_to_scan_tx: channel::Sender<Arc<Path>>,
  75    is_scanning: (watch::Sender<bool>, watch::Receiver<bool>),
  76    _background_scanner_task: Task<()>,
  77    share: Option<ShareState>,
  78    diagnostics: HashMap<
  79        Arc<Path>,
  80        Vec<(
  81            LanguageServerId,
  82            Vec<DiagnosticEntry<Unclipped<PointUtf16>>>,
  83        )>,
  84    >,
  85    diagnostic_summaries: HashMap<Arc<Path>, HashMap<LanguageServerId, DiagnosticSummary>>,
  86    client: Arc<Client>,
  87    fs: Arc<dyn Fs>,
  88    visible: bool,
  89}
  90
  91struct ScanRequest {
  92    relative_paths: Vec<Arc<Path>>,
  93    done: barrier::Sender,
  94}
  95
  96pub struct RemoteWorktree {
  97    snapshot: Snapshot,
  98    background_snapshot: Arc<Mutex<Snapshot>>,
  99    project_id: u64,
 100    client: Arc<Client>,
 101    updates_tx: Option<UnboundedSender<proto::UpdateWorktree>>,
 102    snapshot_subscriptions: VecDeque<(usize, oneshot::Sender<()>)>,
 103    replica_id: ReplicaId,
 104    diagnostic_summaries: HashMap<Arc<Path>, HashMap<LanguageServerId, DiagnosticSummary>>,
 105    visible: bool,
 106    disconnected: bool,
 107}
 108
 109#[derive(Clone)]
 110pub struct Snapshot {
 111    id: WorktreeId,
 112    abs_path: Arc<Path>,
 113    root_name: String,
 114    root_char_bag: CharBag,
 115    entries_by_path: SumTree<Entry>,
 116    entries_by_id: SumTree<PathEntry>,
 117    repository_entries: TreeMap<RepositoryWorkDirectory, RepositoryEntry>,
 118
 119    /// A number that increases every time the worktree begins scanning
 120    /// a set of paths from the filesystem. This scanning could be caused
 121    /// by some operation performed on the worktree, such as reading or
 122    /// writing a file, or by an event reported by the filesystem.
 123    scan_id: usize,
 124
 125    /// The latest scan id that has completed, and whose preceding scans
 126    /// have all completed. The current `scan_id` could be more than one
 127    /// greater than the `completed_scan_id` if operations are performed
 128    /// on the worktree while it is processing a file-system event.
 129    completed_scan_id: usize,
 130}
 131
 132#[derive(Clone, Debug, PartialEq, Eq)]
 133pub struct RepositoryEntry {
 134    pub(crate) work_directory: WorkDirectoryEntry,
 135    pub(crate) branch: Option<Arc<str>>,
 136}
 137
 138impl RepositoryEntry {
 139    pub fn branch(&self) -> Option<Arc<str>> {
 140        self.branch.clone()
 141    }
 142
 143    pub fn work_directory_id(&self) -> ProjectEntryId {
 144        *self.work_directory
 145    }
 146
 147    pub fn work_directory(&self, snapshot: &Snapshot) -> Option<RepositoryWorkDirectory> {
 148        snapshot
 149            .entry_for_id(self.work_directory_id())
 150            .map(|entry| RepositoryWorkDirectory(entry.path.clone()))
 151    }
 152
 153    pub fn build_update(&self, _: &Self) -> proto::RepositoryEntry {
 154        proto::RepositoryEntry {
 155            work_directory_id: self.work_directory_id().to_proto(),
 156            branch: self.branch.as_ref().map(|str| str.to_string()),
 157        }
 158    }
 159}
 160
 161impl From<&RepositoryEntry> for proto::RepositoryEntry {
 162    fn from(value: &RepositoryEntry) -> Self {
 163        proto::RepositoryEntry {
 164            work_directory_id: value.work_directory.to_proto(),
 165            branch: value.branch.as_ref().map(|str| str.to_string()),
 166        }
 167    }
 168}
 169
 170/// This path corresponds to the 'content path' (the folder that contains the .git)
 171#[derive(Clone, Debug, Ord, PartialOrd, Eq, PartialEq)]
 172pub struct RepositoryWorkDirectory(pub(crate) Arc<Path>);
 173
 174impl Default for RepositoryWorkDirectory {
 175    fn default() -> Self {
 176        RepositoryWorkDirectory(Arc::from(Path::new("")))
 177    }
 178}
 179
 180impl AsRef<Path> for RepositoryWorkDirectory {
 181    fn as_ref(&self) -> &Path {
 182        self.0.as_ref()
 183    }
 184}
 185
 186#[derive(Clone, Debug, Ord, PartialOrd, Eq, PartialEq)]
 187pub struct WorkDirectoryEntry(ProjectEntryId);
 188
 189impl WorkDirectoryEntry {
 190    pub(crate) fn relativize(&self, worktree: &Snapshot, path: &Path) -> Option<RepoPath> {
 191        worktree.entry_for_id(self.0).and_then(|entry| {
 192            path.strip_prefix(&entry.path)
 193                .ok()
 194                .map(move |path| path.into())
 195        })
 196    }
 197}
 198
 199impl Deref for WorkDirectoryEntry {
 200    type Target = ProjectEntryId;
 201
 202    fn deref(&self) -> &Self::Target {
 203        &self.0
 204    }
 205}
 206
 207impl<'a> From<ProjectEntryId> for WorkDirectoryEntry {
 208    fn from(value: ProjectEntryId) -> Self {
 209        WorkDirectoryEntry(value)
 210    }
 211}
 212
 213#[derive(Debug, Clone)]
 214pub struct LocalSnapshot {
 215    snapshot: Snapshot,
 216    /// All of the gitignore files in the worktree, indexed by their relative path.
 217    /// The boolean indicates whether the gitignore needs to be updated.
 218    ignores_by_parent_abs_path: HashMap<Arc<Path>, (Arc<Gitignore>, bool)>,
 219    /// All of the git repositories in the worktree, indexed by the project entry
 220    /// id of their parent directory.
 221    git_repositories: TreeMap<ProjectEntryId, LocalRepositoryEntry>,
 222}
 223
 224struct BackgroundScannerState {
 225    snapshot: LocalSnapshot,
 226    scanned_dirs: HashSet<ProjectEntryId>,
 227    path_prefixes_to_scan: HashSet<Arc<Path>>,
 228    paths_to_scan: HashSet<Arc<Path>>,
 229    /// The ids of all of the entries that were removed from the snapshot
 230    /// as part of the current update. These entry ids may be re-used
 231    /// if the same inode is discovered at a new path, or if the given
 232    /// path is re-created after being deleted.
 233    removed_entry_ids: HashMap<u64, ProjectEntryId>,
 234    changed_paths: Vec<Arc<Path>>,
 235    prev_snapshot: Snapshot,
 236}
 237
 238#[derive(Debug, Clone)]
 239pub struct LocalRepositoryEntry {
 240    pub(crate) git_dir_scan_id: usize,
 241    pub(crate) repo_ptr: Arc<Mutex<dyn GitRepository>>,
 242    /// Path to the actual .git folder.
 243    /// Note: if .git is a file, this points to the folder indicated by the .git file
 244    pub(crate) git_dir_path: Arc<Path>,
 245}
 246
 247impl Deref for LocalSnapshot {
 248    type Target = Snapshot;
 249
 250    fn deref(&self) -> &Self::Target {
 251        &self.snapshot
 252    }
 253}
 254
 255impl DerefMut for LocalSnapshot {
 256    fn deref_mut(&mut self) -> &mut Self::Target {
 257        &mut self.snapshot
 258    }
 259}
 260
 261enum ScanState {
 262    Started,
 263    Updated {
 264        snapshot: LocalSnapshot,
 265        changes: UpdatedEntriesSet,
 266        barrier: Option<barrier::Sender>,
 267        scanning: bool,
 268    },
 269}
 270
 271struct ShareState {
 272    project_id: u64,
 273    snapshots_tx:
 274        mpsc::UnboundedSender<(LocalSnapshot, UpdatedEntriesSet, UpdatedGitRepositoriesSet)>,
 275    resume_updates: watch::Sender<()>,
 276    _maintain_remote_snapshot: Task<Option<()>>,
 277}
 278
 279pub enum Event {
 280    UpdatedEntries(UpdatedEntriesSet),
 281    UpdatedGitRepositories(UpdatedGitRepositoriesSet),
 282}
 283
 284impl EventEmitter<Event> for Worktree {}
 285
 286impl Worktree {
 287    pub async fn local(
 288        client: Arc<Client>,
 289        path: impl Into<Arc<Path>>,
 290        visible: bool,
 291        fs: Arc<dyn Fs>,
 292        next_entry_id: Arc<AtomicUsize>,
 293        cx: &mut AsyncAppContext,
 294    ) -> Result<Model<Self>> {
 295        // After determining whether the root entry is a file or a directory, populate the
 296        // snapshot's "root name", which will be used for the purpose of fuzzy matching.
 297        let abs_path = path.into();
 298
 299        let metadata = fs
 300            .metadata(&abs_path)
 301            .await
 302            .context("failed to stat worktree path")?;
 303
 304        cx.build_model(move |cx: &mut ModelContext<Worktree>| {
 305            let root_name = abs_path
 306                .file_name()
 307                .map_or(String::new(), |f| f.to_string_lossy().to_string());
 308
 309            let mut snapshot = LocalSnapshot {
 310                ignores_by_parent_abs_path: Default::default(),
 311                git_repositories: Default::default(),
 312                snapshot: Snapshot {
 313                    id: WorktreeId::from_usize(cx.entity_id().as_u64() as usize),
 314                    abs_path: abs_path.clone(),
 315                    root_name: root_name.clone(),
 316                    root_char_bag: root_name.chars().map(|c| c.to_ascii_lowercase()).collect(),
 317                    entries_by_path: Default::default(),
 318                    entries_by_id: Default::default(),
 319                    repository_entries: Default::default(),
 320                    scan_id: 1,
 321                    completed_scan_id: 0,
 322                },
 323            };
 324
 325            if let Some(metadata) = metadata {
 326                snapshot.insert_entry(
 327                    Entry::new(
 328                        Arc::from(Path::new("")),
 329                        &metadata,
 330                        &next_entry_id,
 331                        snapshot.root_char_bag,
 332                    ),
 333                    fs.as_ref(),
 334                );
 335            }
 336
 337            let (scan_requests_tx, scan_requests_rx) = channel::unbounded();
 338            let (path_prefixes_to_scan_tx, path_prefixes_to_scan_rx) = channel::unbounded();
 339            let (scan_states_tx, mut scan_states_rx) = mpsc::unbounded();
 340
 341            cx.spawn(|this, mut cx| async move {
 342                while let Some((state, this)) = scan_states_rx.next().await.zip(this.upgrade()) {
 343                    this.update(&mut cx, |this, cx| {
 344                        let this = this.as_local_mut().unwrap();
 345                        match state {
 346                            ScanState::Started => {
 347                                *this.is_scanning.0.borrow_mut() = true;
 348                            }
 349                            ScanState::Updated {
 350                                snapshot,
 351                                changes,
 352                                barrier,
 353                                scanning,
 354                            } => {
 355                                *this.is_scanning.0.borrow_mut() = scanning;
 356                                this.set_snapshot(snapshot, changes, cx);
 357                                drop(barrier);
 358                            }
 359                        }
 360                        cx.notify();
 361                    })
 362                    .ok();
 363                }
 364            })
 365            .detach();
 366
 367            let background_scanner_task = cx.background_executor().spawn({
 368                let fs = fs.clone();
 369                let snapshot = snapshot.clone();
 370                let background = cx.background_executor().clone();
 371                async move {
 372                    let events = fs.watch(&abs_path, Duration::from_millis(100)).await;
 373                    BackgroundScanner::new(
 374                        snapshot,
 375                        next_entry_id,
 376                        fs,
 377                        scan_states_tx,
 378                        background,
 379                        scan_requests_rx,
 380                        path_prefixes_to_scan_rx,
 381                    )
 382                    .run(events)
 383                    .await;
 384                }
 385            });
 386
 387            Worktree::Local(LocalWorktree {
 388                snapshot,
 389                is_scanning: watch::channel_with(true),
 390                share: None,
 391                scan_requests_tx,
 392                path_prefixes_to_scan_tx,
 393                _background_scanner_task: background_scanner_task,
 394                diagnostics: Default::default(),
 395                diagnostic_summaries: Default::default(),
 396                client,
 397                fs,
 398                visible,
 399            })
 400        })
 401    }
 402
 403    pub fn remote(
 404        project_remote_id: u64,
 405        replica_id: ReplicaId,
 406        worktree: proto::WorktreeMetadata,
 407        client: Arc<Client>,
 408        cx: &mut AppContext,
 409    ) -> Model<Self> {
 410        cx.build_model(|cx: &mut ModelContext<Self>| {
 411            let snapshot = Snapshot {
 412                id: WorktreeId(worktree.id as usize),
 413                abs_path: Arc::from(PathBuf::from(worktree.abs_path)),
 414                root_name: worktree.root_name.clone(),
 415                root_char_bag: worktree
 416                    .root_name
 417                    .chars()
 418                    .map(|c| c.to_ascii_lowercase())
 419                    .collect(),
 420                entries_by_path: Default::default(),
 421                entries_by_id: Default::default(),
 422                repository_entries: Default::default(),
 423                scan_id: 1,
 424                completed_scan_id: 0,
 425            };
 426
 427            let (updates_tx, mut updates_rx) = mpsc::unbounded();
 428            let background_snapshot = Arc::new(Mutex::new(snapshot.clone()));
 429            let (mut snapshot_updated_tx, mut snapshot_updated_rx) = watch::channel();
 430
 431            cx.background_executor()
 432                .spawn({
 433                    let background_snapshot = background_snapshot.clone();
 434                    async move {
 435                        while let Some(update) = updates_rx.next().await {
 436                            if let Err(error) =
 437                                background_snapshot.lock().apply_remote_update(update)
 438                            {
 439                                log::error!("error applying worktree update: {}", error);
 440                            }
 441                            snapshot_updated_tx.send(()).await.ok();
 442                        }
 443                    }
 444                })
 445                .detach();
 446
 447            cx.spawn(|this, mut cx| async move {
 448                while (snapshot_updated_rx.recv().await).is_some() {
 449                    this.update(&mut cx, |this, cx| {
 450                        let this = this.as_remote_mut().unwrap();
 451                        this.snapshot = this.background_snapshot.lock().clone();
 452                        cx.emit(Event::UpdatedEntries(Arc::from([])));
 453                        cx.notify();
 454                        while let Some((scan_id, _)) = this.snapshot_subscriptions.front() {
 455                            if this.observed_snapshot(*scan_id) {
 456                                let (_, tx) = this.snapshot_subscriptions.pop_front().unwrap();
 457                                let _ = tx.send(());
 458                            } else {
 459                                break;
 460                            }
 461                        }
 462                    })?;
 463                }
 464                anyhow::Ok(())
 465            })
 466            .detach();
 467
 468            Worktree::Remote(RemoteWorktree {
 469                project_id: project_remote_id,
 470                replica_id,
 471                snapshot: snapshot.clone(),
 472                background_snapshot,
 473                updates_tx: Some(updates_tx),
 474                snapshot_subscriptions: Default::default(),
 475                client: client.clone(),
 476                diagnostic_summaries: Default::default(),
 477                visible: worktree.visible,
 478                disconnected: false,
 479            })
 480        })
 481    }
 482
 483    pub fn as_local(&self) -> Option<&LocalWorktree> {
 484        if let Worktree::Local(worktree) = self {
 485            Some(worktree)
 486        } else {
 487            None
 488        }
 489    }
 490
 491    pub fn as_remote(&self) -> Option<&RemoteWorktree> {
 492        if let Worktree::Remote(worktree) = self {
 493            Some(worktree)
 494        } else {
 495            None
 496        }
 497    }
 498
 499    pub fn as_local_mut(&mut self) -> Option<&mut LocalWorktree> {
 500        if let Worktree::Local(worktree) = self {
 501            Some(worktree)
 502        } else {
 503            None
 504        }
 505    }
 506
 507    pub fn as_remote_mut(&mut self) -> Option<&mut RemoteWorktree> {
 508        if let Worktree::Remote(worktree) = self {
 509            Some(worktree)
 510        } else {
 511            None
 512        }
 513    }
 514
 515    pub fn is_local(&self) -> bool {
 516        matches!(self, Worktree::Local(_))
 517    }
 518
 519    pub fn is_remote(&self) -> bool {
 520        !self.is_local()
 521    }
 522
 523    pub fn snapshot(&self) -> Snapshot {
 524        match self {
 525            Worktree::Local(worktree) => worktree.snapshot().snapshot,
 526            Worktree::Remote(worktree) => worktree.snapshot(),
 527        }
 528    }
 529
 530    pub fn scan_id(&self) -> usize {
 531        match self {
 532            Worktree::Local(worktree) => worktree.snapshot.scan_id,
 533            Worktree::Remote(worktree) => worktree.snapshot.scan_id,
 534        }
 535    }
 536
 537    pub fn completed_scan_id(&self) -> usize {
 538        match self {
 539            Worktree::Local(worktree) => worktree.snapshot.completed_scan_id,
 540            Worktree::Remote(worktree) => worktree.snapshot.completed_scan_id,
 541        }
 542    }
 543
 544    pub fn is_visible(&self) -> bool {
 545        match self {
 546            Worktree::Local(worktree) => worktree.visible,
 547            Worktree::Remote(worktree) => worktree.visible,
 548        }
 549    }
 550
 551    pub fn replica_id(&self) -> ReplicaId {
 552        match self {
 553            Worktree::Local(_) => 0,
 554            Worktree::Remote(worktree) => worktree.replica_id,
 555        }
 556    }
 557
 558    pub fn diagnostic_summaries(
 559        &self,
 560    ) -> impl Iterator<Item = (Arc<Path>, LanguageServerId, DiagnosticSummary)> + '_ {
 561        match self {
 562            Worktree::Local(worktree) => &worktree.diagnostic_summaries,
 563            Worktree::Remote(worktree) => &worktree.diagnostic_summaries,
 564        }
 565        .iter()
 566        .flat_map(|(path, summaries)| {
 567            summaries
 568                .iter()
 569                .map(move |(&server_id, &summary)| (path.clone(), server_id, summary))
 570        })
 571    }
 572
 573    pub fn abs_path(&self) -> Arc<Path> {
 574        match self {
 575            Worktree::Local(worktree) => worktree.abs_path.clone(),
 576            Worktree::Remote(worktree) => worktree.abs_path.clone(),
 577        }
 578    }
 579
 580    pub fn root_file(&self, cx: &mut ModelContext<Self>) -> Option<Arc<File>> {
 581        let entry = self.root_entry()?;
 582        Some(File::for_entry(entry.clone(), cx.handle()))
 583    }
 584}
 585
 586impl LocalWorktree {
 587    pub fn contains_abs_path(&self, path: &Path) -> bool {
 588        path.starts_with(&self.abs_path)
 589    }
 590
 591    pub(crate) fn load_buffer(
 592        &mut self,
 593        id: u64,
 594        path: &Path,
 595        cx: &mut ModelContext<Worktree>,
 596    ) -> Task<Result<Model<Buffer>>> {
 597        let path = Arc::from(path);
 598        cx.spawn(move |this, mut cx| async move {
 599            let (file, contents, diff_base) = this
 600                .update(&mut cx, |t, cx| t.as_local().unwrap().load(&path, cx))?
 601                .await?;
 602            let text_buffer = cx
 603                .background_executor()
 604                .spawn(async move { text::Buffer::new(0, id, contents) })
 605                .await;
 606            cx.build_model(|_| Buffer::build(text_buffer, diff_base, Some(Arc::new(file))))
 607        })
 608    }
 609
 610    pub fn diagnostics_for_path(
 611        &self,
 612        path: &Path,
 613    ) -> Vec<(
 614        LanguageServerId,
 615        Vec<DiagnosticEntry<Unclipped<PointUtf16>>>,
 616    )> {
 617        self.diagnostics.get(path).cloned().unwrap_or_default()
 618    }
 619
 620    pub fn clear_diagnostics_for_language_server(
 621        &mut self,
 622        server_id: LanguageServerId,
 623        _: &mut ModelContext<Worktree>,
 624    ) {
 625        let worktree_id = self.id().to_proto();
 626        self.diagnostic_summaries
 627            .retain(|path, summaries_by_server_id| {
 628                if summaries_by_server_id.remove(&server_id).is_some() {
 629                    if let Some(share) = self.share.as_ref() {
 630                        self.client
 631                            .send(proto::UpdateDiagnosticSummary {
 632                                project_id: share.project_id,
 633                                worktree_id,
 634                                summary: Some(proto::DiagnosticSummary {
 635                                    path: path.to_string_lossy().to_string(),
 636                                    language_server_id: server_id.0 as u64,
 637                                    error_count: 0,
 638                                    warning_count: 0,
 639                                }),
 640                            })
 641                            .log_err();
 642                    }
 643                    !summaries_by_server_id.is_empty()
 644                } else {
 645                    true
 646                }
 647            });
 648
 649        self.diagnostics.retain(|_, diagnostics_by_server_id| {
 650            if let Ok(ix) = diagnostics_by_server_id.binary_search_by_key(&server_id, |e| e.0) {
 651                diagnostics_by_server_id.remove(ix);
 652                !diagnostics_by_server_id.is_empty()
 653            } else {
 654                true
 655            }
 656        });
 657    }
 658
 659    pub fn update_diagnostics(
 660        &mut self,
 661        server_id: LanguageServerId,
 662        worktree_path: Arc<Path>,
 663        diagnostics: Vec<DiagnosticEntry<Unclipped<PointUtf16>>>,
 664        _: &mut ModelContext<Worktree>,
 665    ) -> Result<bool> {
 666        let summaries_by_server_id = self
 667            .diagnostic_summaries
 668            .entry(worktree_path.clone())
 669            .or_default();
 670
 671        let old_summary = summaries_by_server_id
 672            .remove(&server_id)
 673            .unwrap_or_default();
 674
 675        let new_summary = DiagnosticSummary::new(&diagnostics);
 676        if new_summary.is_empty() {
 677            if let Some(diagnostics_by_server_id) = self.diagnostics.get_mut(&worktree_path) {
 678                if let Ok(ix) = diagnostics_by_server_id.binary_search_by_key(&server_id, |e| e.0) {
 679                    diagnostics_by_server_id.remove(ix);
 680                }
 681                if diagnostics_by_server_id.is_empty() {
 682                    self.diagnostics.remove(&worktree_path);
 683                }
 684            }
 685        } else {
 686            summaries_by_server_id.insert(server_id, new_summary);
 687            let diagnostics_by_server_id =
 688                self.diagnostics.entry(worktree_path.clone()).or_default();
 689            match diagnostics_by_server_id.binary_search_by_key(&server_id, |e| e.0) {
 690                Ok(ix) => {
 691                    diagnostics_by_server_id[ix] = (server_id, diagnostics);
 692                }
 693                Err(ix) => {
 694                    diagnostics_by_server_id.insert(ix, (server_id, diagnostics));
 695                }
 696            }
 697        }
 698
 699        if !old_summary.is_empty() || !new_summary.is_empty() {
 700            if let Some(share) = self.share.as_ref() {
 701                self.client
 702                    .send(proto::UpdateDiagnosticSummary {
 703                        project_id: share.project_id,
 704                        worktree_id: self.id().to_proto(),
 705                        summary: Some(proto::DiagnosticSummary {
 706                            path: worktree_path.to_string_lossy().to_string(),
 707                            language_server_id: server_id.0 as u64,
 708                            error_count: new_summary.error_count as u32,
 709                            warning_count: new_summary.warning_count as u32,
 710                        }),
 711                    })
 712                    .log_err();
 713            }
 714        }
 715
 716        Ok(!old_summary.is_empty() || !new_summary.is_empty())
 717    }
 718
 719    fn set_snapshot(
 720        &mut self,
 721        new_snapshot: LocalSnapshot,
 722        entry_changes: UpdatedEntriesSet,
 723        cx: &mut ModelContext<Worktree>,
 724    ) {
 725        let repo_changes = self.changed_repos(&self.snapshot, &new_snapshot);
 726
 727        self.snapshot = new_snapshot;
 728
 729        if let Some(share) = self.share.as_mut() {
 730            share
 731                .snapshots_tx
 732                .unbounded_send((
 733                    self.snapshot.clone(),
 734                    entry_changes.clone(),
 735                    repo_changes.clone(),
 736                ))
 737                .ok();
 738        }
 739
 740        if !entry_changes.is_empty() {
 741            cx.emit(Event::UpdatedEntries(entry_changes));
 742        }
 743        if !repo_changes.is_empty() {
 744            cx.emit(Event::UpdatedGitRepositories(repo_changes));
 745        }
 746    }
 747
 748    fn changed_repos(
 749        &self,
 750        old_snapshot: &LocalSnapshot,
 751        new_snapshot: &LocalSnapshot,
 752    ) -> UpdatedGitRepositoriesSet {
 753        let mut changes = Vec::new();
 754        let mut old_repos = old_snapshot.git_repositories.iter().peekable();
 755        let mut new_repos = new_snapshot.git_repositories.iter().peekable();
 756        loop {
 757            match (new_repos.peek().map(clone), old_repos.peek().map(clone)) {
 758                (Some((new_entry_id, new_repo)), Some((old_entry_id, old_repo))) => {
 759                    match Ord::cmp(&new_entry_id, &old_entry_id) {
 760                        Ordering::Less => {
 761                            if let Some(entry) = new_snapshot.entry_for_id(new_entry_id) {
 762                                changes.push((
 763                                    entry.path.clone(),
 764                                    GitRepositoryChange {
 765                                        old_repository: None,
 766                                    },
 767                                ));
 768                            }
 769                            new_repos.next();
 770                        }
 771                        Ordering::Equal => {
 772                            if new_repo.git_dir_scan_id != old_repo.git_dir_scan_id {
 773                                if let Some(entry) = new_snapshot.entry_for_id(new_entry_id) {
 774                                    let old_repo = old_snapshot
 775                                        .repository_entries
 776                                        .get(&RepositoryWorkDirectory(entry.path.clone()))
 777                                        .cloned();
 778                                    changes.push((
 779                                        entry.path.clone(),
 780                                        GitRepositoryChange {
 781                                            old_repository: old_repo,
 782                                        },
 783                                    ));
 784                                }
 785                            }
 786                            new_repos.next();
 787                            old_repos.next();
 788                        }
 789                        Ordering::Greater => {
 790                            if let Some(entry) = old_snapshot.entry_for_id(old_entry_id) {
 791                                let old_repo = old_snapshot
 792                                    .repository_entries
 793                                    .get(&RepositoryWorkDirectory(entry.path.clone()))
 794                                    .cloned();
 795                                changes.push((
 796                                    entry.path.clone(),
 797                                    GitRepositoryChange {
 798                                        old_repository: old_repo,
 799                                    },
 800                                ));
 801                            }
 802                            old_repos.next();
 803                        }
 804                    }
 805                }
 806                (Some((entry_id, _)), None) => {
 807                    if let Some(entry) = new_snapshot.entry_for_id(entry_id) {
 808                        changes.push((
 809                            entry.path.clone(),
 810                            GitRepositoryChange {
 811                                old_repository: None,
 812                            },
 813                        ));
 814                    }
 815                    new_repos.next();
 816                }
 817                (None, Some((entry_id, _))) => {
 818                    if let Some(entry) = old_snapshot.entry_for_id(entry_id) {
 819                        let old_repo = old_snapshot
 820                            .repository_entries
 821                            .get(&RepositoryWorkDirectory(entry.path.clone()))
 822                            .cloned();
 823                        changes.push((
 824                            entry.path.clone(),
 825                            GitRepositoryChange {
 826                                old_repository: old_repo,
 827                            },
 828                        ));
 829                    }
 830                    old_repos.next();
 831                }
 832                (None, None) => break,
 833            }
 834        }
 835
 836        fn clone<T: Clone, U: Clone>(value: &(&T, &U)) -> (T, U) {
 837            (value.0.clone(), value.1.clone())
 838        }
 839
 840        changes.into()
 841    }
 842
 843    pub fn scan_complete(&self) -> impl Future<Output = ()> {
 844        let mut is_scanning_rx = self.is_scanning.1.clone();
 845        async move {
 846            let mut is_scanning = is_scanning_rx.borrow().clone();
 847            while is_scanning {
 848                if let Some(value) = is_scanning_rx.recv().await {
 849                    is_scanning = value;
 850                } else {
 851                    break;
 852                }
 853            }
 854        }
 855    }
 856
 857    pub fn snapshot(&self) -> LocalSnapshot {
 858        self.snapshot.clone()
 859    }
 860
 861    pub fn metadata_proto(&self) -> proto::WorktreeMetadata {
 862        proto::WorktreeMetadata {
 863            id: self.id().to_proto(),
 864            root_name: self.root_name().to_string(),
 865            visible: self.visible,
 866            abs_path: self.abs_path().as_os_str().to_string_lossy().into(),
 867        }
 868    }
 869
 870    fn load(
 871        &self,
 872        path: &Path,
 873        cx: &mut ModelContext<Worktree>,
 874    ) -> Task<Result<(File, String, Option<String>)>> {
 875        let path = Arc::from(path);
 876        let abs_path = self.absolutize(&path);
 877        let fs = self.fs.clone();
 878        let entry = self.refresh_entry(path.clone(), None, cx);
 879
 880        cx.spawn(|this, mut cx| async move {
 881            let text = fs.load(&abs_path).await?;
 882            let entry = entry.await?;
 883
 884            let mut index_task = None;
 885            let snapshot = this.update(&mut cx, |this, _| this.as_local().unwrap().snapshot())?;
 886            if let Some(repo) = snapshot.repository_for_path(&path) {
 887                let repo_path = repo.work_directory.relativize(&snapshot, &path).unwrap();
 888                if let Some(repo) = snapshot.git_repositories.get(&*repo.work_directory) {
 889                    let repo = repo.repo_ptr.clone();
 890                    index_task = Some(
 891                        cx.background_executor()
 892                            .spawn(async move { repo.lock().load_index_text(&repo_path) }),
 893                    );
 894                }
 895            }
 896
 897            let diff_base = if let Some(index_task) = index_task {
 898                index_task.await
 899            } else {
 900                None
 901            };
 902
 903            let worktree = this
 904                .upgrade()
 905                .ok_or_else(|| anyhow!("worktree was dropped"))?;
 906            Ok((
 907                File {
 908                    entry_id: entry.id,
 909                    worktree,
 910                    path: entry.path,
 911                    mtime: entry.mtime,
 912                    is_local: true,
 913                    is_deleted: false,
 914                },
 915                text,
 916                diff_base,
 917            ))
 918        })
 919    }
 920
 921    pub fn save_buffer(
 922        &self,
 923        buffer_handle: Model<Buffer>,
 924        path: Arc<Path>,
 925        has_changed_file: bool,
 926        cx: &mut ModelContext<Worktree>,
 927    ) -> Task<Result<()>> {
 928        let buffer = buffer_handle.read(cx);
 929
 930        let rpc = self.client.clone();
 931        let buffer_id = buffer.remote_id();
 932        let project_id = self.share.as_ref().map(|share| share.project_id);
 933
 934        let text = buffer.as_rope().clone();
 935        let fingerprint = text.fingerprint();
 936        let version = buffer.version();
 937        let save = self.write_file(path, text, buffer.line_ending(), cx);
 938
 939        cx.spawn(move |this, mut cx| async move {
 940            let entry = save.await?;
 941            let this = this.upgrade().context("worktree dropped")?;
 942
 943            if has_changed_file {
 944                let new_file = Arc::new(File {
 945                    entry_id: entry.id,
 946                    worktree: this,
 947                    path: entry.path,
 948                    mtime: entry.mtime,
 949                    is_local: true,
 950                    is_deleted: false,
 951                });
 952
 953                if let Some(project_id) = project_id {
 954                    rpc.send(proto::UpdateBufferFile {
 955                        project_id,
 956                        buffer_id,
 957                        file: Some(new_file.to_proto()),
 958                    })
 959                    .log_err();
 960                }
 961
 962                buffer_handle.update(&mut cx, |buffer, cx| {
 963                    if has_changed_file {
 964                        buffer.file_updated(new_file, cx).detach();
 965                    }
 966                })?;
 967            }
 968
 969            if let Some(project_id) = project_id {
 970                rpc.send(proto::BufferSaved {
 971                    project_id,
 972                    buffer_id,
 973                    version: serialize_version(&version),
 974                    mtime: Some(entry.mtime.into()),
 975                    fingerprint: serialize_fingerprint(fingerprint),
 976                })?;
 977            }
 978
 979            buffer_handle.update(&mut cx, |buffer, cx| {
 980                buffer.did_save(version.clone(), fingerprint, entry.mtime, cx);
 981            })?;
 982
 983            Ok(())
 984        })
 985    }
 986
 987    /// Find the lowest path in the worktree's datastructures that is an ancestor
 988    fn lowest_ancestor(&self, path: &Path) -> PathBuf {
 989        let mut lowest_ancestor = None;
 990        for path in path.ancestors() {
 991            if self.entry_for_path(path).is_some() {
 992                lowest_ancestor = Some(path.to_path_buf());
 993                break;
 994            }
 995        }
 996
 997        lowest_ancestor.unwrap_or_else(|| PathBuf::from(""))
 998    }
 999
1000    pub fn create_entry(
1001        &self,
1002        path: impl Into<Arc<Path>>,
1003        is_dir: bool,
1004        cx: &mut ModelContext<Worktree>,
1005    ) -> Task<Result<Entry>> {
1006        let path = path.into();
1007        let lowest_ancestor = self.lowest_ancestor(&path);
1008        let abs_path = self.absolutize(&path);
1009        let fs = self.fs.clone();
1010        let write = cx.background_executor().spawn(async move {
1011            if is_dir {
1012                fs.create_dir(&abs_path).await
1013            } else {
1014                fs.save(&abs_path, &Default::default(), Default::default())
1015                    .await
1016            }
1017        });
1018
1019        cx.spawn(|this, mut cx| async move {
1020            write.await?;
1021            let (result, refreshes) = this.update(&mut cx, |this, cx| {
1022                let mut refreshes = Vec::<Task<anyhow::Result<Entry>>>::new();
1023                let refresh_paths = path.strip_prefix(&lowest_ancestor).unwrap();
1024                for refresh_path in refresh_paths.ancestors() {
1025                    if refresh_path == Path::new("") {
1026                        continue;
1027                    }
1028                    let refresh_full_path = lowest_ancestor.join(refresh_path);
1029
1030                    refreshes.push(this.as_local_mut().unwrap().refresh_entry(
1031                        refresh_full_path.into(),
1032                        None,
1033                        cx,
1034                    ));
1035                }
1036                (
1037                    this.as_local_mut().unwrap().refresh_entry(path, None, cx),
1038                    refreshes,
1039                )
1040            })?;
1041            for refresh in refreshes {
1042                refresh.await.log_err();
1043            }
1044
1045            result.await
1046        })
1047    }
1048
1049    pub fn write_file(
1050        &self,
1051        path: impl Into<Arc<Path>>,
1052        text: Rope,
1053        line_ending: LineEnding,
1054        cx: &mut ModelContext<Worktree>,
1055    ) -> Task<Result<Entry>> {
1056        let path = path.into();
1057        let abs_path = self.absolutize(&path);
1058        let fs = self.fs.clone();
1059        let write = cx
1060            .background_executor()
1061            .spawn(async move { fs.save(&abs_path, &text, line_ending).await });
1062
1063        cx.spawn(|this, mut cx| async move {
1064            write.await?;
1065            this.update(&mut cx, |this, cx| {
1066                this.as_local_mut().unwrap().refresh_entry(path, None, cx)
1067            })?
1068            .await
1069        })
1070    }
1071
1072    pub fn delete_entry(
1073        &self,
1074        entry_id: ProjectEntryId,
1075        cx: &mut ModelContext<Worktree>,
1076    ) -> Option<Task<Result<()>>> {
1077        let entry = self.entry_for_id(entry_id)?.clone();
1078        let abs_path = self.absolutize(&entry.path);
1079        let fs = self.fs.clone();
1080
1081        let delete = cx.background_executor().spawn(async move {
1082            if entry.is_file() {
1083                fs.remove_file(&abs_path, Default::default()).await?;
1084            } else {
1085                fs.remove_dir(
1086                    &abs_path,
1087                    RemoveOptions {
1088                        recursive: true,
1089                        ignore_if_not_exists: false,
1090                    },
1091                )
1092                .await?;
1093            }
1094            anyhow::Ok(entry.path)
1095        });
1096
1097        Some(cx.spawn(|this, mut cx| async move {
1098            let path = delete.await?;
1099            this.update(&mut cx, |this, _| {
1100                this.as_local_mut()
1101                    .unwrap()
1102                    .refresh_entries_for_paths(vec![path])
1103            })?
1104            .recv()
1105            .await;
1106            Ok(())
1107        }))
1108    }
1109
1110    pub fn rename_entry(
1111        &self,
1112        entry_id: ProjectEntryId,
1113        new_path: impl Into<Arc<Path>>,
1114        cx: &mut ModelContext<Worktree>,
1115    ) -> Option<Task<Result<Entry>>> {
1116        let old_path = self.entry_for_id(entry_id)?.path.clone();
1117        let new_path = new_path.into();
1118        let abs_old_path = self.absolutize(&old_path);
1119        let abs_new_path = self.absolutize(&new_path);
1120        let fs = self.fs.clone();
1121        let rename = cx.background_executor().spawn(async move {
1122            fs.rename(&abs_old_path, &abs_new_path, Default::default())
1123                .await
1124        });
1125
1126        Some(cx.spawn(|this, mut cx| async move {
1127            rename.await?;
1128            this.update(&mut cx, |this, cx| {
1129                this.as_local_mut()
1130                    .unwrap()
1131                    .refresh_entry(new_path.clone(), Some(old_path), cx)
1132            })?
1133            .await
1134        }))
1135    }
1136
1137    pub fn copy_entry(
1138        &self,
1139        entry_id: ProjectEntryId,
1140        new_path: impl Into<Arc<Path>>,
1141        cx: &mut ModelContext<Worktree>,
1142    ) -> Option<Task<Result<Entry>>> {
1143        let old_path = self.entry_for_id(entry_id)?.path.clone();
1144        let new_path = new_path.into();
1145        let abs_old_path = self.absolutize(&old_path);
1146        let abs_new_path = self.absolutize(&new_path);
1147        let fs = self.fs.clone();
1148        let copy = cx.background_executor().spawn(async move {
1149            copy_recursive(
1150                fs.as_ref(),
1151                &abs_old_path,
1152                &abs_new_path,
1153                Default::default(),
1154            )
1155            .await
1156        });
1157
1158        Some(cx.spawn(|this, mut cx| async move {
1159            copy.await?;
1160            this.update(&mut cx, |this, cx| {
1161                this.as_local_mut()
1162                    .unwrap()
1163                    .refresh_entry(new_path.clone(), None, cx)
1164            })?
1165            .await
1166        }))
1167    }
1168
1169    pub fn expand_entry(
1170        &mut self,
1171        entry_id: ProjectEntryId,
1172        cx: &mut ModelContext<Worktree>,
1173    ) -> Option<Task<Result<()>>> {
1174        let path = self.entry_for_id(entry_id)?.path.clone();
1175        let mut refresh = self.refresh_entries_for_paths(vec![path]);
1176        Some(cx.background_executor().spawn(async move {
1177            refresh.next().await;
1178            Ok(())
1179        }))
1180    }
1181
1182    pub fn refresh_entries_for_paths(&self, paths: Vec<Arc<Path>>) -> barrier::Receiver {
1183        let (tx, rx) = barrier::channel();
1184        self.scan_requests_tx
1185            .try_send(ScanRequest {
1186                relative_paths: paths,
1187                done: tx,
1188            })
1189            .ok();
1190        rx
1191    }
1192
1193    pub fn add_path_prefix_to_scan(&self, path_prefix: Arc<Path>) {
1194        self.path_prefixes_to_scan_tx.try_send(path_prefix).ok();
1195    }
1196
1197    fn refresh_entry(
1198        &self,
1199        path: Arc<Path>,
1200        old_path: Option<Arc<Path>>,
1201        cx: &mut ModelContext<Worktree>,
1202    ) -> Task<Result<Entry>> {
1203        let paths = if let Some(old_path) = old_path.as_ref() {
1204            vec![old_path.clone(), path.clone()]
1205        } else {
1206            vec![path.clone()]
1207        };
1208        let mut refresh = self.refresh_entries_for_paths(paths);
1209        cx.spawn(move |this, mut cx| async move {
1210            refresh.recv().await;
1211            this.update(&mut cx, |this, _| {
1212                this.entry_for_path(path)
1213                    .cloned()
1214                    .ok_or_else(|| anyhow!("failed to read path after update"))
1215            })?
1216        })
1217    }
1218
1219    pub fn observe_updates<F, Fut>(
1220        &mut self,
1221        project_id: u64,
1222        cx: &mut ModelContext<Worktree>,
1223        callback: F,
1224    ) -> oneshot::Receiver<()>
1225    where
1226        F: 'static + Send + Fn(proto::UpdateWorktree) -> Fut,
1227        Fut: Send + Future<Output = bool>,
1228    {
1229        #[cfg(any(test, feature = "test-support"))]
1230        const MAX_CHUNK_SIZE: usize = 2;
1231        #[cfg(not(any(test, feature = "test-support")))]
1232        const MAX_CHUNK_SIZE: usize = 256;
1233
1234        let (share_tx, share_rx) = oneshot::channel();
1235
1236        if let Some(share) = self.share.as_mut() {
1237            share_tx.send(()).ok();
1238            *share.resume_updates.borrow_mut() = ();
1239            return share_rx;
1240        }
1241
1242        let (resume_updates_tx, mut resume_updates_rx) = watch::channel::<()>();
1243        let (snapshots_tx, mut snapshots_rx) =
1244            mpsc::unbounded::<(LocalSnapshot, UpdatedEntriesSet, UpdatedGitRepositoriesSet)>();
1245        snapshots_tx
1246            .unbounded_send((self.snapshot(), Arc::from([]), Arc::from([])))
1247            .ok();
1248
1249        let worktree_id = cx.entity_id().as_u64();
1250        let _maintain_remote_snapshot = cx.background_executor().spawn(async move {
1251            let mut is_first = true;
1252            while let Some((snapshot, entry_changes, repo_changes)) = snapshots_rx.next().await {
1253                let update;
1254                if is_first {
1255                    update = snapshot.build_initial_update(project_id, worktree_id);
1256                    is_first = false;
1257                } else {
1258                    update =
1259                        snapshot.build_update(project_id, worktree_id, entry_changes, repo_changes);
1260                }
1261
1262                for update in proto::split_worktree_update(update, MAX_CHUNK_SIZE) {
1263                    let _ = resume_updates_rx.try_recv();
1264                    loop {
1265                        let result = callback(update.clone());
1266                        if result.await {
1267                            break;
1268                        } else {
1269                            log::info!("waiting to resume updates");
1270                            if resume_updates_rx.next().await.is_none() {
1271                                return Some(());
1272                            }
1273                        }
1274                    }
1275                }
1276            }
1277            share_tx.send(()).ok();
1278            Some(())
1279        });
1280
1281        self.share = Some(ShareState {
1282            project_id,
1283            snapshots_tx,
1284            resume_updates: resume_updates_tx,
1285            _maintain_remote_snapshot,
1286        });
1287        share_rx
1288    }
1289
1290    pub fn share(&mut self, project_id: u64, cx: &mut ModelContext<Worktree>) -> Task<Result<()>> {
1291        let client = self.client.clone();
1292
1293        for (path, summaries) in &self.diagnostic_summaries {
1294            for (&server_id, summary) in summaries {
1295                if let Err(e) = self.client.send(proto::UpdateDiagnosticSummary {
1296                    project_id,
1297                    worktree_id: cx.entity_id().as_u64(),
1298                    summary: Some(summary.to_proto(server_id, &path)),
1299                }) {
1300                    return Task::ready(Err(e));
1301                }
1302            }
1303        }
1304
1305        let rx = self.observe_updates(project_id, cx, move |update| {
1306            client.request(update).map(|result| result.is_ok())
1307        });
1308        cx.background_executor()
1309            .spawn(async move { rx.await.map_err(|_| anyhow!("share ended")) })
1310    }
1311
1312    pub fn unshare(&mut self) {
1313        self.share.take();
1314    }
1315
1316    pub fn is_shared(&self) -> bool {
1317        self.share.is_some()
1318    }
1319}
1320
1321impl RemoteWorktree {
1322    fn snapshot(&self) -> Snapshot {
1323        self.snapshot.clone()
1324    }
1325
1326    pub fn disconnected_from_host(&mut self) {
1327        self.updates_tx.take();
1328        self.snapshot_subscriptions.clear();
1329        self.disconnected = true;
1330    }
1331
1332    pub fn save_buffer(
1333        &self,
1334        buffer_handle: Model<Buffer>,
1335        cx: &mut ModelContext<Worktree>,
1336    ) -> Task<Result<()>> {
1337        let buffer = buffer_handle.read(cx);
1338        let buffer_id = buffer.remote_id();
1339        let version = buffer.version();
1340        let rpc = self.client.clone();
1341        let project_id = self.project_id;
1342        cx.spawn(move |_, mut cx| async move {
1343            let response = rpc
1344                .request(proto::SaveBuffer {
1345                    project_id,
1346                    buffer_id,
1347                    version: serialize_version(&version),
1348                })
1349                .await?;
1350            let version = deserialize_version(&response.version);
1351            let fingerprint = deserialize_fingerprint(&response.fingerprint)?;
1352            let mtime = response
1353                .mtime
1354                .ok_or_else(|| anyhow!("missing mtime"))?
1355                .into();
1356
1357            buffer_handle.update(&mut cx, |buffer, cx| {
1358                buffer.did_save(version.clone(), fingerprint, mtime, cx);
1359            })?;
1360
1361            Ok(())
1362        })
1363    }
1364
1365    pub fn update_from_remote(&mut self, update: proto::UpdateWorktree) {
1366        if let Some(updates_tx) = &self.updates_tx {
1367            updates_tx
1368                .unbounded_send(update)
1369                .expect("consumer runs to completion");
1370        }
1371    }
1372
1373    fn observed_snapshot(&self, scan_id: usize) -> bool {
1374        self.completed_scan_id >= scan_id
1375    }
1376
1377    pub(crate) fn wait_for_snapshot(&mut self, scan_id: usize) -> impl Future<Output = Result<()>> {
1378        let (tx, rx) = oneshot::channel();
1379        if self.observed_snapshot(scan_id) {
1380            let _ = tx.send(());
1381        } else if self.disconnected {
1382            drop(tx);
1383        } else {
1384            match self
1385                .snapshot_subscriptions
1386                .binary_search_by_key(&scan_id, |probe| probe.0)
1387            {
1388                Ok(ix) | Err(ix) => self.snapshot_subscriptions.insert(ix, (scan_id, tx)),
1389            }
1390        }
1391
1392        async move {
1393            rx.await?;
1394            Ok(())
1395        }
1396    }
1397
1398    pub fn update_diagnostic_summary(
1399        &mut self,
1400        path: Arc<Path>,
1401        summary: &proto::DiagnosticSummary,
1402    ) {
1403        let server_id = LanguageServerId(summary.language_server_id as usize);
1404        let summary = DiagnosticSummary {
1405            error_count: summary.error_count as usize,
1406            warning_count: summary.warning_count as usize,
1407        };
1408
1409        if summary.is_empty() {
1410            if let Some(summaries) = self.diagnostic_summaries.get_mut(&path) {
1411                summaries.remove(&server_id);
1412                if summaries.is_empty() {
1413                    self.diagnostic_summaries.remove(&path);
1414                }
1415            }
1416        } else {
1417            self.diagnostic_summaries
1418                .entry(path)
1419                .or_default()
1420                .insert(server_id, summary);
1421        }
1422    }
1423
1424    pub fn insert_entry(
1425        &mut self,
1426        entry: proto::Entry,
1427        scan_id: usize,
1428        cx: &mut ModelContext<Worktree>,
1429    ) -> Task<Result<Entry>> {
1430        let wait_for_snapshot = self.wait_for_snapshot(scan_id);
1431        cx.spawn(|this, mut cx| async move {
1432            wait_for_snapshot.await?;
1433            this.update(&mut cx, |worktree, _| {
1434                let worktree = worktree.as_remote_mut().unwrap();
1435                let mut snapshot = worktree.background_snapshot.lock();
1436                let entry = snapshot.insert_entry(entry);
1437                worktree.snapshot = snapshot.clone();
1438                entry
1439            })?
1440        })
1441    }
1442
1443    pub(crate) fn delete_entry(
1444        &mut self,
1445        id: ProjectEntryId,
1446        scan_id: usize,
1447        cx: &mut ModelContext<Worktree>,
1448    ) -> Task<Result<()>> {
1449        let wait_for_snapshot = self.wait_for_snapshot(scan_id);
1450        cx.spawn(move |this, mut cx| async move {
1451            wait_for_snapshot.await?;
1452            this.update(&mut cx, |worktree, _| {
1453                let worktree = worktree.as_remote_mut().unwrap();
1454                let mut snapshot = worktree.background_snapshot.lock();
1455                snapshot.delete_entry(id);
1456                worktree.snapshot = snapshot.clone();
1457            })?;
1458            Ok(())
1459        })
1460    }
1461}
1462
1463impl Snapshot {
1464    pub fn id(&self) -> WorktreeId {
1465        self.id
1466    }
1467
1468    pub fn abs_path(&self) -> &Arc<Path> {
1469        &self.abs_path
1470    }
1471
1472    pub fn absolutize(&self, path: &Path) -> PathBuf {
1473        if path.file_name().is_some() {
1474            self.abs_path.join(path)
1475        } else {
1476            self.abs_path.to_path_buf()
1477        }
1478    }
1479
1480    pub fn contains_entry(&self, entry_id: ProjectEntryId) -> bool {
1481        self.entries_by_id.get(&entry_id, &()).is_some()
1482    }
1483
1484    pub(crate) fn insert_entry(&mut self, entry: proto::Entry) -> Result<Entry> {
1485        let entry = Entry::try_from((&self.root_char_bag, entry))?;
1486        let old_entry = self.entries_by_id.insert_or_replace(
1487            PathEntry {
1488                id: entry.id,
1489                path: entry.path.clone(),
1490                is_ignored: entry.is_ignored,
1491                scan_id: 0,
1492            },
1493            &(),
1494        );
1495        if let Some(old_entry) = old_entry {
1496            self.entries_by_path.remove(&PathKey(old_entry.path), &());
1497        }
1498        self.entries_by_path.insert_or_replace(entry.clone(), &());
1499        Ok(entry)
1500    }
1501
1502    fn delete_entry(&mut self, entry_id: ProjectEntryId) -> Option<Arc<Path>> {
1503        let removed_entry = self.entries_by_id.remove(&entry_id, &())?;
1504        self.entries_by_path = {
1505            let mut cursor = self.entries_by_path.cursor::<TraversalProgress>();
1506            let mut new_entries_by_path =
1507                cursor.slice(&TraversalTarget::Path(&removed_entry.path), Bias::Left, &());
1508            while let Some(entry) = cursor.item() {
1509                if entry.path.starts_with(&removed_entry.path) {
1510                    self.entries_by_id.remove(&entry.id, &());
1511                    cursor.next(&());
1512                } else {
1513                    break;
1514                }
1515            }
1516            new_entries_by_path.append(cursor.suffix(&()), &());
1517            new_entries_by_path
1518        };
1519
1520        Some(removed_entry.path)
1521    }
1522
1523    #[cfg(any(test, feature = "test-support"))]
1524    pub fn status_for_file(&self, path: impl Into<PathBuf>) -> Option<GitFileStatus> {
1525        let path = path.into();
1526        self.entries_by_path
1527            .get(&PathKey(Arc::from(path)), &())
1528            .and_then(|entry| entry.git_status)
1529    }
1530
1531    pub(crate) fn apply_remote_update(&mut self, mut update: proto::UpdateWorktree) -> Result<()> {
1532        let mut entries_by_path_edits = Vec::new();
1533        let mut entries_by_id_edits = Vec::new();
1534
1535        for entry_id in update.removed_entries {
1536            let entry_id = ProjectEntryId::from_proto(entry_id);
1537            entries_by_id_edits.push(Edit::Remove(entry_id));
1538            if let Some(entry) = self.entry_for_id(entry_id) {
1539                entries_by_path_edits.push(Edit::Remove(PathKey(entry.path.clone())));
1540            }
1541        }
1542
1543        for entry in update.updated_entries {
1544            let entry = Entry::try_from((&self.root_char_bag, entry))?;
1545            if let Some(PathEntry { path, .. }) = self.entries_by_id.get(&entry.id, &()) {
1546                entries_by_path_edits.push(Edit::Remove(PathKey(path.clone())));
1547            }
1548            if let Some(old_entry) = self.entries_by_path.get(&PathKey(entry.path.clone()), &()) {
1549                if old_entry.id != entry.id {
1550                    entries_by_id_edits.push(Edit::Remove(old_entry.id));
1551                }
1552            }
1553            entries_by_id_edits.push(Edit::Insert(PathEntry {
1554                id: entry.id,
1555                path: entry.path.clone(),
1556                is_ignored: entry.is_ignored,
1557                scan_id: 0,
1558            }));
1559            entries_by_path_edits.push(Edit::Insert(entry));
1560        }
1561
1562        self.entries_by_path.edit(entries_by_path_edits, &());
1563        self.entries_by_id.edit(entries_by_id_edits, &());
1564
1565        update.removed_repositories.sort_unstable();
1566        self.repository_entries.retain(|_, entry| {
1567            if let Ok(_) = update
1568                .removed_repositories
1569                .binary_search(&entry.work_directory.to_proto())
1570            {
1571                false
1572            } else {
1573                true
1574            }
1575        });
1576
1577        for repository in update.updated_repositories {
1578            let work_directory_entry: WorkDirectoryEntry =
1579                ProjectEntryId::from_proto(repository.work_directory_id).into();
1580
1581            if let Some(entry) = self.entry_for_id(*work_directory_entry) {
1582                let work_directory = RepositoryWorkDirectory(entry.path.clone());
1583                if self.repository_entries.get(&work_directory).is_some() {
1584                    self.repository_entries.update(&work_directory, |repo| {
1585                        repo.branch = repository.branch.map(Into::into);
1586                    });
1587                } else {
1588                    self.repository_entries.insert(
1589                        work_directory,
1590                        RepositoryEntry {
1591                            work_directory: work_directory_entry,
1592                            branch: repository.branch.map(Into::into),
1593                        },
1594                    )
1595                }
1596            } else {
1597                log::error!("no work directory entry for repository {:?}", repository)
1598            }
1599        }
1600
1601        self.scan_id = update.scan_id as usize;
1602        if update.is_last_update {
1603            self.completed_scan_id = update.scan_id as usize;
1604        }
1605
1606        Ok(())
1607    }
1608
1609    pub fn file_count(&self) -> usize {
1610        self.entries_by_path.summary().file_count
1611    }
1612
1613    pub fn visible_file_count(&self) -> usize {
1614        self.entries_by_path.summary().non_ignored_file_count
1615    }
1616
1617    fn traverse_from_offset(
1618        &self,
1619        include_dirs: bool,
1620        include_ignored: bool,
1621        start_offset: usize,
1622    ) -> Traversal {
1623        let mut cursor = self.entries_by_path.cursor();
1624        cursor.seek(
1625            &TraversalTarget::Count {
1626                count: start_offset,
1627                include_dirs,
1628                include_ignored,
1629            },
1630            Bias::Right,
1631            &(),
1632        );
1633        Traversal {
1634            cursor,
1635            include_dirs,
1636            include_ignored,
1637        }
1638    }
1639
1640    fn traverse_from_path(
1641        &self,
1642        include_dirs: bool,
1643        include_ignored: bool,
1644        path: &Path,
1645    ) -> Traversal {
1646        let mut cursor = self.entries_by_path.cursor();
1647        cursor.seek(&TraversalTarget::Path(path), Bias::Left, &());
1648        Traversal {
1649            cursor,
1650            include_dirs,
1651            include_ignored,
1652        }
1653    }
1654
1655    pub fn files(&self, include_ignored: bool, start: usize) -> Traversal {
1656        self.traverse_from_offset(false, include_ignored, start)
1657    }
1658
1659    pub fn entries(&self, include_ignored: bool) -> Traversal {
1660        self.traverse_from_offset(true, include_ignored, 0)
1661    }
1662
1663    pub fn repositories(&self) -> impl Iterator<Item = (&Arc<Path>, &RepositoryEntry)> {
1664        self.repository_entries
1665            .iter()
1666            .map(|(path, entry)| (&path.0, entry))
1667    }
1668
1669    /// Get the repository whose work directory contains the given path.
1670    pub fn repository_for_work_directory(&self, path: &Path) -> Option<RepositoryEntry> {
1671        self.repository_entries
1672            .get(&RepositoryWorkDirectory(path.into()))
1673            .cloned()
1674    }
1675
1676    /// Get the repository whose work directory contains the given path.
1677    pub fn repository_for_path(&self, path: &Path) -> Option<RepositoryEntry> {
1678        self.repository_and_work_directory_for_path(path)
1679            .map(|e| e.1)
1680    }
1681
1682    pub fn repository_and_work_directory_for_path(
1683        &self,
1684        path: &Path,
1685    ) -> Option<(RepositoryWorkDirectory, RepositoryEntry)> {
1686        self.repository_entries
1687            .iter()
1688            .filter(|(workdir_path, _)| path.starts_with(workdir_path))
1689            .last()
1690            .map(|(path, repo)| (path.clone(), repo.clone()))
1691    }
1692
1693    /// Given an ordered iterator of entries, returns an iterator of those entries,
1694    /// along with their containing git repository.
1695    pub fn entries_with_repositories<'a>(
1696        &'a self,
1697        entries: impl 'a + Iterator<Item = &'a Entry>,
1698    ) -> impl 'a + Iterator<Item = (&'a Entry, Option<&'a RepositoryEntry>)> {
1699        let mut containing_repos = Vec::<(&Arc<Path>, &RepositoryEntry)>::new();
1700        let mut repositories = self.repositories().peekable();
1701        entries.map(move |entry| {
1702            while let Some((repo_path, _)) = containing_repos.last() {
1703                if !entry.path.starts_with(repo_path) {
1704                    containing_repos.pop();
1705                } else {
1706                    break;
1707                }
1708            }
1709            while let Some((repo_path, _)) = repositories.peek() {
1710                if entry.path.starts_with(repo_path) {
1711                    containing_repos.push(repositories.next().unwrap());
1712                } else {
1713                    break;
1714                }
1715            }
1716            let repo = containing_repos.last().map(|(_, repo)| *repo);
1717            (entry, repo)
1718        })
1719    }
1720
1721    /// Update the `git_status` of the given entries such that files'
1722    /// statuses bubble up to their ancestor directories.
1723    pub fn propagate_git_statuses(&self, result: &mut [Entry]) {
1724        let mut cursor = self
1725            .entries_by_path
1726            .cursor::<(TraversalProgress, GitStatuses)>();
1727        let mut entry_stack = Vec::<(usize, GitStatuses)>::new();
1728
1729        let mut result_ix = 0;
1730        loop {
1731            let next_entry = result.get(result_ix);
1732            let containing_entry = entry_stack.last().map(|(ix, _)| &result[*ix]);
1733
1734            let entry_to_finish = match (containing_entry, next_entry) {
1735                (Some(_), None) => entry_stack.pop(),
1736                (Some(containing_entry), Some(next_path)) => {
1737                    if !next_path.path.starts_with(&containing_entry.path) {
1738                        entry_stack.pop()
1739                    } else {
1740                        None
1741                    }
1742                }
1743                (None, Some(_)) => None,
1744                (None, None) => break,
1745            };
1746
1747            if let Some((entry_ix, prev_statuses)) = entry_to_finish {
1748                cursor.seek_forward(
1749                    &TraversalTarget::PathSuccessor(&result[entry_ix].path),
1750                    Bias::Left,
1751                    &(),
1752                );
1753
1754                let statuses = cursor.start().1 - prev_statuses;
1755
1756                result[entry_ix].git_status = if statuses.conflict > 0 {
1757                    Some(GitFileStatus::Conflict)
1758                } else if statuses.modified > 0 {
1759                    Some(GitFileStatus::Modified)
1760                } else if statuses.added > 0 {
1761                    Some(GitFileStatus::Added)
1762                } else {
1763                    None
1764                };
1765            } else {
1766                if result[result_ix].is_dir() {
1767                    cursor.seek_forward(
1768                        &TraversalTarget::Path(&result[result_ix].path),
1769                        Bias::Left,
1770                        &(),
1771                    );
1772                    entry_stack.push((result_ix, cursor.start().1));
1773                }
1774                result_ix += 1;
1775            }
1776        }
1777    }
1778
1779    pub fn paths(&self) -> impl Iterator<Item = &Arc<Path>> {
1780        let empty_path = Path::new("");
1781        self.entries_by_path
1782            .cursor::<()>()
1783            .filter(move |entry| entry.path.as_ref() != empty_path)
1784            .map(|entry| &entry.path)
1785    }
1786
1787    fn child_entries<'a>(&'a self, parent_path: &'a Path) -> ChildEntriesIter<'a> {
1788        let mut cursor = self.entries_by_path.cursor();
1789        cursor.seek(&TraversalTarget::Path(parent_path), Bias::Right, &());
1790        let traversal = Traversal {
1791            cursor,
1792            include_dirs: true,
1793            include_ignored: true,
1794        };
1795        ChildEntriesIter {
1796            traversal,
1797            parent_path,
1798        }
1799    }
1800
1801    pub fn descendent_entries<'a>(
1802        &'a self,
1803        include_dirs: bool,
1804        include_ignored: bool,
1805        parent_path: &'a Path,
1806    ) -> DescendentEntriesIter<'a> {
1807        let mut cursor = self.entries_by_path.cursor();
1808        cursor.seek(&TraversalTarget::Path(parent_path), Bias::Left, &());
1809        let mut traversal = Traversal {
1810            cursor,
1811            include_dirs,
1812            include_ignored,
1813        };
1814
1815        if traversal.end_offset() == traversal.start_offset() {
1816            traversal.advance();
1817        }
1818
1819        DescendentEntriesIter {
1820            traversal,
1821            parent_path,
1822        }
1823    }
1824
1825    pub fn root_entry(&self) -> Option<&Entry> {
1826        self.entry_for_path("")
1827    }
1828
1829    pub fn root_name(&self) -> &str {
1830        &self.root_name
1831    }
1832
1833    pub fn root_git_entry(&self) -> Option<RepositoryEntry> {
1834        self.repository_entries
1835            .get(&RepositoryWorkDirectory(Path::new("").into()))
1836            .map(|entry| entry.to_owned())
1837    }
1838
1839    pub fn git_entries(&self) -> impl Iterator<Item = &RepositoryEntry> {
1840        self.repository_entries.values()
1841    }
1842
1843    pub fn scan_id(&self) -> usize {
1844        self.scan_id
1845    }
1846
1847    pub fn entry_for_path(&self, path: impl AsRef<Path>) -> Option<&Entry> {
1848        let path = path.as_ref();
1849        self.traverse_from_path(true, true, path)
1850            .entry()
1851            .and_then(|entry| {
1852                if entry.path.as_ref() == path {
1853                    Some(entry)
1854                } else {
1855                    None
1856                }
1857            })
1858    }
1859
1860    pub fn entry_for_id(&self, id: ProjectEntryId) -> Option<&Entry> {
1861        let entry = self.entries_by_id.get(&id, &())?;
1862        self.entry_for_path(&entry.path)
1863    }
1864
1865    pub fn inode_for_path(&self, path: impl AsRef<Path>) -> Option<u64> {
1866        self.entry_for_path(path.as_ref()).map(|e| e.inode)
1867    }
1868}
1869
1870impl LocalSnapshot {
1871    pub(crate) fn get_local_repo(&self, repo: &RepositoryEntry) -> Option<&LocalRepositoryEntry> {
1872        self.git_repositories.get(&repo.work_directory.0)
1873    }
1874
1875    pub(crate) fn local_repo_for_path(
1876        &self,
1877        path: &Path,
1878    ) -> Option<(RepositoryWorkDirectory, &LocalRepositoryEntry)> {
1879        let (path, repo) = self.repository_and_work_directory_for_path(path)?;
1880        Some((path, self.git_repositories.get(&repo.work_directory_id())?))
1881    }
1882
1883    fn build_update(
1884        &self,
1885        project_id: u64,
1886        worktree_id: u64,
1887        entry_changes: UpdatedEntriesSet,
1888        repo_changes: UpdatedGitRepositoriesSet,
1889    ) -> proto::UpdateWorktree {
1890        let mut updated_entries = Vec::new();
1891        let mut removed_entries = Vec::new();
1892        let mut updated_repositories = Vec::new();
1893        let mut removed_repositories = Vec::new();
1894
1895        for (_, entry_id, path_change) in entry_changes.iter() {
1896            if let PathChange::Removed = path_change {
1897                removed_entries.push(entry_id.0 as u64);
1898            } else if let Some(entry) = self.entry_for_id(*entry_id) {
1899                updated_entries.push(proto::Entry::from(entry));
1900            }
1901        }
1902
1903        for (work_dir_path, change) in repo_changes.iter() {
1904            let new_repo = self
1905                .repository_entries
1906                .get(&RepositoryWorkDirectory(work_dir_path.clone()));
1907            match (&change.old_repository, new_repo) {
1908                (Some(old_repo), Some(new_repo)) => {
1909                    updated_repositories.push(new_repo.build_update(old_repo));
1910                }
1911                (None, Some(new_repo)) => {
1912                    updated_repositories.push(proto::RepositoryEntry::from(new_repo));
1913                }
1914                (Some(old_repo), None) => {
1915                    removed_repositories.push(old_repo.work_directory.0.to_proto());
1916                }
1917                _ => {}
1918            }
1919        }
1920
1921        removed_entries.sort_unstable();
1922        updated_entries.sort_unstable_by_key(|e| e.id);
1923        removed_repositories.sort_unstable();
1924        updated_repositories.sort_unstable_by_key(|e| e.work_directory_id);
1925
1926        // TODO - optimize, knowing that removed_entries are sorted.
1927        removed_entries.retain(|id| updated_entries.binary_search_by_key(id, |e| e.id).is_err());
1928
1929        proto::UpdateWorktree {
1930            project_id,
1931            worktree_id,
1932            abs_path: self.abs_path().to_string_lossy().into(),
1933            root_name: self.root_name().to_string(),
1934            updated_entries,
1935            removed_entries,
1936            scan_id: self.scan_id as u64,
1937            is_last_update: self.completed_scan_id == self.scan_id,
1938            updated_repositories,
1939            removed_repositories,
1940        }
1941    }
1942
1943    fn build_initial_update(&self, project_id: u64, worktree_id: u64) -> proto::UpdateWorktree {
1944        let mut updated_entries = self
1945            .entries_by_path
1946            .iter()
1947            .map(proto::Entry::from)
1948            .collect::<Vec<_>>();
1949        updated_entries.sort_unstable_by_key(|e| e.id);
1950
1951        let mut updated_repositories = self
1952            .repository_entries
1953            .values()
1954            .map(proto::RepositoryEntry::from)
1955            .collect::<Vec<_>>();
1956        updated_repositories.sort_unstable_by_key(|e| e.work_directory_id);
1957
1958        proto::UpdateWorktree {
1959            project_id,
1960            worktree_id,
1961            abs_path: self.abs_path().to_string_lossy().into(),
1962            root_name: self.root_name().to_string(),
1963            updated_entries,
1964            removed_entries: Vec::new(),
1965            scan_id: self.scan_id as u64,
1966            is_last_update: self.completed_scan_id == self.scan_id,
1967            updated_repositories,
1968            removed_repositories: Vec::new(),
1969        }
1970    }
1971
1972    fn insert_entry(&mut self, mut entry: Entry, fs: &dyn Fs) -> Entry {
1973        if entry.is_file() && entry.path.file_name() == Some(&GITIGNORE) {
1974            let abs_path = self.abs_path.join(&entry.path);
1975            match smol::block_on(build_gitignore(&abs_path, fs)) {
1976                Ok(ignore) => {
1977                    self.ignores_by_parent_abs_path
1978                        .insert(abs_path.parent().unwrap().into(), (Arc::new(ignore), true));
1979                }
1980                Err(error) => {
1981                    log::error!(
1982                        "error loading .gitignore file {:?} - {:?}",
1983                        &entry.path,
1984                        error
1985                    );
1986                }
1987            }
1988        }
1989
1990        if entry.kind == EntryKind::PendingDir {
1991            if let Some(existing_entry) =
1992                self.entries_by_path.get(&PathKey(entry.path.clone()), &())
1993            {
1994                entry.kind = existing_entry.kind;
1995            }
1996        }
1997
1998        let scan_id = self.scan_id;
1999        let removed = self.entries_by_path.insert_or_replace(entry.clone(), &());
2000        if let Some(removed) = removed {
2001            if removed.id != entry.id {
2002                self.entries_by_id.remove(&removed.id, &());
2003            }
2004        }
2005        self.entries_by_id.insert_or_replace(
2006            PathEntry {
2007                id: entry.id,
2008                path: entry.path.clone(),
2009                is_ignored: entry.is_ignored,
2010                scan_id,
2011            },
2012            &(),
2013        );
2014
2015        entry
2016    }
2017
2018    fn ancestor_inodes_for_path(&self, path: &Path) -> TreeSet<u64> {
2019        let mut inodes = TreeSet::default();
2020        for ancestor in path.ancestors().skip(1) {
2021            if let Some(entry) = self.entry_for_path(ancestor) {
2022                inodes.insert(entry.inode);
2023            }
2024        }
2025        inodes
2026    }
2027
2028    fn ignore_stack_for_abs_path(&self, abs_path: &Path, is_dir: bool) -> Arc<IgnoreStack> {
2029        let mut new_ignores = Vec::new();
2030        for ancestor in abs_path.ancestors().skip(1) {
2031            if let Some((ignore, _)) = self.ignores_by_parent_abs_path.get(ancestor) {
2032                new_ignores.push((ancestor, Some(ignore.clone())));
2033            } else {
2034                new_ignores.push((ancestor, None));
2035            }
2036        }
2037
2038        let mut ignore_stack = IgnoreStack::none();
2039        for (parent_abs_path, ignore) in new_ignores.into_iter().rev() {
2040            if ignore_stack.is_abs_path_ignored(parent_abs_path, true) {
2041                ignore_stack = IgnoreStack::all();
2042                break;
2043            } else if let Some(ignore) = ignore {
2044                ignore_stack = ignore_stack.append(parent_abs_path.into(), ignore);
2045            }
2046        }
2047
2048        if ignore_stack.is_abs_path_ignored(abs_path, is_dir) {
2049            ignore_stack = IgnoreStack::all();
2050        }
2051
2052        ignore_stack
2053    }
2054
2055    #[allow(dead_code)] // todo!("remove this when we use it")
2056    #[cfg(test)]
2057    pub(crate) fn expanded_entries(&self) -> impl Iterator<Item = &Entry> {
2058        self.entries_by_path
2059            .cursor::<()>()
2060            .filter(|entry| entry.kind == EntryKind::Dir && (entry.is_external || entry.is_ignored))
2061    }
2062
2063    #[cfg(test)]
2064    pub fn check_invariants(&self, git_state: bool) {
2065        use pretty_assertions::assert_eq;
2066
2067        assert_eq!(
2068            self.entries_by_path
2069                .cursor::<()>()
2070                .map(|e| (&e.path, e.id))
2071                .collect::<Vec<_>>(),
2072            self.entries_by_id
2073                .cursor::<()>()
2074                .map(|e| (&e.path, e.id))
2075                .collect::<collections::BTreeSet<_>>()
2076                .into_iter()
2077                .collect::<Vec<_>>(),
2078            "entries_by_path and entries_by_id are inconsistent"
2079        );
2080
2081        let mut files = self.files(true, 0);
2082        let mut visible_files = self.files(false, 0);
2083        for entry in self.entries_by_path.cursor::<()>() {
2084            if entry.is_file() {
2085                assert_eq!(files.next().unwrap().inode, entry.inode);
2086                if !entry.is_ignored && !entry.is_external {
2087                    assert_eq!(visible_files.next().unwrap().inode, entry.inode);
2088                }
2089            }
2090        }
2091
2092        assert!(files.next().is_none());
2093        assert!(visible_files.next().is_none());
2094
2095        let mut bfs_paths = Vec::new();
2096        let mut stack = self
2097            .root_entry()
2098            .map(|e| e.path.as_ref())
2099            .into_iter()
2100            .collect::<Vec<_>>();
2101        while let Some(path) = stack.pop() {
2102            bfs_paths.push(path);
2103            let ix = stack.len();
2104            for child_entry in self.child_entries(path) {
2105                stack.insert(ix, &child_entry.path);
2106            }
2107        }
2108
2109        let dfs_paths_via_iter = self
2110            .entries_by_path
2111            .cursor::<()>()
2112            .map(|e| e.path.as_ref())
2113            .collect::<Vec<_>>();
2114        assert_eq!(bfs_paths, dfs_paths_via_iter);
2115
2116        let dfs_paths_via_traversal = self
2117            .entries(true)
2118            .map(|e| e.path.as_ref())
2119            .collect::<Vec<_>>();
2120        assert_eq!(dfs_paths_via_traversal, dfs_paths_via_iter);
2121
2122        if git_state {
2123            for ignore_parent_abs_path in self.ignores_by_parent_abs_path.keys() {
2124                let ignore_parent_path =
2125                    ignore_parent_abs_path.strip_prefix(&self.abs_path).unwrap();
2126                assert!(self.entry_for_path(&ignore_parent_path).is_some());
2127                assert!(self
2128                    .entry_for_path(ignore_parent_path.join(&*GITIGNORE))
2129                    .is_some());
2130            }
2131        }
2132    }
2133
2134    #[cfg(test)]
2135    pub fn entries_without_ids(&self, include_ignored: bool) -> Vec<(&Path, u64, bool)> {
2136        let mut paths = Vec::new();
2137        for entry in self.entries_by_path.cursor::<()>() {
2138            if include_ignored || !entry.is_ignored {
2139                paths.push((entry.path.as_ref(), entry.inode, entry.is_ignored));
2140            }
2141        }
2142        paths.sort_by(|a, b| a.0.cmp(b.0));
2143        paths
2144    }
2145}
2146
2147impl BackgroundScannerState {
2148    fn should_scan_directory(&self, entry: &Entry) -> bool {
2149        (!entry.is_external && !entry.is_ignored)
2150            || entry.path.file_name() == Some(&*DOT_GIT)
2151            || self.scanned_dirs.contains(&entry.id) // If we've ever scanned it, keep scanning
2152            || self
2153                .paths_to_scan
2154                .iter()
2155                .any(|p| p.starts_with(&entry.path))
2156            || self
2157                .path_prefixes_to_scan
2158                .iter()
2159                .any(|p| entry.path.starts_with(p))
2160    }
2161
2162    fn enqueue_scan_dir(&self, abs_path: Arc<Path>, entry: &Entry, scan_job_tx: &Sender<ScanJob>) {
2163        let path = entry.path.clone();
2164        let ignore_stack = self.snapshot.ignore_stack_for_abs_path(&abs_path, true);
2165        let mut ancestor_inodes = self.snapshot.ancestor_inodes_for_path(&path);
2166        let mut containing_repository = None;
2167        if !ignore_stack.is_all() {
2168            if let Some((workdir_path, repo)) = self.snapshot.local_repo_for_path(&path) {
2169                if let Ok(repo_path) = path.strip_prefix(&workdir_path.0) {
2170                    containing_repository = Some((
2171                        workdir_path,
2172                        repo.repo_ptr.clone(),
2173                        repo.repo_ptr.lock().staged_statuses(repo_path),
2174                    ));
2175                }
2176            }
2177        }
2178        if !ancestor_inodes.contains(&entry.inode) {
2179            ancestor_inodes.insert(entry.inode);
2180            scan_job_tx
2181                .try_send(ScanJob {
2182                    abs_path,
2183                    path,
2184                    ignore_stack,
2185                    scan_queue: scan_job_tx.clone(),
2186                    ancestor_inodes,
2187                    is_external: entry.is_external,
2188                    containing_repository,
2189                })
2190                .unwrap();
2191        }
2192    }
2193
2194    fn reuse_entry_id(&mut self, entry: &mut Entry) {
2195        if let Some(removed_entry_id) = self.removed_entry_ids.remove(&entry.inode) {
2196            entry.id = removed_entry_id;
2197        } else if let Some(existing_entry) = self.snapshot.entry_for_path(&entry.path) {
2198            entry.id = existing_entry.id;
2199        }
2200    }
2201
2202    fn insert_entry(&mut self, mut entry: Entry, fs: &dyn Fs) -> Entry {
2203        self.reuse_entry_id(&mut entry);
2204        let entry = self.snapshot.insert_entry(entry, fs);
2205        if entry.path.file_name() == Some(&DOT_GIT) {
2206            self.build_git_repository(entry.path.clone(), fs);
2207        }
2208
2209        #[cfg(test)]
2210        self.snapshot.check_invariants(false);
2211
2212        entry
2213    }
2214
2215    fn populate_dir(
2216        &mut self,
2217        parent_path: &Arc<Path>,
2218        entries: impl IntoIterator<Item = Entry>,
2219        ignore: Option<Arc<Gitignore>>,
2220    ) {
2221        let mut parent_entry = if let Some(parent_entry) = self
2222            .snapshot
2223            .entries_by_path
2224            .get(&PathKey(parent_path.clone()), &())
2225        {
2226            parent_entry.clone()
2227        } else {
2228            log::warn!(
2229                "populating a directory {:?} that has been removed",
2230                parent_path
2231            );
2232            return;
2233        };
2234
2235        match parent_entry.kind {
2236            EntryKind::PendingDir | EntryKind::UnloadedDir => parent_entry.kind = EntryKind::Dir,
2237            EntryKind::Dir => {}
2238            _ => return,
2239        }
2240
2241        if let Some(ignore) = ignore {
2242            let abs_parent_path = self.snapshot.abs_path.join(&parent_path).into();
2243            self.snapshot
2244                .ignores_by_parent_abs_path
2245                .insert(abs_parent_path, (ignore, false));
2246        }
2247
2248        let parent_entry_id = parent_entry.id;
2249        self.scanned_dirs.insert(parent_entry_id);
2250        let mut entries_by_path_edits = vec![Edit::Insert(parent_entry)];
2251        let mut entries_by_id_edits = Vec::new();
2252
2253        for entry in entries {
2254            entries_by_id_edits.push(Edit::Insert(PathEntry {
2255                id: entry.id,
2256                path: entry.path.clone(),
2257                is_ignored: entry.is_ignored,
2258                scan_id: self.snapshot.scan_id,
2259            }));
2260            entries_by_path_edits.push(Edit::Insert(entry));
2261        }
2262
2263        self.snapshot
2264            .entries_by_path
2265            .edit(entries_by_path_edits, &());
2266        self.snapshot.entries_by_id.edit(entries_by_id_edits, &());
2267
2268        if let Err(ix) = self.changed_paths.binary_search(parent_path) {
2269            self.changed_paths.insert(ix, parent_path.clone());
2270        }
2271
2272        #[cfg(test)]
2273        self.snapshot.check_invariants(false);
2274    }
2275
2276    fn remove_path(&mut self, path: &Path) {
2277        let mut new_entries;
2278        let removed_entries;
2279        {
2280            let mut cursor = self.snapshot.entries_by_path.cursor::<TraversalProgress>();
2281            new_entries = cursor.slice(&TraversalTarget::Path(path), Bias::Left, &());
2282            removed_entries = cursor.slice(&TraversalTarget::PathSuccessor(path), Bias::Left, &());
2283            new_entries.append(cursor.suffix(&()), &());
2284        }
2285        self.snapshot.entries_by_path = new_entries;
2286
2287        let mut entries_by_id_edits = Vec::new();
2288        for entry in removed_entries.cursor::<()>() {
2289            let removed_entry_id = self
2290                .removed_entry_ids
2291                .entry(entry.inode)
2292                .or_insert(entry.id);
2293            *removed_entry_id = cmp::max(*removed_entry_id, entry.id);
2294            entries_by_id_edits.push(Edit::Remove(entry.id));
2295        }
2296        self.snapshot.entries_by_id.edit(entries_by_id_edits, &());
2297
2298        if path.file_name() == Some(&GITIGNORE) {
2299            let abs_parent_path = self.snapshot.abs_path.join(path.parent().unwrap());
2300            if let Some((_, needs_update)) = self
2301                .snapshot
2302                .ignores_by_parent_abs_path
2303                .get_mut(abs_parent_path.as_path())
2304            {
2305                *needs_update = true;
2306            }
2307        }
2308
2309        #[cfg(test)]
2310        self.snapshot.check_invariants(false);
2311    }
2312
2313    fn reload_repositories(&mut self, changed_paths: &[Arc<Path>], fs: &dyn Fs) {
2314        let scan_id = self.snapshot.scan_id;
2315
2316        // Find each of the .git directories that contain any of the given paths.
2317        let mut prev_dot_git_dir = None;
2318        for changed_path in changed_paths {
2319            let Some(dot_git_dir) = changed_path
2320                .ancestors()
2321                .find(|ancestor| ancestor.file_name() == Some(&*DOT_GIT))
2322            else {
2323                continue;
2324            };
2325
2326            // Avoid processing the same repository multiple times, if multiple paths
2327            // within it have changed.
2328            if prev_dot_git_dir == Some(dot_git_dir) {
2329                continue;
2330            }
2331            prev_dot_git_dir = Some(dot_git_dir);
2332
2333            // If there is already a repository for this .git directory, reload
2334            // the status for all of its files.
2335            let repository = self
2336                .snapshot
2337                .git_repositories
2338                .iter()
2339                .find_map(|(entry_id, repo)| {
2340                    (repo.git_dir_path.as_ref() == dot_git_dir).then(|| (*entry_id, repo.clone()))
2341                });
2342            match repository {
2343                None => {
2344                    self.build_git_repository(dot_git_dir.into(), fs);
2345                }
2346                Some((entry_id, repository)) => {
2347                    if repository.git_dir_scan_id == scan_id {
2348                        continue;
2349                    }
2350                    let Some(work_dir) = self
2351                        .snapshot
2352                        .entry_for_id(entry_id)
2353                        .map(|entry| RepositoryWorkDirectory(entry.path.clone()))
2354                    else {
2355                        continue;
2356                    };
2357
2358                    log::info!("reload git repository {:?}", dot_git_dir);
2359                    let repository = repository.repo_ptr.lock();
2360                    let branch = repository.branch_name();
2361                    repository.reload_index();
2362
2363                    self.snapshot
2364                        .git_repositories
2365                        .update(&entry_id, |entry| entry.git_dir_scan_id = scan_id);
2366                    self.snapshot
2367                        .snapshot
2368                        .repository_entries
2369                        .update(&work_dir, |entry| entry.branch = branch.map(Into::into));
2370
2371                    self.update_git_statuses(&work_dir, &*repository);
2372                }
2373            }
2374        }
2375
2376        // Remove any git repositories whose .git entry no longer exists.
2377        let snapshot = &mut self.snapshot;
2378        let mut repositories = mem::take(&mut snapshot.git_repositories);
2379        let mut repository_entries = mem::take(&mut snapshot.repository_entries);
2380        repositories.retain(|work_directory_id, _| {
2381            snapshot
2382                .entry_for_id(*work_directory_id)
2383                .map_or(false, |entry| {
2384                    snapshot.entry_for_path(entry.path.join(*DOT_GIT)).is_some()
2385                })
2386        });
2387        repository_entries.retain(|_, entry| repositories.get(&entry.work_directory.0).is_some());
2388        snapshot.git_repositories = repositories;
2389        snapshot.repository_entries = repository_entries;
2390    }
2391
2392    fn build_git_repository(
2393        &mut self,
2394        dot_git_path: Arc<Path>,
2395        fs: &dyn Fs,
2396    ) -> Option<(
2397        RepositoryWorkDirectory,
2398        Arc<Mutex<dyn GitRepository>>,
2399        TreeMap<RepoPath, GitFileStatus>,
2400    )> {
2401        log::info!("build git repository {:?}", dot_git_path);
2402
2403        let work_dir_path: Arc<Path> = dot_git_path.parent().unwrap().into();
2404
2405        // Guard against repositories inside the repository metadata
2406        if work_dir_path.iter().any(|component| component == *DOT_GIT) {
2407            return None;
2408        };
2409
2410        let work_dir_id = self
2411            .snapshot
2412            .entry_for_path(work_dir_path.clone())
2413            .map(|entry| entry.id)?;
2414
2415        if self.snapshot.git_repositories.get(&work_dir_id).is_some() {
2416            return None;
2417        }
2418
2419        let abs_path = self.snapshot.abs_path.join(&dot_git_path);
2420        let repository = fs.open_repo(abs_path.as_path())?;
2421        let work_directory = RepositoryWorkDirectory(work_dir_path.clone());
2422
2423        let repo_lock = repository.lock();
2424        self.snapshot.repository_entries.insert(
2425            work_directory.clone(),
2426            RepositoryEntry {
2427                work_directory: work_dir_id.into(),
2428                branch: repo_lock.branch_name().map(Into::into),
2429            },
2430        );
2431
2432        let staged_statuses = self.update_git_statuses(&work_directory, &*repo_lock);
2433        drop(repo_lock);
2434
2435        self.snapshot.git_repositories.insert(
2436            work_dir_id,
2437            LocalRepositoryEntry {
2438                git_dir_scan_id: 0,
2439                repo_ptr: repository.clone(),
2440                git_dir_path: dot_git_path.clone(),
2441            },
2442        );
2443
2444        Some((work_directory, repository, staged_statuses))
2445    }
2446
2447    fn update_git_statuses(
2448        &mut self,
2449        work_directory: &RepositoryWorkDirectory,
2450        repo: &dyn GitRepository,
2451    ) -> TreeMap<RepoPath, GitFileStatus> {
2452        let staged_statuses = repo.staged_statuses(Path::new(""));
2453
2454        let mut changes = vec![];
2455        let mut edits = vec![];
2456
2457        for mut entry in self
2458            .snapshot
2459            .descendent_entries(false, false, &work_directory.0)
2460            .cloned()
2461        {
2462            let Ok(repo_path) = entry.path.strip_prefix(&work_directory.0) else {
2463                continue;
2464            };
2465            let repo_path = RepoPath(repo_path.to_path_buf());
2466            let git_file_status = combine_git_statuses(
2467                staged_statuses.get(&repo_path).copied(),
2468                repo.unstaged_status(&repo_path, entry.mtime),
2469            );
2470            if entry.git_status != git_file_status {
2471                entry.git_status = git_file_status;
2472                changes.push(entry.path.clone());
2473                edits.push(Edit::Insert(entry));
2474            }
2475        }
2476
2477        self.snapshot.entries_by_path.edit(edits, &());
2478        util::extend_sorted(&mut self.changed_paths, changes, usize::MAX, Ord::cmp);
2479        staged_statuses
2480    }
2481}
2482
2483async fn build_gitignore(abs_path: &Path, fs: &dyn Fs) -> Result<Gitignore> {
2484    let contents = fs.load(abs_path).await?;
2485    let parent = abs_path.parent().unwrap_or_else(|| Path::new("/"));
2486    let mut builder = GitignoreBuilder::new(parent);
2487    for line in contents.lines() {
2488        builder.add_line(Some(abs_path.into()), line)?;
2489    }
2490    Ok(builder.build()?)
2491}
2492
2493impl WorktreeId {
2494    pub fn from_usize(handle_id: usize) -> Self {
2495        Self(handle_id)
2496    }
2497
2498    pub(crate) fn from_proto(id: u64) -> Self {
2499        Self(id as usize)
2500    }
2501
2502    pub fn to_proto(&self) -> u64 {
2503        self.0 as u64
2504    }
2505
2506    pub fn to_usize(&self) -> usize {
2507        self.0
2508    }
2509}
2510
2511impl fmt::Display for WorktreeId {
2512    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2513        self.0.fmt(f)
2514    }
2515}
2516
2517impl Deref for Worktree {
2518    type Target = Snapshot;
2519
2520    fn deref(&self) -> &Self::Target {
2521        match self {
2522            Worktree::Local(worktree) => &worktree.snapshot,
2523            Worktree::Remote(worktree) => &worktree.snapshot,
2524        }
2525    }
2526}
2527
2528impl Deref for LocalWorktree {
2529    type Target = LocalSnapshot;
2530
2531    fn deref(&self) -> &Self::Target {
2532        &self.snapshot
2533    }
2534}
2535
2536impl Deref for RemoteWorktree {
2537    type Target = Snapshot;
2538
2539    fn deref(&self) -> &Self::Target {
2540        &self.snapshot
2541    }
2542}
2543
2544impl fmt::Debug for LocalWorktree {
2545    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2546        self.snapshot.fmt(f)
2547    }
2548}
2549
2550impl fmt::Debug for Snapshot {
2551    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2552        struct EntriesById<'a>(&'a SumTree<PathEntry>);
2553        struct EntriesByPath<'a>(&'a SumTree<Entry>);
2554
2555        impl<'a> fmt::Debug for EntriesByPath<'a> {
2556            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2557                f.debug_map()
2558                    .entries(self.0.iter().map(|entry| (&entry.path, entry.id)))
2559                    .finish()
2560            }
2561        }
2562
2563        impl<'a> fmt::Debug for EntriesById<'a> {
2564            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2565                f.debug_list().entries(self.0.iter()).finish()
2566            }
2567        }
2568
2569        f.debug_struct("Snapshot")
2570            .field("id", &self.id)
2571            .field("root_name", &self.root_name)
2572            .field("entries_by_path", &EntriesByPath(&self.entries_by_path))
2573            .field("entries_by_id", &EntriesById(&self.entries_by_id))
2574            .finish()
2575    }
2576}
2577
2578#[derive(Clone, PartialEq)]
2579pub struct File {
2580    pub worktree: Model<Worktree>,
2581    pub path: Arc<Path>,
2582    pub mtime: SystemTime,
2583    pub(crate) entry_id: ProjectEntryId,
2584    pub(crate) is_local: bool,
2585    pub(crate) is_deleted: bool,
2586}
2587
2588impl language::File for File {
2589    fn as_local(&self) -> Option<&dyn language::LocalFile> {
2590        if self.is_local {
2591            Some(self)
2592        } else {
2593            None
2594        }
2595    }
2596
2597    fn mtime(&self) -> SystemTime {
2598        self.mtime
2599    }
2600
2601    fn path(&self) -> &Arc<Path> {
2602        &self.path
2603    }
2604
2605    fn full_path(&self, cx: &AppContext) -> PathBuf {
2606        let mut full_path = PathBuf::new();
2607        let worktree = self.worktree.read(cx);
2608
2609        if worktree.is_visible() {
2610            full_path.push(worktree.root_name());
2611        } else {
2612            let path = worktree.abs_path();
2613
2614            if worktree.is_local() && path.starts_with(HOME.as_path()) {
2615                full_path.push("~");
2616                full_path.push(path.strip_prefix(HOME.as_path()).unwrap());
2617            } else {
2618                full_path.push(path)
2619            }
2620        }
2621
2622        if self.path.components().next().is_some() {
2623            full_path.push(&self.path);
2624        }
2625
2626        full_path
2627    }
2628
2629    /// Returns the last component of this handle's absolute path. If this handle refers to the root
2630    /// of its worktree, then this method will return the name of the worktree itself.
2631    fn file_name<'a>(&'a self, cx: &'a AppContext) -> &'a OsStr {
2632        self.path
2633            .file_name()
2634            .unwrap_or_else(|| OsStr::new(&self.worktree.read(cx).root_name))
2635    }
2636
2637    fn worktree_id(&self) -> usize {
2638        self.worktree.entity_id().as_u64() as usize
2639    }
2640
2641    fn is_deleted(&self) -> bool {
2642        self.is_deleted
2643    }
2644
2645    fn as_any(&self) -> &dyn Any {
2646        self
2647    }
2648
2649    fn to_proto(&self) -> rpc::proto::File {
2650        rpc::proto::File {
2651            worktree_id: self.worktree.entity_id().as_u64(),
2652            entry_id: self.entry_id.to_proto(),
2653            path: self.path.to_string_lossy().into(),
2654            mtime: Some(self.mtime.into()),
2655            is_deleted: self.is_deleted,
2656        }
2657    }
2658}
2659
2660impl language::LocalFile for File {
2661    fn abs_path(&self, cx: &AppContext) -> PathBuf {
2662        let worktree_path = &self.worktree.read(cx).as_local().unwrap().abs_path;
2663        if self.path.as_ref() == Path::new("") {
2664            worktree_path.to_path_buf()
2665        } else {
2666            worktree_path.join(&self.path)
2667        }
2668    }
2669
2670    fn load(&self, cx: &AppContext) -> Task<Result<String>> {
2671        let worktree = self.worktree.read(cx).as_local().unwrap();
2672        let abs_path = worktree.absolutize(&self.path);
2673        let fs = worktree.fs.clone();
2674        cx.background_executor()
2675            .spawn(async move { fs.load(&abs_path).await })
2676    }
2677
2678    fn buffer_reloaded(
2679        &self,
2680        buffer_id: u64,
2681        version: &clock::Global,
2682        fingerprint: RopeFingerprint,
2683        line_ending: LineEnding,
2684        mtime: SystemTime,
2685        cx: &mut AppContext,
2686    ) {
2687        let worktree = self.worktree.read(cx).as_local().unwrap();
2688        if let Some(project_id) = worktree.share.as_ref().map(|share| share.project_id) {
2689            worktree
2690                .client
2691                .send(proto::BufferReloaded {
2692                    project_id,
2693                    buffer_id,
2694                    version: serialize_version(version),
2695                    mtime: Some(mtime.into()),
2696                    fingerprint: serialize_fingerprint(fingerprint),
2697                    line_ending: serialize_line_ending(line_ending) as i32,
2698                })
2699                .log_err();
2700        }
2701    }
2702}
2703
2704impl File {
2705    pub fn for_entry(entry: Entry, worktree: Model<Worktree>) -> Arc<Self> {
2706        Arc::new(Self {
2707            worktree,
2708            path: entry.path.clone(),
2709            mtime: entry.mtime,
2710            entry_id: entry.id,
2711            is_local: true,
2712            is_deleted: false,
2713        })
2714    }
2715
2716    pub fn from_proto(
2717        proto: rpc::proto::File,
2718        worktree: Model<Worktree>,
2719        cx: &AppContext,
2720    ) -> Result<Self> {
2721        let worktree_id = worktree
2722            .read(cx)
2723            .as_remote()
2724            .ok_or_else(|| anyhow!("not remote"))?
2725            .id();
2726
2727        if worktree_id.to_proto() != proto.worktree_id {
2728            return Err(anyhow!("worktree id does not match file"));
2729        }
2730
2731        Ok(Self {
2732            worktree,
2733            path: Path::new(&proto.path).into(),
2734            mtime: proto.mtime.ok_or_else(|| anyhow!("no timestamp"))?.into(),
2735            entry_id: ProjectEntryId::from_proto(proto.entry_id),
2736            is_local: false,
2737            is_deleted: proto.is_deleted,
2738        })
2739    }
2740
2741    pub fn from_dyn(file: Option<&Arc<dyn language::File>>) -> Option<&Self> {
2742        file.and_then(|f| f.as_any().downcast_ref())
2743    }
2744
2745    pub fn worktree_id(&self, cx: &AppContext) -> WorktreeId {
2746        self.worktree.read(cx).id()
2747    }
2748
2749    pub fn project_entry_id(&self, _: &AppContext) -> Option<ProjectEntryId> {
2750        if self.is_deleted {
2751            None
2752        } else {
2753            Some(self.entry_id)
2754        }
2755    }
2756}
2757
2758#[derive(Clone, Debug, PartialEq, Eq)]
2759pub struct Entry {
2760    pub id: ProjectEntryId,
2761    pub kind: EntryKind,
2762    pub path: Arc<Path>,
2763    pub inode: u64,
2764    pub mtime: SystemTime,
2765    pub is_symlink: bool,
2766
2767    /// Whether this entry is ignored by Git.
2768    ///
2769    /// We only scan ignored entries once the directory is expanded and
2770    /// exclude them from searches.
2771    pub is_ignored: bool,
2772
2773    /// Whether this entry's canonical path is outside of the worktree.
2774    /// This means the entry is only accessible from the worktree root via a
2775    /// symlink.
2776    ///
2777    /// We only scan entries outside of the worktree once the symlinked
2778    /// directory is expanded. External entries are treated like gitignored
2779    /// entries in that they are not included in searches.
2780    pub is_external: bool,
2781    pub git_status: Option<GitFileStatus>,
2782}
2783
2784#[derive(Clone, Copy, Debug, PartialEq, Eq)]
2785pub enum EntryKind {
2786    UnloadedDir,
2787    PendingDir,
2788    Dir,
2789    File(CharBag),
2790}
2791
2792#[derive(Clone, Copy, Debug, PartialEq)]
2793pub enum PathChange {
2794    /// A filesystem entry was was created.
2795    Added,
2796    /// A filesystem entry was removed.
2797    Removed,
2798    /// A filesystem entry was updated.
2799    Updated,
2800    /// A filesystem entry was either updated or added. We don't know
2801    /// whether or not it already existed, because the path had not
2802    /// been loaded before the event.
2803    AddedOrUpdated,
2804    /// A filesystem entry was found during the initial scan of the worktree.
2805    Loaded,
2806}
2807
2808pub struct GitRepositoryChange {
2809    /// The previous state of the repository, if it already existed.
2810    pub old_repository: Option<RepositoryEntry>,
2811}
2812
2813pub type UpdatedEntriesSet = Arc<[(Arc<Path>, ProjectEntryId, PathChange)]>;
2814pub type UpdatedGitRepositoriesSet = Arc<[(Arc<Path>, GitRepositoryChange)]>;
2815
2816impl Entry {
2817    fn new(
2818        path: Arc<Path>,
2819        metadata: &fs::Metadata,
2820        next_entry_id: &AtomicUsize,
2821        root_char_bag: CharBag,
2822    ) -> Self {
2823        Self {
2824            id: ProjectEntryId::new(next_entry_id),
2825            kind: if metadata.is_dir {
2826                EntryKind::PendingDir
2827            } else {
2828                EntryKind::File(char_bag_for_path(root_char_bag, &path))
2829            },
2830            path,
2831            inode: metadata.inode,
2832            mtime: metadata.mtime,
2833            is_symlink: metadata.is_symlink,
2834            is_ignored: false,
2835            is_external: false,
2836            git_status: None,
2837        }
2838    }
2839
2840    pub fn is_dir(&self) -> bool {
2841        self.kind.is_dir()
2842    }
2843
2844    pub fn is_file(&self) -> bool {
2845        self.kind.is_file()
2846    }
2847
2848    pub fn git_status(&self) -> Option<GitFileStatus> {
2849        self.git_status
2850    }
2851}
2852
2853impl EntryKind {
2854    pub fn is_dir(&self) -> bool {
2855        matches!(
2856            self,
2857            EntryKind::Dir | EntryKind::PendingDir | EntryKind::UnloadedDir
2858        )
2859    }
2860
2861    pub fn is_unloaded(&self) -> bool {
2862        matches!(self, EntryKind::UnloadedDir)
2863    }
2864
2865    pub fn is_file(&self) -> bool {
2866        matches!(self, EntryKind::File(_))
2867    }
2868}
2869
2870impl sum_tree::Item for Entry {
2871    type Summary = EntrySummary;
2872
2873    fn summary(&self) -> Self::Summary {
2874        let non_ignored_count = if self.is_ignored || self.is_external {
2875            0
2876        } else {
2877            1
2878        };
2879        let file_count;
2880        let non_ignored_file_count;
2881        if self.is_file() {
2882            file_count = 1;
2883            non_ignored_file_count = non_ignored_count;
2884        } else {
2885            file_count = 0;
2886            non_ignored_file_count = 0;
2887        }
2888
2889        let mut statuses = GitStatuses::default();
2890        match self.git_status {
2891            Some(status) => match status {
2892                GitFileStatus::Added => statuses.added = 1,
2893                GitFileStatus::Modified => statuses.modified = 1,
2894                GitFileStatus::Conflict => statuses.conflict = 1,
2895            },
2896            None => {}
2897        }
2898
2899        EntrySummary {
2900            max_path: self.path.clone(),
2901            count: 1,
2902            non_ignored_count,
2903            file_count,
2904            non_ignored_file_count,
2905            statuses,
2906        }
2907    }
2908}
2909
2910impl sum_tree::KeyedItem for Entry {
2911    type Key = PathKey;
2912
2913    fn key(&self) -> Self::Key {
2914        PathKey(self.path.clone())
2915    }
2916}
2917
2918#[derive(Clone, Debug)]
2919pub struct EntrySummary {
2920    max_path: Arc<Path>,
2921    count: usize,
2922    non_ignored_count: usize,
2923    file_count: usize,
2924    non_ignored_file_count: usize,
2925    statuses: GitStatuses,
2926}
2927
2928impl Default for EntrySummary {
2929    fn default() -> Self {
2930        Self {
2931            max_path: Arc::from(Path::new("")),
2932            count: 0,
2933            non_ignored_count: 0,
2934            file_count: 0,
2935            non_ignored_file_count: 0,
2936            statuses: Default::default(),
2937        }
2938    }
2939}
2940
2941impl sum_tree::Summary for EntrySummary {
2942    type Context = ();
2943
2944    fn add_summary(&mut self, rhs: &Self, _: &()) {
2945        self.max_path = rhs.max_path.clone();
2946        self.count += rhs.count;
2947        self.non_ignored_count += rhs.non_ignored_count;
2948        self.file_count += rhs.file_count;
2949        self.non_ignored_file_count += rhs.non_ignored_file_count;
2950        self.statuses += rhs.statuses;
2951    }
2952}
2953
2954#[derive(Clone, Debug)]
2955struct PathEntry {
2956    id: ProjectEntryId,
2957    path: Arc<Path>,
2958    is_ignored: bool,
2959    scan_id: usize,
2960}
2961
2962impl sum_tree::Item for PathEntry {
2963    type Summary = PathEntrySummary;
2964
2965    fn summary(&self) -> Self::Summary {
2966        PathEntrySummary { max_id: self.id }
2967    }
2968}
2969
2970impl sum_tree::KeyedItem for PathEntry {
2971    type Key = ProjectEntryId;
2972
2973    fn key(&self) -> Self::Key {
2974        self.id
2975    }
2976}
2977
2978#[derive(Clone, Debug, Default)]
2979struct PathEntrySummary {
2980    max_id: ProjectEntryId,
2981}
2982
2983impl sum_tree::Summary for PathEntrySummary {
2984    type Context = ();
2985
2986    fn add_summary(&mut self, summary: &Self, _: &Self::Context) {
2987        self.max_id = summary.max_id;
2988    }
2989}
2990
2991impl<'a> sum_tree::Dimension<'a, PathEntrySummary> for ProjectEntryId {
2992    fn add_summary(&mut self, summary: &'a PathEntrySummary, _: &()) {
2993        *self = summary.max_id;
2994    }
2995}
2996
2997#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
2998pub struct PathKey(Arc<Path>);
2999
3000impl Default for PathKey {
3001    fn default() -> Self {
3002        Self(Path::new("").into())
3003    }
3004}
3005
3006impl<'a> sum_tree::Dimension<'a, EntrySummary> for PathKey {
3007    fn add_summary(&mut self, summary: &'a EntrySummary, _: &()) {
3008        self.0 = summary.max_path.clone();
3009    }
3010}
3011
3012struct BackgroundScanner {
3013    state: Mutex<BackgroundScannerState>,
3014    fs: Arc<dyn Fs>,
3015    status_updates_tx: UnboundedSender<ScanState>,
3016    executor: BackgroundExecutor,
3017    scan_requests_rx: channel::Receiver<ScanRequest>,
3018    path_prefixes_to_scan_rx: channel::Receiver<Arc<Path>>,
3019    next_entry_id: Arc<AtomicUsize>,
3020    phase: BackgroundScannerPhase,
3021}
3022
3023#[derive(PartialEq)]
3024enum BackgroundScannerPhase {
3025    InitialScan,
3026    EventsReceivedDuringInitialScan,
3027    Events,
3028}
3029
3030impl BackgroundScanner {
3031    fn new(
3032        snapshot: LocalSnapshot,
3033        next_entry_id: Arc<AtomicUsize>,
3034        fs: Arc<dyn Fs>,
3035        status_updates_tx: UnboundedSender<ScanState>,
3036        executor: BackgroundExecutor,
3037        scan_requests_rx: channel::Receiver<ScanRequest>,
3038        path_prefixes_to_scan_rx: channel::Receiver<Arc<Path>>,
3039    ) -> Self {
3040        Self {
3041            fs,
3042            status_updates_tx,
3043            executor,
3044            scan_requests_rx,
3045            path_prefixes_to_scan_rx,
3046            next_entry_id,
3047            state: Mutex::new(BackgroundScannerState {
3048                prev_snapshot: snapshot.snapshot.clone(),
3049                snapshot,
3050                scanned_dirs: Default::default(),
3051                path_prefixes_to_scan: Default::default(),
3052                paths_to_scan: Default::default(),
3053                removed_entry_ids: Default::default(),
3054                changed_paths: Default::default(),
3055            }),
3056            phase: BackgroundScannerPhase::InitialScan,
3057        }
3058    }
3059
3060    async fn run(
3061        &mut self,
3062        mut fs_events_rx: Pin<Box<dyn Send + Stream<Item = Vec<fsevent::Event>>>>,
3063    ) {
3064        use futures::FutureExt as _;
3065
3066        // Populate ignores above the root.
3067        let root_abs_path = self.state.lock().snapshot.abs_path.clone();
3068        for ancestor in root_abs_path.ancestors().skip(1) {
3069            if let Ok(ignore) = build_gitignore(&ancestor.join(&*GITIGNORE), self.fs.as_ref()).await
3070            {
3071                self.state
3072                    .lock()
3073                    .snapshot
3074                    .ignores_by_parent_abs_path
3075                    .insert(ancestor.into(), (ignore.into(), false));
3076            }
3077        }
3078
3079        let (scan_job_tx, scan_job_rx) = channel::unbounded();
3080        {
3081            let mut state = self.state.lock();
3082            state.snapshot.scan_id += 1;
3083            if let Some(mut root_entry) = state.snapshot.root_entry().cloned() {
3084                let ignore_stack = state
3085                    .snapshot
3086                    .ignore_stack_for_abs_path(&root_abs_path, true);
3087                if ignore_stack.is_all() {
3088                    root_entry.is_ignored = true;
3089                    state.insert_entry(root_entry.clone(), self.fs.as_ref());
3090                }
3091                state.enqueue_scan_dir(root_abs_path, &root_entry, &scan_job_tx);
3092            }
3093        };
3094
3095        // Perform an initial scan of the directory.
3096        drop(scan_job_tx);
3097        self.scan_dirs(true, scan_job_rx).await;
3098        {
3099            let mut state = self.state.lock();
3100            state.snapshot.completed_scan_id = state.snapshot.scan_id;
3101        }
3102
3103        self.send_status_update(false, None);
3104
3105        // Process any any FS events that occurred while performing the initial scan.
3106        // For these events, update events cannot be as precise, because we didn't
3107        // have the previous state loaded yet.
3108        self.phase = BackgroundScannerPhase::EventsReceivedDuringInitialScan;
3109        if let Poll::Ready(Some(events)) = futures::poll!(fs_events_rx.next()) {
3110            let mut paths = events.into_iter().map(|e| e.path).collect::<Vec<_>>();
3111            while let Poll::Ready(Some(more_events)) = futures::poll!(fs_events_rx.next()) {
3112                paths.extend(more_events.into_iter().map(|e| e.path));
3113            }
3114            self.process_events(paths).await;
3115        }
3116
3117        // Continue processing events until the worktree is dropped.
3118        self.phase = BackgroundScannerPhase::Events;
3119        loop {
3120            select_biased! {
3121                // Process any path refresh requests from the worktree. Prioritize
3122                // these before handling changes reported by the filesystem.
3123                request = self.scan_requests_rx.recv().fuse() => {
3124                    let Ok(request) = request else { break };
3125                    if !self.process_scan_request(request, false).await {
3126                        return;
3127                    }
3128                }
3129
3130                path_prefix = self.path_prefixes_to_scan_rx.recv().fuse() => {
3131                    let Ok(path_prefix) = path_prefix else { break };
3132                    log::trace!("adding path prefix {:?}", path_prefix);
3133
3134                    let did_scan = self.forcibly_load_paths(&[path_prefix.clone()]).await;
3135                    if did_scan {
3136                        let abs_path =
3137                        {
3138                            let mut state = self.state.lock();
3139                            state.path_prefixes_to_scan.insert(path_prefix.clone());
3140                            state.snapshot.abs_path.join(&path_prefix)
3141                        };
3142
3143                        if let Some(abs_path) = self.fs.canonicalize(&abs_path).await.log_err() {
3144                            self.process_events(vec![abs_path]).await;
3145                        }
3146                    }
3147                }
3148
3149                events = fs_events_rx.next().fuse() => {
3150                    let Some(events) = events else { break };
3151                    let mut paths = events.into_iter().map(|e| e.path).collect::<Vec<_>>();
3152                    while let Poll::Ready(Some(more_events)) = futures::poll!(fs_events_rx.next()) {
3153                        paths.extend(more_events.into_iter().map(|e| e.path));
3154                    }
3155                    self.process_events(paths.clone()).await;
3156                }
3157            }
3158        }
3159    }
3160
3161    async fn process_scan_request(&self, mut request: ScanRequest, scanning: bool) -> bool {
3162        log::debug!("rescanning paths {:?}", request.relative_paths);
3163
3164        request.relative_paths.sort_unstable();
3165        self.forcibly_load_paths(&request.relative_paths).await;
3166
3167        let root_path = self.state.lock().snapshot.abs_path.clone();
3168        let root_canonical_path = match self.fs.canonicalize(&root_path).await {
3169            Ok(path) => path,
3170            Err(err) => {
3171                log::error!("failed to canonicalize root path: {}", err);
3172                return false;
3173            }
3174        };
3175        let abs_paths = request
3176            .relative_paths
3177            .iter()
3178            .map(|path| {
3179                if path.file_name().is_some() {
3180                    root_canonical_path.join(path)
3181                } else {
3182                    root_canonical_path.clone()
3183                }
3184            })
3185            .collect::<Vec<_>>();
3186
3187        self.reload_entries_for_paths(
3188            root_path,
3189            root_canonical_path,
3190            &request.relative_paths,
3191            abs_paths,
3192            None,
3193        )
3194        .await;
3195        self.send_status_update(scanning, Some(request.done))
3196    }
3197
3198    async fn process_events(&mut self, mut abs_paths: Vec<PathBuf>) {
3199        let root_path = self.state.lock().snapshot.abs_path.clone();
3200        let root_canonical_path = match self.fs.canonicalize(&root_path).await {
3201            Ok(path) => path,
3202            Err(err) => {
3203                log::error!("failed to canonicalize root path: {}", err);
3204                return;
3205            }
3206        };
3207
3208        let mut relative_paths = Vec::with_capacity(abs_paths.len());
3209        abs_paths.sort_unstable();
3210        abs_paths.dedup_by(|a, b| a.starts_with(&b));
3211        abs_paths.retain(|abs_path| {
3212            let snapshot = &self.state.lock().snapshot;
3213            {
3214                let relative_path: Arc<Path> =
3215                    if let Ok(path) = abs_path.strip_prefix(&root_canonical_path) {
3216                        path.into()
3217                    } else {
3218                        log::error!(
3219                        "ignoring event {abs_path:?} outside of root path {root_canonical_path:?}",
3220                    );
3221                        return false;
3222                    };
3223
3224                let parent_dir_is_loaded = relative_path.parent().map_or(true, |parent| {
3225                    snapshot
3226                        .entry_for_path(parent)
3227                        .map_or(false, |entry| entry.kind == EntryKind::Dir)
3228                });
3229                if !parent_dir_is_loaded {
3230                    log::debug!("ignoring event {relative_path:?} within unloaded directory");
3231                    return false;
3232                }
3233
3234                relative_paths.push(relative_path);
3235                true
3236            }
3237        });
3238
3239        if relative_paths.is_empty() {
3240            return;
3241        }
3242
3243        log::debug!("received fs events {:?}", relative_paths);
3244
3245        let (scan_job_tx, scan_job_rx) = channel::unbounded();
3246        self.reload_entries_for_paths(
3247            root_path,
3248            root_canonical_path,
3249            &relative_paths,
3250            abs_paths,
3251            Some(scan_job_tx.clone()),
3252        )
3253        .await;
3254        drop(scan_job_tx);
3255        self.scan_dirs(false, scan_job_rx).await;
3256
3257        let (scan_job_tx, scan_job_rx) = channel::unbounded();
3258        self.update_ignore_statuses(scan_job_tx).await;
3259        self.scan_dirs(false, scan_job_rx).await;
3260
3261        {
3262            let mut state = self.state.lock();
3263            state.reload_repositories(&relative_paths, self.fs.as_ref());
3264            state.snapshot.completed_scan_id = state.snapshot.scan_id;
3265            for (_, entry_id) in mem::take(&mut state.removed_entry_ids) {
3266                state.scanned_dirs.remove(&entry_id);
3267            }
3268        }
3269
3270        self.send_status_update(false, None);
3271    }
3272
3273    async fn forcibly_load_paths(&self, paths: &[Arc<Path>]) -> bool {
3274        let (scan_job_tx, mut scan_job_rx) = channel::unbounded();
3275        {
3276            let mut state = self.state.lock();
3277            let root_path = state.snapshot.abs_path.clone();
3278            for path in paths {
3279                for ancestor in path.ancestors() {
3280                    if let Some(entry) = state.snapshot.entry_for_path(ancestor) {
3281                        if entry.kind == EntryKind::UnloadedDir {
3282                            let abs_path = root_path.join(ancestor);
3283                            state.enqueue_scan_dir(abs_path.into(), entry, &scan_job_tx);
3284                            state.paths_to_scan.insert(path.clone());
3285                            break;
3286                        }
3287                    }
3288                }
3289            }
3290            drop(scan_job_tx);
3291        }
3292        while let Some(job) = scan_job_rx.next().await {
3293            self.scan_dir(&job).await.log_err();
3294        }
3295
3296        mem::take(&mut self.state.lock().paths_to_scan).len() > 0
3297    }
3298
3299    async fn scan_dirs(
3300        &self,
3301        enable_progress_updates: bool,
3302        scan_jobs_rx: channel::Receiver<ScanJob>,
3303    ) {
3304        use futures::FutureExt as _;
3305
3306        if self
3307            .status_updates_tx
3308            .unbounded_send(ScanState::Started)
3309            .is_err()
3310        {
3311            return;
3312        }
3313
3314        let progress_update_count = AtomicUsize::new(0);
3315        self.executor
3316            .scoped(|scope| {
3317                for _ in 0..self.executor.num_cpus() {
3318                    scope.spawn(async {
3319                        let mut last_progress_update_count = 0;
3320                        let progress_update_timer = self.progress_timer(enable_progress_updates).fuse();
3321                        futures::pin_mut!(progress_update_timer);
3322
3323                        loop {
3324                            select_biased! {
3325                                // Process any path refresh requests before moving on to process
3326                                // the scan queue, so that user operations are prioritized.
3327                                request = self.scan_requests_rx.recv().fuse() => {
3328                                    let Ok(request) = request else { break };
3329                                    if !self.process_scan_request(request, true).await {
3330                                        return;
3331                                    }
3332                                }
3333
3334                                // Send periodic progress updates to the worktree. Use an atomic counter
3335                                // to ensure that only one of the workers sends a progress update after
3336                                // the update interval elapses.
3337                                _ = progress_update_timer => {
3338                                    match progress_update_count.compare_exchange(
3339                                        last_progress_update_count,
3340                                        last_progress_update_count + 1,
3341                                        SeqCst,
3342                                        SeqCst
3343                                    ) {
3344                                        Ok(_) => {
3345                                            last_progress_update_count += 1;
3346                                            self.send_status_update(true, None);
3347                                        }
3348                                        Err(count) => {
3349                                            last_progress_update_count = count;
3350                                        }
3351                                    }
3352                                    progress_update_timer.set(self.progress_timer(enable_progress_updates).fuse());
3353                                }
3354
3355                                // Recursively load directories from the file system.
3356                                job = scan_jobs_rx.recv().fuse() => {
3357                                    let Ok(job) = job else { break };
3358                                    if let Err(err) = self.scan_dir(&job).await {
3359                                        if job.path.as_ref() != Path::new("") {
3360                                            log::error!("error scanning directory {:?}: {}", job.abs_path, err);
3361                                        }
3362                                    }
3363                                }
3364                            }
3365                        }
3366                    })
3367                }
3368            })
3369            .await;
3370    }
3371
3372    fn send_status_update(&self, scanning: bool, barrier: Option<barrier::Sender>) -> bool {
3373        let mut state = self.state.lock();
3374        if state.changed_paths.is_empty() && scanning {
3375            return true;
3376        }
3377
3378        let new_snapshot = state.snapshot.clone();
3379        let old_snapshot = mem::replace(&mut state.prev_snapshot, new_snapshot.snapshot.clone());
3380        let changes = self.build_change_set(&old_snapshot, &new_snapshot, &state.changed_paths);
3381        state.changed_paths.clear();
3382
3383        self.status_updates_tx
3384            .unbounded_send(ScanState::Updated {
3385                snapshot: new_snapshot,
3386                changes,
3387                scanning,
3388                barrier,
3389            })
3390            .is_ok()
3391    }
3392
3393    async fn scan_dir(&self, job: &ScanJob) -> Result<()> {
3394        log::debug!("scan directory {:?}", job.path);
3395
3396        let mut ignore_stack = job.ignore_stack.clone();
3397        let mut new_ignore = None;
3398        let (root_abs_path, root_char_bag, next_entry_id) = {
3399            let snapshot = &self.state.lock().snapshot;
3400            (
3401                snapshot.abs_path().clone(),
3402                snapshot.root_char_bag,
3403                self.next_entry_id.clone(),
3404            )
3405        };
3406
3407        let mut dotgit_path = None;
3408        let mut root_canonical_path = None;
3409        let mut new_entries: Vec<Entry> = Vec::new();
3410        let mut new_jobs: Vec<Option<ScanJob>> = Vec::new();
3411        let mut child_paths = self.fs.read_dir(&job.abs_path).await?;
3412        while let Some(child_abs_path) = child_paths.next().await {
3413            let child_abs_path: Arc<Path> = match child_abs_path {
3414                Ok(child_abs_path) => child_abs_path.into(),
3415                Err(error) => {
3416                    log::error!("error processing entry {:?}", error);
3417                    continue;
3418                }
3419            };
3420
3421            let child_name = child_abs_path.file_name().unwrap();
3422            let child_path: Arc<Path> = job.path.join(child_name).into();
3423            let child_metadata = match self.fs.metadata(&child_abs_path).await {
3424                Ok(Some(metadata)) => metadata,
3425                Ok(None) => continue,
3426                Err(err) => {
3427                    log::error!("error processing {:?}: {:?}", child_abs_path, err);
3428                    continue;
3429                }
3430            };
3431
3432            // If we find a .gitignore, add it to the stack of ignores used to determine which paths are ignored
3433            if child_name == *GITIGNORE {
3434                match build_gitignore(&child_abs_path, self.fs.as_ref()).await {
3435                    Ok(ignore) => {
3436                        let ignore = Arc::new(ignore);
3437                        ignore_stack = ignore_stack.append(job.abs_path.clone(), ignore.clone());
3438                        new_ignore = Some(ignore);
3439                    }
3440                    Err(error) => {
3441                        log::error!(
3442                            "error loading .gitignore file {:?} - {:?}",
3443                            child_name,
3444                            error
3445                        );
3446                    }
3447                }
3448
3449                // Update ignore status of any child entries we've already processed to reflect the
3450                // ignore file in the current directory. Because `.gitignore` starts with a `.`,
3451                // there should rarely be too numerous. Update the ignore stack associated with any
3452                // new jobs as well.
3453                let mut new_jobs = new_jobs.iter_mut();
3454                for entry in &mut new_entries {
3455                    let entry_abs_path = root_abs_path.join(&entry.path);
3456                    entry.is_ignored =
3457                        ignore_stack.is_abs_path_ignored(&entry_abs_path, entry.is_dir());
3458
3459                    if entry.is_dir() {
3460                        if let Some(job) = new_jobs.next().expect("missing scan job for entry") {
3461                            job.ignore_stack = if entry.is_ignored {
3462                                IgnoreStack::all()
3463                            } else {
3464                                ignore_stack.clone()
3465                            };
3466                        }
3467                    }
3468                }
3469            }
3470            // If we find a .git, we'll need to load the repository.
3471            else if child_name == *DOT_GIT {
3472                dotgit_path = Some(child_path.clone());
3473            }
3474
3475            let mut child_entry = Entry::new(
3476                child_path.clone(),
3477                &child_metadata,
3478                &next_entry_id,
3479                root_char_bag,
3480            );
3481
3482            if job.is_external {
3483                child_entry.is_external = true;
3484            } else if child_metadata.is_symlink {
3485                let canonical_path = match self.fs.canonicalize(&child_abs_path).await {
3486                    Ok(path) => path,
3487                    Err(err) => {
3488                        log::error!(
3489                            "error reading target of symlink {:?}: {:?}",
3490                            child_abs_path,
3491                            err
3492                        );
3493                        continue;
3494                    }
3495                };
3496
3497                // lazily canonicalize the root path in order to determine if
3498                // symlinks point outside of the worktree.
3499                let root_canonical_path = match &root_canonical_path {
3500                    Some(path) => path,
3501                    None => match self.fs.canonicalize(&root_abs_path).await {
3502                        Ok(path) => root_canonical_path.insert(path),
3503                        Err(err) => {
3504                            log::error!("error canonicalizing root {:?}: {:?}", root_abs_path, err);
3505                            continue;
3506                        }
3507                    },
3508                };
3509
3510                if !canonical_path.starts_with(root_canonical_path) {
3511                    child_entry.is_external = true;
3512                }
3513            }
3514
3515            if child_entry.is_dir() {
3516                child_entry.is_ignored = ignore_stack.is_abs_path_ignored(&child_abs_path, true);
3517
3518                // Avoid recursing until crash in the case of a recursive symlink
3519                if !job.ancestor_inodes.contains(&child_entry.inode) {
3520                    let mut ancestor_inodes = job.ancestor_inodes.clone();
3521                    ancestor_inodes.insert(child_entry.inode);
3522
3523                    new_jobs.push(Some(ScanJob {
3524                        abs_path: child_abs_path,
3525                        path: child_path,
3526                        is_external: child_entry.is_external,
3527                        ignore_stack: if child_entry.is_ignored {
3528                            IgnoreStack::all()
3529                        } else {
3530                            ignore_stack.clone()
3531                        },
3532                        ancestor_inodes,
3533                        scan_queue: job.scan_queue.clone(),
3534                        containing_repository: job.containing_repository.clone(),
3535                    }));
3536                } else {
3537                    new_jobs.push(None);
3538                }
3539            } else {
3540                child_entry.is_ignored = ignore_stack.is_abs_path_ignored(&child_abs_path, false);
3541                if !child_entry.is_ignored {
3542                    if let Some((repository_dir, repository, staged_statuses)) =
3543                        &job.containing_repository
3544                    {
3545                        if let Ok(repo_path) = child_entry.path.strip_prefix(&repository_dir.0) {
3546                            let repo_path = RepoPath(repo_path.into());
3547                            child_entry.git_status = combine_git_statuses(
3548                                staged_statuses.get(&repo_path).copied(),
3549                                repository
3550                                    .lock()
3551                                    .unstaged_status(&repo_path, child_entry.mtime),
3552                            );
3553                        }
3554                    }
3555                }
3556            }
3557
3558            new_entries.push(child_entry);
3559        }
3560
3561        let mut state = self.state.lock();
3562
3563        // Identify any subdirectories that should not be scanned.
3564        let mut job_ix = 0;
3565        for entry in &mut new_entries {
3566            state.reuse_entry_id(entry);
3567            if entry.is_dir() {
3568                if state.should_scan_directory(&entry) {
3569                    job_ix += 1;
3570                } else {
3571                    log::debug!("defer scanning directory {:?}", entry.path);
3572                    entry.kind = EntryKind::UnloadedDir;
3573                    new_jobs.remove(job_ix);
3574                }
3575            }
3576        }
3577
3578        state.populate_dir(&job.path, new_entries, new_ignore);
3579
3580        let repository =
3581            dotgit_path.and_then(|path| state.build_git_repository(path, self.fs.as_ref()));
3582
3583        for new_job in new_jobs {
3584            if let Some(mut new_job) = new_job {
3585                if let Some(containing_repository) = &repository {
3586                    new_job.containing_repository = Some(containing_repository.clone());
3587                }
3588
3589                job.scan_queue
3590                    .try_send(new_job)
3591                    .expect("channel is unbounded");
3592            }
3593        }
3594
3595        Ok(())
3596    }
3597
3598    async fn reload_entries_for_paths(
3599        &self,
3600        root_abs_path: Arc<Path>,
3601        root_canonical_path: PathBuf,
3602        relative_paths: &[Arc<Path>],
3603        abs_paths: Vec<PathBuf>,
3604        scan_queue_tx: Option<Sender<ScanJob>>,
3605    ) {
3606        let metadata = futures::future::join_all(
3607            abs_paths
3608                .iter()
3609                .map(|abs_path| async move {
3610                    let metadata = self.fs.metadata(&abs_path).await?;
3611                    if let Some(metadata) = metadata {
3612                        let canonical_path = self.fs.canonicalize(&abs_path).await?;
3613                        anyhow::Ok(Some((metadata, canonical_path)))
3614                    } else {
3615                        Ok(None)
3616                    }
3617                })
3618                .collect::<Vec<_>>(),
3619        )
3620        .await;
3621
3622        let mut state = self.state.lock();
3623        let snapshot = &mut state.snapshot;
3624        let is_idle = snapshot.completed_scan_id == snapshot.scan_id;
3625        let doing_recursive_update = scan_queue_tx.is_some();
3626        snapshot.scan_id += 1;
3627        if is_idle && !doing_recursive_update {
3628            snapshot.completed_scan_id = snapshot.scan_id;
3629        }
3630
3631        // Remove any entries for paths that no longer exist or are being recursively
3632        // refreshed. Do this before adding any new entries, so that renames can be
3633        // detected regardless of the order of the paths.
3634        for (path, metadata) in relative_paths.iter().zip(metadata.iter()) {
3635            if matches!(metadata, Ok(None)) || doing_recursive_update {
3636                log::trace!("remove path {:?}", path);
3637                state.remove_path(path);
3638            }
3639        }
3640
3641        for (path, metadata) in relative_paths.iter().zip(metadata.iter()) {
3642            let abs_path: Arc<Path> = root_abs_path.join(&path).into();
3643            match metadata {
3644                Ok(Some((metadata, canonical_path))) => {
3645                    let ignore_stack = state
3646                        .snapshot
3647                        .ignore_stack_for_abs_path(&abs_path, metadata.is_dir);
3648
3649                    let mut fs_entry = Entry::new(
3650                        path.clone(),
3651                        metadata,
3652                        self.next_entry_id.as_ref(),
3653                        state.snapshot.root_char_bag,
3654                    );
3655                    fs_entry.is_ignored = ignore_stack.is_all();
3656                    fs_entry.is_external = !canonical_path.starts_with(&root_canonical_path);
3657
3658                    if !fs_entry.is_ignored {
3659                        if !fs_entry.is_dir() {
3660                            if let Some((work_dir, repo)) =
3661                                state.snapshot.local_repo_for_path(&path)
3662                            {
3663                                if let Ok(repo_path) = path.strip_prefix(work_dir.0) {
3664                                    let repo_path = RepoPath(repo_path.into());
3665                                    let repo = repo.repo_ptr.lock();
3666                                    fs_entry.git_status = repo.status(&repo_path, fs_entry.mtime);
3667                                }
3668                            }
3669                        }
3670                    }
3671
3672                    if let (Some(scan_queue_tx), true) = (&scan_queue_tx, fs_entry.is_dir()) {
3673                        if state.should_scan_directory(&fs_entry) {
3674                            state.enqueue_scan_dir(abs_path, &fs_entry, scan_queue_tx);
3675                        } else {
3676                            fs_entry.kind = EntryKind::UnloadedDir;
3677                        }
3678                    }
3679
3680                    state.insert_entry(fs_entry, self.fs.as_ref());
3681                }
3682                Ok(None) => {
3683                    self.remove_repo_path(&path, &mut state.snapshot);
3684                }
3685                Err(err) => {
3686                    // TODO - create a special 'error' entry in the entries tree to mark this
3687                    log::error!("error reading file on event {:?}", err);
3688                }
3689            }
3690        }
3691
3692        util::extend_sorted(
3693            &mut state.changed_paths,
3694            relative_paths.iter().cloned(),
3695            usize::MAX,
3696            Ord::cmp,
3697        );
3698    }
3699
3700    fn remove_repo_path(&self, path: &Path, snapshot: &mut LocalSnapshot) -> Option<()> {
3701        if !path
3702            .components()
3703            .any(|component| component.as_os_str() == *DOT_GIT)
3704        {
3705            if let Some(repository) = snapshot.repository_for_work_directory(path) {
3706                let entry = repository.work_directory.0;
3707                snapshot.git_repositories.remove(&entry);
3708                snapshot
3709                    .snapshot
3710                    .repository_entries
3711                    .remove(&RepositoryWorkDirectory(path.into()));
3712                return Some(());
3713            }
3714        }
3715
3716        // TODO statuses
3717        // Track when a .git is removed and iterate over the file system there
3718
3719        Some(())
3720    }
3721
3722    async fn update_ignore_statuses(&self, scan_job_tx: Sender<ScanJob>) {
3723        use futures::FutureExt as _;
3724
3725        let mut snapshot = self.state.lock().snapshot.clone();
3726        let mut ignores_to_update = Vec::new();
3727        let mut ignores_to_delete = Vec::new();
3728        let abs_path = snapshot.abs_path.clone();
3729        for (parent_abs_path, (_, needs_update)) in &mut snapshot.ignores_by_parent_abs_path {
3730            if let Ok(parent_path) = parent_abs_path.strip_prefix(&abs_path) {
3731                if *needs_update {
3732                    *needs_update = false;
3733                    if snapshot.snapshot.entry_for_path(parent_path).is_some() {
3734                        ignores_to_update.push(parent_abs_path.clone());
3735                    }
3736                }
3737
3738                let ignore_path = parent_path.join(&*GITIGNORE);
3739                if snapshot.snapshot.entry_for_path(ignore_path).is_none() {
3740                    ignores_to_delete.push(parent_abs_path.clone());
3741                }
3742            }
3743        }
3744
3745        for parent_abs_path in ignores_to_delete {
3746            snapshot.ignores_by_parent_abs_path.remove(&parent_abs_path);
3747            self.state
3748                .lock()
3749                .snapshot
3750                .ignores_by_parent_abs_path
3751                .remove(&parent_abs_path);
3752        }
3753
3754        let (ignore_queue_tx, ignore_queue_rx) = channel::unbounded();
3755        ignores_to_update.sort_unstable();
3756        let mut ignores_to_update = ignores_to_update.into_iter().peekable();
3757        while let Some(parent_abs_path) = ignores_to_update.next() {
3758            while ignores_to_update
3759                .peek()
3760                .map_or(false, |p| p.starts_with(&parent_abs_path))
3761            {
3762                ignores_to_update.next().unwrap();
3763            }
3764
3765            let ignore_stack = snapshot.ignore_stack_for_abs_path(&parent_abs_path, true);
3766            smol::block_on(ignore_queue_tx.send(UpdateIgnoreStatusJob {
3767                abs_path: parent_abs_path,
3768                ignore_stack,
3769                ignore_queue: ignore_queue_tx.clone(),
3770                scan_queue: scan_job_tx.clone(),
3771            }))
3772            .unwrap();
3773        }
3774        drop(ignore_queue_tx);
3775
3776        self.executor
3777            .scoped(|scope| {
3778                for _ in 0..self.executor.num_cpus() {
3779                    scope.spawn(async {
3780                        loop {
3781                            select_biased! {
3782                                // Process any path refresh requests before moving on to process
3783                                // the queue of ignore statuses.
3784                                request = self.scan_requests_rx.recv().fuse() => {
3785                                    let Ok(request) = request else { break };
3786                                    if !self.process_scan_request(request, true).await {
3787                                        return;
3788                                    }
3789                                }
3790
3791                                // Recursively process directories whose ignores have changed.
3792                                job = ignore_queue_rx.recv().fuse() => {
3793                                    let Ok(job) = job else { break };
3794                                    self.update_ignore_status(job, &snapshot).await;
3795                                }
3796                            }
3797                        }
3798                    });
3799                }
3800            })
3801            .await;
3802    }
3803
3804    async fn update_ignore_status(&self, job: UpdateIgnoreStatusJob, snapshot: &LocalSnapshot) {
3805        log::trace!("update ignore status {:?}", job.abs_path);
3806
3807        let mut ignore_stack = job.ignore_stack;
3808        if let Some((ignore, _)) = snapshot.ignores_by_parent_abs_path.get(&job.abs_path) {
3809            ignore_stack = ignore_stack.append(job.abs_path.clone(), ignore.clone());
3810        }
3811
3812        let mut entries_by_id_edits = Vec::new();
3813        let mut entries_by_path_edits = Vec::new();
3814        let path = job.abs_path.strip_prefix(&snapshot.abs_path).unwrap();
3815        for mut entry in snapshot.child_entries(path).cloned() {
3816            let was_ignored = entry.is_ignored;
3817            let abs_path: Arc<Path> = snapshot.abs_path().join(&entry.path).into();
3818            entry.is_ignored = ignore_stack.is_abs_path_ignored(&abs_path, entry.is_dir());
3819            if entry.is_dir() {
3820                let child_ignore_stack = if entry.is_ignored {
3821                    IgnoreStack::all()
3822                } else {
3823                    ignore_stack.clone()
3824                };
3825
3826                // Scan any directories that were previously ignored and weren't
3827                // previously scanned.
3828                if was_ignored && !entry.is_ignored && entry.kind.is_unloaded() {
3829                    let state = self.state.lock();
3830                    if state.should_scan_directory(&entry) {
3831                        state.enqueue_scan_dir(abs_path.clone(), &entry, &job.scan_queue);
3832                    }
3833                }
3834
3835                job.ignore_queue
3836                    .send(UpdateIgnoreStatusJob {
3837                        abs_path: abs_path.clone(),
3838                        ignore_stack: child_ignore_stack,
3839                        ignore_queue: job.ignore_queue.clone(),
3840                        scan_queue: job.scan_queue.clone(),
3841                    })
3842                    .await
3843                    .unwrap();
3844            }
3845
3846            if entry.is_ignored != was_ignored {
3847                let mut path_entry = snapshot.entries_by_id.get(&entry.id, &()).unwrap().clone();
3848                path_entry.scan_id = snapshot.scan_id;
3849                path_entry.is_ignored = entry.is_ignored;
3850                entries_by_id_edits.push(Edit::Insert(path_entry));
3851                entries_by_path_edits.push(Edit::Insert(entry));
3852            }
3853        }
3854
3855        let state = &mut self.state.lock();
3856        for edit in &entries_by_path_edits {
3857            if let Edit::Insert(entry) = edit {
3858                if let Err(ix) = state.changed_paths.binary_search(&entry.path) {
3859                    state.changed_paths.insert(ix, entry.path.clone());
3860                }
3861            }
3862        }
3863
3864        state
3865            .snapshot
3866            .entries_by_path
3867            .edit(entries_by_path_edits, &());
3868        state.snapshot.entries_by_id.edit(entries_by_id_edits, &());
3869    }
3870
3871    fn build_change_set(
3872        &self,
3873        old_snapshot: &Snapshot,
3874        new_snapshot: &Snapshot,
3875        event_paths: &[Arc<Path>],
3876    ) -> UpdatedEntriesSet {
3877        use BackgroundScannerPhase::*;
3878        use PathChange::{Added, AddedOrUpdated, Loaded, Removed, Updated};
3879
3880        // Identify which paths have changed. Use the known set of changed
3881        // parent paths to optimize the search.
3882        let mut changes = Vec::new();
3883        let mut old_paths = old_snapshot.entries_by_path.cursor::<PathKey>();
3884        let mut new_paths = new_snapshot.entries_by_path.cursor::<PathKey>();
3885        let mut last_newly_loaded_dir_path = None;
3886        old_paths.next(&());
3887        new_paths.next(&());
3888        for path in event_paths {
3889            let path = PathKey(path.clone());
3890            if old_paths.item().map_or(false, |e| e.path < path.0) {
3891                old_paths.seek_forward(&path, Bias::Left, &());
3892            }
3893            if new_paths.item().map_or(false, |e| e.path < path.0) {
3894                new_paths.seek_forward(&path, Bias::Left, &());
3895            }
3896            loop {
3897                match (old_paths.item(), new_paths.item()) {
3898                    (Some(old_entry), Some(new_entry)) => {
3899                        if old_entry.path > path.0
3900                            && new_entry.path > path.0
3901                            && !old_entry.path.starts_with(&path.0)
3902                            && !new_entry.path.starts_with(&path.0)
3903                        {
3904                            break;
3905                        }
3906
3907                        match Ord::cmp(&old_entry.path, &new_entry.path) {
3908                            Ordering::Less => {
3909                                changes.push((old_entry.path.clone(), old_entry.id, Removed));
3910                                old_paths.next(&());
3911                            }
3912                            Ordering::Equal => {
3913                                if self.phase == EventsReceivedDuringInitialScan {
3914                                    if old_entry.id != new_entry.id {
3915                                        changes.push((
3916                                            old_entry.path.clone(),
3917                                            old_entry.id,
3918                                            Removed,
3919                                        ));
3920                                    }
3921                                    // If the worktree was not fully initialized when this event was generated,
3922                                    // we can't know whether this entry was added during the scan or whether
3923                                    // it was merely updated.
3924                                    changes.push((
3925                                        new_entry.path.clone(),
3926                                        new_entry.id,
3927                                        AddedOrUpdated,
3928                                    ));
3929                                } else if old_entry.id != new_entry.id {
3930                                    changes.push((old_entry.path.clone(), old_entry.id, Removed));
3931                                    changes.push((new_entry.path.clone(), new_entry.id, Added));
3932                                } else if old_entry != new_entry {
3933                                    if old_entry.kind.is_unloaded() {
3934                                        last_newly_loaded_dir_path = Some(&new_entry.path);
3935                                        changes.push((
3936                                            new_entry.path.clone(),
3937                                            new_entry.id,
3938                                            Loaded,
3939                                        ));
3940                                    } else {
3941                                        changes.push((
3942                                            new_entry.path.clone(),
3943                                            new_entry.id,
3944                                            Updated,
3945                                        ));
3946                                    }
3947                                }
3948                                old_paths.next(&());
3949                                new_paths.next(&());
3950                            }
3951                            Ordering::Greater => {
3952                                let is_newly_loaded = self.phase == InitialScan
3953                                    || last_newly_loaded_dir_path
3954                                        .as_ref()
3955                                        .map_or(false, |dir| new_entry.path.starts_with(&dir));
3956                                changes.push((
3957                                    new_entry.path.clone(),
3958                                    new_entry.id,
3959                                    if is_newly_loaded { Loaded } else { Added },
3960                                ));
3961                                new_paths.next(&());
3962                            }
3963                        }
3964                    }
3965                    (Some(old_entry), None) => {
3966                        changes.push((old_entry.path.clone(), old_entry.id, Removed));
3967                        old_paths.next(&());
3968                    }
3969                    (None, Some(new_entry)) => {
3970                        let is_newly_loaded = self.phase == InitialScan
3971                            || last_newly_loaded_dir_path
3972                                .as_ref()
3973                                .map_or(false, |dir| new_entry.path.starts_with(&dir));
3974                        changes.push((
3975                            new_entry.path.clone(),
3976                            new_entry.id,
3977                            if is_newly_loaded { Loaded } else { Added },
3978                        ));
3979                        new_paths.next(&());
3980                    }
3981                    (None, None) => break,
3982                }
3983            }
3984        }
3985
3986        changes.into()
3987    }
3988
3989    async fn progress_timer(&self, running: bool) {
3990        if !running {
3991            return futures::future::pending().await;
3992        }
3993
3994        #[cfg(any(test, feature = "test-support"))]
3995        if self.fs.is_fake() {
3996            return self.executor.simulate_random_delay().await;
3997        }
3998
3999        smol::Timer::after(Duration::from_millis(100)).await;
4000    }
4001}
4002
4003fn char_bag_for_path(root_char_bag: CharBag, path: &Path) -> CharBag {
4004    let mut result = root_char_bag;
4005    result.extend(
4006        path.to_string_lossy()
4007            .chars()
4008            .map(|c| c.to_ascii_lowercase()),
4009    );
4010    result
4011}
4012
4013struct ScanJob {
4014    abs_path: Arc<Path>,
4015    path: Arc<Path>,
4016    ignore_stack: Arc<IgnoreStack>,
4017    scan_queue: Sender<ScanJob>,
4018    ancestor_inodes: TreeSet<u64>,
4019    is_external: bool,
4020    containing_repository: Option<(
4021        RepositoryWorkDirectory,
4022        Arc<Mutex<dyn GitRepository>>,
4023        TreeMap<RepoPath, GitFileStatus>,
4024    )>,
4025}
4026
4027struct UpdateIgnoreStatusJob {
4028    abs_path: Arc<Path>,
4029    ignore_stack: Arc<IgnoreStack>,
4030    ignore_queue: Sender<UpdateIgnoreStatusJob>,
4031    scan_queue: Sender<ScanJob>,
4032}
4033
4034pub trait WorktreeModelHandle {
4035    #[cfg(any(test, feature = "test-support"))]
4036    fn flush_fs_events<'a>(
4037        &self,
4038        cx: &'a mut gpui::TestAppContext,
4039    ) -> futures::future::LocalBoxFuture<'a, ()>;
4040}
4041
4042impl WorktreeModelHandle for Model<Worktree> {
4043    // When the worktree's FS event stream sometimes delivers "redundant" events for FS changes that
4044    // occurred before the worktree was constructed. These events can cause the worktree to perform
4045    // extra directory scans, and emit extra scan-state notifications.
4046    //
4047    // This function mutates the worktree's directory and waits for those mutations to be picked up,
4048    // to ensure that all redundant FS events have already been processed.
4049    #[cfg(any(test, feature = "test-support"))]
4050    fn flush_fs_events<'a>(
4051        &self,
4052        cx: &'a mut gpui::TestAppContext,
4053    ) -> futures::future::LocalBoxFuture<'a, ()> {
4054        let file_name = "fs-event-sentinel";
4055
4056        let tree = self.clone();
4057        let (fs, root_path) = self.update(cx, |tree, _| {
4058            let tree = tree.as_local().unwrap();
4059            (tree.fs.clone(), tree.abs_path().clone())
4060        });
4061
4062        async move {
4063            fs.create_file(&root_path.join(file_name), Default::default())
4064                .await
4065                .unwrap();
4066
4067            cx.condition(&tree, |tree, _| tree.entry_for_path(file_name).is_some())
4068                .await;
4069
4070            fs.remove_file(&root_path.join(file_name), Default::default())
4071                .await
4072                .unwrap();
4073            cx.condition(&tree, |tree, _| tree.entry_for_path(file_name).is_none())
4074                .await;
4075
4076            cx.update(|cx| tree.read(cx).as_local().unwrap().scan_complete())
4077                .await;
4078        }
4079        .boxed_local()
4080    }
4081}
4082
4083#[derive(Clone, Debug)]
4084struct TraversalProgress<'a> {
4085    max_path: &'a Path,
4086    count: usize,
4087    non_ignored_count: usize,
4088    file_count: usize,
4089    non_ignored_file_count: usize,
4090}
4091
4092impl<'a> TraversalProgress<'a> {
4093    fn count(&self, include_dirs: bool, include_ignored: bool) -> usize {
4094        match (include_ignored, include_dirs) {
4095            (true, true) => self.count,
4096            (true, false) => self.file_count,
4097            (false, true) => self.non_ignored_count,
4098            (false, false) => self.non_ignored_file_count,
4099        }
4100    }
4101}
4102
4103impl<'a> sum_tree::Dimension<'a, EntrySummary> for TraversalProgress<'a> {
4104    fn add_summary(&mut self, summary: &'a EntrySummary, _: &()) {
4105        self.max_path = summary.max_path.as_ref();
4106        self.count += summary.count;
4107        self.non_ignored_count += summary.non_ignored_count;
4108        self.file_count += summary.file_count;
4109        self.non_ignored_file_count += summary.non_ignored_file_count;
4110    }
4111}
4112
4113impl<'a> Default for TraversalProgress<'a> {
4114    fn default() -> Self {
4115        Self {
4116            max_path: Path::new(""),
4117            count: 0,
4118            non_ignored_count: 0,
4119            file_count: 0,
4120            non_ignored_file_count: 0,
4121        }
4122    }
4123}
4124
4125#[derive(Clone, Debug, Default, Copy)]
4126struct GitStatuses {
4127    added: usize,
4128    modified: usize,
4129    conflict: usize,
4130}
4131
4132impl AddAssign for GitStatuses {
4133    fn add_assign(&mut self, rhs: Self) {
4134        self.added += rhs.added;
4135        self.modified += rhs.modified;
4136        self.conflict += rhs.conflict;
4137    }
4138}
4139
4140impl Sub for GitStatuses {
4141    type Output = GitStatuses;
4142
4143    fn sub(self, rhs: Self) -> Self::Output {
4144        GitStatuses {
4145            added: self.added - rhs.added,
4146            modified: self.modified - rhs.modified,
4147            conflict: self.conflict - rhs.conflict,
4148        }
4149    }
4150}
4151
4152impl<'a> sum_tree::Dimension<'a, EntrySummary> for GitStatuses {
4153    fn add_summary(&mut self, summary: &'a EntrySummary, _: &()) {
4154        *self += summary.statuses
4155    }
4156}
4157
4158pub struct Traversal<'a> {
4159    cursor: sum_tree::Cursor<'a, Entry, TraversalProgress<'a>>,
4160    include_ignored: bool,
4161    include_dirs: bool,
4162}
4163
4164impl<'a> Traversal<'a> {
4165    pub fn advance(&mut self) -> bool {
4166        self.cursor.seek_forward(
4167            &TraversalTarget::Count {
4168                count: self.end_offset() + 1,
4169                include_dirs: self.include_dirs,
4170                include_ignored: self.include_ignored,
4171            },
4172            Bias::Left,
4173            &(),
4174        )
4175    }
4176
4177    pub fn advance_to_sibling(&mut self) -> bool {
4178        while let Some(entry) = self.cursor.item() {
4179            self.cursor.seek_forward(
4180                &TraversalTarget::PathSuccessor(&entry.path),
4181                Bias::Left,
4182                &(),
4183            );
4184            if let Some(entry) = self.cursor.item() {
4185                if (self.include_dirs || !entry.is_dir())
4186                    && (self.include_ignored || !entry.is_ignored)
4187                {
4188                    return true;
4189                }
4190            }
4191        }
4192        false
4193    }
4194
4195    pub fn entry(&self) -> Option<&'a Entry> {
4196        self.cursor.item()
4197    }
4198
4199    pub fn start_offset(&self) -> usize {
4200        self.cursor
4201            .start()
4202            .count(self.include_dirs, self.include_ignored)
4203    }
4204
4205    pub fn end_offset(&self) -> usize {
4206        self.cursor
4207            .end(&())
4208            .count(self.include_dirs, self.include_ignored)
4209    }
4210}
4211
4212impl<'a> Iterator for Traversal<'a> {
4213    type Item = &'a Entry;
4214
4215    fn next(&mut self) -> Option<Self::Item> {
4216        if let Some(item) = self.entry() {
4217            self.advance();
4218            Some(item)
4219        } else {
4220            None
4221        }
4222    }
4223}
4224
4225#[derive(Debug)]
4226enum TraversalTarget<'a> {
4227    Path(&'a Path),
4228    PathSuccessor(&'a Path),
4229    Count {
4230        count: usize,
4231        include_ignored: bool,
4232        include_dirs: bool,
4233    },
4234}
4235
4236impl<'a, 'b> SeekTarget<'a, EntrySummary, TraversalProgress<'a>> for TraversalTarget<'b> {
4237    fn cmp(&self, cursor_location: &TraversalProgress<'a>, _: &()) -> Ordering {
4238        match self {
4239            TraversalTarget::Path(path) => path.cmp(&cursor_location.max_path),
4240            TraversalTarget::PathSuccessor(path) => {
4241                if !cursor_location.max_path.starts_with(path) {
4242                    Ordering::Equal
4243                } else {
4244                    Ordering::Greater
4245                }
4246            }
4247            TraversalTarget::Count {
4248                count,
4249                include_dirs,
4250                include_ignored,
4251            } => Ord::cmp(
4252                count,
4253                &cursor_location.count(*include_dirs, *include_ignored),
4254            ),
4255        }
4256    }
4257}
4258
4259impl<'a, 'b> SeekTarget<'a, EntrySummary, (TraversalProgress<'a>, GitStatuses)>
4260    for TraversalTarget<'b>
4261{
4262    fn cmp(&self, cursor_location: &(TraversalProgress<'a>, GitStatuses), _: &()) -> Ordering {
4263        self.cmp(&cursor_location.0, &())
4264    }
4265}
4266
4267struct ChildEntriesIter<'a> {
4268    parent_path: &'a Path,
4269    traversal: Traversal<'a>,
4270}
4271
4272impl<'a> Iterator for ChildEntriesIter<'a> {
4273    type Item = &'a Entry;
4274
4275    fn next(&mut self) -> Option<Self::Item> {
4276        if let Some(item) = self.traversal.entry() {
4277            if item.path.starts_with(&self.parent_path) {
4278                self.traversal.advance_to_sibling();
4279                return Some(item);
4280            }
4281        }
4282        None
4283    }
4284}
4285
4286pub struct DescendentEntriesIter<'a> {
4287    parent_path: &'a Path,
4288    traversal: Traversal<'a>,
4289}
4290
4291impl<'a> Iterator for DescendentEntriesIter<'a> {
4292    type Item = &'a Entry;
4293
4294    fn next(&mut self) -> Option<Self::Item> {
4295        if let Some(item) = self.traversal.entry() {
4296            if item.path.starts_with(&self.parent_path) {
4297                self.traversal.advance();
4298                return Some(item);
4299            }
4300        }
4301        None
4302    }
4303}
4304
4305impl<'a> From<&'a Entry> for proto::Entry {
4306    fn from(entry: &'a Entry) -> Self {
4307        Self {
4308            id: entry.id.to_proto(),
4309            is_dir: entry.is_dir(),
4310            path: entry.path.to_string_lossy().into(),
4311            inode: entry.inode,
4312            mtime: Some(entry.mtime.into()),
4313            is_symlink: entry.is_symlink,
4314            is_ignored: entry.is_ignored,
4315            is_external: entry.is_external,
4316            git_status: entry.git_status.map(git_status_to_proto),
4317        }
4318    }
4319}
4320
4321impl<'a> TryFrom<(&'a CharBag, proto::Entry)> for Entry {
4322    type Error = anyhow::Error;
4323
4324    fn try_from((root_char_bag, entry): (&'a CharBag, proto::Entry)) -> Result<Self> {
4325        if let Some(mtime) = entry.mtime {
4326            let kind = if entry.is_dir {
4327                EntryKind::Dir
4328            } else {
4329                let mut char_bag = *root_char_bag;
4330                char_bag.extend(entry.path.chars().map(|c| c.to_ascii_lowercase()));
4331                EntryKind::File(char_bag)
4332            };
4333            let path: Arc<Path> = PathBuf::from(entry.path).into();
4334            Ok(Entry {
4335                id: ProjectEntryId::from_proto(entry.id),
4336                kind,
4337                path,
4338                inode: entry.inode,
4339                mtime: mtime.into(),
4340                is_symlink: entry.is_symlink,
4341                is_ignored: entry.is_ignored,
4342                is_external: entry.is_external,
4343                git_status: git_status_from_proto(entry.git_status),
4344            })
4345        } else {
4346            Err(anyhow!(
4347                "missing mtime in remote worktree entry {:?}",
4348                entry.path
4349            ))
4350        }
4351    }
4352}
4353
4354fn combine_git_statuses(
4355    staged: Option<GitFileStatus>,
4356    unstaged: Option<GitFileStatus>,
4357) -> Option<GitFileStatus> {
4358    if let Some(staged) = staged {
4359        if let Some(unstaged) = unstaged {
4360            if unstaged != staged {
4361                Some(GitFileStatus::Modified)
4362            } else {
4363                Some(staged)
4364            }
4365        } else {
4366            Some(staged)
4367        }
4368    } else {
4369        unstaged
4370    }
4371}
4372
4373fn git_status_from_proto(git_status: Option<i32>) -> Option<GitFileStatus> {
4374    git_status.and_then(|status| {
4375        proto::GitStatus::from_i32(status).map(|status| match status {
4376            proto::GitStatus::Added => GitFileStatus::Added,
4377            proto::GitStatus::Modified => GitFileStatus::Modified,
4378            proto::GitStatus::Conflict => GitFileStatus::Conflict,
4379        })
4380    })
4381}
4382
4383fn git_status_to_proto(status: GitFileStatus) -> i32 {
4384    match status {
4385        GitFileStatus::Added => proto::GitStatus::Added as i32,
4386        GitFileStatus::Modified => proto::GitStatus::Modified as i32,
4387        GitFileStatus::Conflict => proto::GitStatus::Conflict as i32,
4388    }
4389}