1
2
3
4
5
6 package astutil
7
8 import (
9 "fmt"
10 "go/ast"
11 "go/token"
12 "strconv"
13 "strings"
14 )
15
16
17 func AddImport(fset *token.FileSet, f *ast.File, path string) (added bool) {
18 return AddNamedImport(fset, f, "", path)
19 }
20
21
22
23
24
25
26
27
28 func AddNamedImport(fset *token.FileSet, f *ast.File, name, path string) (added bool) {
29 if imports(f, name, path) {
30 return false
31 }
32
33 newImport := &ast.ImportSpec{
34 Path: &ast.BasicLit{
35 Kind: token.STRING,
36 Value: strconv.Quote(path),
37 },
38 }
39 if name != "" {
40 newImport.Name = &ast.Ident{Name: name}
41 }
42
43
44
45
46
47 var (
48 bestMatch = -1
49 lastImport = -1
50 impDecl *ast.GenDecl
51 impIndex = -1
52
53 isThirdPartyPath = isThirdParty(path)
54 )
55 for i, decl := range f.Decls {
56 gen, ok := decl.(*ast.GenDecl)
57 if ok && gen.Tok == token.IMPORT {
58 lastImport = i
59
60
61 if declImports(gen, "C") {
62 continue
63 }
64
65
66 if len(gen.Specs) == 0 && bestMatch == -1 {
67 impDecl = gen
68 }
69
70
71
72
73
74
75
76
77
78
79
80 seenAnyThirdParty := false
81 for j, spec := range gen.Specs {
82 impspec := spec.(*ast.ImportSpec)
83 p := importPath(impspec)
84 n := matchLen(p, path)
85 if n > bestMatch || (bestMatch == 0 && !seenAnyThirdParty && isThirdPartyPath) {
86 bestMatch = n
87 impDecl = gen
88 impIndex = j
89 }
90 seenAnyThirdParty = seenAnyThirdParty || isThirdParty(p)
91 }
92 }
93 }
94
95
96 if impDecl == nil {
97 impDecl = &ast.GenDecl{
98 Tok: token.IMPORT,
99 }
100 if lastImport >= 0 {
101 impDecl.TokPos = f.Decls[lastImport].End()
102 } else {
103
104
105
106
107 impDecl.TokPos = f.Package
108
109 file := fset.File(f.Package)
110 pkgLine := file.Line(f.Package)
111 for _, c := range f.Comments {
112 if file.Line(c.Pos()) > pkgLine {
113 break
114 }
115
116 impDecl.TokPos = c.End() + 2
117 }
118 }
119 f.Decls = append(f.Decls, nil)
120 copy(f.Decls[lastImport+2:], f.Decls[lastImport+1:])
121 f.Decls[lastImport+1] = impDecl
122 }
123
124
125 insertAt := 0
126 if impIndex >= 0 {
127
128 insertAt = impIndex + 1
129 }
130 impDecl.Specs = append(impDecl.Specs, nil)
131 copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:])
132 impDecl.Specs[insertAt] = newImport
133 pos := impDecl.Pos()
134 if insertAt > 0 {
135
136
137 if spec, ok := impDecl.Specs[insertAt-1].(*ast.ImportSpec); ok && spec.Comment != nil {
138 pos = spec.Comment.End()
139 } else {
140
141
142 pos = impDecl.Specs[insertAt-1].Pos()
143 }
144 }
145 if newImport.Name != nil {
146 newImport.Name.NamePos = pos
147 }
148 newImport.Path.ValuePos = pos
149 newImport.EndPos = pos
150
151
152 if len(impDecl.Specs) == 1 {
153
154 impDecl.Lparen = token.NoPos
155 } else if !impDecl.Lparen.IsValid() {
156
157 impDecl.Lparen = impDecl.Specs[0].Pos()
158 }
159
160 f.Imports = append(f.Imports, newImport)
161
162 if len(f.Decls) <= 1 {
163 return true
164 }
165
166
167 var first *ast.GenDecl
168 for i := 0; i < len(f.Decls); i++ {
169 decl := f.Decls[i]
170 gen, ok := decl.(*ast.GenDecl)
171 if !ok || gen.Tok != token.IMPORT || declImports(gen, "C") {
172 continue
173 }
174 if first == nil {
175 first = gen
176 continue
177 }
178
179
180 first.Lparen = first.Pos()
181
182 for _, spec := range gen.Specs {
183 spec.(*ast.ImportSpec).Path.ValuePos = first.Pos()
184 first.Specs = append(first.Specs, spec)
185 }
186 f.Decls = append(f.Decls[:i], f.Decls[i+1:]...)
187 i--
188 }
189
190 return true
191 }
192
193 func isThirdParty(importPath string) bool {
194
195
196 return strings.Contains(importPath, ".")
197 }
198
199
200
201 func DeleteImport(fset *token.FileSet, f *ast.File, path string) (deleted bool) {
202 return DeleteNamedImport(fset, f, "", path)
203 }
204
205
206
207 func DeleteNamedImport(fset *token.FileSet, f *ast.File, name, path string) (deleted bool) {
208 var delspecs []*ast.ImportSpec
209 var delcomments []*ast.CommentGroup
210
211
212 for i := 0; i < len(f.Decls); i++ {
213 decl := f.Decls[i]
214 gen, ok := decl.(*ast.GenDecl)
215 if !ok || gen.Tok != token.IMPORT {
216 continue
217 }
218 for j := 0; j < len(gen.Specs); j++ {
219 spec := gen.Specs[j]
220 impspec := spec.(*ast.ImportSpec)
221 if importName(impspec) != name || importPath(impspec) != path {
222 continue
223 }
224
225
226
227 delspecs = append(delspecs, impspec)
228 deleted = true
229 copy(gen.Specs[j:], gen.Specs[j+1:])
230 gen.Specs = gen.Specs[:len(gen.Specs)-1]
231
232
233
234 if len(gen.Specs) == 0 {
235 copy(f.Decls[i:], f.Decls[i+1:])
236 f.Decls = f.Decls[:len(f.Decls)-1]
237 i--
238 break
239 } else if len(gen.Specs) == 1 {
240 if impspec.Doc != nil {
241 delcomments = append(delcomments, impspec.Doc)
242 }
243 if impspec.Comment != nil {
244 delcomments = append(delcomments, impspec.Comment)
245 }
246 for _, cg := range f.Comments {
247
248 if cg.End() < impspec.Pos() && fset.Position(cg.End()).Line == fset.Position(impspec.Pos()).Line {
249 delcomments = append(delcomments, cg)
250 break
251 }
252 }
253
254 spec := gen.Specs[0].(*ast.ImportSpec)
255
256
257 if spec.Doc != nil {
258 for fset.Position(gen.TokPos).Line+1 < fset.Position(spec.Doc.Pos()).Line {
259 fset.File(gen.TokPos).MergeLine(fset.Position(gen.TokPos).Line)
260 }
261 }
262 for _, cg := range f.Comments {
263 if cg.End() < spec.Pos() && fset.Position(cg.End()).Line == fset.Position(spec.Pos()).Line {
264 for fset.Position(gen.TokPos).Line+1 < fset.Position(spec.Pos()).Line {
265 fset.File(gen.TokPos).MergeLine(fset.Position(gen.TokPos).Line)
266 }
267 break
268 }
269 }
270 }
271 if j > 0 {
272 lastImpspec := gen.Specs[j-1].(*ast.ImportSpec)
273 lastLine := fset.Position(lastImpspec.Path.ValuePos).Line
274 line := fset.Position(impspec.Path.ValuePos).Line
275
276
277
278 if line-lastLine > 1 || !gen.Rparen.IsValid() {
279
280
281
282
283 } else if line != fset.File(gen.Rparen).LineCount() {
284
285 fset.File(gen.Rparen).MergeLine(line)
286 }
287 }
288 j--
289 }
290 }
291
292
293 for i := 0; i < len(f.Imports); i++ {
294 imp := f.Imports[i]
295 for j, del := range delspecs {
296 if imp == del {
297 copy(f.Imports[i:], f.Imports[i+1:])
298 f.Imports = f.Imports[:len(f.Imports)-1]
299 copy(delspecs[j:], delspecs[j+1:])
300 delspecs = delspecs[:len(delspecs)-1]
301 i--
302 break
303 }
304 }
305 }
306
307
308 for i := 0; i < len(f.Comments); i++ {
309 cg := f.Comments[i]
310 for j, del := range delcomments {
311 if cg == del {
312 copy(f.Comments[i:], f.Comments[i+1:])
313 f.Comments = f.Comments[:len(f.Comments)-1]
314 copy(delcomments[j:], delcomments[j+1:])
315 delcomments = delcomments[:len(delcomments)-1]
316 i--
317 break
318 }
319 }
320 }
321
322 if len(delspecs) > 0 {
323 panic(fmt.Sprintf("deleted specs from Decls but not Imports: %v", delspecs))
324 }
325
326 return
327 }
328
329
330 func RewriteImport(fset *token.FileSet, f *ast.File, oldPath, newPath string) (rewrote bool) {
331 for _, imp := range f.Imports {
332 if importPath(imp) == oldPath {
333 rewrote = true
334
335
336 imp.EndPos = imp.End()
337 imp.Path.Value = strconv.Quote(newPath)
338 }
339 }
340 return
341 }
342
343
344 func UsesImport(f *ast.File, path string) (used bool) {
345 spec := importSpec(f, path)
346 if spec == nil {
347 return
348 }
349
350 name := spec.Name.String()
351 switch name {
352 case "<nil>":
353
354
355 lastSlash := strings.LastIndex(path, "/")
356 if lastSlash == -1 {
357 name = path
358 } else {
359 name = path[lastSlash+1:]
360 }
361 case "_", ".":
362
363 return true
364 }
365
366 ast.Walk(visitFn(func(n ast.Node) {
367 sel, ok := n.(*ast.SelectorExpr)
368 if ok && isTopName(sel.X, name) {
369 used = true
370 }
371 }), f)
372
373 return
374 }
375
376 type visitFn func(node ast.Node)
377
378 func (fn visitFn) Visit(node ast.Node) ast.Visitor {
379 fn(node)
380 return fn
381 }
382
383
384 func imports(f *ast.File, name, path string) bool {
385 for _, s := range f.Imports {
386 if importName(s) == name && importPath(s) == path {
387 return true
388 }
389 }
390 return false
391 }
392
393
394
395 func importSpec(f *ast.File, path string) *ast.ImportSpec {
396 for _, s := range f.Imports {
397 if importPath(s) == path {
398 return s
399 }
400 }
401 return nil
402 }
403
404
405
406 func importName(s *ast.ImportSpec) string {
407 if s.Name == nil {
408 return ""
409 }
410 return s.Name.Name
411 }
412
413
414
415 func importPath(s *ast.ImportSpec) string {
416 t, err := strconv.Unquote(s.Path.Value)
417 if err != nil {
418 return ""
419 }
420 return t
421 }
422
423
424 func declImports(gen *ast.GenDecl, path string) bool {
425 if gen.Tok != token.IMPORT {
426 return false
427 }
428 for _, spec := range gen.Specs {
429 impspec := spec.(*ast.ImportSpec)
430 if importPath(impspec) == path {
431 return true
432 }
433 }
434 return false
435 }
436
437
438 func matchLen(x, y string) int {
439 n := 0
440 for i := 0; i < len(x) && i < len(y) && x[i] == y[i]; i++ {
441 if x[i] == '/' {
442 n++
443 }
444 }
445 return n
446 }
447
448
449 func isTopName(n ast.Expr, name string) bool {
450 id, ok := n.(*ast.Ident)
451 return ok && id.Name == name && id.Obj == nil
452 }
453
454
455 func Imports(fset *token.FileSet, f *ast.File) [][]*ast.ImportSpec {
456 var groups [][]*ast.ImportSpec
457
458 for _, decl := range f.Decls {
459 genDecl, ok := decl.(*ast.GenDecl)
460 if !ok || genDecl.Tok != token.IMPORT {
461 break
462 }
463
464 group := []*ast.ImportSpec{}
465
466 var lastLine int
467 for _, spec := range genDecl.Specs {
468 importSpec := spec.(*ast.ImportSpec)
469 pos := importSpec.Path.ValuePos
470 line := fset.Position(pos).Line
471 if lastLine > 0 && pos > 0 && line-lastLine > 1 {
472 groups = append(groups, group)
473 group = []*ast.ImportSpec{}
474 }
475 group = append(group, importSpec)
476 lastLine = line
477 }
478 groups = append(groups, group)
479 }
480
481 return groups
482 }
483
View as plain text