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
use std::ffi::CString;
use std::marker;
use std::mem;
use std::ptr;
use libc::{c_int, c_uint};
use crate::util::Binding;
use crate::{raw, Buf, Error, Repository};
pub struct Describe<'repo> {
raw: *mut raw::git_describe_result,
_marker: marker::PhantomData<&'repo Repository>,
}
pub struct DescribeOptions {
raw: raw::git_describe_options,
pattern: CString,
}
pub struct DescribeFormatOptions {
raw: raw::git_describe_format_options,
dirty_suffix: CString,
}
impl<'repo> Describe<'repo> {
pub fn format(&self, opts: Option<&DescribeFormatOptions>) -> Result<String, Error> {
let buf = Buf::new();
let opts = opts.map(|o| &o.raw as *const _).unwrap_or(ptr::null());
unsafe {
try_call!(raw::git_describe_format(buf.raw(), self.raw, opts));
}
Ok(String::from_utf8(buf.to_vec()).unwrap())
}
}
impl<'repo> Binding for Describe<'repo> {
type Raw = *mut raw::git_describe_result;
unsafe fn from_raw(raw: *mut raw::git_describe_result) -> Describe<'repo> {
Describe {
raw: raw,
_marker: marker::PhantomData,
}
}
fn raw(&self) -> *mut raw::git_describe_result {
self.raw
}
}
impl<'repo> Drop for Describe<'repo> {
fn drop(&mut self) {
unsafe { raw::git_describe_result_free(self.raw) }
}
}
impl Default for DescribeFormatOptions {
fn default() -> Self {
Self::new()
}
}
impl DescribeFormatOptions {
pub fn new() -> DescribeFormatOptions {
let mut opts = DescribeFormatOptions {
raw: unsafe { mem::zeroed() },
dirty_suffix: CString::new(Vec::new()).unwrap(),
};
opts.raw.version = 1;
opts.raw.abbreviated_size = 7;
opts
}
pub fn abbreviated_size(&mut self, size: u32) -> &mut Self {
self.raw.abbreviated_size = size as c_uint;
self
}
pub fn always_use_long_format(&mut self, long: bool) -> &mut Self {
self.raw.always_use_long_format = long as c_int;
self
}
pub fn dirty_suffix(&mut self, suffix: &str) -> &mut Self {
self.dirty_suffix = CString::new(suffix).unwrap();
self.raw.dirty_suffix = self.dirty_suffix.as_ptr();
self
}
}
impl Default for DescribeOptions {
fn default() -> Self {
Self::new()
}
}
impl DescribeOptions {
pub fn new() -> DescribeOptions {
let mut opts = DescribeOptions {
raw: unsafe { mem::zeroed() },
pattern: CString::new(Vec::new()).unwrap(),
};
opts.raw.version = 1;
opts.raw.max_candidates_tags = 10;
opts
}
#[allow(missing_docs)]
pub fn max_candidates_tags(&mut self, max: u32) -> &mut Self {
self.raw.max_candidates_tags = max as c_uint;
self
}
pub fn describe_tags(&mut self) -> &mut Self {
self.raw.describe_strategy = raw::GIT_DESCRIBE_TAGS as c_uint;
self
}
pub fn describe_all(&mut self) -> &mut Self {
self.raw.describe_strategy = raw::GIT_DESCRIBE_ALL as c_uint;
self
}
pub fn only_follow_first_parent(&mut self, follow: bool) -> &mut Self {
self.raw.only_follow_first_parent = follow as c_int;
self
}
pub fn show_commit_oid_as_fallback(&mut self, show: bool) -> &mut Self {
self.raw.show_commit_oid_as_fallback = show as c_int;
self
}
#[allow(missing_docs)]
pub fn pattern(&mut self, pattern: &str) -> &mut Self {
self.pattern = CString::new(pattern).unwrap();
self.raw.pattern = self.pattern.as_ptr();
self
}
}
impl Binding for DescribeOptions {
type Raw = *mut raw::git_describe_options;
unsafe fn from_raw(_raw: *mut raw::git_describe_options) -> DescribeOptions {
panic!("unimplemened")
}
fn raw(&self) -> *mut raw::git_describe_options {
&self.raw as *const _ as *mut _
}
}
#[cfg(test)]
mod tests {
use crate::DescribeOptions;
#[test]
fn smoke() {
let (_td, repo) = crate::test::repo_init();
let head = t!(repo.head()).target().unwrap();
let d = t!(repo.describe(DescribeOptions::new().show_commit_oid_as_fallback(true)));
let id = head.to_string();
assert_eq!(t!(d.format(None)), &id[..7]);
let obj = t!(repo.find_object(head, None));
let sig = t!(repo.signature());
t!(repo.tag("foo", &obj, &sig, "message", true));
let d = t!(repo.describe(&DescribeOptions::new()));
assert_eq!(t!(d.format(None)), "foo");
let d = t!(obj.describe(&DescribeOptions::new()));
assert_eq!(t!(d.format(None)), "foo");
}
}