-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtype_timestamp.go
105 lines (91 loc) · 2.12 KB
/
type_timestamp.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"
)
// Timestamp is a wrapped time type structure
type Timestamp struct {
ValidFlag
time time.Time
}
// MarshalTimestamp return generic.Timestamp converting of request data
func MarshalTimestamp(x interface{}) (Timestamp, error) {
v := Timestamp{}
err := v.Scan(x)
return v, err
}
// MustTimestamp return generic.Timestamp converting of request data
func MustTimestamp(x interface{}) Timestamp {
v, err := MarshalTimestamp(x)
if err != nil {
panic(err)
}
return v
}
// Value returns Time.Time, but if Time.ValidFlag is false, returns nil.
func (v Timestamp) Value() (driver.Value, error) {
if !v.Valid() {
return nil, nil
}
return v.time, nil
}
// Scan implements the sql.Scanner interface.
func (v *Timestamp) Scan(x interface{}) (err error) {
v.time, v.ValidFlag, err = asTimestamp(x)
if err != nil {
v.ValidFlag = false
return err
}
return
}
// Weak returns timestamp, but if Timestamp.ValidFlag is false, returns nil.
func (v Timestamp) Weak() interface{} {
i, _ := v.Value()
return i
}
// Set sets a specified value.
func (v *Timestamp) Set(x interface{}) (err error) {
return v.Scan(x)
}
// String implements the Stringer interface.
func (v Timestamp) String() string {
return strconv.FormatInt(v.Int64(), 10)
}
// Int return int value
func (v Timestamp) Int() int {
return int(v.Int64())
}
// Int64 return int64 value
func (v Timestamp) Int64() int64 {
if !v.Valid() || v.time.Unix() == 0 {
return 0
}
return v.time.Unix()
}
// MarshalJSON implements the json.Marshaler interface.
func (v Timestamp) MarshalJSON() ([]byte, error) {
if !v.Valid() {
return nullBytes, nil
}
return []byte(strconv.FormatInt(v.time.Unix(), 10)), nil
}
// Time returns value as time.Time
func (v Timestamp) Time() time.Time {
if !v.Valid() {
return time.Unix(0, 0)
}
return v.time
}
// UnmarshalJSON implements the json.Unmarshaler interface.
func (v *Timestamp) 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)
}