forked from waigani/diffparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiffparser.go
More file actions
279 lines (248 loc) · 5.75 KB
/
diffparser.go
File metadata and controls
279 lines (248 loc) · 5.75 KB
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
// Copyright (c) 2016 AppsCode Inc. <https://github.com/appscode>
// Copyright (c) 2015 Jesse Meek <https://github.com/waigani>
// This program is Free Software see LICENSE file for details.
package diffparser
import (
"fmt"
"regexp"
"strconv"
"strings"
)
type FileMode int
const (
DELETED FileMode = iota
MODIFIED
NEW
MOVE_AWAY
MOVE_HERE
)
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
}
type DiffLineMode int
const (
ADDED DiffLineMode = iota
REMOVED
UNCHANGED
)
type DiffLine struct {
Mode DiffLineMode
Number int
Content string
Position int // the line in the diff
}
type diffHunk struct {
OrigRange diffRange
NewRange diffRange
}
type DiffFile struct {
Mode FileMode
OrigName string
NewName string
Hunks []*diffHunk
}
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 {
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, fmt.Errorf("could not parse line mode for line: %q", 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 hunkLineCount int
// Parse each line of diff.
for _, l := range lines {
switch {
case strings.HasPrefix(l, "diff "):
inHunk = false
// Start a new file.
file = &DiffFile{}
diff.Files = append(diff.Files, file)
// 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, "Binary files"):
s := strings.Fields(l)
file.OrigName = strings.TrimPrefix(s[2], "a/")
if file.OrigName == "/dev/null" {
file.Mode = NEW
file.OrigName = ""
}
file.NewName = strings.TrimPrefix(s[4], "b/")
if file.NewName == "/dev/null" {
file.NewName = ""
file.Mode = DELETED
}
case strings.HasPrefix(l, "rename from"):
s := strings.Fields(l)
file.NewName = s[len(s)-1]
file.OrigName = ""
file.Mode = MOVE_AWAY
hunk = &diffHunk{}
file.Hunks = append(file.Hunks, hunk)
case strings.HasPrefix(l, "rename to"):
s := strings.Fields(l)
name := file.NewName
file.OrigName = s[len(s)-1]
// Start a new file.
file = &DiffFile{}
file.Mode = MOVE_HERE
diff.Files = append(diff.Files, file)
file.NewName = s[len(s)-1]
file.OrigName = name
// Start new hunk.
hunk = &diffHunk{}
file.Hunks = append(file.Hunks, hunk)
case strings.HasPrefix(l, "@@ "):
inHunk = true
// Start new hunk.
if file.Hunks == nil {
hunk = &diffHunk{}
file.Hunks = append(file.Hunks, hunk)
}
hunkLineCount = 0
// Parse hunk heading for ranges
re := regexp.MustCompile(`@@ \-(\d+),?(\d+)? \+(\d+),?(\d+)? @@`)
m := re.FindStringSubmatch(l)
a, err := strconv.Atoi(m[1])
if err != nil {
return nil, err
}
var b int
if m[2] == "" {
b = 0
} else {
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
}
}
// 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):
hunkLineCount++
m, err := lineMode(l)
if err != nil {
return nil, err
}
line := DiffLine{
Mode: *m,
Content: l[1:],
Position: hunkLineCount,
}
newLine := line
origLine := line
// add lines to ranges
switch *m {
case ADDED:
newLine.Number = ADDEDCount
hunk.NewRange.Lines = append(hunk.NewRange.Lines, &newLine)
ADDEDCount++
case REMOVED:
origLine.Number = REMOVEDCount
hunk.OrigRange.Lines = append(hunk.OrigRange.Lines, &origLine)
REMOVEDCount++
case UNCHANGED:
newLine.Number = ADDEDCount
hunk.NewRange.Lines = append(hunk.NewRange.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
}