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
use crate::{pack, pack::index};
#[derive(thiserror::Error, Debug)]
#[allow(missing_docs)]
pub enum Error<E: std::error::Error + Send + Sync + 'static> {
#[error("One of the traversal processors failed")]
Processor(#[source] E),
#[error("Index file, pack file or object verification failed")]
Verify(#[from] index::verify::Error),
#[error("The pack delta tree index could not be built")]
Tree(#[from] pack::tree::from_offsets::Error),
#[error("The tree traversal failed")]
TreeTraversal(#[from] pack::tree::traverse::Error),
#[error("The pack of this index file failed to verify its checksums")]
PackChecksum(#[from] pack::data::verify::Error),
#[error("Object {id} at offset {offset} could not be decoded")]
PackDecode {
id: git_hash::ObjectId,
offset: u64,
source: pack::data::decode_entry::Error,
},
#[error("The packfiles checksum didn't match the index file checksum: expected {expected}, got {actual}")]
PackMismatch {
expected: git_hash::ObjectId,
actual: git_hash::ObjectId,
},
#[error("The SHA1 of {kind} object at offset {offset} didn't match the checksum in the index file: expected {expected}, got {actual}")]
PackObjectMismatch {
expected: git_hash::ObjectId,
actual: git_hash::ObjectId,
offset: u64,
kind: git_object::Kind,
},
#[error("The CRC32 of {kind} object at offset {offset} didn't match the checksum in the index file: expected {expected}, got {actual}")]
Crc32Mismatch {
expected: u32,
actual: u32,
offset: u64,
kind: git_object::Kind,
},
#[error("Interrupted")]
Interrupted,
}