1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
use crate::Kind; use std::path::PathBuf; pub mod discover; pub mod is_git; pub use is_git::{is_bare, is_git}; #[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] pub enum Path { WorkingTree(PathBuf), Repository(PathBuf), } impl AsRef<std::path::Path> for Path { fn as_ref(&self) -> &std::path::Path { match self { Path::WorkingTree(path) | Path::Repository(path) => path, } } } impl Path { pub fn from_dot_git_dir(dir: impl Into<PathBuf>, kind: Kind) -> Self { let dir = dir.into(); match kind { Kind::WorkingTree => Path::WorkingTree(dir.parent().expect("this is a sub-directory").to_owned()), Kind::Bare => Path::Repository(dir), } } pub fn kind(&self) -> Kind { match self { Path::WorkingTree(_) => Kind::WorkingTree, Path::Repository(_) => Kind::Bare, } } pub fn into_repository_directory(self) -> PathBuf { match self { Path::WorkingTree(path) => path.join(".git"), Path::Repository(path) => path, } } }