VictoriaMetrics/lib/logstorage/pattern.go

243 lines
4.3 KiB
Go
Raw Normal View History

2024-05-22 19:01:20 +00:00
package logstorage
import (
"fmt"
"html"
"strconv"
"strings"
)
// pattern represents text pattern in the form 'some_text<some_field>other_text...'
type pattern struct {
// steps contains steps for extracting fields from string
steps []patternStep
// matches contains matches for every step in steps
matches []string
// fields contains matches for non-empty fields
fields []patternField
}
type patternField struct {
name string
value *string
}
type patternStep struct {
prefix string
2024-05-24 01:06:55 +00:00
field string
fieldOpt string
2024-05-22 19:01:20 +00:00
}
func (ptn *pattern) clone() *pattern {
2024-05-24 01:06:55 +00:00
matches := make([]string, len(ptn.steps))
var fields []patternField
for i, step := range ptn.steps {
if step.field != "" {
fields = append(fields, patternField{
name: step.field,
value: &matches[i],
})
}
2024-05-22 19:01:20 +00:00
}
2024-05-24 01:06:55 +00:00
2024-05-22 19:01:20 +00:00
return &pattern{
2024-05-24 01:06:55 +00:00
steps: ptn.steps,
2024-05-22 19:01:20 +00:00
matches: matches,
fields: fields,
}
}
func parsePattern(s string) (*pattern, error) {
steps, err := parsePatternSteps(s)
if err != nil {
return nil, err
}
// Verify that prefixes are non-empty between fields. The first prefix may be empty.
for i := 1; i < len(steps); i++ {
if steps[i].prefix == "" {
return nil, fmt.Errorf("missing delimiter between <%s> and <%s>", steps[i-1].field, steps[i].field)
}
}
// Build pattern struct
matches := make([]string, len(steps))
var fields []patternField
for i, step := range steps {
if step.field != "" {
fields = append(fields, patternField{
name: step.field,
value: &matches[i],
})
}
}
2024-05-24 01:06:55 +00:00
if len(fields) == 0 {
return nil, fmt.Errorf("pattern %q must contain at least a single named field in the form <field_name>", s)
}
2024-05-22 19:01:20 +00:00
2024-05-24 01:06:55 +00:00
ptn := &pattern{
steps: steps,
matches: matches,
fields: fields,
}
return ptn, nil
2024-05-22 19:01:20 +00:00
}
func (ptn *pattern) apply(s string) {
clear(ptn.matches)
steps := ptn.steps
2024-05-24 01:06:55 +00:00
n, prefixLen := prefixIndex(s, steps[0].prefix)
if n < 0 {
// Mismatch
return
2024-05-22 19:01:20 +00:00
}
2024-05-24 01:06:55 +00:00
s = s[n+prefixLen:]
2024-05-22 19:01:20 +00:00
matches := ptn.matches
for i := range steps {
nextPrefix := ""
if i+1 < len(steps) {
nextPrefix = steps[i+1].prefix
}
2024-05-24 01:06:55 +00:00
us, nOffset := tryUnquoteString(s, steps[i].fieldOpt)
2024-05-22 19:01:20 +00:00
if nOffset >= 0 {
// Matched quoted string
matches[i] = us
s = s[nOffset:]
if !strings.HasPrefix(s, nextPrefix) {
// Mismatch
return
}
s = s[len(nextPrefix):]
} else {
// Match unquoted string until the nextPrefix
if nextPrefix == "" {
matches[i] = s
return
}
2024-05-24 01:06:55 +00:00
n, prefixLen := prefixIndex(s, nextPrefix)
2024-05-22 19:01:20 +00:00
if n < 0 {
// Mismatch
return
}
matches[i] = s[:n]
2024-05-24 01:06:55 +00:00
s = s[n+prefixLen:]
2024-05-22 19:01:20 +00:00
}
}
}
2024-05-24 01:06:55 +00:00
func prefixIndex(s, prefix string) (int, int) {
if len(prefix) == 0 {
return 0, 0
}
n := strings.Index(s, prefix)
if n < 0 {
return -1, 0
}
return n, len(prefix)
}
func tryUnquoteString(s, opt string) (string, int) {
if opt == "plain" {
return "", -1
}
2024-05-22 19:01:20 +00:00
if len(s) == 0 {
2024-05-24 01:06:55 +00:00
return "", -1
2024-05-22 19:01:20 +00:00
}
if s[0] != '"' && s[0] != '`' {
2024-05-24 01:06:55 +00:00
return "", -1
2024-05-22 19:01:20 +00:00
}
qp, err := strconv.QuotedPrefix(s)
if err != nil {
2024-05-24 01:06:55 +00:00
return "", -1
2024-05-22 19:01:20 +00:00
}
us, err := strconv.Unquote(qp)
if err != nil {
2024-05-24 01:06:55 +00:00
return "", -1
2024-05-22 19:01:20 +00:00
}
return us, len(qp)
}
func parsePatternSteps(s string) ([]patternStep, error) {
steps, err := parsePatternStepsInternal(s)
if err != nil {
return nil, err
}
2024-05-24 01:06:55 +00:00
// unescape prefixes
2024-05-22 19:01:20 +00:00
for i := range steps {
step := &steps[i]
step.prefix = html.UnescapeString(step.prefix)
}
// extract options part from fields
for i := range steps {
step := &steps[i]
field := step.field
if n := strings.IndexByte(field, ':'); n >= 0 {
2024-05-24 01:06:55 +00:00
step.fieldOpt = strings.TrimSpace(field[:n])
field = field[n+1:]
2024-05-22 19:01:20 +00:00
}
2024-05-24 01:06:55 +00:00
step.field = strings.TrimSpace(field)
2024-05-22 19:01:20 +00:00
}
return steps, nil
}
func parsePatternStepsInternal(s string) ([]patternStep, error) {
if len(s) == 0 {
return nil, nil
}
var steps []patternStep
n := strings.IndexByte(s, '<')
if n < 0 {
steps = append(steps, patternStep{
prefix: s,
})
return steps, nil
}
prefix := s[:n]
s = s[n+1:]
for {
n := strings.IndexByte(s, '>')
if n < 0 {
return nil, fmt.Errorf("missing '>' for <%s", s)
}
field := s[:n]
s = s[n+1:]
if field == "_" || field == "*" {
field = ""
}
steps = append(steps, patternStep{
prefix: prefix,
field: field,
})
if len(s) == 0 {
break
}
n = strings.IndexByte(s, '<')
if n < 0 {
steps = append(steps, patternStep{
prefix: s,
})
break
}
prefix = s[:n]
s = s[n+1:]
}
return steps, nil
}