pkg/jsonlog/time_marshalling.go
27220ecc
 // Package jsonlog provides helper functions to parse and print time (time.Time) as JSON.
 package jsonlog
9ae3134d
 
 import (
 	"errors"
 	"time"
 )
 
 const (
d1a85078
 	// RFC3339NanoFixed is our own version of RFC339Nano because we want one
9ae3134d
 	// that pads the nano seconds part with zeros to ensure
 	// the timestamps are aligned in the logs.
 	RFC3339NanoFixed = "2006-01-02T15:04:05.000000000Z07:00"
d1a85078
 	// JSONFormat is the format used by FastMarshalJSON
 	JSONFormat = `"` + time.RFC3339Nano + `"`
9ae3134d
 )
 
27220ecc
 // FastTimeMarshalJSON avoids one of the extra allocations that
d1a85078
 // time.MarshalJSON is making.
27220ecc
 func FastTimeMarshalJSON(t time.Time) (string, error) {
9ae3134d
 	if y := t.Year(); y < 0 || y >= 10000 {
 		// RFC 3339 is clear that years are 4 digits exactly.
 		// See golang.org/issue/4556#c15 for more discussion.
d1a85078
 		return "", errors.New("time.MarshalJSON: year outside of range [0,9999]")
9ae3134d
 	}
 	return t.Format(JSONFormat), nil
 }