2024-03-18 12:18:32 +01:00
|
|
|
package utils
|
2023-04-24 18:33:30 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promutils"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// These values prevent from overflow when storing msec-precision time in int64.
|
|
|
|
minTimeMsecs = 0 // use 0 instead of `int64(-1<<63) / 1e6` because the storage engine doesn't actually support negative time
|
|
|
|
maxTimeMsecs = int64(1<<63-1) / 1e6
|
|
|
|
)
|
|
|
|
|
2024-03-18 12:18:32 +01:00
|
|
|
// ParseTime parses time in s string and returns time.Time object
|
|
|
|
// if parse correctly or error if not
|
|
|
|
func ParseTime(s string) (time.Time, error) {
|
2024-02-22 23:54:20 +01:00
|
|
|
msecs, err := promutils.ParseTimeMsec(s)
|
2023-04-24 18:33:30 +02:00
|
|
|
if err != nil {
|
|
|
|
return time.Time{}, fmt.Errorf("cannot parse %s: %w", s, err)
|
|
|
|
}
|
|
|
|
if msecs < minTimeMsecs {
|
|
|
|
msecs = 0
|
|
|
|
}
|
|
|
|
if msecs > maxTimeMsecs {
|
|
|
|
msecs = maxTimeMsecs
|
|
|
|
}
|
|
|
|
|
2023-05-08 23:14:44 +02:00
|
|
|
return time.Unix(0, msecs*int64(time.Millisecond)).UTC(), nil
|
2023-04-24 18:33:30 +02:00
|
|
|
}
|