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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
use std::{cmp::Ordering, collections::HashSet, fs, io::Read, path::PathBuf};
use git_features::zlib;
use crate::store_impls::loose::{hash_path, Store, HEADER_READ_UNCOMPRESSED_BYTES};
#[derive(thiserror::Error, Debug)]
#[allow(missing_docs)]
pub enum Error {
#[error("decompression of loose object at '{path}' failed")]
DecompressFile {
source: zlib::inflate::Error,
path: PathBuf,
},
#[error(transparent)]
Decode(#[from] git_object::decode::LooseHeaderDecodeError),
#[error("Could not {action} data at '{path}'")]
Io {
source: std::io::Error,
action: &'static str,
path: PathBuf,
},
}
impl Store {
const OPEN_ACTION: &'static str = "open";
pub fn contains(&self, id: impl AsRef<git_hash::oid>) -> bool {
debug_assert_eq!(self.object_hash, id.as_ref().kind());
hash_path(id.as_ref(), self.path.clone()).is_file()
}
pub fn lookup_prefix(
&self,
prefix: git_hash::Prefix,
mut candidates: Option<&mut HashSet<git_hash::ObjectId>>,
) -> Result<Option<crate::find::PrefixLookupResult>, crate::loose::iter::Error> {
let single_directory_iter = crate::loose::Iter {
inner: git_features::fs::walkdir_new(&self.path.join(prefix.as_oid().to_hex_with_len(2).to_string()))
.min_depth(1)
.max_depth(1)
.follow_links(false)
.into_iter(),
hash_hex_len: prefix.as_oid().kind().len_in_hex(),
};
let mut candidate = None;
for oid in single_directory_iter {
let oid = match oid {
Ok(oid) => oid,
Err(err) => match err.io_error() {
Some(err) if err.kind() == std::io::ErrorKind::NotFound => return Ok(None),
None | Some(_) => return Err(err),
},
};
if prefix.cmp_oid(&oid) == Ordering::Equal {
match &mut candidates {
Some(candidates) => {
candidates.insert(oid);
}
None => {
if candidate.is_some() {
return Ok(Some(Err(())));
}
candidate = Some(oid);
}
}
}
}
match &mut candidates {
Some(candidates) => match candidates.len() {
0 => Ok(None),
1 => Ok(candidates.iter().next().cloned().map(Ok)),
_ => Ok(Some(Err(()))),
},
None => Ok(candidate.map(Ok)),
}
}
pub fn try_find<'a>(
&self,
id: impl AsRef<git_hash::oid>,
out: &'a mut Vec<u8>,
) -> Result<Option<git_object::Data<'a>>, Error> {
debug_assert_eq!(self.object_hash, id.as_ref().kind());
match self.find_inner(id.as_ref(), out) {
Ok(obj) => Ok(Some(obj)),
Err(err) => match err {
Error::Io {
source: err,
action,
path,
} => {
if action == Self::OPEN_ACTION && err.kind() == std::io::ErrorKind::NotFound {
Ok(None)
} else {
Err(Error::Io {
source: err,
action,
path,
})
}
}
err => Err(err),
},
}
}
fn find_inner<'a>(&self, id: &git_hash::oid, buf: &'a mut Vec<u8>) -> Result<git_object::Data<'a>, Error> {
let path = hash_path(id, self.path.clone());
let mut inflate = zlib::Inflate::default();
let ((status, consumed_in, consumed_out), bytes_read) = {
let mut istream = fs::File::open(&path).map_err(|e| Error::Io {
source: e,
action: Self::OPEN_ACTION,
path: path.to_owned(),
})?;
buf.clear();
let bytes_read = istream.read_to_end(buf).map_err(|e| Error::Io {
source: e,
action: "read",
path: path.to_owned(),
})?;
buf.resize(bytes_read + HEADER_READ_UNCOMPRESSED_BYTES, 0);
let (input, output) = buf.split_at_mut(bytes_read);
(
inflate
.once(&input[..bytes_read], output)
.map_err(|e| Error::DecompressFile {
source: e,
path: path.to_owned(),
})?,
bytes_read,
)
};
assert_ne!(
status,
zlib::Status::BufError,
"Buffer errors might mean we encountered huge headers"
);
let decompressed_start = bytes_read;
let (kind, size, header_size) =
git_object::decode::loose_header(&buf[decompressed_start..decompressed_start + consumed_out])?;
if status == zlib::Status::StreamEnd {
let decompressed_body_bytes_sans_header =
decompressed_start + header_size..decompressed_start + consumed_out;
assert_eq!(
consumed_out,
size + header_size,
"At this point we have decompressed everything and given 'size' should match"
);
buf.copy_within(decompressed_body_bytes_sans_header, 0);
} else {
buf.resize(bytes_read + size + header_size, 0);
{
let (input, output) = buf.split_at_mut(bytes_read);
let num_decompressed_bytes = zlib::stream::inflate::read(
&mut &input[consumed_in..],
&mut inflate.state,
&mut output[consumed_out..],
)
.map_err(|e| Error::Io {
source: e,
action: "deflate",
path: path.to_owned(),
})?;
assert_eq!(
num_decompressed_bytes + consumed_out,
size + header_size,
"Object should have been decompressed entirely and match given 'size'"
);
};
buf.copy_within(decompressed_start + header_size.., 0);
}
buf.resize(size, 0);
Ok(git_object::Data { kind, data: buf })
}
}