-
Notifications
You must be signed in to change notification settings - Fork 25
/
main.go
214 lines (191 loc) · 4.59 KB
/
main.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
package main
import (
"bufio"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"sort"
"strings"
"github.com/mibk/dupl/job"
"github.com/mibk/dupl/printer"
"github.com/mibk/dupl/syntax"
)
const defaultThreshold = 15
var (
paths = []string{"."}
vendor = flag.Bool("vendor", false, "")
verbose = flag.Bool("verbose", false, "")
threshold = flag.Int("threshold", defaultThreshold, "")
files = flag.Bool("files", false, "")
html = flag.Bool("html", false, "")
plumbing = flag.Bool("plumbing", false, "")
)
const (
vendorDirPrefix = "vendor" + string(filepath.Separator)
vendorDirInPath = string(filepath.Separator) + vendorDirPrefix
)
func init() {
flag.BoolVar(verbose, "v", false, "alias for -verbose")
flag.IntVar(threshold, "t", defaultThreshold, "alias for -threshold")
}
func main() {
flag.Usage = usage
flag.Parse()
if *html && *plumbing {
log.Fatal("you can have either plumbing or HTML output")
}
if flag.NArg() > 0 {
paths = flag.Args()
}
if *verbose {
log.Println("Building suffix tree")
}
schan := job.Parse(filesFeed())
t, data, done := job.BuildTree(schan)
<-done
// finish stream
t.Update(&syntax.Node{Type: -1})
if *verbose {
log.Println("Searching for clones")
}
mchan := t.FindDuplOver(*threshold)
duplChan := make(chan syntax.Match)
go func() {
for m := range mchan {
match := syntax.FindSyntaxUnits(*data, m, *threshold)
if len(match.Frags) > 0 {
duplChan <- match
}
}
close(duplChan)
}()
newPrinter := printer.NewText
if *html {
newPrinter = printer.NewHTML
} else if *plumbing {
newPrinter = printer.NewPlumbing
}
p := newPrinter(os.Stdout, ioutil.ReadFile)
if err := printDupls(p, duplChan); err != nil {
log.Fatal(err)
}
}
func filesFeed() chan string {
if *files {
fchan := make(chan string)
go func() {
s := bufio.NewScanner(os.Stdin)
for s.Scan() {
f := s.Text()
fchan <- strings.TrimPrefix(f, "./")
}
close(fchan)
}()
return fchan
}
return crawlPaths(paths)
}
func crawlPaths(paths []string) chan string {
fchan := make(chan string)
go func() {
for _, path := range paths {
info, err := os.Lstat(path)
if err != nil {
log.Fatal(err)
}
if !info.IsDir() {
fchan <- path
continue
}
err = filepath.Walk(path, func(path string, info os.FileInfo, err error) error {
if !*vendor && (strings.HasPrefix(path, vendorDirPrefix) ||
strings.Contains(path, vendorDirInPath)) {
return nil
}
if !info.IsDir() && strings.HasSuffix(info.Name(), ".go") {
fchan <- path
}
return nil
})
if err != nil {
log.Fatal(err)
}
}
close(fchan)
}()
return fchan
}
func printDupls(p printer.Printer, duplChan <-chan syntax.Match) error {
groups := make(map[string][][]*syntax.Node)
for dupl := range duplChan {
groups[dupl.Hash] = append(groups[dupl.Hash], dupl.Frags...)
}
keys := make([]string, 0, len(groups))
for k := range groups {
keys = append(keys, k)
}
sort.Strings(keys)
if err := p.PrintHeader(); err != nil {
return err
}
for _, k := range keys {
uniq := unique(groups[k])
if len(uniq) > 1 {
if err := p.PrintClones(uniq); err != nil {
return err
}
}
}
return p.PrintFooter()
}
func unique(group [][]*syntax.Node) [][]*syntax.Node {
fileMap := make(map[string]map[int]struct{})
var newGroup [][]*syntax.Node
for _, seq := range group {
node := seq[0]
file, ok := fileMap[node.Filename]
if !ok {
file = make(map[int]struct{})
fileMap[node.Filename] = file
}
if _, ok := file[node.Pos]; !ok {
file[node.Pos] = struct{}{}
newGroup = append(newGroup, seq)
}
}
return newGroup
}
func usage() {
fmt.Fprintln(os.Stderr, `Usage: dupl [flags] [paths]
Paths:
If the given path is a file, dupl will use it regardless of
the file extension. If it is a directory, it will recursively
search for *.go files in that directory.
If no path is given, dupl will recursively search for *.go
files in the current directory.
Flags:
-files
read file names from stdin one at each line
-html
output the results as HTML, including duplicate code fragments
-plumbing
plumbing (easy-to-parse) output for consumption by scripts or tools
-t, -threshold size
minimum token sequence size as a clone (default 15)
-vendor
check files in vendor directory
-v, -verbose
explain what is being done
Examples:
dupl -t 100
Search clones in the current directory of size at least
100 tokens.
dupl $(find app/ -name '*_test.go')
Search for clones in tests in the app directory.
find app/ -name '*_test.go' |dupl -files
The same as above.`)
os.Exit(2)
}