-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmetricexpression.go
215 lines (172 loc) · 4.3 KB
/
metricexpression.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
package ddqp
import (
"fmt"
"strings"
"github.com/alecthomas/participle/v2"
"github.com/alecthomas/participle/v2/lexer"
)
type Operator int
const (
OpMul Operator = iota
OpDiv
OpAdd
OpSub
)
var operatorMap = map[string]Operator{"+": OpAdd, "-": OpSub, "*": OpMul, "/": OpDiv}
func (o *Operator) Capture(s []string) error {
*o = operatorMap[s[0]]
return nil
}
type ExprValue struct {
Subexpression *MetricExpression ` "(" @@ ")"`
MetricQuery *MetricQuery `| @@`
Number *float64 `| @Ident`
}
func (expr *ExprValue) GetQueries() []string {
strs := []string{}
if expr.Subexpression != nil {
m := expr.Subexpression.GetQueries()
for _, v := range m {
strs = append(strs, v)
}
return strs
}
if expr.MetricQuery != nil {
strs = append(strs, expr.MetricQuery.String())
return strs
}
return []string{}
}
type Factor struct {
Base *ExprValue `@@`
}
func (f *Factor) GetQueries() []string {
return f.Base.GetQueries()
}
type OpFactor struct {
Operator Operator `@("*" | "/")`
Factor *Factor `@@`
}
type Term struct {
Left *Factor `@@`
Right []*OpFactor `@@*`
}
func (t *Term) GetQueries() []string {
queries := t.Left.GetQueries()
for _, v := range t.Right {
queries = append(queries, v.Factor.GetQueries()...)
}
return queries
}
type OpTerm struct {
Operator Operator `@("+" | "-")`
Term *Term `@@`
}
type MetricExpression struct {
Pos lexer.Position
Left *Term `@@`
Right []*OpTerm `@@*`
}
func (me *MetricExpression) GetQueries() map[string]string {
queries := me.Left.GetQueries()
for _, v := range me.Right {
rightQueries := v.Term.GetQueries()
queries = append(queries, rightQueries...)
}
queryMap := make(map[string]string)
for key, value := range queries {
queryMap[toCharStr(key+1)] = value
}
return queryMap
}
func toCharStr(i int) string {
const abc = "abcdefghijklmnopqrstuvwxyz"
return abc[i-1 : i]
}
// NewMetricExpressionParser returns a Parser which is capable of interpretting
// a metric expression.
func NewMetricExpressionParser() *MetricExpressionParser {
mep := &MetricExpressionParser{
parser: participle.MustBuild[MetricExpression](
participle.Lexer(lex),
participle.Unquote("String"),
),
}
return mep
}
// Display
func (o Operator) String() string {
switch o {
case OpMul:
return "*"
case OpDiv:
return "/"
case OpSub:
return "-"
case OpAdd:
return "+"
}
panic("unsupported operator")
}
func (expr *ExprValue) String() string {
if expr.Number != nil {
return fmt.Sprintf("%g", *expr.Number)
}
if expr.MetricQuery != nil {
return expr.MetricQuery.String()
}
return "(" + expr.Subexpression.String() + ")"
}
func (f *Factor) String() string {
out := f.Base.String()
return out
}
func (o *OpFactor) String() string {
return fmt.Sprintf("%s %s", o.Operator, o.Factor)
}
func (t *Term) String() string {
out := []string{t.Left.String()}
for _, r := range t.Right {
out = append(out, r.String())
}
return strings.Join(out, " ")
}
func (o *OpTerm) String() string {
return fmt.Sprintf("%s %s", o.Operator, o.Term)
}
func (me *MetricExpression) String() string {
out := []string{me.Left.String()}
for _, r := range me.Right {
out = append(out, r.String())
}
return strings.Join(out, " ")
}
// MetricExpressionParser is parser returned when calling NewMetricExpressionParser.
type MetricExpressionParser struct {
parser *participle.Parser[MetricExpression]
}
// Parse sanitizes the query string and returns the AST and any error.
func (mep *MetricExpressionParser) Parse(expr string) (*MetricExpression, error) {
// the parser doesn't handle queries that are split up across multiple lines
sanitized := strings.ReplaceAll(expr, "\n", "")
// return the raw parsed outpu
return mep.parser.ParseString("", sanitized)
}
// MetricExpressionFormula breaks down a query into its formulaic parts
type MetricExpressionFormula struct {
Expressions map[string]string
Formula string
}
func NewMetricExpressionFormula(expr *MetricExpression) *MetricExpressionFormula {
exprFormula := &MetricExpressionFormula{
Expressions: map[string]string{},
Formula: "",
}
exprFormula.Expressions = expr.GetQueries()
formula := expr.String()
for key, value := range exprFormula.Expressions {
formula = strings.ReplaceAll(formula, value, key)
}
exprFormula.Formula = formula
return exprFormula
}