forked from paquesid/badgerhold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.go
1478 lines (1191 loc) · 30.6 KB
/
query.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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2019 Tim Shannon. All rights reserved.
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
package badgerhold
import (
"fmt"
"reflect"
"regexp"
"sort"
"strings"
"unicode"
"github.com/dgraph-io/badger"
)
const (
eq = iota //==
ne // !=
gt // >
lt // <
ge // >=
le // <=
in // in
re // regular expression
fn // func
isnil // test's for nil
)
// Key is shorthand for specifying a query to run again the Key in a badgerhold, simply returns ""
// Where(badgerhold.Key).Eq("testkey")
const Key = ""
// Query is a chained collection of criteria of which an object in the badgerhold needs to match to be returned
// an empty query matches against all records
type Query struct {
index string
currentField string
fieldCriteria map[string][]*Criterion
ors []*Query
badIndex bool
dataType reflect.Type
tx *badger.Txn
writable bool
subquery bool
bookmark *iterBookmark
limit int
skip int
sort []string
reverse bool
}
// IsEmpty returns true if the query is an empty query
// an empty query matches against everything
func (q *Query) IsEmpty() bool {
if q.index != "" {
return false
}
if len(q.fieldCriteria) != 0 {
return false
}
if q.ors != nil {
return false
}
return true
}
// Criterion is an operator and a value that a given field needs to match on
type Criterion struct {
query *Query
operator int
value interface{}
inValues []interface{}
}
func hasMatchFunc(criteria []*Criterion) bool {
for _, c := range criteria {
if c.operator == fn {
return true
}
}
return false
}
// Field allows for referencing a field in structure being compared
type Field string
// Where starts a query for specifying the criteria that an object in the badgerhold needs to match to
// be returned in a Find result
/*
Query API Example
s.Find(badgerhold.Where("FieldName").Eq(value).And("AnotherField").Lt(AnotherValue).
Or(badgerhold.Where("FieldName").Eq(anotherValue)
Since Gobs only encode exported fields, this will panic if you pass in a field with a lower case first letter
*/
func Where(field string) *Criterion {
if !startsUpper(field) {
panic("The first letter of a field in a badgerhold query must be upper-case")
}
return &Criterion{
query: &Query{
currentField: field,
fieldCriteria: make(map[string][]*Criterion),
},
}
}
// And creates a nother set of criterion the needs to apply to a query
func (q *Query) And(field string) *Criterion {
if !startsUpper(field) {
panic("The first letter of a field in a badgerhold query must be upper-case")
}
q.currentField = field
return &Criterion{
query: q,
}
}
// Skip skips the number of records that match all the rest of the query criteria, and does not return them
// in the result set. Setting skip multiple times, or to a negative value will panic
func (q *Query) Skip(amount int) *Query {
if amount < 0 {
panic("Skip must be set to a positive number")
}
if q.skip != 0 {
panic(fmt.Sprintf("Skip has already been set to %d", q.skip))
}
q.skip = amount
return q
}
// Limit sets the maximum number of records that can be returned by a query
// Setting Limit multiple times, or to a negative value will panic
func (q *Query) Limit(amount int) *Query {
if amount < 0 {
panic("Limit must be set to a positive number")
}
if q.limit != 0 {
panic(fmt.Sprintf("Limit has already been set to %d", q.limit))
}
q.limit = amount
return q
}
// SortBy sorts the results by the given fields name
// Multiple fields can be used
func (q *Query) SortBy(fields ...string) *Query {
for i := range fields {
if fields[i] == Key {
panic("Cannot sort by Key.")
}
var found bool
for k := range q.sort {
if q.sort[k] == fields[i] {
found = true
break
}
}
if !found {
q.sort = append(q.sort, fields[i])
}
}
return q
}
// Reverse will reverse the current result set
// useful with SortBy
func (q *Query) Reverse() *Query {
q.reverse = !q.reverse
return q
}
// Index specifies the index to use when running this query
func (q *Query) Index(indexName string) *Query {
if strings.Contains(indexName, ".") {
// NOTE: I may reconsider this in the future
panic("Nested indexes are not supported. Only top level structures can be indexed")
}
q.index = indexName
return q
}
// Or creates another separate query that gets unioned with any other results in the query
// Or will panic if the query passed in contains a limit or skip value, as they are only
// allowed on top level queries
func (q *Query) Or(query *Query) *Query {
if query.skip != 0 || query.limit != 0 {
panic("Or'd queries cannot contain skip or limit values")
}
q.ors = append(q.ors, query)
return q
}
func (q *Query) matchesAllFields(key []byte, value reflect.Value, currentRow interface{}) (bool, error) {
if q.IsEmpty() {
return true, nil
}
for field, criteria := range q.fieldCriteria {
if field == q.index && !q.badIndex && !hasMatchFunc(criteria) {
// already handled by index Iterator
continue
}
if field == Key {
ok, err := matchesAllCriteria(criteria, key, true, q.dataType.Name(), currentRow)
if err != nil {
return false, err
}
if !ok {
return false, nil
}
continue
}
fVal, err := fieldValue(value, field)
if err != nil {
return false, err
}
ok, err := matchesAllCriteria(criteria, fVal.Interface(), false, "", currentRow)
if err != nil {
return false, err
}
if !ok {
return false, nil
}
}
return true, nil
}
func fieldValue(value reflect.Value, field string) (reflect.Value, error) {
fields := strings.Split(field, ".")
current := value
for i := range fields {
if current.Kind() == reflect.Ptr {
current = current.Elem().FieldByName(fields[i])
} else {
current = current.FieldByName(fields[i])
}
if !current.IsValid() {
return reflect.Value{}, fmt.Errorf("The field %s does not exist in the type %s", field, value)
}
}
return current, nil
}
func (c *Criterion) op(op int, value interface{}) *Query {
c.operator = op
c.value = value
q := c.query
q.fieldCriteria[q.currentField] = append(q.fieldCriteria[q.currentField], c)
return q
}
// Eq tests if the current field is Equal to the passed in value
func (c *Criterion) Eq(value interface{}) *Query {
return c.op(eq, value)
}
// Ne test if the current field is Not Equal to the passed in value
func (c *Criterion) Ne(value interface{}) *Query {
return c.op(ne, value)
}
// Gt test if the current field is Greater Than the passed in value
func (c *Criterion) Gt(value interface{}) *Query {
return c.op(gt, value)
}
// Lt test if the current field is Less Than the passed in value
func (c *Criterion) Lt(value interface{}) *Query {
return c.op(lt, value)
}
// Ge test if the current field is Greater Than or Equal To the passed in value
func (c *Criterion) Ge(value interface{}) *Query {
return c.op(ge, value)
}
// Le test if the current field is Less Than or Equal To the passed in value
func (c *Criterion) Le(value interface{}) *Query {
return c.op(le, value)
}
// In test if the current field is a member of the slice of values passed in
func (c *Criterion) In(values ...interface{}) *Query {
c.operator = in
c.inValues = values
q := c.query
q.fieldCriteria[q.currentField] = append(q.fieldCriteria[q.currentField], c)
return q
}
// RegExp will test if a field matches against the regular expression
// The Field Value will be converted to string (%s) before testing
func (c *Criterion) RegExp(expression *regexp.Regexp) *Query {
return c.op(re, expression)
}
// IsNil will test if a field is equal to nil
func (c *Criterion) IsNil() *Query {
return c.op(isnil, nil)
}
// MatchFunc is a function used to test an arbitrary matching value in a query
type MatchFunc func(ra *RecordAccess) (bool, error)
// RecordAccess allows access to the current record, field or allows running a subquery within a
// MatchFunc
type RecordAccess struct {
record interface{}
field interface{}
query *Query
}
// Field is the current field being queried
func (r *RecordAccess) Field() interface{} {
return r.field
}
// Record is the complete record for a given row in badgerhold
func (r *RecordAccess) Record() interface{} {
return r.record
}
// SubQuery allows you to run another query in the same transaction for each
// record in a parent query
func (r *RecordAccess) SubQuery(result interface{}, query *Query) error {
query.subquery = true
query.bookmark = r.query.bookmark
return findQuery(r.query.tx, result, query)
}
// SubAggregateQuery allows you to run another aggregate query in the same transaction for each
// record in a parent query
func (r *RecordAccess) SubAggregateQuery(query *Query, groupBy ...string) ([]*AggregateResult, error) {
query.subquery = true
query.bookmark = r.query.bookmark
return aggregateQuery(r.query.tx, r.record, query, groupBy...)
}
// MatchFunc will test if a field matches the passed in function
func (c *Criterion) MatchFunc(match MatchFunc) *Query {
if c.query.currentField == Key {
panic("Match func cannot be used against Keys, as the Key type is unknown at runtime, and there is " +
"no value compare against")
}
return c.op(fn, match)
}
// test if the criterion passes with the passed in value
func (c *Criterion) test(testValue interface{}, encoded bool, keyType string, currentRow interface{}) (bool, error) {
var value interface{}
if encoded {
if len(testValue.([]byte)) != 0 {
if c.operator == in {
// value is a slice of values, use c.inValues
value = reflect.New(reflect.TypeOf(c.inValues[0])).Interface()
err := decode(testValue.([]byte), value)
if err != nil {
return false, err
}
} else {
// used with keys
value = reflect.New(reflect.TypeOf(c.value)).Interface()
if keyType != "" {
err := decodeKey(testValue.([]byte), value, keyType)
if err != nil {
return false, err
}
} else {
err := decode(testValue.([]byte), value)
if err != nil {
return false, err
}
}
}
}
} else {
value = testValue
}
switch c.operator {
case in:
for i := range c.inValues {
result, err := c.compare(value, c.inValues[i], currentRow)
if err != nil {
return false, err
}
if result == 0 {
return true, nil
}
}
return false, nil
case re:
return c.value.(*regexp.Regexp).Match([]byte(fmt.Sprintf("%s", value))), nil
case fn:
return c.value.(MatchFunc)(&RecordAccess{
field: value,
record: currentRow,
query: c.query,
})
case isnil:
return reflect.ValueOf(value).IsNil(), nil
default:
//comparison operators
result, err := c.compare(value, c.value, currentRow)
if err != nil {
return false, err
}
switch c.operator {
case eq:
return result == 0, nil
case ne:
return result != 0, nil
case gt:
return result > 0, nil
case lt:
return result < 0, nil
case le:
return result < 0 || result == 0, nil
case ge:
return result > 0 || result == 0, nil
default:
panic("invalid operator")
}
}
}
func matchesAllCriteria(criteria []*Criterion, value interface{}, encoded bool, keyType string,
currentRow interface{}) (bool, error) {
for i := range criteria {
ok, err := criteria[i].test(value, encoded, keyType, currentRow)
if err != nil {
return false, err
}
if !ok {
return false, nil
}
}
return true, nil
}
func startsUpper(str string) bool {
if str == "" {
return true
}
for _, r := range str {
return unicode.IsUpper(r)
}
return false
}
func (q *Query) String() string {
s := ""
if q.index != "" {
s += "Using Index [" + q.index + "] "
}
s += "Where "
for field, criteria := range q.fieldCriteria {
for i := range criteria {
s += field + " " + criteria[i].String()
s += "\n\tAND "
}
}
// remove last AND
s = s[:len(s)-6]
for i := range q.ors {
s += "\nOr " + q.ors[i].String()
}
return s
}
func (c *Criterion) String() string {
s := ""
switch c.operator {
case eq:
s += "=="
case ne:
s += "!="
case gt:
s += ">"
case lt:
s += "<"
case le:
s += "<="
case ge:
s += ">="
case in:
return "in " + fmt.Sprintf("%v", c.inValues)
case re:
s += "matches the regular expression"
case fn:
s += "matches the function"
case isnil:
return "is nil"
default:
panic("invalid operator")
}
return s + " " + fmt.Sprintf("%v", c.value)
}
type record struct {
key []byte
value reflect.Value
}
func runQuery(tx *badger.Txn, dataType interface{}, query *Query, retrievedKeys keyList, skip int,
action func(r *record) error) error {
storer := newStorer(dataType)
tp := dataType
for reflect.TypeOf(tp).Kind() == reflect.Ptr {
tp = reflect.ValueOf(tp).Elem().Interface()
}
query.dataType = reflect.TypeOf(tp)
if len(query.sort) > 0 {
return runQuerySort(tx, dataType, query, action)
}
iter := newIterator(tx, storer.Type(), query, query.bookmark)
if (query.writable || query.subquery) && query.bookmark == nil {
query.bookmark = iter.createBookmark()
}
defer func() {
iter.Close()
query.bookmark = nil
}()
if query.index != "" && query.badIndex {
return fmt.Errorf("The index %s does not exist", query.index)
}
newKeys := make(keyList, 0)
limit := query.limit - len(retrievedKeys)
for k, v := iter.Next(); k != nil; k, v = iter.Next() {
if len(retrievedKeys) != 0 {
// don't check this record if it's already been retrieved
if retrievedKeys.in(k) {
continue
}
}
val := reflect.New(reflect.TypeOf(tp))
err := decode(v, val.Interface())
if err != nil {
return err
}
query.tx = tx
ok, err := query.matchesAllFields(k, val, val.Interface())
if err != nil {
return err
}
if ok {
if skip > 0 {
skip--
continue
}
err = action(&record{
key: k,
value: val,
})
if err != nil {
return err
}
// track that this key's entry has been added to the result list
newKeys.add(k)
if query.limit != 0 {
limit--
if limit == 0 {
break
}
}
}
}
if iter.Error() != nil {
return iter.Error()
}
if query.limit != 0 && limit == 0 {
return nil
}
if len(query.ors) > 0 {
iter.Close()
for i := range newKeys {
retrievedKeys.add(newKeys[i])
}
for i := range query.ors {
err := runQuery(tx, tp, query.ors[i], retrievedKeys, skip, action)
if err != nil {
return err
}
}
}
return nil
}
func runQueryPRS(tx *badger.Txn, dataType interface{}, query *Query, retrievedKeys keyList, skip int, kuncian string,
action func(r *record, kuncian string) error) error {
storer := newStorer(dataType)
tp := dataType
for reflect.TypeOf(tp).Kind() == reflect.Ptr {
tp = reflect.ValueOf(tp).Elem().Interface()
}
query.dataType = reflect.TypeOf(tp)
if len(query.sort) > 0 {
return runQuerySortPRS(tx, dataType, query, kuncian, action)
}
iter := newIterator(tx, kuncian+storer.Type(), query, query.bookmark)
if (query.writable || query.subquery) && query.bookmark == nil {
query.bookmark = iter.createBookmark()
}
defer func() {
iter.Close()
query.bookmark = nil
}()
if query.index != "" && query.badIndex {
return fmt.Errorf("The index %s does not exist", query.index)
}
newKeys := make(keyList, 0)
limit := query.limit - len(retrievedKeys)
for k, v := iter.Next(); k != nil; k, v = iter.Next() {
if len(retrievedKeys) != 0 {
// don't check this record if it's already been retrieved
if retrievedKeys.in(k) {
continue
}
}
val := reflect.New(reflect.TypeOf(tp))
err := decode(v, val.Interface())
if err != nil {
return err
}
query.tx = tx
ok, err := query.matchesAllFields(k, val, val.Interface())
if err != nil {
return err
}
if ok {
if skip > 0 {
skip--
continue
}
err = action(&record{
key: k,
value: val,
}, kuncian)
if err != nil {
return err
}
// track that this key's entry has been added to the result list
newKeys.add(k)
if query.limit != 0 {
limit--
if limit == 0 {
break
}
}
}
}
if iter.Error() != nil {
return iter.Error()
}
if query.limit != 0 && limit == 0 {
return nil
}
if len(query.ors) > 0 {
iter.Close()
for i := range newKeys {
retrievedKeys.add(newKeys[i])
}
for i := range query.ors {
err := runQueryPRS(tx, tp, query.ors[i], retrievedKeys, skip, kuncian, action)
if err != nil {
return err
}
}
}
return nil
}
// runQuerySort runs the query without sort, skip, or limit, then applies them to the entire result set
func runQuerySort(tx *badger.Txn, dataType interface{}, query *Query, action func(r *record) error) error {
// Validate sort fields
for _, field := range query.sort {
fields := strings.Split(field, ".")
current := query.dataType
for i := range fields {
var structField reflect.StructField
found := false
if current.Kind() == reflect.Ptr {
structField, found = current.Elem().FieldByName(fields[i])
} else {
structField, found = current.FieldByName(fields[i])
}
if !found {
return fmt.Errorf("The field %s does not exist in the type %s", field, query.dataType)
}
current = structField.Type
}
}
// Run query without sort, skip or limit
// apply sort, skip and limit to entire dataset
qCopy := *query
qCopy.sort = nil
qCopy.limit = 0
qCopy.skip = 0
var records []*record
err := runQuery(tx, dataType, &qCopy, nil, 0,
func(r *record) error {
records = append(records, r)
return nil
})
if err != nil {
return err
}
sort.Slice(records, func(i, j int) bool {
for _, field := range query.sort {
val, err := fieldValue(records[i].value.Elem(), field)
if err != nil {
panic(err.Error()) // shouldn't happen due to field check above
}
value := val.Interface()
val, err = fieldValue(records[j].value.Elem(), field)
if err != nil {
panic(err.Error()) // shouldn't happen due to field check above
}
other := val.Interface()
if query.reverse {
value, other = other, value
}
cmp, cerr := compare(value, other)
if cerr != nil {
// if for some reason there is an error on compare, fallback to a lexicographic compare
valS := fmt.Sprintf("%s", value)
otherS := fmt.Sprintf("%s", other)
if valS < otherS {
return true
} else if valS == otherS {
continue
}
return false
}
if cmp == -1 {
return true
} else if cmp == 0 {
continue
}
return false
}
return false
})
// apply skip and limit
limit := query.limit
skip := query.skip
if skip > len(records) {
records = records[0:0]
} else {
records = records[skip:]
}
if limit > 0 && limit <= len(records) {
records = records[:limit]
}
for i := range records {
err = action(records[i])
if err != nil {
return err
}
}
return nil
}
// runQuerySortPRS runs the query without sort, skip, or limit, then applies them to the entire result set
func runQuerySortPRS(tx *badger.Txn, dataType interface{}, query *Query, kuncian string, action func(r *record, kuncian string) error) error {
// Validate sort fields
for _, field := range query.sort {
fields := strings.Split(field, ".")
current := query.dataType
for i := range fields {
var structField reflect.StructField
found := false
if current.Kind() == reflect.Ptr {
structField, found = current.Elem().FieldByName(fields[i])
} else {
structField, found = current.FieldByName(fields[i])
}
if !found {
return fmt.Errorf("The field %s does not exist in the type %s", field, query.dataType)
}
current = structField.Type
}
}
// Run query without sort, skip or limit
// apply sort, skip and limit to entire dataset
qCopy := *query
qCopy.sort = nil
qCopy.limit = 0
qCopy.skip = 0
var records []*record
err := runQueryPRS(tx, dataType, &qCopy, nil, 0, kuncian,
func(r *record, kuncian string) error {
records = append(records, r)
return nil
})
if err != nil {
return err
}
sort.Slice(records, func(i, j int) bool {
for _, field := range query.sort {
val, err := fieldValue(records[i].value.Elem(), field)
if err != nil {
panic(err.Error()) // shouldn't happen due to field check above
}
value := val.Interface()
val, err = fieldValue(records[j].value.Elem(), field)
if err != nil {
panic(err.Error()) // shouldn't happen due to field check above
}
other := val.Interface()
if query.reverse {
value, other = other, value
}
cmp, cerr := compare(value, other)
if cerr != nil {
// if for some reason there is an error on compare, fallback to a lexicographic compare
valS := fmt.Sprintf("%s", value)
otherS := fmt.Sprintf("%s", other)
if valS < otherS {
return true
} else if valS == otherS {
continue
}
return false
}
if cmp == -1 {
return true
} else if cmp == 0 {
continue
}
return false
}
return false
})
// apply skip and limit
limit := query.limit
skip := query.skip
if skip > len(records) {
records = records[0:0]
} else {
records = records[skip:]
}
if limit > 0 && limit <= len(records) {
records = records[:limit]
}
for i := range records {
err = action(records[i], kuncian)
if err != nil {
return err
}
}
return nil
}
func findQuery(tx *badger.Txn, result interface{}, query *Query) error {
if query == nil {
query = &Query{}
}
query.writable = false
resultVal := reflect.ValueOf(result)
if resultVal.Kind() != reflect.Ptr || resultVal.Elem().Kind() != reflect.Slice {
panic("result argument must be a slice address")
}
sliceVal := resultVal.Elem()
elType := sliceVal.Type().Elem()
tp := elType
for tp.Kind() == reflect.Ptr {
tp = tp.Elem()
}
var keyType reflect.Type