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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
use std::kinds::marker;
use std::str;
use libc;
use {raw, Repository, Error, Oid, Signature};
/// A structure to represent a git [reference][1].
///
/// [1]: http://git-scm.com/book/en/Git-Internals-Git-References
pub struct Reference<'repo> {
raw: *mut raw::git_reference,
marker1: marker::ContravariantLifetime<'repo>,
marker2: marker::NoSend,
marker3: marker::NoSync,
}
/// An iterator over the references in a repository.
pub struct References<'repo> {
repo: &'repo Repository,
raw: *mut raw::git_reference_iterator,
}
/// An iterator over the names of references in a repository.
pub struct ReferenceNames<'repo> {
inner: References<'repo>,
}
impl<'repo> Reference<'repo> {
/// Creates a new reference from a raw pointer.
///
/// This methods is unsafe as there is no guarantee that `raw` is a valid
/// pointer.
pub unsafe fn from_raw(_repo: &Repository,
raw: *mut raw::git_reference) -> Reference {
Reference::from_raw_ptr(raw)
}
/// Even more unsafe than `from_raw`, the output lifetime is not attached to
/// any input.
pub unsafe fn from_raw_ptr<'a>(raw: *mut raw::git_reference) -> Reference<'a> {
Reference {
raw: raw,
marker1: marker::ContravariantLifetime,
marker2: marker::NoSend,
marker3: marker::NoSync,
}
}
/// Ensure the reference name is well-formed.
pub fn is_valid_name(refname: &str) -> bool {
::init();
let refname = refname.to_c_str();
unsafe { raw::git_reference_is_valid_name(refname.as_ptr()) == 1 }
}
/// Get access to the underlying raw pointer.
pub fn raw(&self) -> *mut raw::git_reference { self.raw }
/// Delete an existing reference.
///
/// This method works for both direct and symbolic references. The reference
/// will be immediately removed on disk.
///
/// This function will return an error if the reference has changed from the
/// time it was looked up.
pub fn delete(&mut self) -> Result<(), Error> {
unsafe { try_call!(raw::git_reference_delete(self.raw)); }
Ok(())
}
/// Check if a reference is a local branch.
pub fn is_branch(&self) -> bool {
unsafe { raw::git_reference_is_branch(&*self.raw) == 1 }
}
/// Check if a reference is a note.
pub fn is_note(&self) -> bool {
unsafe { raw::git_reference_is_note(&*self.raw) == 1 }
}
/// Check if a reference is a remote tracking branch
pub fn is_remote(&self) -> bool {
unsafe { raw::git_reference_is_remote(&*self.raw) == 1 }
}
/// Check if a reference is a tag
pub fn is_tag(&self) -> bool {
unsafe { raw::git_reference_is_tag(&*self.raw) == 1 }
}
/// Get the full name of a reference.
///
/// Returns `None` if the name is not valid utf-8.
pub fn name(&self) -> Option<&str> { str::from_utf8(self.name_bytes()) }
/// Get the full name of a reference.
pub fn name_bytes(&self) -> &[u8] {
unsafe { ::opt_bytes(self, raw::git_reference_name(&*self.raw)).unwrap() }
}
/// Get the full shorthand of a reference.
///
/// This will transform the reference name into a name "human-readable"
/// version. If no shortname is appropriate, it will return the full name.
///
/// Returns `None` if the shorthand is not valid utf-8.
pub fn shorthand(&self) -> Option<&str> {
str::from_utf8(self.shorthand_bytes())
}
/// Get the full shorthand of a reference.
pub fn shorthand_bytes(&self) -> &[u8] {
unsafe {
::opt_bytes(self, raw::git_reference_shorthand(&*self.raw)).unwrap()
}
}
/// Get the OID pointed to by a direct reference.
///
/// Only available if the reference is direct (i.e. an object id reference,
/// not a symbolic one).
pub fn target(&self) -> Option<Oid> {
let ptr = unsafe { raw::git_reference_target(&*self.raw) };
if ptr.is_null() {None} else {Some(unsafe { Oid::from_raw(ptr) })}
}
/// Return the peeled OID target of this reference.
///
/// This peeled OID only applies to direct references that point to a hard
/// Tag object: it is the result of peeling such Tag.
pub fn target_peel(&self) -> Option<Oid> {
let ptr = unsafe { raw::git_reference_target_peel(&*self.raw) };
if ptr.is_null() {None} else {Some(unsafe { Oid::from_raw(ptr) })}
}
/// Get full name to the reference pointed to by a symbolic reference.
///
/// May return `None` if the reference is either not symbolic or not a
/// valid utf-8 string.
pub fn symbolic_target(&self) -> Option<&str> {
self.symbolic_target_bytes().and_then(str::from_utf8)
}
/// Get full name to the reference pointed to by a symbolic reference.
///
/// Only available if the reference is symbolic.
pub fn symbolic_target_bytes(&self) -> Option<&[u8]> {
unsafe { ::opt_bytes(self, raw::git_reference_symbolic_target(&*self.raw)) }
}
/// Resolve a symbolic reference to a direct reference.
///
/// This method iteratively peels a symbolic reference until it resolves to
/// a direct reference to an OID.
///
/// If a direct reference is passed as an argument, a copy of that
/// reference is returned.
pub fn resolve(&self) -> Result<Reference<'repo>, Error> {
let mut raw = 0 as *mut raw::git_reference;
unsafe { try_call!(raw::git_reference_resolve(&mut raw, &*self.raw)); }
Ok(Reference {
raw: raw,
marker1: marker::ContravariantLifetime,
marker2: marker::NoSend,
marker3: marker::NoSync,
})
}
/// Rename an existing reference.
///
/// This method works for both direct and symbolic references.
///
/// If the force flag is not enabled, and there's already a reference with
/// the given name, the renaming will fail.
pub fn rename(&mut self, new_name: &str, force: bool,
sig: Option<&Signature>,
msg: &str) -> Result<Reference<'repo>, Error> {
let mut raw = 0 as *mut raw::git_reference;
unsafe {
try_call!(raw::git_reference_rename(&mut raw, self.raw,
new_name.to_c_str(),
force,
&*sig.map(|s| s.raw())
.unwrap_or(0 as *mut _),
msg.to_c_str()));
}
Ok(Reference {
raw: raw,
marker1: marker::ContravariantLifetime,
marker2: marker::NoSend,
marker3: marker::NoSync,
})
}
}
impl<'a> PartialOrd for Reference<'a> {
fn partial_cmp(&self, other: &Reference<'a>) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl<'a> Ord for Reference<'a> {
fn cmp(&self, other: &Reference<'a>) -> Ordering {
match unsafe { raw::git_reference_cmp(&*self.raw, &*other.raw) } {
0 => Equal,
n if n < 0 => Less,
_ => Greater,
}
}
}
impl<'a> PartialEq for Reference<'a> {
fn eq(&self, other: &Reference<'a>) -> bool { self.cmp(other) == Equal }
}
impl<'a> Eq for Reference<'a> {}
#[unsafe_destructor]
impl<'a> Drop for Reference<'a> {
fn drop(&mut self) {
unsafe { raw::git_reference_free(self.raw) }
}
}
impl<'a> References<'a> {
/// Creates a new iterator from its raw underlying pointer.
///
/// This function is unsafe as there is no guarantee that `raw` is valid.
pub unsafe fn from_raw(repo: &Repository,
raw: *mut raw::git_reference_iterator)
-> References {
References {
raw: raw,
repo: repo,
}
}
}
impl<'a> Iterator<Reference<'a>> for References<'a> {
fn next(&mut self) -> Option<Reference<'a>> {
let mut out = 0 as *mut raw::git_reference;
if unsafe { raw::git_reference_next(&mut out, self.raw) == 0 } {
Some(unsafe { Reference::from_raw(self.repo, out) })
} else {
None
}
}
}
#[unsafe_destructor]
impl<'a> Drop for References<'a> {
fn drop(&mut self) {
unsafe { raw::git_reference_iterator_free(self.raw) }
}
}
impl<'a> ReferenceNames<'a> {
/// Consumes a `References` iterator to create an iterator over just the
/// name of some references.
///
/// This is more efficient if only the names are desired of references as
/// the references themselves don't have to be allocated and deallocated.
///
/// The returned iterator will yield strings as opposed to a `Reference`.
pub fn new(refs: References) -> ReferenceNames {
ReferenceNames { inner: refs }
}
}
impl<'a> Iterator<&'a str> for ReferenceNames<'a> {
fn next(&mut self) -> Option<&'a str> {
let mut out = 0 as *const libc::c_char;
if unsafe { raw::git_reference_next_name(&mut out, self.inner.raw) == 0 } {
Some(unsafe {
let bytes = ::opt_bytes(self.inner.repo, out).unwrap();
str::from_utf8(bytes).unwrap()
})
} else {
None
}
}
}
#[cfg(test)]
mod tests {
use {Reference};
#[test]
fn smoke() {
assert!(Reference::is_valid_name("refs/foo"));
assert!(!Reference::is_valid_name("foo"));
}
#[test]
fn smoke2() {
let (_td, repo) = ::test::repo_init();
let mut head = repo.head().unwrap();
assert!(head.is_branch());
assert!(!head.is_remote());
assert!(!head.is_tag());
assert!(!head.is_note());
assert!(head == repo.head().unwrap());
assert_eq!(head.name(), Some("refs/heads/master"));
assert!(head == repo.find_reference("refs/heads/master").unwrap());
assert_eq!(repo.refname_to_id("refs/heads/master").unwrap(),
head.target().unwrap());
assert!(head.symbolic_target().is_none());
assert!(head.target_peel().is_none());
assert_eq!(head.shorthand(), Some("master"));
assert!(head.resolve().unwrap() == head);
let sig = repo.signature().unwrap();
let mut tag1 = repo.reference("refs/tags/tag1",
head.target().unwrap(),
false,
None, "test").unwrap();
assert!(tag1.is_tag());
tag1.delete().unwrap();
let mut sym1 = repo.reference_symbolic("refs/tags/tag1",
"refs/heads/master", false,
Some(&sig), "test").unwrap();
sym1.delete().unwrap();
{
assert!(repo.references().unwrap().count() == 1);
assert!(repo.references().unwrap().next().unwrap() == head);
let mut names = ::ReferenceNames::new(repo.references().unwrap());
assert_eq!(names.next(), Some("refs/heads/master"));
assert_eq!(names.next(), None);
assert!(repo.references_glob("foo").unwrap().count() == 0);
assert!(repo.references_glob("refs/heads/*").unwrap().count() == 1);
}
let mut head = head.rename("refs/foo", true, None, "test").unwrap();
head.delete().unwrap();
}
}