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
use std::path::Path;
use git_odb::pack::Find;
use git_ref::file::ReferenceExt;
#[must_use = "Iterators should be obtained from this iterator platform"]
pub struct Platform<'r> {
pub(crate) platform: git_ref::file::iter::Platform<'r>,
pub(crate) repo: &'r crate::Repository,
}
pub struct Iter<'r> {
inner: git_ref::file::iter::LooseThenPacked<'r, 'r>,
peel: bool,
repo: &'r crate::Repository,
}
impl<'r> Iter<'r> {
fn new(repo: &'r crate::Repository, platform: git_ref::file::iter::LooseThenPacked<'r, 'r>) -> Self {
Iter {
inner: platform,
peel: false,
repo,
}
}
}
impl<'r> Platform<'r> {
pub fn all(&self) -> Result<Iter<'_>, init::Error> {
Ok(Iter::new(self.repo, self.platform.all()?))
}
pub fn prefixed(&self, prefix: impl AsRef<Path>) -> Result<Iter<'_>, init::Error> {
Ok(Iter::new(self.repo, self.platform.prefixed(prefix)?))
}
pub fn tags(&self) -> Result<Iter<'_>, init::Error> {
Ok(Iter::new(self.repo, self.platform.prefixed("refs/tags/")?))
}
pub fn local_branches(&self) -> Result<Iter<'_>, init::Error> {
Ok(Iter::new(self.repo, self.platform.prefixed("refs/heads/")?))
}
pub fn remote_branches(&self) -> Result<Iter<'_>, init::Error> {
Ok(Iter::new(self.repo, self.platform.prefixed("refs/remotes/")?))
}
}
impl<'r> Iter<'r> {
pub fn peeled(mut self) -> Self {
self.peel = true;
self
}
}
impl<'r> Iterator for Iter<'r> {
type Item = Result<crate::Reference<'r>, Box<dyn std::error::Error + Send + Sync + 'static>>;
fn next(&mut self) -> Option<Self::Item> {
self.inner.next().map(|res| {
res.map_err(|err| Box::new(err) as Box<dyn std::error::Error + Send + Sync + 'static>)
.and_then(|mut r| {
if self.peel {
let handle = &self.repo;
r.peel_to_id_in_place(&handle.refs, |oid, buf| {
handle
.objects
.try_find(oid, buf)
.map(|po| po.map(|(o, _l)| (o.kind, o.data)))
})
.map_err(|err| Box::new(err) as Box<dyn std::error::Error + Send + Sync + 'static>)
.map(|_| r)
} else {
Ok(r)
}
})
.map(|r| crate::Reference::from_ref(r, self.repo))
})
}
}
pub mod init {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Io(#[from] std::io::Error),
}
}
pub type Error = git_ref::packed::buffer::open::Error;