use gix_hash::ObjectId;
use crate::data::output::Count;
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum PackLocation {
NotLookedUp,
LookedUp(Option<crate::data::entry::Location>),
}
impl PackLocation {
pub fn is_none(&self) -> bool {
match self {
PackLocation::LookedUp(opt) => opt.is_none(),
PackLocation::NotLookedUp => unreachable!("must have been resolved"),
}
}
pub fn as_ref(&self) -> Option<&crate::data::entry::Location> {
match self {
PackLocation::LookedUp(opt) => opt.as_ref(),
PackLocation::NotLookedUp => unreachable!("must have been resolved"),
}
}
}
impl Count {
pub fn from_data(oid: impl Into<ObjectId>, location: Option<crate::data::entry::Location>) -> Self {
Count {
id: oid.into(),
entry_pack_location: PackLocation::LookedUp(location),
}
}
}
#[path = "objects/mod.rs"]
mod objects_impl;
pub use objects_impl::{objects, objects_unthreaded};
#[allow(clippy::empty_docs)]
pub mod objects {
pub use super::objects_impl::{Error, ObjectExpansion, Options, Outcome};
}