refactor: logparser v6
This commit is contained in:
36
logparser/v6/logly/record/text.go
Normal file
36
logparser/v6/logly/record/text.go
Normal file
@@ -0,0 +1,36 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package record
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// FromText unmarshals the log line into this record.
|
||||
func (r *Record) FromText(p []byte) (err error) {
|
||||
fields := strings.Fields(string(p))
|
||||
|
||||
if len(fields) != fieldsLength {
|
||||
return fmt.Errorf("wrong number of fields %q", fields)
|
||||
}
|
||||
|
||||
r.Domain = fields[0]
|
||||
r.Page = fields[1]
|
||||
|
||||
const msg = "record.UnmarshalText %q: %v"
|
||||
if r.Visits, err = strconv.Atoi(fields[2]); err != nil {
|
||||
return fmt.Errorf(msg, "visits", err)
|
||||
}
|
||||
if r.Uniques, err = strconv.Atoi(fields[3]); err != nil {
|
||||
return fmt.Errorf(msg, "uniques", err)
|
||||
}
|
||||
|
||||
return r.validate()
|
||||
}
|
Reference in New Issue
Block a user