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
|
use std::ffi::CString;
use std::marker;
use std::str;
use crate::util::Binding;
use crate::{raw, Buf, Direction, Error};
/// A structure to represent a git [refspec][1].
///
/// Refspecs are currently mainly accessed/created through a `Remote`.
///
/// [1]: http://git-scm.com/book/en/Git-Internals-The-Refspec
pub struct Refspec<'remote> {
raw: *const raw::git_refspec,
_marker: marker::PhantomData<&'remote raw::git_remote>,
}
impl<'remote> Refspec<'remote> {
/// Get the refspec's direction.
pub fn direction(&self) -> Direction {
match unsafe { raw::git_refspec_direction(self.raw) } {
raw::GIT_DIRECTION_FETCH => Direction::Fetch,
raw::GIT_DIRECTION_PUSH => Direction::Push,
n => panic!("unknown refspec direction: {}", n),
}
}
/// Get the destination specifier.
///
/// If the destination is not utf-8, None is returned.
pub fn dst(&self) -> Option<&str> {
str::from_utf8(self.dst_bytes()).ok()
}
/// Get the destination specifier, in bytes.
pub fn dst_bytes(&self) -> &[u8] {
unsafe { crate::opt_bytes(self, raw::git_refspec_dst(self.raw)).unwrap() }
}
/// Check if a refspec's destination descriptor matches a reference
pub fn dst_matches(&self, refname: &str) -> bool {
let refname = CString::new(refname).unwrap();
unsafe { raw::git_refspec_dst_matches(self.raw, refname.as_ptr()) == 1 }
}
/// Get the source specifier.
///
/// If the source is not utf-8, None is returned.
pub fn src(&self) -> Option<&str> {
str::from_utf8(self.src_bytes()).ok()
}
/// Get the source specifier, in bytes.
pub fn src_bytes(&self) -> &[u8] {
unsafe { crate::opt_bytes(self, raw::git_refspec_src(self.raw)).unwrap() }
}
/// Check if a refspec's source descriptor matches a reference
pub fn src_matches(&self, refname: &str) -> bool {
let refname = CString::new(refname).unwrap();
unsafe { raw::git_refspec_src_matches(self.raw, refname.as_ptr()) == 1 }
}
/// Get the force update setting.
pub fn is_force(&self) -> bool {
unsafe { raw::git_refspec_force(self.raw) == 1 }
}
/// Get the refspec's string.
///
/// Returns None if the string is not valid utf8.
pub fn str(&self) -> Option<&str> {
str::from_utf8(self.bytes()).ok()
}
/// Get the refspec's string as a byte array
pub fn bytes(&self) -> &[u8] {
unsafe { crate::opt_bytes(self, raw::git_refspec_string(self.raw)).unwrap() }
}
/// Transform a reference to its target following the refspec's rules
pub fn transform(&self, name: &str) -> Result<Buf, Error> {
let name = CString::new(name).unwrap();
unsafe {
let buf = Buf::new();
try_call!(raw::git_refspec_transform(
buf.raw(),
self.raw,
name.as_ptr()
));
Ok(buf)
}
}
/// Transform a target reference to its source reference following the refspec's rules
pub fn rtransform(&self, name: &str) -> Result<Buf, Error> {
let name = CString::new(name).unwrap();
unsafe {
let buf = Buf::new();
try_call!(raw::git_refspec_rtransform(
buf.raw(),
self.raw,
name.as_ptr()
));
Ok(buf)
}
}
}
impl<'remote> Binding for Refspec<'remote> {
type Raw = *const raw::git_refspec;
unsafe fn from_raw(raw: *const raw::git_refspec) -> Refspec<'remote> {
Refspec {
raw,
_marker: marker::PhantomData,
}
}
fn raw(&self) -> *const raw::git_refspec {
self.raw
}
}
|