2017-07-26 03:51:49 +00:00
|
|
|
package json
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2019-04-19 22:48:31 +00:00
|
|
|
const (
|
2022-03-20 19:19:42 +00:00
|
|
|
// Import from zlog/global.go
|
2019-04-19 22:48:31 +00:00
|
|
|
timeFormatUnix = ""
|
|
|
|
timeFormatUnixMs = "UNIXMS"
|
2019-10-10 03:35:32 +00:00
|
|
|
timeFormatUnixMicro = "UNIXMICRO"
|
2019-04-19 22:48:31 +00:00
|
|
|
)
|
|
|
|
|
2018-03-15 17:29:26 +00:00
|
|
|
// AppendTime formats the input time with the given format
|
|
|
|
// and appends the encoded string to the input byte slice.
|
2018-05-10 22:01:41 +00:00
|
|
|
func (e Encoder) AppendTime(dst []byte, t time.Time, format string) []byte {
|
2019-04-19 22:48:31 +00:00
|
|
|
switch format {
|
|
|
|
case timeFormatUnix:
|
2018-05-10 22:01:41 +00:00
|
|
|
return e.AppendInt64(dst, t.Unix())
|
2019-04-19 22:48:31 +00:00
|
|
|
case timeFormatUnixMs:
|
|
|
|
return e.AppendInt64(dst, t.UnixNano()/1000000)
|
2019-10-10 03:35:32 +00:00
|
|
|
case timeFormatUnixMicro:
|
|
|
|
return e.AppendInt64(dst, t.UnixNano()/1000)
|
2017-07-26 03:51:49 +00:00
|
|
|
}
|
|
|
|
return append(t.AppendFormat(append(dst, '"'), format), '"')
|
|
|
|
}
|
|
|
|
|
2018-03-15 17:29:26 +00:00
|
|
|
// AppendTimes converts the input times with the given format
|
|
|
|
// and appends the encoded string list to the input byte slice.
|
2018-05-10 22:01:41 +00:00
|
|
|
func (Encoder) AppendTimes(dst []byte, vals []time.Time, format string) []byte {
|
2019-04-19 22:48:31 +00:00
|
|
|
switch format {
|
|
|
|
case timeFormatUnix:
|
2017-07-26 03:51:49 +00:00
|
|
|
return appendUnixTimes(dst, vals)
|
2019-04-19 22:48:31 +00:00
|
|
|
case timeFormatUnixMs:
|
|
|
|
return appendUnixMsTimes(dst, vals)
|
2017-07-26 03:51:49 +00:00
|
|
|
}
|
|
|
|
if len(vals) == 0 {
|
|
|
|
return append(dst, '[', ']')
|
|
|
|
}
|
|
|
|
dst = append(dst, '[')
|
|
|
|
dst = append(vals[0].AppendFormat(append(dst, '"'), format), '"')
|
|
|
|
if len(vals) > 1 {
|
|
|
|
for _, t := range vals[1:] {
|
|
|
|
dst = append(t.AppendFormat(append(dst, ',', '"'), format), '"')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst = append(dst, ']')
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
func appendUnixTimes(dst []byte, vals []time.Time) []byte {
|
|
|
|
if len(vals) == 0 {
|
|
|
|
return append(dst, '[', ']')
|
|
|
|
}
|
|
|
|
dst = append(dst, '[')
|
|
|
|
dst = strconv.AppendInt(dst, vals[0].Unix(), 10)
|
|
|
|
if len(vals) > 1 {
|
|
|
|
for _, t := range vals[1:] {
|
2018-05-09 10:51:07 +00:00
|
|
|
dst = strconv.AppendInt(append(dst, ','), t.Unix(), 10)
|
2017-07-26 03:51:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dst = append(dst, ']')
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
2019-04-19 22:48:31 +00:00
|
|
|
func appendUnixMsTimes(dst []byte, vals []time.Time) []byte {
|
|
|
|
if len(vals) == 0 {
|
|
|
|
return append(dst, '[', ']')
|
|
|
|
}
|
|
|
|
dst = append(dst, '[')
|
|
|
|
dst = strconv.AppendInt(dst, vals[0].UnixNano()/1000000, 10)
|
|
|
|
if len(vals) > 1 {
|
|
|
|
for _, t := range vals[1:] {
|
|
|
|
dst = strconv.AppendInt(append(dst, ','), t.UnixNano()/1000000, 10)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst = append(dst, ']')
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
2018-03-15 17:29:26 +00:00
|
|
|
// AppendDuration formats the input duration with the given unit & format
|
|
|
|
// and appends the encoded string to the input byte slice.
|
2018-05-10 22:01:41 +00:00
|
|
|
func (e Encoder) AppendDuration(dst []byte, d time.Duration, unit time.Duration, useInt bool) []byte {
|
2017-07-26 03:51:49 +00:00
|
|
|
if useInt {
|
|
|
|
return strconv.AppendInt(dst, int64(d/unit), 10)
|
|
|
|
}
|
2018-05-10 22:01:41 +00:00
|
|
|
return e.AppendFloat64(dst, float64(d)/float64(unit))
|
2017-07-26 03:51:49 +00:00
|
|
|
}
|
|
|
|
|
2018-03-15 17:29:26 +00:00
|
|
|
// AppendDurations formats the input durations with the given unit & format
|
|
|
|
// and appends the encoded string list to the input byte slice.
|
2018-05-10 22:01:41 +00:00
|
|
|
func (e Encoder) AppendDurations(dst []byte, vals []time.Duration, unit time.Duration, useInt bool) []byte {
|
2017-07-26 03:51:49 +00:00
|
|
|
if len(vals) == 0 {
|
|
|
|
return append(dst, '[', ']')
|
|
|
|
}
|
|
|
|
dst = append(dst, '[')
|
2018-05-10 22:01:41 +00:00
|
|
|
dst = e.AppendDuration(dst, vals[0], unit, useInt)
|
2017-07-26 03:51:49 +00:00
|
|
|
if len(vals) > 1 {
|
|
|
|
for _, d := range vals[1:] {
|
2018-05-10 22:01:41 +00:00
|
|
|
dst = e.AppendDuration(append(dst, ','), d, unit, useInt)
|
2017-07-26 03:51:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dst = append(dst, ']')
|
|
|
|
return dst
|
|
|
|
}
|