-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
216 lines (183 loc) · 5.77 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
215
216
// +build go1.11
package main
// Copyright 2017 (c) Eric "eau" Augé <eau+reimport [A.T.] unix4fun [DOT] net>
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation and/or
// other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors
// may be used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/*
__
(__)_
(____)_ <-- this is an hermit crab
(______)
...//( 00 )\.....
Eric "eau" Augé <eau+reimport (AT} unix4fun [D.O.T) net>
pragmatic tools for pragmatic situations without all the opensource circus marketing/logos/etc....
to match/replace in "import" lines in big projects, i did not find something else,
so i wrote a quick stuff using go parser to identify import lines in go files and create a patch
displayed out.
the tool yells a "patch" file, so you can review the changes before applying (and catch bugs).
example :
// patch an entire directory tree
reimport -m hash -r myhash /path/to/dir > import.patch
// patch a few files
reimport -m hash -r myhash /path/to/file.go /path/to/file2.go /path/to/file3.go > import.patch
*/
import (
"bufio"
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"io/ioutil"
"os"
"strings"
)
func usage() {
fmt.Fprintf(os.Stderr, "usage: reimport [flags] [path ...]\n")
flag.PrintDefaults()
os.Exit(2)
}
func fileImportPatch(filepath, match, replace string) error {
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, filepath, nil, parser.ImportsOnly)
if err != nil {
return err
}
linemap := fileImportMatchLines(fset, f, match)
//fmt.Printf("matched lines: %v\n", linemap)
// patch
singleFileImportPatch(filepath, match, replace, linemap)
return nil
}
func dirImportPatch(dirpath, match, replace string) error {
// scan the directory to find other directories
// recursive call myself on those new directories.
// we can make it entirely concurrent later..
// could use the filter, but well.. i guess i m lazy..
direntries, err := ioutil.ReadDir(dirpath)
if err != nil {
return err
}
for _, e := range direntries {
if e.IsDir() {
subdir := fmt.Sprintf("%s/%s", dirpath, e.Name())
err := dirImportPatch(subdir, match, replace)
if err != nil {
fmt.Printf("error dir: %s\n", subdir)
}
}
}
// then let's act on that directory
fset := token.NewFileSet()
pkgs, err := parser.ParseDir(fset, dirpath, nil, parser.ImportsOnly)
if err != nil {
return err
}
if len(pkgs) <= 0 {
return nil
}
for _, p := range pkgs {
// let's go to the files.
for fname, f := range p.Files {
// match lines
linemap := fileImportMatchLines(fset, f, match)
// patch out
singleFileImportPatch(fname, match, replace, linemap)
}
}
return nil
}
func fileImportMatchLines(fset *token.FileSet, f *ast.File, match string) map[int]bool {
lines := make(map[int]bool)
for _, i := range f.Imports {
fpos := fset.Position(i.Pos())
//fmt.Printf("import: %s off: %d line: %d\n", i.Path.Value, i.Pos(), fpos.Line)
if strings.Contains(i.Path.Value, match) {
lines[fpos.Line] = true
}
}
return lines
}
// naive function
func singleFileImportPatch(filename, match, replace string, lines map[int]bool) {
if len(lines) <= 0 {
return
}
scanFile, err := os.Open(filename)
if err != nil {
panic(err)
}
defer scanFile.Close()
scanner := bufio.NewScanner(scanFile)
//max := lines[len(lines)]
//fmt.Printf("# matches %d\n", len(lines))
fmt.Printf("--- %s\n", filename)
fmt.Printf("+++ %s\n", filename)
// line array is sorted by nature as we process sequentially.
l := 1
for m := 0; m < len(lines); l++ {
//fmt.Printf("line: %d\n", l)
scanner.Scan()
_, ok := lines[l]
if !ok {
continue // next line
}
origLine := scanner.Text()
newLine := strings.Replace(origLine, match, replace, 1)
fmt.Printf("@@ -%d,1 +%d,1 @@\n", l, l)
fmt.Printf("-%s\n", origLine)
fmt.Printf("+%s\n", newLine)
m++ // we've matched
}
}
// we will spit out a patch file
// to pipe in patch(1)
func main() {
// let's match.
matchFlag := flag.String("m", "", "string to match/replace")
replaceFlag := flag.String("r", "", "string replacement")
flag.Usage = usage
flag.Parse()
argv := flag.Args()
if len(*matchFlag) == 0 || len(argv) == 0 {
fmt.Printf("invalid argument\n")
usage()
os.Exit(1)
}
for _, filepath := range argv {
fi, err := os.Stat(filepath)
if err != nil {
fmt.Fprintf(os.Stderr, "invalid file: %s/%v\n", filepath, err)
continue
}
if fi.IsDir() {
dirImportPatch(filepath, *matchFlag, *replaceFlag)
} else {
fileImportPatch(filepath, *matchFlag, *replaceFlag)
}
}
os.Exit(0)
}