-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathinit.rs
42 lines (38 loc) · 1.37 KB
/
init.rs
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
use crate::pack::data;
use filebuffer::FileBuffer;
use git_hash::SIZE_OF_SHA1_DIGEST as SHA1_SIZE;
use std::{convert::TryFrom, convert::TryInto, path::Path};
/// Instantiation
impl data::File {
/// Try opening a data file at the given `path`.
pub fn at(path: impl AsRef<Path>) -> Result<data::File, data::parse::Error> {
data::File::try_from(path.as_ref())
}
}
impl TryFrom<&Path> for data::File {
type Error = data::parse::Error;
/// Try opening a data file at the given `path`.
fn try_from(path: &Path) -> Result<Self, Self::Error> {
use data::parse::N32_SIZE;
let data = FileBuffer::open(path).map_err(|e| data::parse::Error::Io {
source: e,
path: path.to_owned(),
})?;
let pack_len = data.len();
if pack_len < N32_SIZE * 3 + SHA1_SIZE {
return Err(data::parse::Error::Corrupt(format!(
"Pack data of size {} is too small for even an empty pack",
pack_len
)));
}
let (kind, num_objects) =
data::parse::header(&data[..12].try_into().expect("enough data after previous check"))?;
Ok(data::File {
data,
path: path.to_owned(),
id: git_features::hash::crc32(path.as_os_str().to_string_lossy().as_bytes()),
version: kind,
num_objects,
})
}
}