195 lines
4.4 KiB
Go
195 lines
4.4 KiB
Go
|
package tail
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"errors"
|
||
|
"regexp"
|
||
|
"strings"
|
||
|
"time"
|
||
|
|
||
|
"github.com/influxdata/telegraf/config"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// previous => Append current line to previous line
|
||
|
previous multilineMatchWhichLine = iota
|
||
|
// next => next line will be appended to current line
|
||
|
next
|
||
|
)
|
||
|
|
||
|
// Indicates relation to the multiline event: previous or next
|
||
|
type multilineMatchWhichLine int
|
||
|
|
||
|
type multiline struct {
|
||
|
config *multilineConfig
|
||
|
enabled bool
|
||
|
patternRegexp *regexp.Regexp
|
||
|
quote byte
|
||
|
inQuote bool
|
||
|
}
|
||
|
|
||
|
type multilineConfig struct {
|
||
|
Pattern string `toml:"pattern"`
|
||
|
MatchWhichLine multilineMatchWhichLine `toml:"match_which_line"`
|
||
|
InvertMatch bool `toml:"invert_match"`
|
||
|
PreserveNewline bool `toml:"preserve_newline"`
|
||
|
Quotation string `toml:"quotation"`
|
||
|
Timeout *config.Duration `toml:"timeout"`
|
||
|
}
|
||
|
|
||
|
func (m *multiline) isEnabled() bool {
|
||
|
return m.enabled
|
||
|
}
|
||
|
|
||
|
func (m *multiline) processLine(text string, buffer *bytes.Buffer) string {
|
||
|
if m.matchQuotation(text) || m.matchString(text) {
|
||
|
// Restore the newline removed by tail's scanner
|
||
|
if buffer.Len() > 0 && m.config.PreserveNewline {
|
||
|
buffer.WriteString("\n")
|
||
|
}
|
||
|
buffer.WriteString(text)
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
if m.config.MatchWhichLine == previous {
|
||
|
previousText := buffer.String()
|
||
|
buffer.Reset()
|
||
|
buffer.WriteString(text)
|
||
|
text = previousText
|
||
|
} else {
|
||
|
// next
|
||
|
if buffer.Len() > 0 {
|
||
|
if m.config.PreserveNewline {
|
||
|
buffer.WriteString("\n")
|
||
|
}
|
||
|
buffer.WriteString(text)
|
||
|
text = buffer.String()
|
||
|
buffer.Reset()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return text
|
||
|
}
|
||
|
|
||
|
func (m *multiline) matchQuotation(text string) bool {
|
||
|
if m.config.Quotation == "ignore" {
|
||
|
return false
|
||
|
}
|
||
|
escaped := 0
|
||
|
count := 0
|
||
|
for i := 0; i < len(text); i++ {
|
||
|
if text[i] == '\\' {
|
||
|
escaped++
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
// If we do encounter a backslash-quote combination, we interpret this
|
||
|
// as an escaped-quoted and should not count the quote. However,
|
||
|
// backslash-backslash combinations (or any even number of backslashes)
|
||
|
// are interpreted as a literal backslash not escaping the quote.
|
||
|
if text[i] == m.quote && escaped%2 == 0 {
|
||
|
count++
|
||
|
}
|
||
|
// If we encounter any non-quote, non-backslash character we can
|
||
|
// safely reset the escape state.
|
||
|
escaped = 0
|
||
|
}
|
||
|
even := count%2 == 0
|
||
|
m.inQuote = (m.inQuote && even) || (!m.inQuote && !even)
|
||
|
return m.inQuote
|
||
|
}
|
||
|
|
||
|
func (m *multiline) matchString(text string) bool {
|
||
|
if m.patternRegexp != nil {
|
||
|
return m.patternRegexp.MatchString(text) != m.config.InvertMatch
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *multilineConfig) newMultiline() (*multiline, error) {
|
||
|
var r *regexp.Regexp
|
||
|
|
||
|
if m.Pattern != "" {
|
||
|
var err error
|
||
|
if r, err = regexp.Compile(m.Pattern); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var quote byte
|
||
|
switch m.Quotation {
|
||
|
case "", "ignore":
|
||
|
m.Quotation = "ignore"
|
||
|
case "single-quotes":
|
||
|
quote = '\''
|
||
|
case "double-quotes":
|
||
|
quote = '"'
|
||
|
case "backticks":
|
||
|
quote = '`'
|
||
|
default:
|
||
|
return nil, errors.New("invalid 'quotation' setting")
|
||
|
}
|
||
|
|
||
|
enabled := m.Pattern != "" || quote != 0
|
||
|
if m.Timeout == nil || time.Duration(*m.Timeout).Nanoseconds() == int64(0) {
|
||
|
d := config.Duration(5 * time.Second)
|
||
|
m.Timeout = &d
|
||
|
}
|
||
|
|
||
|
return &multiline{
|
||
|
config: m,
|
||
|
enabled: enabled,
|
||
|
patternRegexp: r,
|
||
|
quote: quote,
|
||
|
}, nil
|
||
|
}
|
||
|
|
||
|
func flush(buffer *bytes.Buffer) string {
|
||
|
if buffer.Len() == 0 {
|
||
|
return ""
|
||
|
}
|
||
|
text := buffer.String()
|
||
|
buffer.Reset()
|
||
|
return text
|
||
|
}
|
||
|
|
||
|
func (w multilineMatchWhichLine) String() string {
|
||
|
switch w {
|
||
|
case previous:
|
||
|
return "previous"
|
||
|
case next:
|
||
|
return "next"
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
// UnmarshalTOML implements ability to unmarshal multilineMatchWhichLine from TOML files.
|
||
|
func (w *multilineMatchWhichLine) UnmarshalTOML(data []byte) (err error) {
|
||
|
return w.UnmarshalText(data)
|
||
|
}
|
||
|
|
||
|
// UnmarshalText implements encoding.TextUnmarshaler
|
||
|
func (w *multilineMatchWhichLine) UnmarshalText(data []byte) (err error) {
|
||
|
s := string(data)
|
||
|
switch strings.ToUpper(s) {
|
||
|
case `PREVIOUS`, `"PREVIOUS"`, `'PREVIOUS'`:
|
||
|
*w = previous
|
||
|
return nil
|
||
|
|
||
|
case `NEXT`, `"NEXT"`, `'NEXT'`:
|
||
|
*w = next
|
||
|
return nil
|
||
|
}
|
||
|
*w = -1
|
||
|
return errors.New("unknown multiline MatchWhichLine")
|
||
|
}
|
||
|
|
||
|
// MarshalText implements encoding.TextMarshaler
|
||
|
func (w multilineMatchWhichLine) MarshalText() ([]byte, error) {
|
||
|
s := w.String()
|
||
|
if s != "" {
|
||
|
return []byte(s), nil
|
||
|
}
|
||
|
return nil, errors.New("unknown multiline MatchWhichLine")
|
||
|
}
|