2014-09-15 14:44:58 -04:00
|
|
|
package timeutils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-10-06 15:27:56 -04:00
|
|
|
// RFC3339NanoFixed is our own version of RFC339Nano because we want one
|
2014-09-15 14:44:58 -04:00
|
|
|
// 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"
|
2014-10-06 15:27:56 -04:00
|
|
|
// JSONFormat is the format used by FastMarshalJSON
|
|
|
|
JSONFormat = `"` + time.RFC3339Nano + `"`
|
2014-09-15 14:44:58 -04:00
|
|
|
)
|
|
|
|
|
2014-10-06 15:27:56 -04:00
|
|
|
// FastMarshalJSON avoids one of the extra allocations that
|
|
|
|
// time.MarshalJSON is making.
|
2014-09-15 14:44:58 -04:00
|
|
|
func FastMarshalJSON(t time.Time) (string, error) {
|
|
|
|
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.
|
2014-10-06 15:27:56 -04:00
|
|
|
return "", errors.New("time.MarshalJSON: year outside of range [0,9999]")
|
2014-09-15 14:44:58 -04:00
|
|
|
}
|
|
|
|
return t.Format(JSONFormat), nil
|
|
|
|
}
|