1 Star 0 Fork 0

sqos / beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
datetime.go 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
package common
import (
"encoding/binary"
"encoding/json"
"errors"
"hash"
"time"
)
// TsLayout is the layout to be used in the timestamp marshaling/unmarshaling everywhere.
// The timezone must always be UTC.
const TsLayout = "2006-01-02T15:04:05.000Z"
// Time is an abstraction for the time.Time type
type Time time.Time
// MarshalJSON implements json.Marshaler interface.
// The time is a quoted string in the JsTsLayout format.
func (t Time) MarshalJSON() ([]byte, error) {
return json.Marshal(time.Time(t).UTC().Format(TsLayout))
}
// UnmarshalJSON implements js.Unmarshaler interface.
// The time is expected to be a quoted string in TsLayout
// format.
func (t *Time) UnmarshalJSON(data []byte) (err error) {
if data[0] != []byte(`"`)[0] || data[len(data)-1] != []byte(`"`)[0] {
return errors.New("Not quoted")
}
*t, err = ParseTime(string(data[1 : len(data)-1]))
return
}
func (t Time) Hash32(h hash.Hash32) error {
err := binary.Write(h, binary.LittleEndian, time.Time(t).UnixNano())
return err
}
// ParseTime parses a time in the TsLayout format.
func ParseTime(timespec string) (Time, error) {
t, err := time.Parse(TsLayout, timespec)
return Time(t), err
}
func (t Time) String() string {
return time.Time(t).Format(TsLayout)
}
// MustParseTime is a convenience equivalent of the ParseTime function
// that panics in case of errors.
func MustParseTime(timespec string) Time {
ts, err := ParseTime(timespec)
if err != nil {
panic(err)
}
return ts
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v5.6.3

搜索帮助

344bd9b3 5694891 D2dac590 5694891