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
use std::convert::TryFrom as _;
use serde::{
ser::{SerializeStruct as _, Serializer},
Serialize,
};
use radicle_surf::{
diff,
vcs::git::{self, Browser, Rev},
};
use crate::{branch::Branch, error::Error, person::Person, revision::Revision};
#[derive(Clone, Serialize)]
pub struct Stats {
pub additions: u64,
pub deletions: u64,
}
#[derive(Clone, Serialize)]
pub struct Commit {
pub header: Header,
pub stats: Stats,
pub diff: diff::Diff,
pub branches: Vec<Branch>,
}
#[derive(Clone)]
pub struct Header {
pub sha1: git2::Oid,
pub author: Person,
pub summary: String,
pub message: String,
pub committer: Person,
pub committer_time: git2::Time,
}
impl Header {
#[must_use]
pub fn description(&self) -> &str {
self.message
.strip_prefix(&self.summary)
.unwrap_or(&self.message)
.trim()
}
}
impl From<&git::Commit> for Header {
fn from(commit: &git::Commit) -> Self {
Self {
sha1: commit.id,
author: Person {
name: commit.author.name.clone(),
email: commit.author.email.clone(),
},
summary: commit.summary.clone(),
message: commit.message.clone(),
committer: Person {
name: commit.committer.name.clone(),
email: commit.committer.email.clone(),
},
committer_time: commit.author.time,
}
}
}
impl Serialize for Header {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("Header", 6)?;
state.serialize_field("sha1", &self.sha1.to_string())?;
state.serialize_field("author", &self.author)?;
state.serialize_field("summary", &self.summary)?;
state.serialize_field("description", &self.description())?;
state.serialize_field("committer", &self.committer)?;
state.serialize_field("committerTime", &self.committer_time.seconds())?;
state.end()
}
}
#[derive(Serialize)]
pub struct Commits {
pub headers: Vec<Header>,
pub stats: radicle_surf::vcs::git::Stats,
}
pub fn commit(browser: &mut Browser<'_>, sha1: git2::Oid) -> Result<Commit, Error> {
browser.commit(sha1)?;
let history = browser.get();
let commit = history.first();
let diff = if let Some(parent) = commit.parents.first() {
browser.diff(*parent, sha1)?
} else {
browser.initial_diff(sha1)?
};
let mut deletions = 0;
let mut additions = 0;
for file in &diff.modified {
if let diff::FileDiff::Plain { ref hunks } = file.diff {
for hunk in hunks.iter() {
for line in &hunk.lines {
match line {
diff::LineDiff::Addition { .. } => additions += 1,
diff::LineDiff::Deletion { .. } => deletions += 1,
_ => {},
}
}
}
}
}
let branches = browser
.revision_branches(sha1)?
.into_iter()
.map(Branch::from)
.collect();
Ok(Commit {
header: Header::from(commit),
stats: Stats {
additions,
deletions,
},
diff,
branches,
})
}
pub fn header(browser: &mut Browser<'_>, sha1: git2::Oid) -> Result<Header, Error> {
browser.commit(sha1)?;
let history = browser.get();
let commit = history.first();
Ok(Header::from(commit))
}
pub fn commits<P>(
browser: &mut Browser<'_>,
maybe_revision: Option<Revision<P>>,
) -> Result<Commits, Error>
where
P: ToString,
{
let maybe_revision = maybe_revision.map(Rev::try_from).transpose()?;
if let Some(revision) = maybe_revision {
browser.rev(revision)?;
}
let headers = browser.get().iter().map(Header::from).collect();
let stats = browser.get_stats()?;
Ok(Commits { headers, stats })
}