Struct gix_pack::Bundle

source ·
pub struct Bundle {
    pub pack: File,
    pub index: File,
}
Expand description

A bundle of pack data and the corresponding pack index

Fields§

§pack: File

The pack file corresponding to index

§index: File

The index file corresponding to pack

Implementations§

source§

impl Bundle

Initialization

source

pub fn at(path: impl AsRef<Path>, object_hash: Kind) -> Result<Self, Error>

Create a Bundle from path, which is either a pack file (*.pack) or an index file (*.idx).

The corresponding complementary file is expected to be present.

The object_hash is a way to read (and write) the same file format with different hashes, as the hash kind isn’t stored within the file format itself.

source§

impl Bundle

source

pub fn find<'a>( &self, id: &oid, out: &'a mut Vec<u8>, inflate: &mut Inflate, cache: &mut dyn DecodeEntry ) -> Result<Option<(Data<'a>, Location)>, Error>

Find an object with the given ObjectId and place its data into out. inflate is used to decompress objects, and will be reset before first use, but not after the last use.

cache is used to accelerate the lookup.

Note that ref deltas are automatically resolved within this pack only, which makes this implementation unusable for thin packs, which by now are expected to be resolved already.

source

pub fn get_object_by_index<'a>( &self, idx: u32, out: &'a mut Vec<u8>, inflate: &mut Inflate, cache: &mut dyn DecodeEntry ) -> Result<(Data<'a>, Location), Error>

Special-use function to get an object given an index previously returned from index::File::. inflate is used to decompress objects, and will be reset before first use, but not after the last use.

§Panics

If index is out of bounds.

source§

impl Bundle

source

pub fn verify_integrity<C, F>( &self, progress: &mut dyn DynNestedProgress, should_interrupt: &AtomicBool, options: Options<F> ) -> Result<Outcome, Error<Error>>
where C: DecodeEntry, F: Fn() -> C + Send + Clone,

Similar to crate::index::File::verify_integrity() but more convenient to call as the presence of the pack file is a given.

Auto Trait Implementations§

§

impl Freeze for Bundle

§

impl RefUnwindSafe for Bundle

§

impl Send for Bundle

§

impl Sync for Bundle

§

impl Unpin for Bundle

§

impl UnwindSafe for Bundle

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.