mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
116 lines
1.7 KiB
Go
116 lines
1.7 KiB
Go
package values
|
|
|
|
import (
|
|
"hash/fnv"
|
|
"time"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
)
|
|
|
|
const DefaultTimeLayout = time.RFC3339
|
|
|
|
type DateTime struct {
|
|
time.Time
|
|
}
|
|
|
|
var ZeroDateTime = DateTime{
|
|
time.Time{},
|
|
}
|
|
|
|
func NewCurrentDateTime() DateTime {
|
|
return DateTime{time.Now()}
|
|
}
|
|
|
|
func NewDateTime(time time.Time) DateTime {
|
|
return DateTime{time}
|
|
}
|
|
|
|
func ParseDateTime(input interface{}) (DateTime, error) {
|
|
return ParseDateTimeWith(input, DefaultTimeLayout)
|
|
}
|
|
|
|
func ParseDateTimeWith(input interface{}, layout string) (DateTime, error) {
|
|
switch input.(type) {
|
|
case string:
|
|
t, err := time.Parse(layout, input.(string))
|
|
|
|
if err != nil {
|
|
return DateTime{time.Now()}, err
|
|
}
|
|
|
|
return DateTime{t}, nil
|
|
default:
|
|
return DateTime{time.Now()}, core.ErrInvalidType
|
|
}
|
|
}
|
|
|
|
func ParseDateTimeP(input interface{}) DateTime {
|
|
dt, err := ParseDateTime(input)
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return dt
|
|
}
|
|
|
|
func (t DateTime) MarshalJSON() ([]byte, error) {
|
|
return t.Time.MarshalJSON()
|
|
}
|
|
|
|
func (t DateTime) Type() core.Type {
|
|
return core.DateTimeType
|
|
}
|
|
|
|
func (t DateTime) String() string {
|
|
return t.Time.String()
|
|
}
|
|
|
|
func (t DateTime) Compare(other core.Value) int {
|
|
switch other.Type() {
|
|
case core.DateTimeType:
|
|
other := other.(DateTime)
|
|
|
|
if t.After(other.Time) {
|
|
return 1
|
|
}
|
|
|
|
if t.Before(other.Time) {
|
|
return -1
|
|
}
|
|
|
|
return 0
|
|
default:
|
|
if other.Type() > core.DateTimeType {
|
|
return -1
|
|
}
|
|
|
|
return 1
|
|
}
|
|
}
|
|
|
|
func (t DateTime) Unwrap() interface{} {
|
|
return t.Time
|
|
}
|
|
|
|
func (t DateTime) Hash() uint64 {
|
|
h := fnv.New64a()
|
|
|
|
h.Write([]byte(t.Type().String()))
|
|
h.Write([]byte(":"))
|
|
|
|
bytes, err := t.Time.GobEncode()
|
|
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
|
|
h.Write(bytes)
|
|
|
|
return h.Sum64()
|
|
}
|
|
|
|
func (t DateTime) Copy() core.Value {
|
|
return NewDateTime(t.Time)
|
|
}
|