-
Notifications
You must be signed in to change notification settings - Fork 2
/
containedctx.go
45 lines (37 loc) · 1 KB
/
containedctx.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
package containedctx
import (
"go/ast"
"golang.org/x/tools/go/analysis"
"golang.org/x/tools/go/analysis/passes/inspect"
"golang.org/x/tools/go/ast/inspector"
)
const doc = "containedctx is a linter that detects struct contained context.Context field"
// Analyzer is the contanedctx analyzer
var Analyzer = &analysis.Analyzer{
Name: "containedctx",
Doc: doc,
Run: run,
Requires: []*analysis.Analyzer{
inspect.Analyzer,
},
}
func run(pass *analysis.Pass) (interface{}, error) {
inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
nodeFilter := []ast.Node{
(*ast.StructType)(nil),
}
inspect.Preorder(nodeFilter, func(n ast.Node) {
switch structTyp := n.(type) {
case *ast.StructType:
if structTyp.Fields.List == nil {
return
}
for _, field := range structTyp.Fields.List {
if pass.TypesInfo.TypeOf(field.Type).String() == "context.Context" {
pass.Reportf(field.Pos(), "found a struct that contains a context.Context field")
}
}
}
})
return nil, nil
}