-
Notifications
You must be signed in to change notification settings - Fork 0
/
gt_null_float.go
284 lines (237 loc) · 5.7 KB
/
gt_null_float.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
package gt
import (
"database/sql/driver"
"encoding/json"
"strconv"
)
/*
Shortcut: parses successfully or panics. Should be used only in root scope. When
error handling is relevant, use `.Parse`.
*/
func ParseNullFloat(src string) (val NullFloat) {
try(val.Parse(src))
return
}
/*
Variant of `float64` where zero value is considered empty in text, and null in
JSON and SQL.
Unlike `float64`, encoding/decoding is not always reversible:
JSON 0 → Go 0 → JSON null
SQL 0 → Go 0 → SQL null
Also unlike `float64`, this type doesn't use the scientific notation when
encoding to a string.
Differences from `"database/sql".NullFloat64`:
* Much easier to use.
* Supports text.
* Supports JSON.
* Fewer states: zero and null are the same.
Caution: like any floating point number, this should not be used for financial
columns. Store money as integers or use a specialized decimal type.
*/
type NullFloat float64
var (
_ = Encodable(NullFloat(0))
_ = Decodable((*NullFloat)(nil))
)
// Implement `gt.Zeroable`. Equivalent to `reflect.ValueOf(self).IsZero()`.
func (self NullFloat) IsZero() bool { return self == 0 }
// Implement `gt.Nullable`. True if zero.
func (self NullFloat) IsNull() bool { return self.IsZero() }
// Implement `gt.PtrGetter`, returning `*float64`.
func (self *NullFloat) GetPtr() any { return (*float64)(self) }
// Implement `gt.Getter`. If zero, returns `nil`, otherwise returns `float64`.
func (self NullFloat) Get() any {
if self.IsNull() {
return nil
}
return float64(self)
}
// Implement `gt.Setter`, using `.Scan`. Panics on error.
func (self *NullFloat) Set(src any) { try(self.Scan(src)) }
// Implement `gt.Zeroer`, zeroing the receiver.
func (self *NullFloat) Zero() {
if self != nil {
*self = 0
}
}
/*
Implement `fmt.Stringer`. If zero, returns an empty string. Otherwise formats
using `strconv.FormatFloat`.
*/
func (self NullFloat) String() string {
if self.IsNull() {
return ``
}
return strconv.FormatFloat(float64(self), 'f', -1, 64)
}
/*
Implement `gt.Parser`. If the input is empty, zeroes the receiver. Otherwise
parses the input using `strconv.ParseFloat`.
*/
func (self *NullFloat) Parse(src string) error {
if len(src) == 0 {
self.Zero()
return nil
}
val, err := strconv.ParseFloat(src, 64)
if err != nil {
return err
}
*self = NullFloat(val)
return nil
}
// Implement `gt.AppenderTo`, using the same representation as `.String`.
func (self NullFloat) AppendTo(buf []byte) []byte {
if self.IsNull() {
return buf
}
return strconv.AppendFloat(buf, float64(self), 'f', -1, 64)
}
/*
Implement `encoding.TextMarhaler`. If zero, returns nil. Otherwise returns the
same representation as `.String`.
*/
func (self NullFloat) MarshalText() ([]byte, error) {
if self.IsNull() {
return nil, nil
}
return self.AppendTo(nil), nil
}
// Implement `encoding.TextUnmarshaler`, using the same algorithm as `.Parse`.
func (self *NullFloat) UnmarshalText(src []byte) error {
return self.Parse(bytesString(src))
}
/*
Implement `json.Marshaler`. If zero, returns bytes representing `null`.
Otherwise uses the default `json.Marshal` behavior for `float64`.
*/
func (self NullFloat) MarshalJSON() ([]byte, error) {
if self.IsNull() {
return bytesNull, nil
}
return json.Marshal(self.Get())
}
/*
Implement `json.Unmarshaler`. If the input is empty or represents JSON `null`,
zeroes the receiver. Otherwise uses the default `json.Unmarshal` behavior
for `*float64`.
*/
func (self *NullFloat) UnmarshalJSON(src []byte) error {
if isJsonEmpty(src) {
self.Zero()
return nil
}
return json.Unmarshal(src, self.GetPtr())
}
// Implement `driver.Valuer`, using `.Get`.
func (self NullFloat) Value() (driver.Value, error) {
return self.Get(), nil
}
/*
Implement `sql.Scanner`, converting an arbitrary input to `gt.NullFloat` and
modifying the receiver. Acceptable inputs:
* `nil` -> use `.Zero`
* `string` -> use `.Parse`
* `[]byte` -> use `.UnmarshalText`
* `intN` -> convert and assign
* `*intN` -> use `.Zero` or convert and assign
* `floatN` -> convert and assign
* `*floatN` -> use `.Zero` or convert and assign
* `NullFloat` -> assign
* `gt.Getter` -> scan underlying value
*/
func (self *NullFloat) Scan(src any) error {
switch src := src.(type) {
case nil:
self.Zero()
return nil
case string:
return self.Parse(src)
case []byte:
return self.UnmarshalText(src)
case int:
*self = NullFloat(src)
return nil
case *int:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case int8:
*self = NullFloat(src)
return nil
case *int8:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case int16:
*self = NullFloat(src)
return nil
case *int16:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case int32:
*self = NullFloat(src)
return nil
case *int32:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case int64:
*self = NullFloat(src)
return nil
case *int64:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case float32:
*self = NullFloat(src)
return nil
case *float32:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case float64:
*self = NullFloat(src)
return nil
case *float64:
if src == nil {
self.Zero()
} else {
*self = NullFloat(*src)
}
return nil
case NullFloat:
*self = src
return nil
default:
val, ok := get(src)
if ok {
return self.Scan(val)
}
return errScanType(self, src)
}
}
/*
Free cast to the underlying `float64`. Sometimes handy when this type is
embedded in a struct.
*/
func (self NullFloat) Float64() float64 { return float64(self) }