use std::path::Path;
use std::fs::create_dir;
use git2;
use util::{process, CargoResult};
pub fn existing_vcs_repo(path: &Path, cwd: &Path) -> bool {
fn in_git_repo(path: &Path, cwd: &Path) -> bool {
if let Ok(repo) = GitRepo::discover(path, cwd) {
repo.is_path_ignored(path).map(|ignored| !ignored).unwrap_or(true)
} else { false }
}
in_git_repo(path, cwd) || HgRepo::discover(path, cwd).is_ok()
}
pub struct HgRepo;
pub struct GitRepo;
pub struct PijulRepo;
pub struct FossilRepo;
impl GitRepo {
pub fn init(path: &Path, _: &Path) -> CargoResult<GitRepo> {
git2::Repository::init(path)?;
Ok(GitRepo)
}
pub fn discover(path: &Path, _: &Path) -> Result<git2::Repository, git2::Error> {
git2::Repository::discover(path)
}
}
impl HgRepo {
pub fn init(path: &Path, cwd: &Path) -> CargoResult<HgRepo> {
process("hg").cwd(cwd).arg("init").arg(path).exec()?;
Ok(HgRepo)
}
pub fn discover(path: &Path, cwd: &Path) -> CargoResult<HgRepo> {
process("hg")
.cwd(cwd)
.arg("--cwd")
.arg(path)
.arg("root")
.exec_with_output()?;
Ok(HgRepo)
}
}
impl PijulRepo {
pub fn init(path: &Path, cwd: &Path) -> CargoResult<PijulRepo> {
process("pijul").cwd(cwd).arg("init").arg(path).exec()?;
Ok(PijulRepo)
}
}
impl FossilRepo {
pub fn init(path: &Path, cwd: &Path) -> CargoResult<FossilRepo> {
create_dir(path)?;
let db_fname = ".fossil";
let mut db_path = path.to_owned();
db_path.push(db_fname);
process("fossil").cwd(cwd).arg("init").arg(&db_path).exec()?;
process("fossil")
.cwd(&path)
.arg("open")
.arg(db_fname)
.exec()?;
process("fossil")
.cwd(cwd)
.arg("settings")
.arg("ignore-glob")
.arg("target");
process("fossil")
.cwd(cwd)
.arg("settings")
.arg("clean-glob")
.arg("target");
Ok(FossilRepo)
}
}