Files
learngo/logparser/v6/logly/parse/text.go

55 lines
1.0 KiB
Go
Raw Normal View History

2019-08-30 21:51:14 +03:00
// For more tutorials: https://bp.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package parse
import (
"bufio"
"io"
2019-08-31 12:38:50 +03:00
"github.com/inancgumus/learngo/logparser/v6/logly/record"
2019-08-30 21:51:14 +03:00
)
// TextParser parses text based log lines.
type TextParser struct {
in *bufio.Scanner
2019-08-31 12:38:50 +03:00
err error // last error
last *record.Record // last parsed record
2019-08-30 21:51:14 +03:00
}
// Text creates a text parser.
func Text(r io.Reader) *TextParser {
return &TextParser{
in: bufio.NewScanner(r),
2019-08-31 12:38:50 +03:00
last: new(record.Record),
2019-08-30 21:51:14 +03:00
}
}
// Parse the next line.
func (p *TextParser) Parse() bool {
2019-08-31 12:38:50 +03:00
if p.err != nil {
return false
}
if !p.in.Scan() {
2019-08-30 21:51:14 +03:00
return false
}
p.err = p.last.FromText(p.in.Bytes())
2019-08-31 12:38:50 +03:00
2019-08-30 21:51:14 +03:00
return true
}
// Value returns the most recent record parsed by a call to Parse.
2019-08-31 12:38:50 +03:00
func (p *TextParser) Value() record.Record {
2019-08-30 21:51:14 +03:00
return *p.last
}
// Err returns the first error that was encountered by the Log.
func (p *TextParser) Err() error {
return p.err
}