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
use std::path::PathBuf;
use bstr::ByteSlice;
pub mod gitdir {
use bstr::BString;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("Format should be 'gitdir: <path>', but got: {:?}", .input)]
InvalidFormat { input: BString },
#[error("Couldn't decode {:?} as UTF8", .input)]
IllformedUtf8 { input: BString },
}
}
pub fn gitdir(input: &[u8]) -> Result<PathBuf, gitdir::Error> {
let path = input
.strip_prefix(b"gitdir: ")
.ok_or_else(|| gitdir::Error::InvalidFormat { input: input.into() })?
.as_bstr();
let path = path.trim_end().as_bstr();
if path.is_empty() {
return Err(gitdir::Error::InvalidFormat { input: input.into() });
}
Ok(git_path::try_from_bstr(path)
.map_err(|_| gitdir::Error::IllformedUtf8 { input: input.into() })?
.into_owned())
}