forked from xormplus/xorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
null_uint64.go
85 lines (76 loc) · 1.55 KB
/
null_uint64.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
package xorm
import (
"encoding/json"
"fmt"
"reflect"
"strconv"
)
type NullUint64 struct {
Uint64 uint64
Valid bool
}
func (nu NullUint64) Ptr() *uint64 {
if !nu.Valid {
return nil
}
return &nu.Uint64
}
func (nu NullUint64) ValueOrZero() uint64 {
if !nu.Valid {
return 0
}
return nu.Uint64
}
func (nu NullUint64) IsNil() bool {
return !nu.Valid
}
func (nu *NullUint64) UnmarshalJSON(data []byte) error {
var err error
var v interface{}
if err = json.Unmarshal(data, &v); err != nil {
return err
}
switch x := v.(type) {
case float64:
err = json.Unmarshal(data, &nu.Uint64)
case string:
str := string(x)
if len(str) == 0 {
nu.Valid = false
return nil
}
nu.Uint64, err = strconv.ParseUint(str, 10, 64)
case map[string]interface{}:
err = json.Unmarshal(data, &nu)
case nil:
nu.Valid = false
return nil
default:
err = fmt.Errorf("json: cannot unmarshal %v into Go value of type xorm.NullUint64", reflect.TypeOf(v).Name())
}
nu.Valid = err == nil
return err
}
func (nu *NullUint64) UnmarshalText(text []byte) error {
str := string(text)
if str == "" || str == "null" {
nu.Valid = false
return nil
}
var err error
nu.Uint64, err = strconv.ParseUint(string(text), 10, 64)
nu.Valid = err == nil
return err
}
func (nu NullUint64) MarshalJSON() ([]byte, error) {
if !nu.Valid {
return []byte("null"), nil
}
return []byte(strconv.FormatUint(nu.Uint64, 10)), nil
}
func (nu NullUint64) MarshalText() ([]byte, error) {
if !nu.Valid {
return []byte{}, nil
}
return []byte(strconv.FormatUint(nu.Uint64, 10)), nil
}