-
Notifications
You must be signed in to change notification settings - Fork 222
/
value.go
284 lines (249 loc) · 3.81 KB
/
value.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 xorm
import "time"
type Value []byte
func (v Value) Bytes() []byte {
return []byte(v)
}
func (v Value) String() string {
return string(v)
}
func (v Value) NullString() NullString {
if v == nil {
return NullString{
String: "",
Valid: false,
}
} else {
return NullString{
String: string(v),
Valid: true,
}
}
}
func (v Value) Bool() bool {
return Bool(v)
}
func (v Value) NullBool() NullBool {
if v == nil {
return NullBool{
Bool: false,
Valid: false,
}
} else {
return NullBool{
Bool: Bool(v),
Valid: true,
}
}
}
func (v Value) Int() int {
return Int(v)
}
func (v Value) NullInt() NullInt {
if v == nil {
return NullInt{
Int: 0,
Valid: false,
}
} else {
return NullInt{
Int: Int(v),
Valid: true,
}
}
}
func (v Value) Int8() int8 {
return Int8(v)
}
func (v Value) NullInt8() NullInt8 {
if v == nil {
return NullInt8{
Int8: 0,
Valid: false,
}
} else {
return NullInt8{
Int8: Int8(v),
Valid: true,
}
}
}
func (v Value) Int16() int16 {
return Int16(v)
}
func (v Value) NullInt16() NullInt16 {
if v == nil {
return NullInt16{
Int16: 0,
Valid: false,
}
} else {
return NullInt16{
Int16: Int16(v),
Valid: true,
}
}
}
func (v Value) Int32() int32 {
return Int32(v)
}
func (v Value) NullInt32() NullInt32 {
if v == nil {
return NullInt32{
Int32: 0,
Valid: false,
}
} else {
return NullInt32{
Int32: Int32(v),
Valid: true,
}
}
}
func (v Value) Int64() int64 {
return Int64(v)
}
func (v Value) NullInt64() NullInt64 {
if v == nil {
return NullInt64{
Int64: 0,
Valid: false,
}
} else {
return NullInt64{
Int64: Int64(v),
Valid: true,
}
}
}
func (v Value) Uint() uint {
return Uint(v)
}
func (v Value) NullUint() NullUint {
if v == nil {
return NullUint{
Uint: 0,
Valid: false,
}
} else {
return NullUint{
Uint: Uint(v),
Valid: true,
}
}
}
func (v Value) Uint8() uint8 {
return Uint8(v)
}
func (v Value) NullUint8() NullUint8 {
if v == nil {
return NullUint8{
Uint8: 0,
Valid: false,
}
} else {
return NullUint8{
Uint8: Uint8(v),
Valid: true,
}
}
}
func (v Value) Uint16() uint16 {
return Uint16(v)
}
func (v Value) NullUint16() NullUint16 {
if v == nil {
return NullUint16{
Uint16: 0,
Valid: false,
}
} else {
return NullUint16{
Uint16: Uint16(v),
Valid: true,
}
}
}
func (v Value) Uint32() uint32 {
return Uint32(v)
}
func (v Value) NullUint32() NullUint32 {
if v == nil {
return NullUint32{
Uint32: 0,
Valid: false,
}
} else {
return NullUint32{
Uint32: Uint32(v),
Valid: true,
}
}
}
func (v Value) Uint64() uint64 {
return Uint64(v)
}
func (v Value) NullUint64() NullUint64 {
if v == nil {
return NullUint64{
Uint64: 0,
Valid: false,
}
} else {
return NullUint64{
Uint64: Uint64(v),
Valid: true,
}
}
}
func (v Value) Float32() float32 {
return Float32(v)
}
func (v Value) NullFloat32() NullFloat32 {
if v == nil {
return NullFloat32{
Float32: 0,
Valid: false,
}
} else {
return NullFloat32{
Float32: Float32(v),
Valid: true,
}
}
}
func (v Value) Float64() float64 {
return Float64(v)
}
func (v Value) NullFloat64() NullFloat64 {
if v == nil {
return NullFloat64{
Float64: 0,
Valid: false,
}
} else {
return NullFloat64{
Float64: Float64(v),
Valid: true,
}
}
}
func (v Value) Time(format string, TZLocation ...*time.Location) time.Time {
return Time(v, format, TZLocation...)
}
func (v Value) NullTime(format string, TZLocation ...*time.Location) NullTime {
if v == nil {
return NullTime{
Time: time.Time{},
Valid: false,
}
} else {
return NullTime{
Time: Time(v, format, TZLocation...),
Valid: true,
}
}
}
func (v Value) TimeDuration() time.Duration {
return TimeDuration(v)
}