forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatstring.go
413 lines (336 loc) · 8.85 KB
/
formatstring.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
package fmtstr
import (
"bytes"
"errors"
"fmt"
"strings"
)
// FormatEvaler evaluates some format.
type FormatEvaler interface {
// Eval will execute the format and writes the results into
// the provided output buffer. Returns error on failure.
Eval(ctx interface{}, out *bytes.Buffer) error
}
// StringFormatter interface extends FormatEvaler adding support for querying
// formatter meta data.
type StringFormatter interface {
FormatEvaler
// Run execute the formatter returning the generated string.
Run(ctx interface{}) (string, error)
// IsConst returns true, if execution of formatter will always return the
// same constant string.
IsConst() bool
}
// VariableOp defines one expansion variable, including operator and parameter.
// variable operations are always introduced by a collon ':'.
// For example the format string %{x:p1:?p2} has 2 variable operations
// (":", "p1") and (":?", "p2"). It's up to concrete format string implementation
// to compile and interpret variable ops.
type VariableOp struct {
op string
param string
}
type constStringFormatter struct {
s string
}
type execStringFormatter struct {
evalers []FormatEvaler
}
type formatElement interface {
compile(ctx *compileCtx) (FormatEvaler, error)
}
type compileCtx struct {
compileVariable VariableCompiler
}
// VariableCompiler is used to compile a variable expansion into
// an FormatEvaler to be used with the format-string.
type VariableCompiler func(string, []VariableOp) (FormatEvaler, error)
// StringElement implements StringFormatter always returning a constant string.
type StringElement struct {
s string
}
type variableElement struct {
field string
ops []VariableOp
}
type token struct {
typ tokenType
val string
}
type tokenType uint16
type lexer chan token
const (
tokErr tokenType = iota + 1
tokString
tokOpen
tokClose
tokOperator
)
var (
openToken = token{tokOpen, "%{"}
closeToken = token{tokClose, "}"}
)
var (
errNestedVar = errors.New("format string variables can not be nested")
errUnexpectedOperator = errors.New("unexpected formatter operator")
errMissingClose = errors.New("missing closing '}'")
errEmptyFormat = errors.New("empty format expansion")
errParamsOpsMismatch = errors.New("more parameters then ops parsed")
)
// Compile compiles an input format string into a StringFormatter. The variable
// compiler `vc` is invoked for every variable expansion found in the input format
// string. Returns error on parse failure or if variable compiler fails.
//
// Variable expansion are enclosed in expansion braces `%{<expansion>}`.
// The `<expansion>` can contain additional parameters separated by ops
// introduced by collons ':'. For example the format string `%{value:v1:?v2}`
// will be parsed into variable expansion on `value` with variable ops
// `[(":", "v1"), (":?", "v2")]`. It's up to the variable compiler to interpret
// content and variable ops.
//
// The back-slash character `\` acts as escape character.
func Compile(in string, vc VariableCompiler) (StringFormatter, error) {
ctx := &compileCtx{vc}
return compile(ctx, in)
}
func compile(ctx *compileCtx, in string) (StringFormatter, error) {
lexer := makeLexer(in)
defer lexer.Finish()
// parse format string
elements, err := parse(lexer)
if err != nil {
return nil, err
}
// compile elements into evaluators
evalers := make([]FormatEvaler, len(elements))
for i := range elements {
evalers[i], err = elements[i].compile(ctx)
if err != nil {
return nil, err
}
}
evalers = optimize(evalers)
// try to create constant formatter for constant string
if len(evalers) == 1 {
if se, ok := evalers[0].(StringElement); ok {
return constStringFormatter{se.s}, nil
}
}
// create executable string formatter
fmt := execStringFormatter{
evalers: evalers,
}
return fmt, nil
}
// optimize optimizes the sequence of evaluators by combining consecutive
// StringElement instances into one StringElement
func optimize(in []FormatEvaler) []FormatEvaler {
out := in[:0]
var active StringElement
isActive := false
for _, evaler := range in {
se, isString := evaler.(StringElement)
if !isString {
if isActive {
out = append(out, active)
isActive = false
}
out = append(out, evaler)
continue
}
if !isActive {
active = se
isActive = true
continue
}
active.s += se.s
}
if isActive {
out = append(out, active)
}
return out
}
func (f constStringFormatter) Eval(_ interface{}, out *bytes.Buffer) error {
_, err := out.WriteString(f.s)
return err
}
func (f constStringFormatter) Run(_ interface{}) (string, error) {
return f.s, nil
}
func (f constStringFormatter) IsConst() bool {
return true
}
func (f execStringFormatter) Eval(ctx interface{}, out *bytes.Buffer) error {
for _, evaler := range f.evalers {
if err := evaler.Eval(ctx, out); err != nil {
return err
}
}
return nil
}
func (f execStringFormatter) Run(ctx interface{}) (string, error) {
buf := bytes.NewBuffer(nil)
if err := f.Eval(ctx, buf); err != nil {
return "", err
}
return buf.String(), nil
}
func (f execStringFormatter) IsConst() bool {
return false
}
func (e StringElement) compile(ctx *compileCtx) (FormatEvaler, error) {
return e, nil
}
// Eval write the string elements constant string value into
// output buffer.
func (e StringElement) Eval(_ interface{}, out *bytes.Buffer) error {
_, err := out.WriteString(e.s)
return err
}
func makeVariableElement(f string, ops, params []string) (variableElement, error) {
if len(params) > len(ops) {
return variableElement{}, errParamsOpsMismatch
}
out := make([]VariableOp, len(ops))
for i := range params {
out[i] = VariableOp{op: ops[i], param: params[i]}
}
if len(ops) > len(params) {
i := len(ops) - 1
out[i] = VariableOp{op: ops[i]}
}
return variableElement{field: f, ops: out}, nil
}
func (e variableElement) compile(ctx *compileCtx) (FormatEvaler, error) {
return ctx.compileVariable(e.field, e.ops)
}
func parse(lex lexer) ([]formatElement, error) {
var elems []formatElement
for token := range lex.Tokens() {
switch token.typ {
case tokErr:
return nil, errors.New(token.val)
case tokString:
elems = append(elems, StringElement{token.val})
case tokOpen:
elem, err := parseVariable(lex)
if err != nil {
return nil, err
}
elems = append(elems, elem)
case tokClose, tokOperator:
// should not happen, but let's return error just in case
return nil, fmt.Errorf("Token '%v'(%v) not allowed", token.val, token.typ)
}
}
return elems, nil
}
func parseVariable(lex lexer) (formatElement, error) {
var strings []string
var ops []string
for token := range lex.Tokens() {
switch token.typ {
case tokErr:
return nil, errors.New(token.val)
case tokOpen:
return nil, errNestedVar
case tokClose:
if len(strings) == 0 {
return nil, errEmptyFormat
}
return makeVariableElement(strings[0], ops, strings[1:])
case tokString:
if len(strings) != len(ops) {
return nil, fmt.Errorf("Unexpected string token %v, expected operator", token.val)
}
strings = append(strings, token.val)
case tokOperator:
if len(strings) == 0 {
return nil, errUnexpectedOperator
}
ops = append(ops, token.val)
if len(ops) > len(strings) {
return nil, fmt.Errorf("Consecutive operator tokens '%v'", token.val)
}
default:
return nil, fmt.Errorf("Unexpected token '%v' (%v)", token.val, token.typ)
}
}
return nil, errMissingClose
}
func makeLexer(in string) lexer {
lex := make(chan token, 1)
go func() {
off := 0
content := in
defer func() {
if len(content) > 0 {
lex <- token{tokString, content}
}
close(lex)
}()
strToken := func(s string) {
if s != "" {
lex <- token{tokString, s}
}
}
opToken := func(op string) token {
return token{tokOperator, op}
}
varcount := 0
for len(content) > 0 {
idx := -1
if varcount == 0 {
idx = strings.IndexAny(content[off:], `%\`)
} else {
idx = strings.IndexAny(content[off:], `%:}\`)
}
if idx == -1 {
return
}
idx += off
off = idx + 1
switch content[idx] {
case '\\': // escape next character
content = content[:idx] + content[off:]
continue
case ':':
if len(content) <= off { // found ':' at end of string
return
}
strToken(content[:idx])
op := ":"
if strings.ContainsRune("!@#&*=+<>?", rune(content[off])) {
off++
op = content[idx : off+1]
}
lex <- opToken(op)
case '}':
strToken(content[:idx])
lex <- closeToken
varcount--
case '%':
if len(content) <= off { // found '%' at end of string
return
}
if content[off] != '{' {
continue // no variable expression
}
strToken(content[:idx])
lex <- openToken
off++
varcount++
}
content = content[off:]
off = 0
}
}()
return lex
}
func (l lexer) Tokens() <-chan token {
return (chan token)(l)
}
func (l lexer) Finish() {
for range l.Tokens() {
}
}