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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)]
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
pub struct Location {
pub pack_id: u32,
pub index_file_id: u32,
pub entry_size: usize,
pub pack_offset: u64,
}
impl Location {
pub fn entry_range(&self, pack_offset: u64) -> crate::data::EntryRange {
pack_offset..pack_offset + self.entry_size as u64
}
}
pub mod init;
mod find;
pub mod write;
mod verify {
use std::sync::{atomic::AtomicBool, Arc};
use git_features::progress::Progress;
use crate::Bundle;
impl Bundle {
pub fn verify_integrity<C, P>(
&self,
verify_mode: crate::index::verify::Mode,
traversal: crate::index::traverse::Algorithm,
make_pack_lookup_cache: impl Fn() -> C + Send + Sync,
thread_limit: Option<usize>,
progress: Option<P>,
should_interrupt: Arc<AtomicBool>,
) -> Result<
(git_hash::ObjectId, Option<crate::index::traverse::Outcome>, Option<P>),
crate::index::traverse::Error<crate::index::verify::Error>,
>
where
P: Progress,
C: crate::cache::DecodeEntry,
{
self.index.verify_integrity(
Some((&self.pack, verify_mode, traversal, make_pack_lookup_cache)),
thread_limit,
progress,
should_interrupt,
)
}
}
}