mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Compute unstaged git status separately, to take advantage of our cached file mtimes
This commit is contained in:
parent
ff0864026e
commit
51d311affd
@ -10,6 +10,7 @@ use std::{
|
||||
os::unix::prelude::OsStrExt,
|
||||
path::{Component, Path, PathBuf},
|
||||
sync::Arc,
|
||||
time::SystemTime,
|
||||
};
|
||||
use sum_tree::{MapSeekTarget, TreeMap};
|
||||
use util::ResultExt;
|
||||
@ -27,7 +28,8 @@ pub trait GitRepository: Send {
|
||||
fn reload_index(&self);
|
||||
fn load_index_text(&self, relative_file_path: &Path) -> Option<String>;
|
||||
fn branch_name(&self) -> Option<String>;
|
||||
fn statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus>;
|
||||
fn staged_statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus>;
|
||||
fn unstaged_status(&self, path: &RepoPath, mtime: SystemTime) -> Option<GitFileStatus>;
|
||||
fn status(&self, path: &RepoPath) -> Result<Option<GitFileStatus>>;
|
||||
fn branches(&self) -> Result<Vec<Branch>>;
|
||||
fn change_branch(&self, _: &str) -> Result<()>;
|
||||
@ -78,10 +80,11 @@ impl GitRepository for LibGitRepository {
|
||||
Some(branch.to_string())
|
||||
}
|
||||
|
||||
fn statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus> {
|
||||
fn staged_statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus> {
|
||||
let mut map = TreeMap::default();
|
||||
let mut options = git2::StatusOptions::new();
|
||||
options.pathspec(path_prefix);
|
||||
options.disable_pathspec_match(true);
|
||||
if let Some(statuses) = self.statuses(Some(&mut options)).log_err() {
|
||||
for status in statuses
|
||||
.iter()
|
||||
@ -98,6 +101,27 @@ impl GitRepository for LibGitRepository {
|
||||
map
|
||||
}
|
||||
|
||||
fn unstaged_status(&self, path: &RepoPath, mtime: SystemTime) -> Option<GitFileStatus> {
|
||||
let index = self.index().log_err()?;
|
||||
if let Some(entry) = index.get_path(&path, 0) {
|
||||
let mtime = mtime.duration_since(SystemTime::UNIX_EPOCH).log_err()?;
|
||||
if entry.mtime.seconds() == mtime.as_secs() as i32
|
||||
&& entry.mtime.nanoseconds() == mtime.subsec_nanos()
|
||||
{
|
||||
None
|
||||
} else {
|
||||
let mut options = git2::StatusOptions::new();
|
||||
options.pathspec(&path.0);
|
||||
options.disable_pathspec_match(true);
|
||||
let statuses = self.statuses(Some(&mut options)).log_err()?;
|
||||
let status = statuses.get(0).and_then(|s| read_status(s.status()));
|
||||
status
|
||||
}
|
||||
} else {
|
||||
Some(GitFileStatus::Added)
|
||||
}
|
||||
}
|
||||
|
||||
fn status(&self, path: &RepoPath) -> Result<Option<GitFileStatus>> {
|
||||
let status = self.status_file(path);
|
||||
match status {
|
||||
@ -203,7 +227,7 @@ impl GitRepository for FakeGitRepository {
|
||||
state.branch_name.clone()
|
||||
}
|
||||
|
||||
fn statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus> {
|
||||
fn staged_statuses(&self, path_prefix: &Path) -> TreeMap<RepoPath, GitFileStatus> {
|
||||
let mut map = TreeMap::default();
|
||||
let state = self.state.lock();
|
||||
for (repo_path, status) in state.worktree_statuses.iter() {
|
||||
@ -214,6 +238,10 @@ impl GitRepository for FakeGitRepository {
|
||||
map
|
||||
}
|
||||
|
||||
fn unstaged_status(&self, _path: &RepoPath, _mtime: SystemTime) -> Option<GitFileStatus> {
|
||||
None
|
||||
}
|
||||
|
||||
fn status(&self, path: &RepoPath) -> Result<Option<GitFileStatus>> {
|
||||
let state = self.state.lock();
|
||||
Ok(state.worktree_statuses.get(path).cloned())
|
||||
|
@ -2166,8 +2166,11 @@ impl BackgroundScannerState {
|
||||
if !ignore_stack.is_all() {
|
||||
if let Some((workdir_path, repo)) = self.snapshot.local_repo_for_path(&path) {
|
||||
if let Ok(repo_path) = path.strip_prefix(&workdir_path.0) {
|
||||
containing_repository =
|
||||
Some((workdir_path, repo.repo_ptr.lock().statuses(repo_path)));
|
||||
containing_repository = Some((
|
||||
workdir_path,
|
||||
repo.repo_ptr.clone(),
|
||||
repo.repo_ptr.lock().staged_statuses(repo_path),
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2360,8 +2363,7 @@ impl BackgroundScannerState {
|
||||
.repository_entries
|
||||
.update(&work_dir, |entry| entry.branch = branch.map(Into::into));
|
||||
|
||||
let statuses = repository.statuses(Path::new(""));
|
||||
self.update_git_statuses(&work_dir, &statuses);
|
||||
self.update_git_statuses(&work_dir, &*repository);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2386,7 +2388,11 @@ impl BackgroundScannerState {
|
||||
&mut self,
|
||||
dot_git_path: Arc<Path>,
|
||||
fs: &dyn Fs,
|
||||
) -> Option<(RepositoryWorkDirectory, TreeMap<RepoPath, GitFileStatus>)> {
|
||||
) -> Option<(
|
||||
RepositoryWorkDirectory,
|
||||
Arc<Mutex<dyn GitRepository>>,
|
||||
TreeMap<RepoPath, GitFileStatus>,
|
||||
)> {
|
||||
log::info!("build git repository {:?}", dot_git_path);
|
||||
|
||||
let work_dir_path: Arc<Path> = dot_git_path.parent().unwrap().into();
|
||||
@ -2418,27 +2424,28 @@ impl BackgroundScannerState {
|
||||
},
|
||||
);
|
||||
|
||||
let statuses = repo_lock.statuses(Path::new(""));
|
||||
self.update_git_statuses(&work_directory, &statuses);
|
||||
let staged_statuses = self.update_git_statuses(&work_directory, &*repo_lock);
|
||||
drop(repo_lock);
|
||||
|
||||
self.snapshot.git_repositories.insert(
|
||||
work_dir_id,
|
||||
LocalRepositoryEntry {
|
||||
git_dir_scan_id: 0,
|
||||
repo_ptr: repository,
|
||||
repo_ptr: repository.clone(),
|
||||
git_dir_path: dot_git_path.clone(),
|
||||
},
|
||||
);
|
||||
|
||||
Some((work_directory, statuses))
|
||||
Some((work_directory, repository, staged_statuses))
|
||||
}
|
||||
|
||||
fn update_git_statuses(
|
||||
&mut self,
|
||||
work_directory: &RepositoryWorkDirectory,
|
||||
statuses: &TreeMap<RepoPath, GitFileStatus>,
|
||||
) {
|
||||
repo: &dyn GitRepository,
|
||||
) -> TreeMap<RepoPath, GitFileStatus> {
|
||||
let staged_statuses = repo.staged_statuses(Path::new(""));
|
||||
|
||||
let mut changes = vec![];
|
||||
let mut edits = vec![];
|
||||
|
||||
@ -2451,7 +2458,10 @@ impl BackgroundScannerState {
|
||||
continue;
|
||||
};
|
||||
let repo_path = RepoPath(repo_path.to_path_buf());
|
||||
let git_file_status = statuses.get(&repo_path).copied();
|
||||
let git_file_status = combine_git_statuses(
|
||||
staged_statuses.get(&repo_path).copied(),
|
||||
repo.unstaged_status(&repo_path, entry.mtime),
|
||||
);
|
||||
if entry.git_status != git_file_status {
|
||||
entry.git_status = git_file_status;
|
||||
changes.push(entry.path.clone());
|
||||
@ -2461,6 +2471,7 @@ impl BackgroundScannerState {
|
||||
|
||||
self.snapshot.entries_by_path.edit(edits, &());
|
||||
util::extend_sorted(&mut self.changed_paths, changes, usize::MAX, Ord::cmp);
|
||||
staged_statuses
|
||||
}
|
||||
}
|
||||
|
||||
@ -3523,10 +3534,17 @@ impl BackgroundScanner {
|
||||
} else {
|
||||
child_entry.is_ignored = ignore_stack.is_abs_path_ignored(&child_abs_path, false);
|
||||
if !child_entry.is_ignored {
|
||||
if let Some((repository_dir, statuses)) = &job.containing_repository {
|
||||
if let Some((repository_dir, repository, staged_statuses)) =
|
||||
&job.containing_repository
|
||||
{
|
||||
if let Ok(repo_path) = child_entry.path.strip_prefix(&repository_dir.0) {
|
||||
let repo_path = RepoPath(repo_path.into());
|
||||
child_entry.git_status = statuses.get(&repo_path).copied();
|
||||
child_entry.git_status = combine_git_statuses(
|
||||
staged_statuses.get(&repo_path).copied(),
|
||||
repository
|
||||
.lock()
|
||||
.unstaged_status(&repo_path, child_entry.mtime),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3637,13 +3655,11 @@ impl BackgroundScanner {
|
||||
if let Some((work_dir, repo)) =
|
||||
state.snapshot.local_repo_for_path(&path)
|
||||
{
|
||||
if let Ok(path) = path.strip_prefix(work_dir.0) {
|
||||
fs_entry.git_status = repo
|
||||
.repo_ptr
|
||||
.lock()
|
||||
.status(&RepoPath(path.into()))
|
||||
.log_err()
|
||||
.flatten()
|
||||
if let Ok(repo_path) = path.strip_prefix(work_dir.0) {
|
||||
let repo_path = RepoPath(repo_path.into());
|
||||
let repo = repo.repo_ptr.lock();
|
||||
fs_entry.git_status =
|
||||
repo.status(&repo_path).log_err().flatten();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3997,7 +4013,11 @@ struct ScanJob {
|
||||
scan_queue: Sender<ScanJob>,
|
||||
ancestor_inodes: TreeSet<u64>,
|
||||
is_external: bool,
|
||||
containing_repository: Option<(RepositoryWorkDirectory, TreeMap<RepoPath, GitFileStatus>)>,
|
||||
containing_repository: Option<(
|
||||
RepositoryWorkDirectory,
|
||||
Arc<Mutex<dyn GitRepository>>,
|
||||
TreeMap<RepoPath, GitFileStatus>,
|
||||
)>,
|
||||
}
|
||||
|
||||
struct UpdateIgnoreStatusJob {
|
||||
@ -4324,3 +4344,22 @@ impl<'a> TryFrom<(&'a CharBag, proto::Entry)> for Entry {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn combine_git_statuses(
|
||||
staged: Option<GitFileStatus>,
|
||||
unstaged: Option<GitFileStatus>,
|
||||
) -> Option<GitFileStatus> {
|
||||
if let Some(staged) = staged {
|
||||
if let Some(unstaged) = unstaged {
|
||||
if unstaged != staged {
|
||||
Some(GitFileStatus::Modified)
|
||||
} else {
|
||||
Some(staged)
|
||||
}
|
||||
} else {
|
||||
Some(staged)
|
||||
}
|
||||
} else {
|
||||
unstaged
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user