forked from rillig/gobco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstrumenter.go
848 lines (731 loc) · 21.2 KB
/
instrumenter.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
package main
import (
_ "embed"
"fmt"
"go/ast"
"go/build"
"go/parser"
"go/printer"
"go/token"
"os"
"path/filepath"
"reflect"
"runtime"
"sort"
"strconv"
"strings"
)
// cond is a condition from the code that is instrumented.
type cond struct {
pos string // for example "main.go:17:13"
text string // for example "i > 0"
}
// exprSubst describes that an expression node will later be replaced with
// another expression.
type exprSubst struct {
ref *ast.Expr
expr ast.Expr
pos token.Pos
text string
}
// instrumenter rewrites the code of a go package by instrumenting all
// conditions in the code.
type instrumenter struct {
coverTest bool // also cover the test code
immediately bool // persist counts after each increment
listAll bool // also list conditions that are covered
fset *token.FileSet
varname int // to produce unique local variable names
marked map[ast.Node]bool
exprSubst map[ast.Expr]*exprSubst
stmtRef map[ast.Stmt]*ast.Stmt
stmtSubst map[ast.Stmt]ast.Stmt
hasTestMain bool
conds []cond // collected from all files from fset
}
// instrument modifies the code of the Go package from srcDir by adding
// counters for code coverage, writing the instrumented code to dstDir.
// If singleFile is given, only that file is instrumented.
func (i *instrumenter) instrument(srcDir, singleFile, dstDir string) bool {
i.fset = token.NewFileSet()
isRelevant := func(info os.FileInfo) bool {
return singleFile == "" || info.Name() == singleFile
}
// Comments are needed for build tags such as '//go:build 386' or
// '//go:embed'.
mode := parser.ParseComments
pkgsMap, err := parser.ParseDir(i.fset, srcDir, isRelevant, mode)
ok(err)
pkgs := sortedPkgs(pkgsMap)
if len(pkgs) == 0 {
return false
}
for _, pkg := range pkgs {
forEachFile(pkg, func(name string, file *ast.File) {
i.instrumentFile(name, file, dstDir)
})
}
i.writeGobcoFiles(dstDir, pkgs)
return true
}
func (i *instrumenter) instrumentFile(filename string, astFile *ast.File, dstDir string) {
isTest := strings.HasSuffix(filename, "_test.go")
if (i.coverTest || !isTest) && shouldBuild(filename) {
i.instrumentFileNode(astFile)
}
if isTest {
i.instrumentTestMain(astFile)
}
var out strings.Builder
ok(printer.Fprint(&out, i.fset, astFile))
i.writeFile(filepath.Join(dstDir, filepath.Base(filename)), out.String())
}
func (i *instrumenter) instrumentFileNode(f *ast.File) {
ast.Inspect(f, i.markConds)
ast.Inspect(f, i.findRefs)
ast.Inspect(f, i.prepareStmts)
ast.Inspect(f, i.replace)
}
// markConds remembers the conditions that will be wrapped.
//
// Each expression that is syntactically a boolean condition is marked to be
// replaced later with a function call of the form GobcoCover(id++, cond).
//
// If the nodes were replaced directly instead of only being marked,
// the final list of wrapped conditions would not be in declaration order.
// For example, when a binary expression is visited,
// its direct operands are marked, but not any of the indirect operands.
// The indirect operands are marked in later calls to markConds.
// A direct right-hand operand would thus
// be marked before an indirect left-hand operand.
//
// To avoid wrapping complex conditions redundantly, unmark them.
// For example, in a condition 'a && !c', only 'a' and 'c' are marked,
// but not the '!' or '&&' nodes.
func (i *instrumenter) markConds(n ast.Node) bool {
// The order of the cases matches the order in ast.Walk.
switch n := n.(type) {
case *ast.ParenExpr:
if i.marked[n] {
delete(i.marked, n)
i.marked[n.X] = true
}
case *ast.UnaryExpr:
if n.Op == token.NOT {
delete(i.marked, n)
i.marked[n.X] = true
}
case *ast.BinaryExpr:
if n.Op == token.LAND || n.Op == token.LOR {
delete(i.marked, n)
i.marked[n.X] = true
i.marked[n.Y] = true
}
if n.Op.Precedence() == token.EQL.Precedence() {
i.marked[n] = true
}
case *ast.IfStmt:
i.marked[n.Cond] = true
case *ast.SwitchStmt:
if n.Tag == nil {
for _, clause := range n.Body.List {
for _, expr := range clause.(*ast.CaseClause).List {
i.marked[expr] = true
}
}
}
case *ast.ForStmt:
if n.Cond != nil {
i.marked[n.Cond] = true
}
case *ast.GenDecl:
if n.Tok == token.CONST {
return false
}
}
return true
}
// findRefs saves for each marked condition where in the AST it is referenced.
// Since the AST is a tree, there is only ever one such reference.
//
// Like in markConds, the conditions are not visited in declaration order,
// therefore the actual wrapping is done later.
func (i *instrumenter) findRefs(n ast.Node) bool {
if n == nil {
return true
}
// For each struct field and slice element,
// remember the reference that points to it.
//
// Since there are many ast.Node types that have ast.Expr fields,
// it is simpler to use reflection to find all these fields
// instead of listing the known types and their fields explicitly.
if node := reflect.ValueOf(n); node.Type().Kind() == reflect.Ptr {
if typ := node.Type().Elem(); typ.Kind() == reflect.Struct {
str := node.Elem()
for fi, nf := 0, str.NumField(); fi < nf; fi++ {
i.findRefsField(str.Field(fi))
}
}
}
return true
}
func (i *instrumenter) findRefsField(field reflect.Value) {
switch val := field.Interface().(type) {
case ast.Expr:
expr := val
if i.marked[expr] {
delete(i.marked, expr)
ref := field.Addr().Interface().(*ast.Expr)
i.exprSubst[expr] = &exprSubst{
ref, expr, expr.Pos(), i.str(expr),
}
}
case []ast.Expr:
for ei, expr := range val {
if i.marked[expr] {
delete(i.marked, expr)
i.exprSubst[expr] = &exprSubst{
&val[ei], expr, expr.Pos(), i.str(expr),
}
}
}
case ast.Stmt:
if field.Type() == reflect.TypeOf((*ast.Stmt)(nil)).Elem() {
i.stmtRef[val] = field.Addr().Interface().(*ast.Stmt)
}
case []ast.Stmt:
for si, stmt := range val {
i.stmtRef[stmt] = &val[si]
}
}
}
func (i *instrumenter) prepareStmts(n ast.Node) bool {
switch n := n.(type) {
case *ast.SwitchStmt:
i.prepareSwitchStmt(n)
case *ast.TypeSwitchStmt:
i.prepareTypeSwitchStmt(n)
case *ast.FuncDecl:
i.varname = 0
}
return true
}
func (i *instrumenter) prepareSwitchStmt(n *ast.SwitchStmt) {
if n.Tag == nil {
return // Already handled in instrumenter.markConds.
}
gen := codeGenerator{n.Pos()}
// In a switch statement with an expression, the expression is
// evaluated once and is then compared to each expression from the
// case clauses.
//
// In the instrumented switch statement, the tag expression always has
// boolean type, and the expressions in the case clauses are instrumented
// to calls of the form 'GobcoCover(id++, tag == expr)'.
tagExprName := i.nextVarname()
tagExprUsed := false
// Remember each expression from the 'case' clauses, to replace it
// with an expression of the form 'GobcoCover(id++, tag == expr)' later.
for _, clause := range n.Body.List {
clause := clause.(*ast.CaseClause)
for j, expr := range clause.List {
gen := codeGenerator{expr.Pos()}
i.exprSubst[expr] = &exprSubst{
&clause.List[j],
gen.eql(tagExprName, expr),
expr.Pos(),
i.strEql(n.Tag, expr),
}
tagExprUsed = true
}
}
var newBody []ast.Stmt
if n.Init != nil {
newBody = append(newBody, n.Init)
}
tagRef := []ast.Expr{n.Tag}
newBody = append(newBody, gen.defineExprs(tagExprName, tagRef))
if !tagExprUsed {
newBody = append(newBody, gen.use(gen.ident(tagExprName)))
}
newBody = append(newBody, gen.switchStmt(nil, n.Body))
// The initialization statements are executed in a new scope.
// Use the same scope for storing the tag expression in a variable
// as well, as the variable names don't overlap.
i.stmtSubst[n] = gen.block(newBody)
// n.Tag moves from the switch statement to an assignment,
// so update the reference to it.
if s := i.exprSubst[n.Tag]; s != nil {
s.ref = &tagRef[0]
}
}
func (i *instrumenter) prepareTypeSwitchStmt(ts *ast.TypeSwitchStmt) {
gen := codeGenerator{ts.Switch}
// Get access to the tag expression and the optional variable
// name from 'switch name := expr.(type) {}'.
tagExprName := ""
var tagExpr *ast.TypeAssertExpr
if assign, ok := ts.Assign.(*ast.AssignStmt); ok {
tagExprName = assign.Lhs[0].(*ast.Ident).Name
tagExpr = assign.Rhs[0].(*ast.TypeAssertExpr)
} else {
tagExpr = ts.Assign.(*ast.ExprStmt).X.(*ast.TypeAssertExpr)
}
tag := "" // The evaluated TypeSwitchStmt.Tag
// Collect the type tests from all case clauses,
// to keep the following switch statement simple and uniform.
type typeTest struct {
pos token.Pos
varname string
code string
}
var tests []typeTest
var assignments []ast.Stmt
for _, stmt := range ts.Body.List {
for _, typ := range stmt.(*ast.CaseClause).List {
if tag == "" {
tag = i.nextVarname()
}
v := i.nextVarname()
test := typeTest{typ.Pos(), v, i.strEql(tagExpr, typ)}
tests = append(tests, test)
posTyp := gen.reposition(typ)
def := gen.defineIsType(v, tag, posTyp)
assignments = append(assignments, def)
}
}
// Now handle the collected type tests in a single switch statement.
var newClauses []ast.Stmt
for _, stmt := range ts.Body.List {
clause := stmt.(*ast.CaseClause)
var newList []ast.Expr
var newBody []ast.Stmt
if tagExprName != "" {
if tag == "" {
tag = i.nextVarname()
}
if len(clause.List) == 1 && !isNilIdent(clause.List[0]) {
expr := gen.typeAssertExpr(tag, clause.List[0])
def := gen.define(tagExprName, expr)
newBody = append(newBody, def)
} else {
def := gen.define(tagExprName, gen.ident(tag))
newBody = append(newBody, def)
}
newBody = append(newBody, gen.use(gen.ident(tagExprName)))
}
newBody = append(newBody, clause.Body...)
for range clause.List {
test := tests[0]
tests = tests[1:]
gen := codeGenerator{test.pos}
ident := gen.ident(test.varname)
wrapped := i.callCover(ident, test.pos, test.code)
newList = append(newList, wrapped)
}
gen := codeGenerator{clause.Pos()}
newClauses = append(newClauses, gen.caseClause(newList, newBody))
}
if tag == "" {
return
}
var newBody []ast.Stmt
if ts.Init != nil {
newBody = append(newBody, ts.Init)
}
newBody = append(newBody, gen.define(tag, tagExpr.X))
newBody = append(newBody, assignments...)
newBody = append(newBody, gen.switchStmt(nil, gen.block(newClauses)))
i.stmtSubst[ts] = gen.block(newBody)
}
// replace replaces each prepared node with the instrumentation code,
// in declaration order.
func (i *instrumenter) replace(n ast.Node) bool {
switch n := n.(type) {
case ast.Expr:
if s := i.exprSubst[n]; s != nil {
*s.ref = i.callCover(s.expr, s.pos, s.text)
}
case ast.Stmt:
if stmt := i.stmtSubst[n]; stmt != nil {
*i.stmtRef[n] = stmt
}
}
return true
}
// callCover returns the expression expr surrounded by a function call to
// GobcoCover and remembers the location and text of the expression,
// for later generating the table of coverage points.
//
// The position pos must point to the uninstrumented code that is most closely
// related to the instrumented condition. Especially for switch statements, the
// position may differ from the expression that is wrapped.
func (i *instrumenter) callCover(expr ast.Expr, pos token.Pos, code string) ast.Expr {
assert(pos.IsValid(), "pos must refer to the code from before instrumentation")
start := i.fset.Position(pos)
if !strings.HasSuffix(start.Filename, ".go") {
// don't instrument generated code, such as yacc parsers
return expr
}
i.conds = append(i.conds, cond{start.String(), code})
idx := len(i.conds) - 1
gen := codeGenerator{pos}
return gen.callGobcoCover(idx, expr)
}
// strEql returns the string representation of (lhs == rhs).
func (i *instrumenter) strEql(lhs ast.Expr, rhs ast.Expr) string {
// Do not use printer.Fprint here, as that would add unnecessary
// whitespace after the '==' and would also compress the space
// inside the operands.
lp := needsParenthesesForEql(lhs)
rp := needsParenthesesForEql(rhs)
opening := map[bool]string{true: "("}
closing := map[bool]string{true: ")"}
return fmt.Sprintf("%s%s%s == %s%s%s",
opening[lp], i.str(lhs), closing[lp],
opening[rp], i.str(rhs), closing[rp])
}
func needsParenthesesForEql(expr ast.Expr) bool {
switch expr := expr.(type) {
case *ast.Ident,
*ast.BasicLit,
*ast.CompositeLit,
*ast.ParenExpr,
*ast.SelectorExpr,
*ast.IndexExpr,
*ast.SliceExpr,
*ast.TypeAssertExpr,
*ast.CallExpr,
*ast.StarExpr,
*ast.UnaryExpr,
*ast.ArrayType,
*ast.StructType,
*ast.FuncType,
*ast.InterfaceType,
*ast.MapType,
*ast.ChanType:
return false
case *ast.BinaryExpr:
return expr.Op.Precedence() <= token.EQL.Precedence()
}
return true
}
func (i *instrumenter) instrumentTestMain(astFile *ast.File) {
seenOsExit := false
wrapOsExit := func(n ast.Node) bool {
if call, ok := n.(*ast.CallExpr); ok {
if fn, ok := call.Fun.(*ast.SelectorExpr); ok {
if pkg, ok := fn.X.(*ast.Ident); ok {
if pkg.Name == "os" && fn.Sel.Name == "Exit" {
seenOsExit = true
gen := codeGenerator{n.Pos()}
call.Args[0] = gen.callFinish(call.Args[0])
}
}
}
}
return true
}
for _, decl := range astFile.Decls {
if decl, ok := decl.(*ast.FuncDecl); ok {
if decl.Recv == nil && decl.Name.Name == "TestMain" {
i.hasTestMain = true
ast.Inspect(decl.Body, wrapOsExit)
assert(seenOsExit, "can only handle TestMain with explicit call to os.Exit")
}
}
}
}
//go:embed templates/gobco_fixed.go
var fixedTemplate string
//go:embed templates/gobco_no_testmain_test.go
var noTestMainTemplate string
func (i *instrumenter) writeGobcoFiles(tmpDir string, pkgs []*ast.Package) {
pkgname := pkgs[0].Name
fixPkgname := func(str string) string {
return strings.Replace(str, "package main\n", "package "+pkgname+"\n", 1)
}
i.writeFile(filepath.Join(tmpDir, "gobco_fixed.go"), fixPkgname(fixedTemplate))
i.writeGobcoGo(filepath.Join(tmpDir, "gobco_variable.go"), pkgname)
if !i.hasTestMain {
i.writeFile(filepath.Join(tmpDir, "gobco_no_testmain_test.go"), fixPkgname(noTestMainTemplate))
}
i.writeGobcoBlackBox(pkgs, tmpDir)
}
func (i *instrumenter) writeGobcoGo(filename, pkgname string) {
var sb strings.Builder
sb.WriteString("package " + pkgname + "\n")
sb.WriteString("\n")
sb.WriteString("var gobcoOpts = gobcoOptions{\n")
sb.WriteString(fmt.Sprintf("\timmediately: %v,\n", i.immediately))
sb.WriteString(fmt.Sprintf("\tlistAll: %v,\n", i.listAll))
sb.WriteString("}\n")
sb.WriteString("\n")
sb.WriteString("var gobcoCounts = gobcoStats{\n")
sb.WriteString("\tconds: []gobcoCond{\n")
for _, cond := range i.conds {
sb.WriteString(fmt.Sprintf("\t\t{%q, %q, 0, 0},\n",
cond.pos, cond.text))
}
sb.WriteString("\t},\n")
sb.WriteString("}\n")
i.writeFile(filename, sb.String())
}
// writeGobcoBlackBox makes the function 'GobcoCover' available to black box
// tests (those in 'package x_test' instead of 'package x') by delegating to
// the function of the same name in the main package.
func (i *instrumenter) writeGobcoBlackBox(pkgs []*ast.Package, dstDir string) {
if len(pkgs) < 2 {
return
}
// Copy the 'import' directive from one of the existing files.
pkgName, pkgPath := "", ""
for _, pkg := range pkgs {
forEachFile(pkg, func(name string, file *ast.File) {
for _, imp := range file.Imports {
var impName string
p, err := strconv.Unquote(imp.Path.Value)
ok(err)
if imp.Name != nil {
impName = imp.Name.Name
} else {
impName = filepath.Base(p)
}
if impName == pkgs[0].Name {
pkgName = impName
pkgPath = p
}
}
})
}
text := "" +
"package " + pkgs[0].Name + "_test\n" +
"\n" +
"import " + pkgName + " \"" + pkgPath + "\"\n" +
"\n" +
"func GobcoCover(idx int, cond bool) bool {\n" +
"\t" + "return " + pkgName + ".GobcoCover(idx, cond)\n" +
"}\n"
i.writeFile(filepath.Join(dstDir, "gobco_bridge_test.go"), text)
}
func (i *instrumenter) writeFile(filename string, content string) {
ok(os.WriteFile(filename, []byte(content), 0o666))
}
func (i *instrumenter) str(expr ast.Expr) string {
var sb strings.Builder
ok(printer.Fprint(&sb, i.fset, expr))
return sb.String()
}
func (i *instrumenter) nextVarname() string {
varname := fmt.Sprintf("gobco%d", i.varname)
i.varname++
return varname
}
// codeGenerator generates source code with correct position information.
// If the code were generated with [token.NoPos] instead,
// the comments would be moved to incorrect locations.
type codeGenerator struct {
pos token.Pos
}
func (gen codeGenerator) ident(name string) *ast.Ident {
return &ast.Ident{
NamePos: gen.pos,
Name: name,
}
}
func (gen codeGenerator) eql(x string, y ast.Expr) *ast.BinaryExpr {
return &ast.BinaryExpr{
X: gen.ident(x),
OpPos: gen.pos,
Op: token.EQL,
Y: y,
}
}
func (gen codeGenerator) typeAssertExpr(x string, typ ast.Expr) ast.Expr {
return &ast.TypeAssertExpr{
X: gen.ident(x),
Lparen: gen.pos,
Type: typ,
Rparen: gen.pos,
}
}
func (gen codeGenerator) callFinish(arg ast.Expr) ast.Expr {
return &ast.CallExpr{
Fun: &ast.SelectorExpr{
X: gen.ident("gobcoCounts"),
Sel: gen.ident("finish"),
},
Lparen: gen.pos,
Args: []ast.Expr{arg},
Ellipsis: token.NoPos,
Rparen: gen.pos,
}
}
func (gen codeGenerator) callGobcoCover(idx int, cond ast.Expr) ast.Expr {
return &ast.CallExpr{
Fun: gen.ident("GobcoCover"),
Lparen: gen.pos,
Args: []ast.Expr{
&ast.BasicLit{
ValuePos: gen.pos,
Kind: token.INT,
Value: fmt.Sprint(idx),
},
cond,
},
Rparen: gen.pos,
}
}
func (gen codeGenerator) define(lhs string, rhs ast.Expr) *ast.AssignStmt {
return gen.defineExprs(lhs, []ast.Expr{rhs})
}
func (gen codeGenerator) defineExprs(lhs string, rhs []ast.Expr) *ast.AssignStmt {
return &ast.AssignStmt{
Lhs: []ast.Expr{gen.ident(lhs)},
TokPos: gen.pos,
Tok: token.DEFINE,
Rhs: rhs,
}
}
// defineIsType assigns to lhs whether rhs has the given type.
func (gen codeGenerator) defineIsType(lhs string, rhs string, typ ast.Expr) ast.Stmt {
if isNilIdent(typ) {
return gen.define(lhs, gen.eql(rhs, gen.ident("nil")))
}
return &ast.AssignStmt{
Lhs: []ast.Expr{gen.ident("_"), gen.ident(lhs)},
TokPos: gen.pos,
Tok: token.DEFINE,
Rhs: []ast.Expr{
&ast.TypeAssertExpr{
X: gen.ident(rhs),
Lparen: gen.pos,
Type: typ,
Rparen: gen.pos,
},
},
}
}
func (gen codeGenerator) use(rhs ast.Expr) *ast.AssignStmt {
return &ast.AssignStmt{
Lhs: []ast.Expr{gen.ident("_")},
TokPos: gen.pos,
Tok: token.ASSIGN,
Rhs: []ast.Expr{rhs},
}
}
func (gen codeGenerator) block(stmts []ast.Stmt) *ast.BlockStmt {
return &ast.BlockStmt{
Lbrace: gen.pos,
List: stmts,
Rbrace: gen.pos,
}
}
func (gen codeGenerator) switchStmt(init ast.Stmt, body *ast.BlockStmt) *ast.SwitchStmt {
return &ast.SwitchStmt{
Switch: gen.pos,
Init: init,
Tag: nil,
Body: body,
}
}
func (gen codeGenerator) caseClause(list []ast.Expr, body []ast.Stmt) *ast.CaseClause {
return &ast.CaseClause{
Case: gen.pos,
List: list,
Colon: gen.pos,
Body: body,
}
}
// reposition returns a deep copy of e in which all token positions have been
// replaced with the code generator's position.
func (gen codeGenerator) reposition(e ast.Expr) ast.Expr {
return subst(reflect.ValueOf(e), gen.reset).Interface().(ast.Expr)
}
func (gen codeGenerator) reset(x reflect.Value) reflect.Value {
switch x.Interface().(type) {
case *ast.Object, *ast.Scope:
return reflect.Zero(x.Type())
case token.Pos:
return reflect.ValueOf(gen.pos)
}
return x
}
func subst(
rx reflect.Value,
pre func(reflect.Value) reflect.Value,
) reflect.Value {
x := pre(rx)
switch x.Kind() {
case reflect.Interface:
lv := reflect.New(x.Type()).Elem()
if rv := x.Elem(); rv.IsValid() {
lv.Set(subst(rv, pre))
}
return lv
case reflect.Ptr:
lv := reflect.New(x.Type()).Elem()
if rv := x.Elem(); rv.IsValid() {
lv.Set((subst(rv, pre)).Addr())
}
return lv
case reflect.Slice:
if x.IsNil() {
return reflect.Zero(x.Type())
}
c := reflect.MakeSlice(x.Type(), x.Len(), x.Cap())
for i := 0; i < x.Len(); i++ {
c.Index(i).Set(subst(x.Index(i), pre))
}
return c
case reflect.Struct:
c := reflect.New(x.Type()).Elem()
for i := 0; i < x.NumField(); i++ {
c.Field(i).Set(subst(x.Field(i), pre))
}
return c
default:
// Assume that all other types can be copied trivially.
c := reflect.New(x.Type()).Elem()
c.Set(x)
return c
}
}
// sortedPkgs returns 'package x' first, followed by 'package x_test'.
func sortedPkgs(m map[string]*ast.Package) []*ast.Package {
var pkgs []*ast.Package
for _, pkg := range m {
pkgs = append(pkgs, pkg)
}
sort.Slice(pkgs, func(i, j int) bool {
return pkgs[i].Name < pkgs[j].Name
})
return pkgs
}
func forEachFile(pkg *ast.Package, action func(string, *ast.File)) {
var fileNames []string
for fileName := range pkg.Files {
fileNames = append(fileNames, fileName)
}
// Sort files, for deterministic output.
sort.Strings(fileNames)
for _, fileName := range fileNames {
action(fileName, pkg.Files[fileName])
}
}
func isNilIdent(e ast.Expr) bool {
again:
if p, ok := e.(*ast.ParenExpr); ok {
e = p.X
goto again
}
ident, ok := e.(*ast.Ident)
return ok && ident.Name == "nil"
}
func shouldBuild(filename string) bool {
ctx := build.Context{GOOS: runtime.GOOS, GOARCH: runtime.GOARCH}
m, err := ctx.MatchFile(filepath.Split(filename))
ok(err)
return m
}