-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrangechecks.go
127 lines (92 loc) · 2.2 KB
/
rangechecks.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
package consistent
//go:generate go run ./cmd/rangeexprstyles rangechecks_styles.go
//go:generate gofmt -w rangechecks_styles.go
import (
"go/ast"
"go/token"
"github.com/go-toolsmith/astcast"
"github.com/go-toolsmith/astequal"
"golang.org/x/tools/go/analysis"
)
const (
rangeChecksLeft = "left"
rangeChecksCenter = "center"
)
var rangeChecksFlagAllowedValues = []string{flagIgnore, rangeChecksLeft, rangeChecksCenter}
var rangeCheckFlagDesc = map[string]string{
rangeChecksLeft: "write common term in range expression on the left",
rangeChecksCenter: "write common term in range expression in the center",
}
func checkRangeCheck(pass *analysis.Pass, expr *ast.BinaryExpr, mode string) {
if mode == flagIgnore {
return
}
exprStyle := rangeExprStyle(expr)
if exprStyle == "" || exprStyle == mode {
return
}
reportf(pass, expr.Pos(), rangeCheckFlagDesc[mode])
}
func rangeExprStyle(expr *ast.BinaryExpr) string { //nolint:cyclop,gocognit // collecting a bunch of flags
if expr.Op != token.LAND && expr.Op != token.LOR {
return ""
}
left := astcast.ToBinaryExpr(expr.X)
if !isCompareExpr(left) {
return ""
}
right := astcast.ToBinaryExpr(expr.Y)
if !isCompareExpr(right) {
return ""
}
exprBits := uint16(0)
if expr.Op == token.LAND {
exprBits |= 1
}
exprBits <<= 1
if expr.Op == token.LOR {
exprBits |= 1
}
exprBits <<= 1
if left.Op == token.LSS || left.Op == token.LEQ {
exprBits |= 1
}
exprBits <<= 1
if left.Op == token.GTR || left.Op == token.GEQ {
exprBits |= 1
}
exprBits <<= 1
if right.Op == token.LSS || right.Op == token.LEQ {
exprBits |= 1
}
exprBits <<= 1
if right.Op == token.GTR || right.Op == token.GEQ {
exprBits |= 1
}
exprBits <<= 1
if astequal.Expr(left.X, right.X) {
exprBits |= 1
}
exprBits <<= 1
if astequal.Expr(left.Y, right.X) {
exprBits |= 1
}
exprBits <<= 1
if astequal.Expr(left.Y, right.Y) {
exprBits |= 1
}
exprBits <<= 1
if astequal.Expr(left.X, right.Y) {
exprBits |= 1
}
// end of bits, no shift here
return rangeExprStyles[exprBits]
}
func isCompareExpr(expr *ast.BinaryExpr) bool {
switch expr.Op {
case token.LSS, token.LEQ, token.GTR, token.GEQ:
return true
default:
return false
}
}