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
use git2::Branch;
use git2::ReferenceType;
use git2::Repository;
use git2::{Status, StatusOptions, StatusShow};
use std::fmt;
use std::io;
mod shell_writer;
pub use shell_writer::*;
#[derive(Debug, Default)]
pub struct Reference {
pub name: String,
pub kind: String,
pub error: String,
}
impl Reference {
pub fn new<N, K>(name: N, kind: K) -> Self
where
N: AsRef<str>,
K: AsRef<str>,
{
Reference {
name: name.as_ref().to_string(),
kind: kind.as_ref().to_string(),
error: "".to_string(),
}
}
pub fn new_with_error<N, K, E>(name: N, kind: K, error: E) -> Self
where
N: AsRef<str>,
K: AsRef<str>,
E: fmt::Debug,
{
Reference {
name: name.as_ref().to_string(),
kind: kind.as_ref().to_string(),
error: format!("{:?}", error),
}
}
pub fn symbolic(name: &str) -> Self {
Reference::new(name, "symbolic")
}
pub fn direct(name: &str) -> Self {
Reference::new(name, "direct")
}
pub fn short(&self) -> &str {
self.name
.strip_prefix("refs/heads/")
.or_else(|| self.name.strip_prefix("refs/tags/"))
.unwrap_or(&self.name)
}
}
impl ShellVars for Reference {
fn write_to_shell<W: io::Write>(&self, out: &ShellWriter<W>) {
out.write_var("name", &self.name);
out.write_var("short", self.short());
out.write_var("kind", &self.kind);
out.write_var("error", &self.error);
}
}
#[derive(Debug, Default)]
pub struct Head {
pub trail: Vec<Reference>,
pub hash: String,
pub ahead_of_upstream: Option<usize>,
pub behind_upstream: Option<usize>,
pub upstream_error: String,
}
impl ShellVars for Head {
fn write_to_shell<W: io::Write>(&self, out: &ShellWriter<W>) {
out.write_var("ref_length", self.trail.len() - 1);
for (i, reference) in self.trail[1..].iter().enumerate() {
out.group_n("ref", i + 1).write_vars(reference);
}
out.write_var("hash", &self.hash);
out.write_var("ahead", display_option(self.ahead_of_upstream));
out.write_var("behind", display_option(self.behind_upstream));
out.write_var("upstream_error", &self.upstream_error);
}
}
pub fn head_info(repository: &Repository) -> Result<Head, git2::Error> {
let mut current = "HEAD".to_string();
let mut head = Head::default();
loop {
match repository.find_reference(¤t) {
Ok(reference) => match reference.kind() {
Some(ReferenceType::Direct) => {
head.trail.push(Reference::direct(&display_option(
reference.name(),
)));
head.hash = display_option(reference.target());
break;
}
Some(ReferenceType::Symbolic) => {
head.trail.push(Reference::symbolic(&display_option(
reference.name(),
)));
let target = reference
.symbolic_target()
.expect("Symbolic ref should have symbolic target");
current = target.to_string();
}
None => {
head.trail.push(Reference::new(
&display_option(reference.name()),
"unknown",
));
break;
}
},
Err(error) => {
head.trail
.push(Reference::new_with_error(current, "", error));
break;
}
};
}
match get_upstream_difference(repository) {
Ok(Some((ahead, behind))) => {
head.ahead_of_upstream = Some(ahead);
head.behind_upstream = Some(behind);
}
Ok(None) => {}
Err(error) => {
head.upstream_error = format!("{:?}", error);
}
}
Ok(head)
}
pub fn get_upstream_difference(
repository: &Repository,
) -> Result<Option<(usize, usize)>, git2::Error> {
let local_ref = repository.head()?.resolve()?;
if let Some(local_oid) = local_ref.target() {
let upstream_branch = Branch::wrap(local_ref).upstream()?;
if let Some(upstream_oid) = upstream_branch.get().target() {
repository
.graph_ahead_behind(local_oid, upstream_oid)
.map(Some)
} else {
Ok(None)
}
} else {
Ok(None)
}
}
fn display_option(s: Option<impl fmt::Display>) -> String {
s.map(|s| s.to_string()).unwrap_or_else(|| "".to_string())
}
#[derive(Debug, Default)]
pub struct ChangeCounters {
pub untracked: usize,
pub unstaged: usize,
pub staged: usize,
pub conflicted: usize,
}
impl From<[usize; 4]> for ChangeCounters {
fn from(array: [usize; 4]) -> Self {
ChangeCounters {
untracked: array[0],
unstaged: array[1],
staged: array[2],
conflicted: array[3],
}
}
}
impl ShellVars for ChangeCounters {
fn write_to_shell<W: io::Write>(&self, out: &ShellWriter<W>) {
out.write_var("untracked_count", self.untracked);
out.write_var("unstaged_count", self.unstaged);
out.write_var("staged_count", self.staged);
out.write_var("conflicted_count", self.conflicted);
}
}
pub fn count_changes(
repository: &Repository,
) -> Result<ChangeCounters, git2::Error> {
if repository.is_bare() {
return Ok(ChangeCounters::default());
}
let mut options = StatusOptions::new();
options
.show(StatusShow::IndexAndWorkdir)
.include_untracked(true)
.exclude_submodules(true);
let statuses = repository.statuses(Some(&mut options))?;
let mut counters: [usize; 4] = [0; 4];
let buckets = [
Status::WT_NEW,
Status::WT_MODIFIED
| Status::WT_DELETED
| Status::WT_TYPECHANGE
| Status::WT_RENAMED,
Status::INDEX_NEW
| Status::INDEX_MODIFIED
| Status::INDEX_DELETED
| Status::INDEX_RENAMED
| Status::INDEX_TYPECHANGE,
Status::CONFLICTED,
];
for status in statuses.iter() {
for (i, bits) in buckets.iter().enumerate() {
if status.status().intersects(*bits) {
counters[i] += 1;
}
}
}
Ok(ChangeCounters::from(counters))
}