-
Notifications
You must be signed in to change notification settings - Fork 1
/
uint32.go
162 lines (144 loc) · 3.67 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// Copyright 2019 HouseCanary, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package nillabletypes
import (
"bytes"
"database/sql/driver"
"math"
"strconv"
"github.com/pkg/errors"
"github.com/segmentio/encoding/json"
)
// Uint32 represents a nil-able int
type Uint32 struct {
v uint32
present bool
initialized bool
}
// NewUint32 makes a new non-nil Uint32
func NewUint32(v uint32) Uint32 {
return Uint32{v: v, present: true, initialized: true}
}
// NilUint32 makes a new nil Uint32
func NilUint32() Uint32 {
return Uint32{0, false, true}
}
// Uint32 returns the built-in Uint32 value
func (v Uint32) Uint32() uint32 {
return v.v
}
// Nil returns whether this scalar is nil
func (v Uint32) Nil() bool {
return !v.present
}
// String implements the fmt.Stringer interface
func (v Uint32) String() string {
return strconv.FormatUint(uint64(v.v), 10)
}
// UnmarshalJSON implements the json.Unmarshaler interface
func (v *Uint32) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte{'n', 'u', 'l', 'l'}) {
v.present = false
v.initialized = true
return nil
}
var t float64
err := json.Unmarshal(data, &t)
if err != nil {
return errors.WithStack(err)
}
i, err := float64ToUint32(t)
if err != nil {
return err
}
v.v = i
v.present = true
v.initialized = true
return nil
}
// MarshalJSON implements the json.Marshaler interface
func (v Uint32) MarshalJSON() ([]byte, error) {
if !v.initialized || !v.present {
return []byte{'n', 'u', 'l', 'l'}, nil
}
return json.Marshal(v.v)
}
// Value implements the driver.Valuer interface
func (v Uint32) Value() (driver.Value, error) {
if !v.present {
return nil, nil
}
return v.v, nil
}
// Scan implements the sql.Scanner interface
func (v *Uint32) Scan(src interface{}) error {
if src == nil {
*v = Uint32{present: false, initialized: true}
return nil
}
switch t := src.(type) {
case int64:
i, err := int64ToUint32(t)
if err != nil {
return err
}
*v = Uint32{v: i, present: true, initialized: true}
return nil
case float64:
val, err := float64ToUint32(t)
if err != nil {
return err
}
*v = Uint32{v: val, present: true, initialized: true}
return nil
case bool:
if t {
*v = Uint32{v: 1, present: true, initialized: true}
} else {
*v = Uint32{v: 0, present: true, initialized: true}
}
return nil
case []byte:
s := string(t)
return v.scanString(s)
case string:
return v.scanString(t)
}
return errors.Errorf("cannot scan value %[1]v of type %[1]T to a uint", src)
}
func (v *Uint32) scanString(src string) error {
f, err := strconv.ParseFloat(src, 32)
if err != nil {
return errors.Errorf("cannot scan value %[1]v of type %[1]T to a uint", src)
}
i, err := float64ToUint32(f)
if err != nil {
return err
}
*v = Uint32{v: i, present: true, initialized: true}
return nil
}
func int64ToUint32(i int64) (uint32, error) {
if int64(math.MaxUint32) < i || 0 > i {
return 0, errors.Errorf("value %v outside of the range of Uint32", i)
}
return uint32(i), nil
}
func float64ToUint32(f float64) (uint32, error) {
val := uint32(f)
if math.Trunc(f) != float64(val) {
return 0, errors.Errorf("value %f outside of the range of Uint32", f)
}
return val, nil
}