-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtype_timestamp_nanoseconds.go
105 lines (91 loc) · 2.29 KB
/
type_timestamp_nanoseconds.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package generic
import (
"database/sql/driver"
"encoding/json"
"strconv"
"time"
)
// TimestampNano is a wrapped time type structure
type TimestampNano struct {
ValidFlag
time time.Time
}
// MarshalTimestampNano returns generic.TimestampNano converting of request data
func MarshalTimestampNano(x interface{}) (TimestampNano, error) {
v := TimestampNano{}
err := v.Scan(x)
return v, err
}
// MustTimestampNano returns generic.TimestampNano converting of request data
func MustTimestampNano(x interface{}) TimestampNano {
v, err := MarshalTimestampNano(x)
if err != nil {
panic(err)
}
return v
}
// Value returns timestamp with nanoseconds, but if TimestampNano.ValidFlag is false, returns nil.
func (v TimestampNano) Value() (driver.Value, error) {
if !v.Valid() {
return nil, nil
}
return v.time.UnixNano(), nil
}
// Scan implements the sql.Scanner interface.
func (v *TimestampNano) Scan(x interface{}) (err error) {
v.time, v.ValidFlag, err = asTimestampNanoseconds(x)
if err != nil {
v.ValidFlag = false
return err
}
return
}
// Weak returns timestamp with nano seconds, but if TimestampNano.ValidFlag is false, returns nil.
func (v TimestampNano) Weak() interface{} {
i, _ := v.Value()
return i
}
// Set sets a specified value.
func (v *TimestampNano) Set(x interface{}) (err error) {
return v.Scan(x)
}
// String implements the Stringer interface.
func (v TimestampNano) String() string {
return strconv.FormatInt(v.Int64(), 10)
}
// Int return int value
func (v TimestampNano) Int() int {
return int(v.Int64())
}
// Int64 return int64 value
func (v TimestampNano) Int64() int64 {
if !v.Valid() || v.time.UnixNano() == 0 {
return 0
}
return v.time.UnixNano()
}
// Time returns value as time.Time
func (v TimestampNano) Time() time.Time {
if !v.Valid() {
return time.Unix(0, 0)
}
return v.time
}
// MarshalJSON implements the json.Marshaler interface.
func (v TimestampNano) MarshalJSON() ([]byte, error) {
if !v.Valid() {
return nullBytes, nil
}
return []byte(strconv.FormatInt(v.time.UnixNano(), 10)), nil
}
// UnmarshalJSON implements the json.Unmarshaler interface.
func (v *TimestampNano) UnmarshalJSON(data []byte) error {
if len(data) == 0 {
return nil
}
var in interface{}
if err := json.Unmarshal(data, &in); err != nil {
return err
}
return v.Scan(in)
}