forked from gobuffalo/pop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uint32.go
76 lines (67 loc) · 1.54 KB
/
uint32.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
package nulls
import (
"database/sql"
"database/sql/driver"
"encoding/json"
"strconv"
)
// UInt32 adds an implementation for int
// that supports proper JSON encoding/decoding.
type UInt32 struct {
UInt32 uint32
Valid bool // Valid is true if Int is not NULL
}
func (ns UInt32) Interface() interface{} {
if !ns.Valid {
return nil
}
return ns.UInt32
}
// NewUInt32 returns a new, properly instantiated
// Int object.
func NewUInt32(i uint32) UInt32 {
return UInt32{UInt32: i, Valid: true}
}
// Scan implements the Scanner interface.
func (ns *UInt32) Scan(value interface{}) error {
n := sql.NullInt64{Int64: int64(ns.UInt32)}
err := n.Scan(value)
ns.UInt32, ns.Valid = uint32(n.Int64), n.Valid
return err
}
// Value implements the driver Valuer interface.
func (ns UInt32) Value() (driver.Value, error) {
if !ns.Valid {
return nil, nil
}
return int64(ns.UInt32), nil
}
// MarshalJSON marshals the underlying value to a
// proper JSON representation.
func (ns UInt32) MarshalJSON() ([]byte, error) {
if ns.Valid {
return json.Marshal(ns.UInt32)
}
return json.Marshal(nil)
}
// UnmarshalJSON will unmarshal a JSON value into
// the propert representation of that value.
func (ns *UInt32) UnmarshalJSON(text []byte) error {
txt := string(text)
ns.Valid = true
if txt == "null" {
ns.Valid = false
return nil
}
i, err := strconv.ParseInt(txt, 10, 32)
if err != nil {
ns.Valid = false
return err
}
j := uint32(i)
ns.UInt32 = j
return nil
}
func (ns *UInt32) UnmarshalText(text []byte) error {
return ns.UnmarshalJSON(text)
}