-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalue.go
More file actions
496 lines (468 loc) · 12.2 KB
/
Copy pathvalue.go
File metadata and controls
496 lines (468 loc) · 12.2 KB
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
485
486
487
488
489
490
491
492
493
494
495
496
package value
import "fmt"
//go:generate msgp
//CompareType 用来标志比较类型
type CompareType int
const (
Great CompareType = iota
GreatEqual
Less
LessEqual
Equal
NotEqual
)
//ValueType 用来标志比较类型
type ValueType = int
const (
BoolType ValueType = iota
IntType
FloatType
StringType
BytesType
DateType
TimestampType
NullType
AlienType
)
//Row is a row for record
type Row struct {
Values []Value
}
//Value is the most important type which record the true value
type Value interface {
String() string
// //Compare is unsafe compare, if you don't know the type is same, don't use it!
// Compare(Value, CompareType) (bool, error)
// // CompareWithoutType will return 0 if equal, -1 if less , 1 if greater
// CompareWithoutType(Value) (int, error)
// SafeCompare(Value, CompareType) (bool, error)
// //Convert2Bytes is convert value to bytes
// Convert2Bytes() ([]byte, error)
// Convert2IntType() ValueType
}
type Int struct {
Val int64
}
type Float struct {
Val float64
}
type Bytes struct {
Val []byte
}
type Bool struct {
Val bool
}
type Null struct {
length int
}
type Alien struct {
Val interface{}
}
func (i Int) String() string {
return fmt.Sprint(i.Val)
}
// //Compare1 仅用来测试 无实际意义
// func (i Int) Compare1(v Int, op CompareType) (bool, error) {
// switch op {
// case Great:
// return i.Val > v.Val, nil
// case GreatEqual:
// return i.Val >= v.Val, nil
// case Less:
// return i.Val < v.Val, nil
// case LessEqual:
// return i.Val <= v.Val, nil
// case Equal:
// return i.Val == v.Val, nil
// case NotEqual:
// return i.Val != v.Val, nil
// }
// return false, fmt.Errorf("unknow operation type %d", op)
// }
// func (i Int) Compare(v Value, op CompareType) (bool, error) {
// switch v.(type) {
// case Int:
// switch op {
// case Great:
// return i.Val > v.(Int).Val, nil
// case GreatEqual:
// return i.Val >= v.(Int).Val, nil
// case Less:
// return i.Val < v.(Int).Val, nil
// case LessEqual:
// return i.Val <= v.(Int).Val, nil
// case Equal:
// return i.Val == v.(Int).Val, nil
// case NotEqual:
// return i.Val != v.(Int).Val, nil
// }
// case Float:
// switch op {
// case Great:
// return float64(i.Val) > v.(Float).Val, nil
// case GreatEqual:
// return float64(i.Val) >= v.(Float).Val, nil
// case Less:
// return float64(i.Val) < v.(Float).Val, nil
// case LessEqual:
// return float64(i.Val) <= v.(Float).Val, nil
// case Equal:
// return float64(i.Val) == v.(Float).Val, nil
// case NotEqual:
// return float64(i.Val) != v.(Float).Val, nil
// }
// }
// return false, nil
// }
// func (i Int) SafeCompare(v Value, op CompareType) (bool, error) {
// switch v.(type) {
// case Int:
// return i.Compare(v, op)
// case Float:
// var tmp_i = Float{Val: float64(i.Val)}
// return tmp_i.Compare(v, op)
// default:
// return false, nil
// }
// return false, nil
// }
// func (i Int) Convert2Bytes() ([]byte, error) {
// bytebuf := bytes.NewBuffer([]byte{})
// binary.Write(bytebuf, binary.LittleEndian, i.Val)
// return bytebuf.Bytes(), nil
// }
// func (i Int) Convert2IntType() int {
// return IntType
// }
// func (i Int) CompareWithoutType(v Value) (int, error) {
// if i.Val < v.(Int).Val {
// return -1, nil
// } else if i.Val == v.(Int).Val {
// return 0, nil
// }
// return 1, nil
// }
func (i Float) String() string {
return fmt.Sprint(i.Val)
}
// func (i Float) Compare(v Value, op CompareType) (bool, error) {
// switch v.(type) {
// case Int:
// switch op {
// case Great:
// return i.Val > float64(v.(Int).Val), nil
// case GreatEqual:
// return i.Val >= float64(v.(Int).Val), nil
// case Less:
// return i.Val < float64(v.(Int).Val), nil
// case LessEqual:
// return i.Val <= float64(v.(Int).Val), nil
// case Equal:
// return i.Val == float64(v.(Int).Val), nil
// case NotEqual:
// return i.Val != float64(v.(Int).Val), nil
// }
// case Float:
// switch op {
// case Great:
// return i.Val > v.(Float).Val, nil
// case GreatEqual:
// return i.Val >= v.(Float).Val, nil
// case Less:
// return i.Val < v.(Float).Val, nil
// case LessEqual:
// return i.Val <= v.(Float).Val, nil
// case Equal:
// return i.Val == v.(Float).Val, nil
// case NotEqual:
// return i.Val != v.(Float).Val, nil
// }
// }
// return false, fmt.Errorf("unknow operation type %d", op)
// }
// func (i Float) SafeCompare(v Value, op CompareType) (bool, error) {
// switch v.(type) {
// case Float:
// return i.Compare(v, op)
// case Int:
// var tmpV = Float{Val: float64(v.(Int).Val)}
// return i.Compare(tmpV, op)
// default:
// return false, nil
// }
// return false, nil
// }
// func (i Float) Convert2Bytes() ([]byte, error) {
// bytebuf := bytes.NewBuffer([]byte{})
// binary.Write(bytebuf, binary.LittleEndian, i.Val)
// return bytebuf.Bytes(), nil
// }
// func (i Float) Convert2IntType() int {
// return FloatType
// }
// func (i Float) CompareWithoutType(v Value) (int, error) {
// if i.Val < v.(Float).Val {
// return -1, nil
// } else if i.Val == v.(Float).Val {
// return 0, nil
// }
// return 1, nil
// }
func (i Bytes) String() string {
var ans []byte
for _, v := range i.Val {
if v == 0 {
break
}
ans = append(ans, v)
}
return string(ans)
}
// func (i Bytes) Compare(v Value, op CompareType) (bool, error) {
// left := i.Val
// right := v.(Bytes).Val
// ib := bytes.IndexByte(left, 0) //去掉末尾的0
// if ib != -1 {
// left = left[0:ib]
// }
// ib = bytes.IndexByte(right, 0)
// if ib != -1 {
// right = right[0:ib]
// }
// cp := bytes.Compare(left, right)
// switch op {
// case Great:
// return cp == 1, nil
// case GreatEqual:
// return cp == 0 || cp == 1, nil
// case Less:
// return cp == -1, nil
// case LessEqual:
// return cp == 0 || cp == 1, nil
// case Equal:
// return cp == 0, nil
// case NotEqual:
// return cp != 0, nil
// }
// return false, fmt.Errorf("unknow operation type %d", op)
// }
// func (i Bytes) SafeCompare(v Value, op CompareType) (bool, error) {
// if _, ok := v.(Bytes); ok {
// return i.Compare(v, op)
// }
// return false, nil
// }
// func (i Bytes) Convert2Bytes() ([]byte, error) {
// return i.Val, nil
// }
// func (i Bytes) Convert2IntType() int {
// return BytesType
// }
// func (i Bytes) CompareWithoutType(v Value) (int, error) {
// return bytes.Compare(i.Val, v.(Bytes).Val), nil
// }
func (i Bool) String() string {
return fmt.Sprint(i.Val)
}
// func (i Bool) Compare(v Value, op CompareType) (bool, error) {
// switch op {
// case Great:
// return false, nil
// case GreatEqual:
// return false, nil
// case Less:
// return false, nil
// case LessEqual:
// return false, nil
// case Equal:
// return i.Val == v.(Bool).Val, nil
// case NotEqual:
// return i.Val != v.(Bool).Val, nil
// }
// return false, fmt.Errorf("unknow operation type %d", op)
// }
// func (i Bool) SafeCompare(v Value, op CompareType) (bool, error) {
// if _, ok := v.(Bool); ok {
// return i.Compare(v, op)
// }
// return false, nil
// }
// func (i Bool) Convert2Bytes() ([]byte, error) {
// if i.Val {
// return []byte{1}, nil
// }
// return []byte{0}, nil
// }
// func (i Bool) Convert2IntType() int {
// return BoolType
// }
// func (i Bool) CompareWithoutType(v Value) (int, error) {
// if i.Val == v.(Bool).Val {
// return 1, nil
// }
// return 0, nil
// }
func (i Alien) String() string {
return fmt.Sprint(i.Val)
}
// func (i Alien) Compare(v Value, op CompareType) (bool, error) {
// switch op {
// case Great:
// return false, nil
// case GreatEqual:
// return false, nil
// case Less:
// return false, nil
// case LessEqual:
// return false, nil
// case Equal:
// return false, nil
// case NotEqual:
// return false, nil
// }
// return false, fmt.Errorf("unknow operation type %d", op)
// }
// func (i Alien) SafeCompare(v Value, op CompareType) (bool, error) {
// if _, ok := v.(Alien); ok {
// return i.Compare(v, op)
// }
// return false, nil
// }
// func (i Alien) Convert2Bytes() ([]byte, error) {
// bytebuf := bytes.NewBuffer([]byte{})
// binary.Write(bytebuf, binary.LittleEndian, i.Val)
// return bytebuf.Bytes(), nil
// }
// func (i Alien) Convert2IntType() int {
// return AlienType
// }
// func (i Alien) CompareWithoutType(v Value) (int, error) {
// return -1, nil
// }
func (i Null) String() string {
return "null"
}
// func (i Null) Compare(v Value, op CompareType) (bool, error) {
// if op == Equal {
// return true, nil
// }
// return false, nil
// }
// func (i Null) SafeCompare(v Value, op CompareType) (bool, error) {
// if _, ok := v.(Null); ok {
// return i.Compare(v, op)
// }
// return false, nil
// }
// func (i Null) Convert2Bytes() ([]byte, error) {
// return make([]byte, i.length), nil
// }
// func (i Null) Convert2IntType() int {
// return NullType
// }
// func (i Null) CompareWithoutType(v Value) (int, error) {
// return -1, nil
// }
// // NewFromParquetValue you can input a arbitrary type into it, and it will try it's best to convert it to Value
// func NewFromParquetValue(v interface{}) Value {
// switch v.(type) {
// case int:
// return Int{Val: int64(v.(int))}
// case float64:
// return Float{Val: v.(float64)}
// case []byte:
// return Bytes{Val: v.([]byte)}
// case int8:
// return Int{Val: int64(v.(int8))}
// case int16:
// return Int{Val: int64(v.(int16))}
// case int32:
// return Int{Val: int64(v.(int32))}
// case int64:
// return Int{Val: v.(int64)}
// case uint:
// return Int{Val: int64(v.(uint))}
// case uint8:
// return Int{Val: int64(v.(uint8))}
// case uint16:
// return Int{Val: int64(v.(uint16))}
// case uint32:
// return Int{Val: int64(v.(uint32))}
// case uint64:
// return Int{Val: int64(v.(uint64))}
// case float32:
// return Float{Val: float64(v.(float32))}
// case bool:
// return Bool{Val: v.(bool)}
// default:
// return Alien{Val: v}
// }
// }
// //Byte2Value convert byte to Value ,length is used for char
// // IntType,FloatType,BoolType don't need a length, so you can use this function like Byte2Value([]bytes,IntType)
// // BytesType and NullType need a length to insure it's correct, so you must use this function like Byte2Value([]bytes,BytesType,10)
// func Byte2Value(mybytes []byte, vt ValueType, length ...int) (Value, error) {
// switch vt {
// case BoolType:
// if len(mybytes) < 1 {
// return nil, errors.New("mybytes length is less than 1")
// }
// if mybytes[0] == 1 {
// return Bool{Val: true}, nil
// } else if mybytes[0] == 0 {
// return Bool{Val: false}, nil
// }
// return nil, errors.New("this byte is not a bool byte")
// case IntType:
// if len(mybytes) < 8 {
// return nil, errors.New("mybytes length is less than 8")
// }
// var ret int64
// buf := bytes.NewBuffer(mybytes[0:8])
// binary.Read(buf, binary.LittleEndian, &ret)
// return Int{Val: ret}, nil
// case FloatType:
// if len(mybytes) < 8 {
// return nil, errors.New("mybytes length is less than 8")
// }
// var ret float64
// buf := bytes.NewBuffer(mybytes[0:8])
// binary.Read(buf, binary.LittleEndian, &ret)
// return Float{Val: ret}, nil
// case BytesType:
// if len(length) < 1 || length[0] <= 0 {
// return nil, errors.New("please input a length for bytes")
// }
// if len(mybytes) < length[0] {
// return nil, errors.New("bytes don't have enough length to convert to bytes")
// }
// return Bytes{Val: mybytes[0:length[0]]}, nil
// case NullType:
// if len(length) < 1 || length[0] <= 0 {
// return nil, errors.New("please input a length for bytes")
// }
// if len(mybytes) < length[0] {
// return nil, errors.New("bytes don't have enough length to convert to bytes")
// }
// return Null{length: length[0]}, nil
// }
// return nil, errors.New("The type is not supported.")
// }
// //CompareWithType is function for compare
// func CompareWithType(i Value, v Value, op CompareType, vt ValueType) (bool, error) {
// switch vt {
// case BoolType:
// return i.(Bool).Compare(v, op)
// case IntType:
// return i.(Int).Compare(v, op)
// case FloatType:
// return i.(Float).Compare(v, op)
// case BytesType:
// return i.(Bytes).Compare(v, op)
// case NullType:
// return i.(Null).Compare(v, op)
// case AlienType:
// return i.(Alien).Compare(v, op)
// }
// return false, errors.New("The type is not supported.")
// }