forked from src-d/gitbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype.go
484 lines (397 loc) · 9.13 KB
/
type.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
package sql
import (
"database/sql/driver"
"fmt"
"reflect"
"strconv"
"strings"
"time"
)
type Schema []Field
func (s Schema) CheckRow(row Row) error {
expected := len(s)
got := len(row)
if expected != got {
return fmt.Errorf("expected %d values, got %d", expected, got)
}
for idx, f := range s {
v := row[idx]
if f.Type.Check(v) {
continue
}
typ := reflect.TypeOf(v).String()
return fmt.Errorf("value at %d has unexpected type: %s",
idx, typ)
}
return nil
}
type Field struct {
Name string
Type Type
}
type Type interface {
Name() string
InternalType() reflect.Kind
Check(interface{}) bool
Convert(interface{}) (interface{}, error)
Compare(interface{}, interface{}) int
Native(interface{}) driver.Value
}
var Null = nullType{}
type nullType struct{}
func (t nullType) Name() string {
return "null"
}
func (t nullType) InternalType() reflect.Kind {
return reflect.Interface
}
func (t nullType) Check(v interface{}) bool {
return v == nil
}
func (t nullType) Convert(v interface{}) (interface{}, error) {
if v != nil {
return nil, fmt.Errorf("value not nil: %#v", v)
}
return nil, nil
}
func (t nullType) Compare(a interface{}, b interface{}) int {
//XXX: Note that while this returns 0 (equals) for ordering purposes, in
// SQL NULL != NULL.
return 0
}
func (t nullType) Native(v interface{}) driver.Value {
return driver.Value(nil)
}
var Integer = integerType{}
type integerType struct{}
func (t integerType) Name() string {
return "integer"
}
func (t integerType) InternalType() reflect.Kind {
return reflect.Int32
}
func (t integerType) Check(v interface{}) bool {
return checkInt32(v)
}
func (t integerType) Convert(v interface{}) (interface{}, error) {
return convertToInt32(v)
}
func (t integerType) Compare(a interface{}, b interface{}) int {
return compareInt32(a, b)
}
func (t integerType) Native(v interface{}) driver.Value {
return driver.Value(int64(v.(int32)))
}
var BigInteger = bigIntegerType{}
type bigIntegerType struct{}
func (t bigIntegerType) Name() string {
return "biginteger"
}
func (t bigIntegerType) InternalType() reflect.Kind {
return reflect.Int64
}
func (t bigIntegerType) Check(v interface{}) bool {
return checkInt64(v)
}
func (t bigIntegerType) Convert(v interface{}) (interface{}, error) {
return convertToInt64(v)
}
func (t bigIntegerType) Compare(a interface{}, b interface{}) int {
return compareInt64(a, b)
}
func (t bigIntegerType) Native(v interface{}) driver.Value {
return driver.Value(v.(int64))
}
// TimestampWithTimezone is a timestamp with timezone.
var TimestampWithTimezone = timestampWithTimeZoneType{}
type timestampWithTimeZoneType struct{}
func (t timestampWithTimeZoneType) Name() string {
return "timestamp with timezone"
}
func (t timestampWithTimeZoneType) InternalType() reflect.Kind {
return reflect.Struct
}
func (t timestampWithTimeZoneType) Check(v interface{}) bool {
return checkTimestamp(v)
}
func (t timestampWithTimeZoneType) Convert(v interface{}) (interface{}, error) {
return convertToTimestamp(v)
}
func (t timestampWithTimeZoneType) Compare(a interface{}, b interface{}) int {
return compareTimestamp(a, b)
}
func (t timestampWithTimeZoneType) Native(v interface{}) driver.Value {
return driver.Value(v.(time.Time))
}
var String = stringType{}
type stringType struct{}
func (t stringType) Name() string {
return "string"
}
func (t stringType) InternalType() reflect.Kind {
return reflect.String
}
func (t stringType) Check(v interface{}) bool {
return checkString(v)
}
func (t stringType) Convert(v interface{}) (interface{}, error) {
return convertToString(v)
}
func (t stringType) Compare(a interface{}, b interface{}) int {
return compareString(a, b)
}
func (t stringType) Native(v interface{}) driver.Value {
return driver.Value(v.(string))
}
var Boolean Type = booleanType{}
type booleanType struct{}
func (t booleanType) Name() string {
return "boolean"
}
func (t booleanType) InternalType() reflect.Kind {
return reflect.Bool
}
func (t booleanType) Check(v interface{}) bool {
return checkBoolean(v)
}
func (t booleanType) Convert(v interface{}) (interface{}, error) {
return convertToBool(v)
}
func (t booleanType) Compare(a interface{}, b interface{}) int {
return compareBool(a, b)
}
func (t booleanType) Native(v interface{}) driver.Value {
return driver.Value(v.(bool))
}
var Float Type = floatType{}
type floatType struct{}
func (t floatType) Name() string {
return "float"
}
func (t floatType) InternalType() reflect.Kind {
return reflect.Float64
}
func (t floatType) Check(v interface{}) bool {
return checkFloat64(v)
}
func (t floatType) Convert(v interface{}) (interface{}, error) {
return convertToFloat64(v)
}
func (t floatType) Compare(a interface{}, b interface{}) int {
return compareFloat64(a, b)
}
func (t floatType) Native(v interface{}) driver.Value {
return driver.Value(v.(float64))
}
func checkString(v interface{}) bool {
_, ok := v.(string)
return ok
}
func convertToString(v interface{}) (interface{}, error) {
switch v.(type) {
case string:
return v.(string), nil
case fmt.Stringer:
return v.(fmt.Stringer).String(), nil
default:
return nil, ErrInvalidType
}
}
func compareString(a interface{}, b interface{}) int {
av := a.(string)
bv := b.(string)
return strings.Compare(av, bv)
}
func checkInt32(v interface{}) bool {
_, ok := v.(int32)
return ok
}
func convertToInt32(v interface{}) (interface{}, error) {
switch v.(type) {
case int:
return int32(v.(int)), nil
case int8:
return int32(v.(int8)), nil
case int16:
return int32(v.(int16)), nil
case int32:
return v.(int32), nil
case int64:
i64 := v.(int64)
if i64 > (1<<31)-1 || i64 < -(1<<31) {
return nil, fmt.Errorf("value %d overflows int32", i64)
}
return int32(i64), nil
case uint8:
return int32(v.(uint8)), nil
case uint16:
return int32(v.(uint16)), nil
case uint:
u := v.(uint)
if u > (1<<31)-1 {
return nil, fmt.Errorf("value %d overflows int32", v)
}
return int32(u), nil
case uint32:
u := v.(uint32)
if u > (1<<31)-1 {
return nil, fmt.Errorf("value %d overflows int32", v)
}
return int32(u), nil
case uint64:
u := v.(uint64)
if u > (1<<31)-1 {
return nil, fmt.Errorf("value %d overflows int32", v)
}
return int32(u), nil
case string:
s := v.(string)
i, err := strconv.Atoi(s)
if err != nil {
return nil, fmt.Errorf("value %q can't be converted to int32", v)
}
return int32(i), nil
default:
return nil, ErrInvalidType
}
}
func compareInt32(a interface{}, b interface{}) int {
av := a.(int32)
bv := b.(int32)
if av < bv {
return -1
} else if av > bv {
return 1
}
return 0
}
func checkInt64(v interface{}) bool {
_, ok := v.(int64)
return ok
}
func convertToInt64(v interface{}) (interface{}, error) {
switch v.(type) {
case int:
return int64(v.(int)), nil
case int8:
return int64(v.(int8)), nil
case int16:
return int64(v.(int16)), nil
case int32:
return int64(v.(int32)), nil
case int64:
return v.(int64), nil
case uint:
return int64(v.(uint)), nil
case uint8:
return int64(v.(uint8)), nil
case uint16:
return int64(v.(uint16)), nil
case uint32:
return int64(v.(uint32)), nil
case uint64:
u := v.(uint64)
if u >= 1<<63 {
return nil, fmt.Errorf("value %d overflows int64", v)
}
return int64(u), nil
case string:
s := v.(string)
i, err := strconv.Atoi(s)
if err != nil {
return nil, fmt.Errorf("value %q can't be converted to int64", v)
}
return int64(i), nil
default:
return nil, ErrInvalidType
}
}
func compareInt64(a interface{}, b interface{}) int {
av := a.(int64)
bv := b.(int64)
if av < bv {
return -1
} else if av > bv {
return 1
}
return 0
}
func checkBoolean(v interface{}) bool {
_, ok := v.(bool)
return ok
}
func convertToBool(v interface{}) (interface{}, error) {
switch v.(type) {
case bool:
return v.(bool), nil
default:
return nil, ErrInvalidType
}
}
func compareBool(a interface{}, b interface{}) int {
av := a.(bool)
bv := b.(bool)
if av == bv {
return 0
} else if av == false {
return -1
} else {
return 1
}
}
func checkFloat64(v interface{}) bool {
_, ok := v.(float32)
return ok
}
func convertToFloat64(v interface{}) (interface{}, error) {
switch v.(type) {
case float32:
return v.(float32), nil
default:
return nil, ErrInvalidType
}
}
func compareFloat64(a interface{}, b interface{}) int {
av := a.(float32)
bv := b.(float32)
if av < bv {
return -1
} else if av > bv {
return 1
}
return 0
}
func checkTimestamp(v interface{}) bool {
_, ok := v.(time.Time)
return ok
}
const timestampLayout = "2006-01-02 15:04:05.000000"
func convertToTimestamp(v interface{}) (interface{}, error) {
switch v.(type) {
case string:
t, err := time.Parse(timestampLayout, v.(string))
if err != nil {
return nil, fmt.Errorf("value %q can't be converted to int64", v)
}
return t, nil
default:
if !BigInteger.Check(v) {
return nil, ErrInvalidType
}
bi, err := BigInteger.Convert(v)
if err != nil {
return nil, ErrInvalidType
}
return time.Unix(bi.(int64), 0), nil
}
}
func compareTimestamp(a interface{}, b interface{}) int {
av := a.(time.Time)
bv := b.(time.Time)
if av.Before(bv) {
return -1
} else if av.After(bv) {
return 1
}
return 0
}