2019-08-30 21:51:14 +03:00
|
|
|
// For more tutorials: https://bj.learngoprogramming.com
|
|
|
|
//
|
|
|
|
// Copyright © 2018 Inanc Gumus
|
|
|
|
// Learn Go Programming Course
|
|
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
//
|
|
|
|
|
|
|
|
package parse
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
|
|
|
// JSONParser parses json records.
|
|
|
|
type JSONParser struct {
|
|
|
|
in *json.Decoder
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// JSON creates a json parser.
|
|
|
|
func JSON(r io.Reader) *JSONParser {
|
|
|
|
return &JSONParser{
|
|
|
|
in: json.NewDecoder(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 *JSONParser) Parse() bool {
|
|
|
|
if p.err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
p.last.Reset()
|
2019-08-31 12:38:50 +03:00
|
|
|
|
2019-08-30 21:51:14 +03:00
|
|
|
err := p.in.Decode(&p.last)
|
|
|
|
if err == io.EOF {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
p.err = err
|
|
|
|
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value returns the most recent record parsed by a call to Parse.
|
2019-08-31 12:38:50 +03:00
|
|
|
func (p *JSONParser) 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 *JSONParser) Err() error {
|
|
|
|
return p.err
|
|
|
|
}
|