-
Notifications
You must be signed in to change notification settings - Fork 5
/
cccv.go
275 lines (227 loc) · 5.65 KB
/
cccv.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
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"os/exec"
"regexp"
"strconv"
"strings"
"github.com/AndrewVos/colour"
"gopkg.in/yaml.v1"
)
type Config struct {
ExcludeLines []*regexp.Regexp
ExcludeFiles []*regexp.Regexp
MinLineLength int
MinHunkSize int
}
func LoadConfig() Config {
config := Config{
ExcludeLines: []*regexp.Regexp{},
ExcludeFiles: []*regexp.Regexp{},
MinLineLength: 10,
MinHunkSize: 2,
}
data, err := ioutil.ReadFile(".cccv.yml")
if err != nil {
return config
}
t := struct {
ExcludeFiles []string "exclude-files"
ExcludeLines []string "exclude-lines"
MinLineLength int "min-line-length"
MinHunkSize int "min-hunk-size"
}{}
err = yaml.Unmarshal(data, &t)
if err != nil {
log.Fatalf("error: %v", err)
os.Exit(1)
}
for _, s := range t.ExcludeLines {
r := regexp.MustCompile(s)
config.ExcludeLines = append(config.ExcludeLines, r)
}
for _, s := range t.ExcludeFiles {
r := regexp.MustCompile(s)
config.ExcludeFiles = append(config.ExcludeFiles, r)
}
if t.MinLineLength != 0 {
config.MinLineLength = t.MinLineLength
}
return config
}
type FileName string
type Change struct {
FileName
Line
}
type Line struct {
Number int
Text string
}
type FileResult struct {
FileName
Lines []*Line
}
func (fr *FileResult) HasDuplicates() bool {
return len(fr.Lines) > 0
}
func main() {
config := LoadConfig()
results := []FileResult{}
changes := getChanges(os.Stdin, config)
gitFiles := gitLsFiles(config)
for _, fName := range gitFiles {
r := GenResultForFile(fName, changes, config)
if r.HasDuplicates() {
results = append(results, r)
}
}
if len(results) > 0 {
fmt.Printf(colour.White("Possible copy/paste sources:\n"))
for _, r := range results {
fmt.Printf(colour.Red("%s:\n"), r.FileName)
for _, l := range r.Lines {
fmt.Printf(colour.Yellow("%d: ")+"%s\n", l.Number, l.Text)
}
}
os.Exit(1)
} else {
fmt.Printf(colour.Green("Good diff - no copy/pasted code.\n"))
}
}
func GenResultForFile(fName string, changes *[]*Change, config Config) FileResult {
file, _ := os.Open(fName)
scanner := bufio.NewScanner(file)
currentLineNumber := 0
result := FileResult{FileName: FileName(fName), Lines: []*Line{}}
LOOP_LINES:
for scanner.Scan() {
line := scanner.Text()
currentLineNumber++
for _, excludeLinesR := range config.ExcludeLines {
if excludeLinesR.MatchString(line) {
continue LOOP_LINES
}
}
for _, change := range *changes {
if strings.TrimFunc(change.Text, TrimF) == strings.TrimFunc(line, TrimF) {
// exclude lines from the diff itself
if string(change.FileName) == fName && change.Line.Number == currentLineNumber {
continue
}
resultAlreadyRecorded := false
for _, resultLine := range result.Lines {
if resultLine.Number == currentLineNumber && resultLine.Text == line {
resultAlreadyRecorded = true
}
}
if !resultAlreadyRecorded {
result.Lines = append(result.Lines, &Line{Number: currentLineNumber, Text: line})
}
}
}
}
result.Lines = filteredByHunkSizeLines(result.Lines, config)
return result
}
func filteredByHunkSizeLines(lines []*Line, config Config) []*Line {
var currentHunk []*Line
hunks := [][]*Line{}
for i, l := range lines {
if i == 0 {
currentHunk = []*Line{l}
if len(lines) == 1 {
hunks = append(hunks, currentHunk)
}
continue
}
if l.Number-1 == lines[i-1].Number {
currentHunk = append(currentHunk, l)
} else {
hunks = append(hunks, currentHunk)
currentHunk = []*Line{l}
}
if i == len(lines)-1 {
hunks = append(hunks, currentHunk)
}
}
filteredLines := []*Line{}
for _, h := range hunks {
if len(h) >= config.MinHunkSize {
filteredLines = append(filteredLines, h...)
}
}
return filteredLines
}
func gitLsFiles(config Config) []string {
files := []string{}
cmd := exec.Command("git", "ls-files")
stdout, err := cmd.StdoutPipe()
if err != nil {
log.Fatal(err)
os.Exit(1)
}
if err := cmd.Start(); err != nil {
log.Fatal(err)
os.Exit(1)
}
scanner := bufio.NewScanner(stdout)
LOOP_FILES:
for scanner.Scan() {
for _, excludeFilesR := range config.ExcludeFiles {
if excludeFilesR.MatchString(scanner.Text()) {
continue LOOP_FILES
}
}
files = append(files, scanner.Text())
}
return files
}
func getChanges(reader io.Reader, config Config) *[]*Change {
scanner := bufio.NewScanner(reader)
var currentFile string
var currentLineNumber int
changes := &[]*Change{}
currentFileR := regexp.MustCompile(`^\+\+\+ ./(.*)$`)
lineAddedR := regexp.MustCompile(`^\+{1}(.*\w+.*)`)
lineRemovedR := regexp.MustCompile(`^\-{1}`)
lineRangeR := regexp.MustCompile(`^@@.*?\+(\d+?),`)
for scanner.Scan() {
currentLine := scanner.Text()
if res := currentFileR.FindStringSubmatch(currentLine); res != nil {
currentFile = res[1]
} else if res := lineRangeR.FindStringSubmatch(currentLine); res != nil {
r, err := strconv.Atoi(res[1])
if err != nil {
log.Fatal(err)
os.Exit(1)
}
currentLineNumber = r
} else if lineAddedR.MatchString(currentLine) {
res := lineAddedR.FindStringSubmatch(currentLine)
if len(strings.TrimFunc(res[1], TrimF)) <= config.MinLineLength {
currentLineNumber++
continue
}
newChange := &Change{
FileName: FileName(currentFile),
Line: Line{Text: res[1], Number: currentLineNumber},
}
*changes = append(*changes, newChange)
currentLineNumber++
} else if !lineRemovedR.MatchString(currentLine) {
currentLineNumber++
}
}
if err := scanner.Err(); err != nil {
fmt.Fprintln(os.Stderr, "reading standard input:", err)
os.Exit(1)
}
return changes
}
func TrimF(c rune) bool { return c == 32 || c == 9 }