wireguard-go/tai64n/tai64n.go

42 lines
858 B
Go
Raw Normal View History

2019-01-02 00:55:51 +00:00
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
*/
package tai64n
2017-06-23 11:41:59 +00:00
import (
2017-06-24 13:34:17 +00:00
"bytes"
2017-06-23 11:41:59 +00:00
"encoding/binary"
"time"
)
const (
TimestampSize = 12
base = uint64(0x400000000000000a)
whitenerMask = uint32(0x1000000 - 1)
)
2017-06-23 11:41:59 +00:00
2018-02-11 18:25:33 +00:00
type Timestamp [TimestampSize]byte
2017-06-23 11:41:59 +00:00
func stamp(t time.Time) Timestamp {
2018-02-11 18:25:33 +00:00
var tai64n Timestamp
secs := base + uint64(t.Unix())
nano := uint32(t.Nanosecond()) &^ whitenerMask
2017-06-23 11:41:59 +00:00
binary.BigEndian.PutUint64(tai64n[:], secs)
binary.BigEndian.PutUint32(tai64n[8:], nano)
return tai64n
}
2017-06-24 13:34:17 +00:00
func Now() Timestamp {
return stamp(time.Now())
}
2018-02-11 18:25:33 +00:00
func (t1 Timestamp) After(t2 Timestamp) bool {
2017-06-24 13:34:17 +00:00
return bytes.Compare(t1[:], t2[:]) > 0
}
func (t Timestamp) String() string {
return time.Unix(int64(binary.BigEndian.Uint64(t[:8])-base), int64(binary.BigEndian.Uint32(t[8:12]))).String()
}