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
use std::{borrow::Cow, convert::TryInto, path::Path};
use bstr::{BStr, BString, ByteSlice, ByteVec};
use crate::{Namespace, PartialName};
impl Namespace {
pub fn into_bstring(self) -> BString {
self.0
}
pub fn as_bstr(&self) -> &BStr {
self.0.as_ref()
}
pub fn to_path(&self) -> Cow<'_, Path> {
self.0.to_path().expect("UTF-8 conversion succeeds").into()
}
}
pub fn expand<'a, Name, E>(namespace: Name) -> Result<Namespace, git_validate::refname::Error>
where
Name: TryInto<PartialName<'a>, Error = E>,
git_validate::refname::Error: From<E>,
{
let namespace = namespace.try_into()?.0;
let mut out = BString::default();
for component in namespace.split_str(b"/") {
out.push_str("refs/namespaces/");
out.push_str(component);
out.push_str(b"/");
}
Ok(Namespace(out))
}