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
use core::{
str::FromStr,
};
use std::{
collections::{BTreeMap, BTreeSet, HashMap, HashSet},
env,
ffi::OsStr,
io::{Error, ErrorKind},
path::{Path, PathBuf},
process::{Command, Stdio},
};
use {
crate::Result,
dia_semver::Semver,
};
mod remote;
mod status;
mod work_tree;
pub use self::{
remote::*,
status::*,
work_tree::*,
};
const APP: &str = "git";
const CMD_ADD: &str = "add";
const CMD_BRANCH: &str = "branch";
const CMD_COMMIT: &str = "commit";
const CMD_PUSH: &str = "push";
const CMD_REMOTE: &str = "remote";
const CMD_STATUS: &str = "status";
const CMD_TAG: &str = "tag";
const CMD_WORKTREE: &str = "worktree";
const OPTION_2_HYPHENS: &str = "--";
const OPTION_ALL: &str = "--all";
const OPTION_ANNOTATE: &str = "--annotate";
const OPTION_MESSAGE: &str = "--message";
const OPTION_SHOW_CURRENT: &str = "--show-current";
const OPTION_TAGS: &str = "--tags";
const OPTION_VERBOSE: &str = "--verbose";
const NULL_LINE_BREAK: char = '\0';
#[derive(Debug)]
pub struct Git {
path: PathBuf,
}
impl Git {
pub fn make<P>(path: Option<P>) -> Result<Self> where P: AsRef<Path> {
Ok(Self {
path: match path {
Some(path) => path.as_ref().to_path_buf(),
None => env::current_dir()?,
},
})
}
pub fn path(&self) -> &Path {
&self.path
}
fn new_cmd<S, S2>(&self, cmd: S, args: Option<&[S2]>) -> Command where S: AsRef<OsStr>, S2: AsRef<OsStr> {
let mut result = Command::new(APP);
result.current_dir(&self.path);
result.arg(cmd);
if let Some(args) = args {
for a in args {
result.arg(a);
}
}
result
}
pub fn new_cmd_for_adding_all_files<F, P>(&self, files: Option<F>) -> Command where F: Iterator<Item=P>, P: AsRef<Path> {
let mut result = self.new_cmd(CMD_ADD, Some(&[OPTION_ALL]));
if let Some(files) = files {
result.arg(OPTION_2_HYPHENS);
for f in files {
result.arg(f.as_ref());
}
}
result
}
pub fn new_cmd_for_committing_all_files_with_a_message<S>(&self, msg: S) -> Command where S: AsRef<str> {
self.new_cmd(CMD_COMMIT, Some(&[OPTION_ALL, OPTION_MESSAGE, msg.as_ref()]))
}
pub fn new_cmd_for_adding_an_annotated_tag_with_a_message<S>(&self, tag: &Semver, msg: S) -> Command where S: AsRef<str> {
let tag = tag.to_string();
self.new_cmd(CMD_TAG, Some(&[tag.as_str(), OPTION_ANNOTATE, OPTION_MESSAGE, msg.as_ref()]))
}
pub fn new_cmd_for_pushing_to_a_remote(&self, remote: &Remote) -> Command {
self.new_cmd(CMD_PUSH, Some(&[remote.name()]))
}
pub fn new_cmd_for_pushing_tags_to_a_remote(&self, remote: &Remote) -> Command {
self.new_cmd(CMD_PUSH, Some(&[remote.name(), OPTION_TAGS]))
}
fn run_new_cmd<S, S2>(&self, cmd: S, args: Option<&[S2]>) -> Result<String> where S: AsRef<OsStr>, S2: AsRef<OsStr> {
self.run_cmd(&mut self.new_cmd(cmd, args))
}
fn run_cmd(&self, cmd: &mut Command) -> Result<String> {
cmd.stdin(Stdio::null()).stdout(Stdio::piped()).stderr(Stdio::null());
let output = cmd.output()?;
if output.status.success() {
Ok(String::from_utf8(output.stdout).map_err(|e| Error::new(ErrorKind::Other, e))?)
} else {
Err(Error::new(ErrorKind::Other, format!("{app} returned: {status}", app=APP, status=output.status)))
}
}
pub fn current_branch(&self) -> Result<String> {
let output = self.run_new_cmd(CMD_BRANCH, Some(&[OPTION_SHOW_CURRENT]))?;
let output = output.trim();
if output.lines().count() == 1 {
Ok(output.to_string())
} else {
Err(Error::new(ErrorKind::Other, format!("{app} returned: {output}", app=APP, output=output)))
}
}
pub fn find_last_version_with_build_metadata<I, S>(&self, build_metadata: I) -> Result<Option<Semver>>
where I: Iterator<Item=Option<S>>, S: AsRef<str> {
let build_metadata = build_metadata.collect::<Vec<_>>();
let build_metadata = build_metadata.iter().map(|bm| bm.as_ref().map(|bm| bm.as_ref())).collect::<BTreeSet<_>>();
let output = self.run_new_cmd::<_, &str>(CMD_TAG, None)?;
let mut result = None;
for line in output.lines() {
if let Ok(version) = Semver::from_str(line.trim()) {
if build_metadata.contains(&version.build_metadata()) {
match result.as_mut() {
None => result = Some(version),
Some(other) => if &version > other {
*other = version;
},
};
}
}
}
Ok(result)
}
pub fn find_last_versions(&self) -> Result<BTreeMap<Option<String>, Semver>> {
let output = self.run_new_cmd::<_, &str>(CMD_TAG, None)?;
let mut result = BTreeMap::new();
for line in output.lines() {
if let Ok(version) = Semver::from_str(line.trim()) {
let build_metadata = version.build_metadata().map(|bm| bm.to_string());
match result.get_mut(&build_metadata) {
None => drop(result.insert(build_metadata, version)),
Some(v) => if &version > v {
*v = version;
},
};
}
}
Ok(result)
}
pub fn remotes(&self) -> Result<Vec<Remote>> {
let output = self.run_new_cmd(CMD_REMOTE, Some(&[OPTION_VERBOSE]))?;
let mut set = HashSet::with_capacity(9);
for line in output.lines() {
let mut parts = line.split_whitespace();
match (parts.next(), parts.next(), parts.next(), parts.next()) {
(Some(name), Some(url), Some("(fetch)" | "(push)"), None) => set.insert(Remote::new(name.to_string(), url.to_string())),
_ => continue,
};
}
let mut result: Vec<_> = set.into_iter().collect();
result.sort();
Ok(result)
}
pub fn work_trees(&self) -> Result<HashSet<WorkTree>> {
const PREFIX_WORKTREE: &str = "worktree";
let data = self.run_new_cmd(CMD_WORKTREE, Some(&[work_tree::CMD_LIST, work_tree::OPTION_PORCELAIN, work_tree::OPTION_Z]))?;
let mut result = HashSet::with_capacity(data.split(NULL_LINE_BREAK).count() / 4);
for line in data.split(NULL_LINE_BREAK).map(|l| l.trim()) {
if line.starts_with(PREFIX_WORKTREE) {
let mut parts = line.split_whitespace();
match (parts.next(), parts.next(), parts.next()) {
(Some(PREFIX_WORKTREE), Some(path), None) => result.insert(WorkTree::make(path)?),
_ => return Err(Error::new(ErrorKind::InvalidData, __!("Invalid format: {:?}", line))),
};
}
}
Ok(result)
}
pub fn status<F, P>(&self, files: Option<F>) -> Result<HashMap<PathBuf, Status>> where F: Iterator<Item=P>, P: AsRef<Path> {
let mut cmd = self.new_cmd(CMD_STATUS, Some(&[OPTION_PORCELAIN, OPTION_Z]));
if let Some(files) = files {
cmd.arg(OPTION_2_HYPHENS);
for f in files {
cmd.arg(f.as_ref());
}
}
let data = self.run_cmd(&mut cmd)?;
let mut result = HashMap::with_capacity(data.split(NULL_LINE_BREAK).count());
for line in data.split(NULL_LINE_BREAK).map(|l| l.trim()) {
if let Some(note) = line.split_whitespace().next() {
result.insert(PathBuf::from(line[note.len()..].trim()), Status::from_str(note)?);
}
}
Ok(result)
}
}