forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
362 lines (322 loc) · 12.9 KB
/
parser.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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package ottl // import "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl"
import (
"context"
"errors"
"fmt"
"github.com/alecthomas/participle/v2"
"go.opentelemetry.io/collector/component"
"go.uber.org/zap"
)
// Statement holds a top level Statement for processing telemetry data. A Statement is a combination of a function
// invocation and the boolean expression to match telemetry for invoking the function.
type Statement[K any] struct {
function Expr[K]
condition BoolExpr[K]
origText string
}
// Execute is a function that will execute the statement's function if the statement's condition is met.
// Returns true if the function was run, returns false otherwise.
// If the statement contains no condition, the function will run and true will be returned.
// In addition, the functions return value is always returned.
func (s *Statement[K]) Execute(ctx context.Context, tCtx K) (any, bool, error) {
condition, err := s.condition.Eval(ctx, tCtx)
if err != nil {
return nil, false, err
}
var result any
if condition {
result, err = s.function.Eval(ctx, tCtx)
if err != nil {
return nil, true, err
}
}
return result, condition, nil
}
// Condition holds a top level Condition. A Condition is a boolean expression to match telemetry.
type Condition[K any] struct {
condition BoolExpr[K]
origText string
}
// Eval returns true if the condition was met for the given TransformContext and false otherwise.
func (c *Condition[K]) Eval(ctx context.Context, tCtx K) (bool, error) {
return c.condition.Eval(ctx, tCtx)
}
// Parser provides the means to parse OTTL StatementSequence and Conditions given a specific set of functions,
// a PathExpressionParser, and an EnumParser.
type Parser[K any] struct {
functions map[string]Factory[K]
pathParser PathExpressionParser[K]
enumParser EnumParser
telemetrySettings component.TelemetrySettings
}
func NewParser[K any](
functions map[string]Factory[K],
pathParser PathExpressionParser[K],
settings component.TelemetrySettings,
options ...Option[K],
) (Parser[K], error) {
if settings.Logger == nil {
return Parser[K]{}, fmt.Errorf("logger cannot be nil")
}
p := Parser[K]{
functions: functions,
pathParser: pathParser,
enumParser: func(*EnumSymbol) (*Enum, error) {
return nil, fmt.Errorf("enums aren't supported for the current context: %T", new(K))
},
telemetrySettings: settings,
}
for _, opt := range options {
opt(&p)
}
return p, nil
}
type Option[K any] func(*Parser[K])
func WithEnumParser[K any](parser EnumParser) Option[K] {
return func(p *Parser[K]) {
p.enumParser = parser
}
}
// ParseStatements parses string statements into ottl.Statement objects ready for execution.
// Returns a slice of statements and a nil error on successful parsing.
// If parsing fails, returns nil and a joined error containing each error per failed statement.
func (p *Parser[K]) ParseStatements(statements []string) ([]*Statement[K], error) {
parsedStatements := make([]*Statement[K], 0, len(statements))
var parseErrs []error
for _, statement := range statements {
ps, err := p.ParseStatement(statement)
if err != nil {
parseErrs = append(parseErrs, fmt.Errorf("unable to parse OTTL statement %q: %w", statement, err))
continue
}
parsedStatements = append(parsedStatements, ps)
}
if len(parseErrs) > 0 {
return nil, errors.Join(parseErrs...)
}
return parsedStatements, nil
}
// ParseStatement parses a single string statement into a Statement struct ready for execution.
// Returns a Statement and a nil error on successful parsing.
// If parsing fails, returns nil and an error.
func (p *Parser[K]) ParseStatement(statement string) (*Statement[K], error) {
parsed, err := parseStatement(statement)
if err != nil {
return nil, err
}
function, err := p.newFunctionCall(parsed.Editor)
if err != nil {
return nil, err
}
expression, err := p.newBoolExpr(parsed.WhereClause)
if err != nil {
return nil, err
}
return &Statement[K]{
function: function,
condition: expression,
origText: statement,
}, nil
}
// ParseConditions parses string conditions into a Condition slice ready for execution.
// Returns a slice of Condition and a nil error on successful parsing.
// If parsing fails, returns nil and an error containing each error per failed condition.
func (p *Parser[K]) ParseConditions(conditions []string) ([]*Condition[K], error) {
parsedConditions := make([]*Condition[K], 0, len(conditions))
var parseErrs []error
for _, condition := range conditions {
ps, err := p.ParseCondition(condition)
if err != nil {
parseErrs = append(parseErrs, fmt.Errorf("unable to parse OTTL condition %q: %w", condition, err))
continue
}
parsedConditions = append(parsedConditions, ps)
}
if len(parseErrs) > 0 {
return nil, errors.Join(parseErrs...)
}
return parsedConditions, nil
}
// ParseCondition parses a single string condition into a Condition objects ready for execution.
// Returns an Condition and a nil error on successful parsing.
// If parsing fails, returns nil and an error.
func (p *Parser[K]) ParseCondition(condition string) (*Condition[K], error) {
parsed, err := parseCondition(condition)
if err != nil {
return nil, err
}
expression, err := p.newBoolExpr(parsed)
if err != nil {
return nil, err
}
return &Condition[K]{
condition: expression,
origText: condition,
}, nil
}
var parser = newParser[parsedStatement]()
var conditionParser = newParser[booleanExpression]()
func parseStatement(raw string) (*parsedStatement, error) {
parsed, err := parser.ParseString("", raw)
if err != nil {
return nil, fmt.Errorf("statement has invalid syntax: %w", err)
}
err = parsed.checkForCustomError()
if err != nil {
return nil, err
}
return parsed, nil
}
func parseCondition(raw string) (*booleanExpression, error) {
parsed, err := conditionParser.ParseString("", raw)
if err != nil {
return nil, fmt.Errorf("condition has invalid syntax: %w", err)
}
err = parsed.checkForCustomError()
if err != nil {
return nil, err
}
return parsed, nil
}
// newParser returns a parser that can be used to read a string into a parsedStatement. An error will be returned if the string
// is not formatted for the DSL.
func newParser[G any]() *participle.Parser[G] {
lex := buildLexer()
parser, err := participle.Build[G](
participle.Lexer(lex),
participle.Unquote("String"),
participle.Elide("whitespace"),
participle.UseLookahead(participle.MaxLookahead), // Allows negative lookahead to work properly in 'value' for 'mathExprLiteral'.
)
if err != nil {
panic("Unable to initialize parser; this is a programming error in OTTL:" + err.Error())
}
return parser
}
// StatementSequence represents a list of statements that will be executed sequentially for a TransformContext
// and will handle errors based on an ErrorMode.
type StatementSequence[K any] struct {
statements []*Statement[K]
errorMode ErrorMode
telemetrySettings component.TelemetrySettings
}
type StatementSequenceOption[K any] func(*StatementSequence[K])
// WithStatementSequenceErrorMode sets the ErrorMode of a StatementSequence
func WithStatementSequenceErrorMode[K any](errorMode ErrorMode) StatementSequenceOption[K] {
return func(s *StatementSequence[K]) {
s.errorMode = errorMode
}
}
// NewStatementSequence creates a new StatementSequence with the provided Statement slice and component.TelemetrySettings.
// The default ErrorMode is `Propagate`.
// You may also augment the StatementSequence with a slice of StatementSequenceOption.
func NewStatementSequence[K any](statements []*Statement[K], telemetrySettings component.TelemetrySettings, options ...StatementSequenceOption[K]) StatementSequence[K] {
s := StatementSequence[K]{
statements: statements,
errorMode: PropagateError,
telemetrySettings: telemetrySettings,
}
for _, op := range options {
op(&s)
}
return s
}
// Execute is a function that will execute all the statements in the StatementSequence list.
// When the ErrorMode of the StatementSequence is `propagate`, errors cause the execution to halt and the error is returned.
// When the ErrorMode of the StatementSequence is `ignore`, errors are logged and execution continues to the next statement.
// When the ErrorMode of the StatementSequence is `silent`, errors are not logged and execution continues to the next statement.
func (s *StatementSequence[K]) Execute(ctx context.Context, tCtx K) error {
for _, statement := range s.statements {
_, _, err := statement.Execute(ctx, tCtx)
if err != nil {
if s.errorMode == PropagateError {
err = fmt.Errorf("failed to execute statement: %v, %w", statement.origText, err)
return err
}
if s.errorMode == IgnoreError {
s.telemetrySettings.Logger.Warn("failed to execute statement", zap.Error(err), zap.String("statement", statement.origText))
}
}
}
return nil
}
// ConditionSequence represents a list of Conditions that will be evaluated sequentially for a TransformContext
// and will handle errors returned by conditions based on an ErrorMode.
// By default, the conditions are ORed together, but they can be ANDed together using the WithLogicOperation option.
type ConditionSequence[K any] struct {
conditions []*Condition[K]
errorMode ErrorMode
telemetrySettings component.TelemetrySettings
logicOp LogicOperation
}
type ConditionSequenceOption[K any] func(*ConditionSequence[K])
// WithConditionSequenceErrorMode sets the ErrorMode of a ConditionSequence
func WithConditionSequenceErrorMode[K any](errorMode ErrorMode) ConditionSequenceOption[K] {
return func(c *ConditionSequence[K]) {
c.errorMode = errorMode
}
}
// WithLogicOperation sets the LogicOperation of a ConditionSequence
// When setting AND the conditions will be ANDed together.
// When setting OR the conditions will be ORed together.
func WithLogicOperation[K any](logicOp LogicOperation) ConditionSequenceOption[K] {
return func(c *ConditionSequence[K]) {
c.logicOp = logicOp
}
}
// NewConditionSequence creates a new ConditionSequence with the provided Condition slice and component.TelemetrySettings.
// The default ErrorMode is `Propagate` and the default LogicOperation is `OR`.
// You may also augment the ConditionSequence with a slice of ConditionSequenceOption.
func NewConditionSequence[K any](conditions []*Condition[K], telemetrySettings component.TelemetrySettings, options ...ConditionSequenceOption[K]) ConditionSequence[K] {
c := ConditionSequence[K]{
conditions: conditions,
errorMode: PropagateError,
telemetrySettings: telemetrySettings,
logicOp: Or,
}
for _, op := range options {
op(&c)
}
return c
}
// Eval evaluates the result of each Condition in the ConditionSequence.
// The boolean logic between conditions is based on the ConditionSequence's Logic Operator.
// If using the default OR LogicOperation, if any Condition evaluates to true, then true is returned and if all Conditions evaluate to false, then false is returned.
// If using the AND LogicOperation, if any Condition evaluates to false, then false is returned and if all Conditions evaluate to true, then true is returned.
// When the ErrorMode of the ConditionSequence is `propagate`, errors cause the evaluation to be false and an error is returned.
// When the ErrorMode of the ConditionSequence is `ignore`, errors are logged and cause the evaluation to continue to the next condition.
// When the ErrorMode of the ConditionSequence is `silent`, errors are not logged and cause the evaluation to continue to the next condition.
// When using the AND LogicOperation with the `ignore` ErrorMode the sequence will evaluate to false if all conditions error.
func (c *ConditionSequence[K]) Eval(ctx context.Context, tCtx K) (bool, error) {
var atLeastOneMatch bool
for _, condition := range c.conditions {
match, err := condition.Eval(ctx, tCtx)
if err != nil {
if c.errorMode == PropagateError {
err = fmt.Errorf("failed to eval condition: %v, %w", condition.origText, err)
return false, err
}
if c.errorMode == IgnoreError {
c.telemetrySettings.Logger.Warn("failed to eval condition", zap.Error(err), zap.String("condition", condition.origText))
}
continue
}
if match {
if c.logicOp == Or {
return true, nil
}
atLeastOneMatch = true
}
if !match && c.logicOp == And {
return false, nil
}
}
// When ANDing it is possible to arrive here not because everything was true, but because everything errored and was ignored.
// In that situation, we don't want to return True when no conditions actually passed. In a situation when everything failed
// we are essentially left with an empty set, which is normally evaluated in mathematics as False. We will use that
// idea to return False when ANDing and everything errored. We use atLeastOneMatch here to return true if anything did match.
// It is not possible to get here if any condition during an AND explicitly failed.
return c.logicOp == And && atLeastOneMatch, nil
}