-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdiffparser.go
297 lines (258 loc) · 6.43 KB
/
diffparser.go
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// Copyright (c) 2015 Jesse Meek <https://github.com/waigani>
// This program is Free Software see LICENSE file for details.
package diffparser
import (
"regexp"
"strconv"
"strings"
"errors"
)
// FileMode represents the file status in a diff
type FileMode int
const (
// DELETED if the file is deleted
DELETED FileMode = iota
// MODIFIED if the file is modified
MODIFIED
// NEW if the file is created and there is no diff
NEW
)
// DiffRange contains the DiffLine's
type DiffRange struct {
// starting line number
Start int
// the number of lines the change diffHunk applies to
Length int
// Each line of the hunk range.
Lines []*DiffLine
}
// DiffLineMode tells the line if added, removed or unchanged
type DiffLineMode rune
const (
// ADDED if the line is added (shown green in diff)
ADDED DiffLineMode = iota
// REMOVED if the line is deleted (shown red in diff)
REMOVED
// UNCHANGED if the line is unchanged (not colored in diff)
UNCHANGED
)
// DiffLine is the least part of an actual diff
type DiffLine struct {
Mode DiffLineMode
Number int
Content string
Position int // the line in the diff
}
// DiffHunk is a group of difflines
type DiffHunk struct {
HunkHeader string
OrigRange DiffRange
NewRange DiffRange
WholeRange DiffRange
}
// DiffFile is the sum of diffhunks and holds the changes of the file features
type DiffFile struct {
DiffHeader string
Mode FileMode
OrigName string
NewName string
Hunks []*DiffHunk
}
// Diff is the collection of DiffFiles
type Diff struct {
Files []*DiffFile
Raw string `sql:"type:text"`
PullID uint `sql:"index"`
}
func (d *Diff) addFile(file *DiffFile) {
d.Files = append(d.Files, file)
}
// Changed returns a map of filename to lines changed in that file. Deleted
// files are ignored.
func (d *Diff) Changed() map[string][]int {
dFiles := make(map[string][]int)
for _, f := range d.Files {
if f.Mode == DELETED {
continue
}
for _, h := range f.Hunks {
for _, dl := range h.NewRange.Lines {
if dl.Mode == ADDED { // TODO(waigani) return removed
dFiles[f.NewName] = append(dFiles[f.NewName], dl.Number)
}
}
}
}
return dFiles
}
func regFind(s string, reg string, group int) string {
re := regexp.MustCompile(reg)
return re.FindStringSubmatch(s)[group]
}
func lineMode(line string) (*DiffLineMode, error) {
var m DiffLineMode
switch line[:1] {
case " ":
m = UNCHANGED
case "+":
m = ADDED
case "-":
m = REMOVED
default:
return nil, errors.New("could not parse line mode for line: \"" + line + "\"")
}
return &m, nil
}
// Parse takes a diff, such as produced by "git diff", and parses it into a
// Diff struct.
func Parse(diffString string) (*Diff, error) {
var diff Diff
diff.Raw = diffString
lines := strings.Split(diffString, "\n")
var file *DiffFile
var hunk *DiffHunk
var ADDEDCount int
var REMOVEDCount int
var inHunk bool
oldFilePrefix := "--- a/"
newFilePrefix := "+++ b/"
var diffPosCount int
var firstHunkInFile bool
// Parse each line of diff.
for idx, l := range lines {
diffPosCount++
switch {
case strings.HasPrefix(l, "diff "):
inHunk = false
// Start a new file.
file = &DiffFile{}
header := l
if len(lines) > idx+3 {
rein := regexp.MustCompile(`^index .+$`)
remp := regexp.MustCompile(`^(-|\+){3} .+$`)
index := lines[idx+1]
if rein.MatchString(index) {
header = header + "\n" + index
}
mp1 := lines[idx+2]
mp2 := lines[idx+3]
if remp.MatchString(mp1) && remp.MatchString(mp2) {
header = header + "\n" + mp1 + "\n" + mp2
}
}
file.DiffHeader = header
diff.Files = append(diff.Files, file)
firstHunkInFile = true
// File mode.
file.Mode = MODIFIED
case l == "+++ /dev/null":
file.Mode = DELETED
case l == "--- /dev/null":
file.Mode = NEW
case strings.HasPrefix(l, oldFilePrefix):
file.OrigName = strings.TrimPrefix(l, oldFilePrefix)
case strings.HasPrefix(l, newFilePrefix):
file.NewName = strings.TrimPrefix(l, newFilePrefix)
case strings.HasPrefix(l, "@@ "):
if firstHunkInFile {
diffPosCount = 0
firstHunkInFile = false
}
inHunk = true
// Start new hunk.
hunk = &DiffHunk{}
file.Hunks = append(file.Hunks, hunk)
// Parse hunk heading for ranges
re := regexp.MustCompile(`@@ \-(\d+),?(\d+)? \+(\d+),?(\d+)? @@ ?(.+)?`)
m := re.FindStringSubmatch(l)
if len(m) < 5 {
return nil, errors.New("Error parsing line: " + l)
}
a, err := strconv.Atoi(m[1])
if err != nil {
return nil, err
}
b := a
if len(m[2]) > 0 {
b, err = strconv.Atoi(m[2])
if err != nil {
return nil, err
}
}
c, err := strconv.Atoi(m[3])
if err != nil {
return nil, err
}
d := c
if len(m[4]) > 0 {
d, err = strconv.Atoi(m[4])
if err != nil {
return nil, err
}
}
if len(m[5]) > 0 {
hunk.HunkHeader = m[5]
}
// hunk orig range.
hunk.OrigRange = DiffRange{
Start: a,
Length: b,
}
// hunk new range.
hunk.NewRange = DiffRange{
Start: c,
Length: d,
}
// (re)set line counts
ADDEDCount = hunk.NewRange.Start
REMOVEDCount = hunk.OrigRange.Start
case inHunk && isSourceLine(l):
m, err := lineMode(l)
if err != nil {
return nil, err
}
line := DiffLine{
Mode: *m,
Content: l[1:],
Position: diffPosCount,
}
newLine := line
origLine := line
// add lines to ranges
switch *m {
case ADDED:
newLine.Number = ADDEDCount
hunk.NewRange.Lines = append(hunk.NewRange.Lines, &newLine)
hunk.WholeRange.Lines = append(hunk.WholeRange.Lines, &newLine)
ADDEDCount++
case REMOVED:
origLine.Number = REMOVEDCount
hunk.OrigRange.Lines = append(hunk.OrigRange.Lines, &origLine)
hunk.WholeRange.Lines = append(hunk.WholeRange.Lines, &origLine)
REMOVEDCount++
case UNCHANGED:
newLine.Number = ADDEDCount
hunk.NewRange.Lines = append(hunk.NewRange.Lines, &newLine)
hunk.WholeRange.Lines = append(hunk.WholeRange.Lines, &newLine)
origLine.Number = REMOVEDCount
hunk.OrigRange.Lines = append(hunk.OrigRange.Lines, &origLine)
ADDEDCount++
REMOVEDCount++
}
}
}
return &diff, nil
}
func isSourceLine(line string) bool {
if line == `\ No newline at end of file` {
return false
}
if l := len(line); l == 0 || (l >= 3 && (line[:3] == "---" || line[:3] == "+++")) {
return false
}
return true
}
// Length returns the hunks line length
func (hunk *DiffHunk) Length() int {
return len(hunk.WholeRange.Lines) + 1
}