Renovate Bot
1a7b182350
Some checks are pending
Dev Version / Release (push) Waiting to run
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/rs/zerolog](https://github.com/rs/zerolog) | require | minor | `v1.31.0` -> `v1.33.0` | > ❗ **Important** > > Release Notes retrieval for this PR were skipped because no github.com credentials were available. > If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yMS4yIiwidXBkYXRlZEluVmVyIjoiMzguMjEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #3 Co-authored-by: Renovate Bot <renovate@keks.cloud> Co-committed-by: Renovate Bot <renovate@keks.cloud>
93 lines
2.5 KiB
Go
93 lines
2.5 KiB
Go
package cbor
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func appendIntegerTimestamp(dst []byte, t time.Time) []byte {
|
|
major := majorTypeTags
|
|
minor := additionalTypeTimestamp
|
|
dst = append(dst, major|minor)
|
|
secs := t.Unix()
|
|
var val uint64
|
|
if secs < 0 {
|
|
major = majorTypeNegativeInt
|
|
val = uint64(-secs - 1)
|
|
} else {
|
|
major = majorTypeUnsignedInt
|
|
val = uint64(secs)
|
|
}
|
|
dst = appendCborTypePrefix(dst, major, val)
|
|
return dst
|
|
}
|
|
|
|
func (e Encoder) appendFloatTimestamp(dst []byte, t time.Time) []byte {
|
|
major := majorTypeTags
|
|
minor := additionalTypeTimestamp
|
|
dst = append(dst, major|minor)
|
|
secs := t.Unix()
|
|
nanos := t.Nanosecond()
|
|
var val float64
|
|
val = float64(secs)*1.0 + float64(nanos)*1e-9
|
|
return e.AppendFloat64(dst, val, -1)
|
|
}
|
|
|
|
// AppendTime encodes and adds a timestamp to the dst byte array.
|
|
func (e Encoder) AppendTime(dst []byte, t time.Time, unused string) []byte {
|
|
utc := t.UTC()
|
|
if utc.Nanosecond() == 0 {
|
|
return appendIntegerTimestamp(dst, utc)
|
|
}
|
|
return e.appendFloatTimestamp(dst, utc)
|
|
}
|
|
|
|
// AppendTimes encodes and adds an array of timestamps to the dst byte array.
|
|
func (e Encoder) AppendTimes(dst []byte, vals []time.Time, unused string) []byte {
|
|
major := majorTypeArray
|
|
l := len(vals)
|
|
if l == 0 {
|
|
return e.AppendArrayEnd(e.AppendArrayStart(dst))
|
|
}
|
|
if l <= additionalMax {
|
|
lb := byte(l)
|
|
dst = append(dst, major|lb)
|
|
} else {
|
|
dst = appendCborTypePrefix(dst, major, uint64(l))
|
|
}
|
|
|
|
for _, t := range vals {
|
|
dst = e.AppendTime(dst, t, unused)
|
|
}
|
|
return dst
|
|
}
|
|
|
|
// AppendDuration encodes and adds a duration to the dst byte array.
|
|
// useInt field indicates whether to store the duration as seconds (integer) or
|
|
// as seconds+nanoseconds (float).
|
|
func (e Encoder) AppendDuration(dst []byte, d time.Duration, unit time.Duration, useInt bool, unused int) []byte {
|
|
if useInt {
|
|
return e.AppendInt64(dst, int64(d/unit))
|
|
}
|
|
return e.AppendFloat64(dst, float64(d)/float64(unit), unused)
|
|
}
|
|
|
|
// AppendDurations encodes and adds an array of durations to the dst byte array.
|
|
// useInt field indicates whether to store the duration as seconds (integer) or
|
|
// as seconds+nanoseconds (float).
|
|
func (e Encoder) AppendDurations(dst []byte, vals []time.Duration, unit time.Duration, useInt bool, unused int) []byte {
|
|
major := majorTypeArray
|
|
l := len(vals)
|
|
if l == 0 {
|
|
return e.AppendArrayEnd(e.AppendArrayStart(dst))
|
|
}
|
|
if l <= additionalMax {
|
|
lb := byte(l)
|
|
dst = append(dst, major|lb)
|
|
} else {
|
|
dst = appendCborTypePrefix(dst, major, uint64(l))
|
|
}
|
|
for _, d := range vals {
|
|
dst = e.AppendDuration(dst, d, unit, useInt, unused)
|
|
}
|
|
return dst
|
|
}
|