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
use std::{borrow::Cow, path::Path};
use radicle_std_ext::result::ResultExt as _;
use thiserror::Error;
use crate::{error::is_not_found_err, revwalk};
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum Error {
#[error(transparent)]
NotFound(#[from] NotFound),
#[error(transparent)]
Git(#[from] git2::Error),
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum NotFound {
#[error("blob with path {0} not found")]
NoSuchBlob(String),
#[error("branch {0} not found")]
NoSuchBranch(String),
#[error("object {0} not found")]
NoSuchObject(git2::Oid),
#[error("the supplied git2::Reference does not have a target")]
NoRefTarget,
}
pub enum Branch<'a> {
Name(Cow<'a, str>),
Ref(git2::Reference<'a>),
}
impl<'a> From<&'a str> for Branch<'a> {
fn from(s: &'a str) -> Self {
Self::Name(Cow::Borrowed(s))
}
}
impl<'a> From<String> for Branch<'a> {
fn from(s: String) -> Self {
Self::Name(Cow::Owned(s))
}
}
impl<'a> From<git2::Reference<'a>> for Branch<'a> {
fn from(r: git2::Reference<'a>) -> Self {
Self::Ref(r)
}
}
pub enum Blob<'a> {
Tip { branch: Branch<'a>, path: &'a Path },
Init { branch: Branch<'a>, path: &'a Path },
At { object: git2::Oid, path: &'a Path },
}
impl<'a> Blob<'a> {
pub fn get(self, git: &'a git2::Repository) -> Result<git2::Blob<'a>, Error> {
match self {
Self::Tip { branch, path } => {
let reference = match branch {
Branch::Name(name) => {
git.find_reference(&name).or_matches(is_not_found_err, || {
Err(Error::NotFound(NotFound::NoSuchBranch(name.into_owned())))
})
},
Branch::Ref(reference) => Ok(reference),
}?;
let tree = reference.peel_to_tree()?;
blob(git, tree, path)
},
Self::Init { branch, path } => {
let start = match branch {
Branch::Name(name) => Ok(revwalk::Start::Ref(name.to_string())),
Branch::Ref(reference) => {
match (reference.target(), reference.symbolic_target()) {
(Some(oid), _) => Ok(revwalk::Start::Oid(oid)),
(_, Some(sym)) => Ok(revwalk::Start::Ref(sym.to_string())),
(_, _) => Err(Error::NotFound(NotFound::NoRefTarget)),
}
},
}?;
let revwalk = revwalk::FirstParent::new(git, start)?.reverse()?;
match revwalk.into_iter().next() {
None => Err(Error::NotFound(NotFound::NoSuchBlob(
path.display().to_string(),
))),
Some(oid) => {
let oid = oid?;
let tree = git.find_commit(oid)?.tree()?;
blob(git, tree, path)
},
}
},
Self::At { object, path } => {
let tree = git
.find_object(object, None)
.or_matches(is_not_found_err, || {
Err(Error::NotFound(NotFound::NoSuchObject(object)))
})
.and_then(|obj| Ok(obj.peel_to_tree()?))?;
blob(git, tree, path)
},
}
}
}
fn blob<'a>(
repo: &'a git2::Repository,
tree: git2::Tree<'a>,
path: &'a Path,
) -> Result<git2::Blob<'a>, Error> {
let entry = tree.get_path(path).or_matches(is_not_found_err, || {
Err(Error::NotFound(NotFound::NoSuchBlob(
path.display().to_string(),
)))
})?;
entry.to_object(repo)?.peel_to_blob().map_err(Error::from)
}