gitoxide_core/repository/index/
mod.rsuse std::{ffi::OsString, path::PathBuf};
use anyhow::bail;
pub fn from_tree(
repo: gix::Repository,
mut spec: OsString,
index_path: Option<PathBuf>,
force: bool,
skip_hash: bool,
) -> anyhow::Result<()> {
spec.push("^{tree}");
let spec = gix::path::os_str_into_bstr(&spec)?;
let tree = repo.rev_parse_single(spec)?;
let mut index = repo.index_from_tree(&tree)?;
let options = gix::index::write::Options {
skip_hash,
..Default::default()
};
match index_path {
Some(index_path) => {
if index_path.is_file() && !force {
anyhow::bail!(
"File at \"{}\" already exists, to overwrite use the '-f' flag",
index_path.display()
);
}
index.set_path(index_path);
index.write(options)?;
}
None => {
let mut out = Vec::with_capacity(512 * 1024);
index.write_to(&mut out, options)?;
}
}
Ok(())
}
pub fn from_list(
entries_file: PathBuf,
index_path: Option<PathBuf>,
force: bool,
skip_hash: bool,
) -> anyhow::Result<()> {
use std::io::BufRead;
let object_hash = gix::hash::Kind::Sha1;
let mut index = gix::index::State::new(object_hash);
for path in std::io::BufReader::new(std::fs::File::open(entries_file)?).lines() {
let path: PathBuf = path?.into();
if !path.is_relative() {
bail!("Input paths need to be relative, but {path:?} is not.")
}
let path = gix::path::into_bstr(path);
index.dangerously_push_entry(
gix::index::entry::Stat::default(),
gix::hash::ObjectId::empty_blob(object_hash),
gix::index::entry::Flags::empty(),
gix::index::entry::Mode::FILE,
gix::path::to_unix_separators_on_windows(path).as_ref(),
);
}
index.sort_entries();
let options = gix::index::write::Options {
skip_hash,
..Default::default()
};
match index_path {
Some(index_path) => {
if index_path.is_file() && !force {
anyhow::bail!(
"File at \"{}\" already exists, to overwrite use the '-f' flag",
index_path.display()
);
}
let mut index = gix::index::File::from_state(index, index_path);
index.write(options)?;
}
None => {
let index = gix::index::File::from_state(index, std::path::PathBuf::new());
let mut out = Vec::with_capacity(512 * 1024);
index.write_to(&mut out, options)?;
}
}
Ok(())
}
pub mod entries;
pub use entries::function::entries;