use std::path::PathBuf;
pub use gix_worktree::*;
use crate::{
bstr::{BStr, BString},
Repository,
};
pub(crate) type IndexStorage = gix_features::threading::OwnShared<gix_fs::SharedFileSnapshotMut<gix_index::File>>;
pub type Index = gix_fs::SharedFileSnapshot<gix_index::File>;
#[derive(Debug, Clone)]
pub struct Proxy<'repo> {
pub(crate) parent: &'repo Repository,
pub(crate) git_dir: PathBuf,
}
impl<'repo> crate::Worktree<'repo> {
pub fn base(&self) -> &'repo std::path::Path {
self.path
}
pub fn is_main(&self) -> bool {
self.id().is_none()
}
pub fn is_locked(&self) -> bool {
Proxy::new(self.parent, self.parent.git_dir()).is_locked()
}
pub fn lock_reason(&self) -> Option<BString> {
Proxy::new(self.parent, self.parent.git_dir()).lock_reason()
}
pub fn id(&self) -> Option<&BStr> {
id(self.parent.git_dir(), self.parent.common_dir.is_some())
}
}
pub(crate) fn id(git_dir: &std::path::Path, has_common_dir: bool) -> Option<&BStr> {
if !has_common_dir {
return None;
}
let candidate = gix_path::os_str_into_bstr(git_dir.file_name().expect("at least one directory level"))
.expect("no illformed UTF-8");
let maybe_worktrees = git_dir.parent()?;
(maybe_worktrees.file_name()?.to_str()? == "worktrees").then_some(candidate)
}
pub mod proxy;
pub mod open_index {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
ConfigIndexThreads(#[from] crate::config::key::GenericErrorWithValue),
#[error(transparent)]
IndexFile(#[from] gix_index::file::init::Error),
}
impl<'repo> crate::Worktree<'repo> {
pub fn open_index(&self) -> Result<gix_index::File, Error> {
self.parent.open_index()
}
pub fn index(&self) -> Result<crate::worktree::Index, Error> {
self.parent.index()
}
}
}
pub mod excludes {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
OpenIndex(#[from] crate::worktree::open_index::Error),
#[error(transparent)]
CreateCache(#[from] crate::config::exclude_stack::Error),
}
impl<'repo> crate::Worktree<'repo> {
pub fn excludes(&self, overrides: Option<gix_ignore::Search>) -> Result<gix_worktree::Cache, Error> {
let index = self.index()?;
Ok(self.parent.excludes(
&index,
overrides,
gix_worktree::cache::state::ignore::Source::WorktreeThenIdMappingIfNotSkipped,
)?)
}
}
}
pub mod attributes {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
OpenIndex(#[from] crate::worktree::open_index::Error),
#[error(transparent)]
CreateCache(#[from] crate::repository::attributes::Error),
}
impl<'repo> crate::Worktree<'repo> {
pub fn attributes(&self, overrides: Option<gix_ignore::Search>) -> Result<gix_worktree::Cache, Error> {
let index = self.index()?;
Ok(self.parent.attributes(
&index,
gix_worktree::cache::state::attributes::Source::WorktreeThenIdMapping,
gix_worktree::cache::state::ignore::Source::WorktreeThenIdMappingIfNotSkipped,
overrides,
)?)
}
pub fn attributes_only(&self) -> Result<gix_worktree::Cache, Error> {
let index = self.index()?;
Ok(self.parent.attributes_only(
&index,
gix_worktree::cache::state::attributes::Source::WorktreeThenIdMapping,
)?)
}
}
}