-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathparser.go
More file actions
1675 lines (1508 loc) · 41.8 KB
/
parser.go
File metadata and controls
1675 lines (1508 loc) · 41.8 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
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
package parser
import (
"fmt"
"reflect"
"strconv"
"strings"
)
type TokenType string
const (
// Special tokens
EOF TokenType = "EOF"
ILLEGAL TokenType = "ILLEGAL"
// Literals
IDENTIFIER TokenType = "IDENTIFIER"
STRING TokenType = "STRING"
NUMBER TokenType = "NUMBER"
// Operators
EQ TokenType = "EQ" // =
NE TokenType = "NE" // !=
LT TokenType = "LT" // <
GT TokenType = "GT" // >
GE TokenType = "GE" // >=
LE TokenType = "LE" // <=
AND TokenType = "AND" // AND
OR TokenType = "OR" // OR
CONTAINS TokenType = "CONTAINS" // CONTAINS
LPAREN TokenType = "LPAREN" // (
RPAREN TokenType = "RPAREN" // )
IS TokenType = "IS" // IS
NULL TokenType = "NULL" // NULL
NOT TokenType = "NOT" // NOT
ANY TokenType = "ANY" // ANY
COMMA TokenType = "COMMA" // ,
)
type Token struct {
Type TokenType
Literal string
}
type Expression interface {
Evaluate(item reflect.Value) (bool, error)
}
type ComparisonExpression struct {
Field string
Operator TokenType
Value string
}
// AnyExpression represents an ANY operator that checks if any of the provided values match the field
type AnyExpression struct {
Field string
Operator TokenType
Values []string
}
// NotExpression represents a NOT operation on another expression
type NotExpression struct {
Expression Expression
}
type ConjunctionExpression struct {
Expressions []Expression
}
// OrExpression supports logical OR
type OrExpression struct {
Expressions []Expression
}
func Parse[T any](query string, data []T) (results []T, err error) {
// Use the enhanced lexer that supports negative numbers
if query == "" {
return data, nil
}
// Normalize humanized values in the query
query = normalizeHumanizedValues(query)
l := NewEnhancedLexer(query)
p := NewParser(l)
var ast Expression
ast, err = p.ParseQuery()
if err != nil {
return nil, fmt.Errorf("failed to parse query: %w", err)
}
if len(p.Errors()) > 0 {
return nil, fmt.Errorf("parsing errors: %s", strings.Join(p.Errors(), "; "))
}
if ast == nil {
return nil, fmt.Errorf("failed to parse query: AST is nil")
}
results = make([]T, 0, len(data))
for _, item := range data {
val := reflect.ValueOf(item)
if val.Kind() == reflect.Ptr && val.IsNil() {
continue
}
if val.Kind() == reflect.Ptr {
val = val.Elem() // Dereference if it's a pointer to a struct
}
if val.Kind() != reflect.Struct {
return nil, fmt.Errorf("expected slice of structs, got %s in data", val.Kind())
}
match, err := ast.Evaluate(val)
if err != nil {
// Return the evaluation error immediately as it's a validation issue
return nil, fmt.Errorf("evaluation error: %w", err)
}
if match {
results = append(results, item)
}
}
return results, nil
}
// func (enc *Encoder) Encode(v interface{}) error {
func ParseEncoder[T any](query string, data []T, encoder func(v any) error) (n int, err error) {
// Use the enhanced lexer that supports negative numbers
if query == "" {
for _, v := range data {
err = encoder(v)
if err != nil {
return n, err
}
n++
}
return n, nil
}
// Normalize humanized values in the query
query = normalizeHumanizedValues(query)
l := NewEnhancedLexer(query)
p := NewParser(l)
var ast Expression
ast, err = p.ParseQuery()
if err != nil {
return 0, fmt.Errorf("failed to parse query: %w", err)
}
if len(p.Errors()) > 0 {
return 0, fmt.Errorf("parsing errors: %s", strings.Join(p.Errors(), "; "))
}
if ast == nil {
return 0, fmt.Errorf("failed to parse query: AST is nil")
}
// results = make([]T, 0, len(data))
for _, item := range data {
val := reflect.ValueOf(item)
if val.Kind() == reflect.Ptr && val.IsNil() {
continue
}
if val.Kind() == reflect.Ptr {
val = val.Elem() // Dereference if it's a pointer to a struct
}
if val.Kind() != reflect.Struct {
return 0, fmt.Errorf("expected slice of structs, got %s in data", val.Kind())
}
match, err := ast.Evaluate(val)
if err != nil {
// Return the evaluation error immediately as it's a validation issue
return 0, fmt.Errorf("evaluation error: %w", err)
}
if match {
n++
err = encoder(item)
if err != nil {
return n, err
}
}
}
return n, nil
}
// Enhanced getFieldValue: returns a slice of reflect.Value if a slice is encountered in the path
func getFieldValues(item reflect.Value, fieldPath string) ([]reflect.Value, error) {
parts := strings.Split(fieldPath, ".")
currentValues := []reflect.Value{item}
for _, part := range parts {
nextValues := []reflect.Value{}
for _, val := range currentValues {
if val.Kind() == reflect.Ptr {
if val.IsNil() {
continue
}
val = val.Elem()
}
// Handle interface{} values by getting the underlying value
if val.Kind() == reflect.Interface {
val = val.Elem()
}
if val.Kind() == reflect.Slice {
for j := range val.Len() {
elem := val.Index(j)
if elem.Kind() == reflect.Ptr {
if elem.IsNil() {
continue
}
elem = elem.Elem()
}
// Handle interface{} values in slices
if elem.Kind() == reflect.Interface {
elem = elem.Elem()
}
if elem.Kind() == reflect.Struct || elem.Kind() == reflect.Map {
field := getFieldByNameCaseInsensitive(elem, part)
if field.IsValid() {
nextValues = append(nextValues, field)
}
} else {
nextValues = append(nextValues, elem)
}
}
continue
}
if val.Kind() == reflect.Struct {
field := getFieldByNameCaseInsensitive(val, part)
if !field.IsValid() {
continue
}
nextValues = append(nextValues, field)
continue
}
if val.Kind() == reflect.Map {
// Handle map traversal
if val.Type().Key().Kind() != reflect.String {
// Only string keys can be accessed by field path
continue
}
// Try to find the key case-insensitively
mapValue := getMapValue(val, part)
if mapValue.IsValid() {
nextValues = append(nextValues, mapValue)
}
continue
}
// For non-struct, non-slice, non-map, just append (should only happen at leaf)
nextValues = append(nextValues, val)
}
currentValues = nextValues
if len(currentValues) == 0 {
return nil, fmt.Errorf("field %q not found in path %q", part, fieldPath)
}
}
// Flatten any slices at the leaf
flat := []reflect.Value{}
for _, v := range currentValues {
if v.Kind() == reflect.Slice {
for i := range v.Len() {
flat = append(flat, v.Index(i))
}
} else {
flat = append(flat, v)
}
}
return flat, nil
}
// getFieldByNameCaseInsensitive returns the struct field with a name matching 'name' (case-insensitive), or an invalid reflect.Value if not found
func getFieldByNameCaseInsensitive(val reflect.Value, name string) reflect.Value {
// If it's a map with string keys, use our getMapValue helper
if val.Kind() == reflect.Map && val.Type().Key().Kind() == reflect.String {
return getMapValue(val, name)
}
// Otherwise, for structs, match field names case-insensitively
typeOfVal := val.Type()
for i := range typeOfVal.NumField() {
field := typeOfVal.Field(i)
if strings.EqualFold(field.Name, name) {
return val.Field(i)
}
}
return reflect.Value{}
}
// The core Evaluate method for ComparisonExpression
func (ce *ComparisonExpression) Evaluate(item reflect.Value) (bool, error) {
fieldValues, err := getFieldValues(item, ce.Field)
if err != nil || len(fieldValues) == 0 {
return false, fmt.Errorf("field '%s' not found", ce.Field)
}
var lastError error
for _, fieldValue := range fieldValues {
match, err := ce.compareValue(fieldValue)
if err != nil {
lastError = err
continue // Try other values if this one fails
}
if match {
return true, nil
}
}
// If we had errors and no successful matches, return the last error
if lastError != nil {
return false, lastError
}
return false, nil
}
// compareValue handles the actual comparison for a single value
func (ce *ComparisonExpression) compareValue(fieldValue reflect.Value) (bool, error) {
if fieldValue.Kind() == reflect.Ptr {
if fieldValue.IsNil() {
return false, nil
}
fieldValue = fieldValue.Elem()
}
switch fieldValue.Kind() {
case reflect.String:
s := fieldValue.Interface().(string)
switch ce.Operator {
case EQ:
return strings.EqualFold(s, ce.Value), nil
case NE:
return !strings.EqualFold(s, ce.Value), nil
case LT:
return strings.ToLower(s) < strings.ToLower(ce.Value), nil
case GT:
return strings.ToLower(s) > strings.ToLower(ce.Value), nil
case LE:
return strings.ToLower(s) <= strings.ToLower(ce.Value), nil
case GE:
return strings.ToLower(s) >= strings.ToLower(ce.Value), nil
case CONTAINS:
return strings.Contains(strings.ToLower(s), strings.ToLower(ce.Value)), nil
}
case reflect.Bool:
b, _ := strconv.ParseBool(ce.Value)
switch ce.Operator {
case EQ:
return fieldValue.Interface().(bool) == b, nil
case NE:
return fieldValue.Interface().(bool) != b, nil
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
// Remove any commas from the number string (common with large numbers)
cleanValue := strings.ReplaceAll(ce.Value, ",", "")
v, err := strconv.ParseInt(cleanValue, 10, 64)
if err != nil {
return false, fmt.Errorf("invalid integer value '%s' for comparison with field '%s': %w", ce.Value, ce.Field, err)
}
fv := fieldValue.Int()
switch ce.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
// Remove any commas from the number string (common with large numbers)
cleanValue := strings.ReplaceAll(ce.Value, ",", "")
v, err := strconv.ParseUint(cleanValue, 10, 64)
if err != nil {
return false, fmt.Errorf("invalid unsigned integer value '%s' for comparison with field '%s': %w", ce.Value, ce.Field, err)
}
fv := fieldValue.Uint()
switch ce.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Float32, reflect.Float64:
// Remove any commas from the number string (common with large numbers)
cleanValue := strings.ReplaceAll(ce.Value, ",", "")
v, err := strconv.ParseFloat(cleanValue, 64)
if err != nil {
return false, fmt.Errorf("invalid floating point value '%s' for comparison with field '%s': %w", ce.Value, ce.Field, err)
}
fv := fieldValue.Float()
switch ce.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Slice:
if fieldValue.IsNil() {
return false, nil
}
if ce.Operator == CONTAINS {
for i := range fieldValue.Len() {
item := fieldValue.Index(i)
if item.Kind() == reflect.Ptr && !item.IsNil() {
item = item.Elem()
}
if item.Kind() == reflect.String {
if strings.EqualFold(item.String(), ce.Value) || strings.Contains(strings.ToLower(item.String()), strings.ToLower(ce.Value)) {
return true, nil
}
} else if item.Kind() == reflect.Interface {
if s, ok := item.Interface().(string); ok && (strings.EqualFold(s, ce.Value) || strings.Contains(strings.ToLower(s), strings.ToLower(ce.Value))) {
return true, nil
}
}
}
return false, nil
} else if ce.Operator == EQ {
for i := range fieldValue.Len() {
item := fieldValue.Index(i)
if item.Kind() == reflect.Ptr && !item.IsNil() {
item = item.Elem()
}
if item.Kind() == reflect.String {
if strings.EqualFold(item.String(), ce.Value) {
return true, nil
}
} else if item.Kind() == reflect.Interface {
if s, ok := item.Interface().(string); ok && strings.EqualFold(s, ce.Value) {
return true, nil
}
}
}
return false, nil
} else if ce.Operator == NE {
for i := range fieldValue.Len() {
item := fieldValue.Index(i)
if item.Kind() == reflect.Ptr && !item.IsNil() {
item = item.Elem()
}
if item.Kind() == reflect.String {
if strings.EqualFold(item.String(), ce.Value) {
return false, nil
}
} else if item.Kind() == reflect.Interface {
if s, ok := item.Interface().(string); ok && strings.EqualFold(s, ce.Value) {
return false, nil
}
}
}
return true, nil
}
}
return false, nil
}
// Evaluate for ConjunctionExpression
func (ce *ConjunctionExpression) Evaluate(item reflect.Value) (bool, error) {
if len(ce.Expressions) == 0 {
return false, nil // Empty conjunction is always false (for empty parentheses case)
}
if len(ce.Expressions) == 1 {
return ce.Expressions[0].Evaluate(item)
}
// Check if all conditions are on the same field (including nested fields)
allCmp := true
var field string
for _, expr := range ce.Expressions {
if expr == nil {
allCmp = false
break
}
cmp, ok := expr.(*ComparisonExpression)
if !ok {
allCmp = false
break
}
if field == "" {
field = cmp.Field
} else if cmp.Field != field {
allCmp = false
break
}
}
// Special case for AND conditions on the same field
if allCmp {
fieldValues, err := getFieldValues(item, field)
if err != nil || len(fieldValues) == 0 {
return false, fmt.Errorf("field '%s' not found", field)
}
if fieldValues[0].Kind() == reflect.Slice {
for i := range fieldValues[0].Len() {
elem := fieldValues[0].Index(i)
allTrue := true
for _, expr := range ce.Expressions {
cmp := expr.(*ComparisonExpression)
if match, _ := cmp.compareValue(elem); !match {
allTrue = false
break
}
}
if allTrue {
return true, nil
}
}
return false, nil
} else {
// For scalar values, check all conditions against each value
for _, val := range fieldValues {
allTrue := true
for _, expr := range ce.Expressions {
cmp := expr.(*ComparisonExpression)
if match, _ := cmp.compareValue(val); !match {
allTrue = false
break
}
}
if !allTrue {
return false, nil
}
}
return true, nil
}
}
// Fallback: for AND over different fields, all must be true for the same item
for _, expr := range ce.Expressions {
if expr == nil {
return false, nil
}
match, err := expr.Evaluate(item)
if err != nil {
if strings.Contains(err.Error(), "not found") {
return false, err
}
return false, nil
}
if !match {
return false, nil
}
}
return true, nil
}
// Evaluate for OrExpression
func (oe *OrExpression) Evaluate(item reflect.Value) (bool, error) {
for _, expr := range oe.Expressions {
match, err := expr.Evaluate(item)
if err == nil && match {
return true, nil
}
}
return false, nil
}
// Add IsNullExpression type
type IsNullExpression struct {
Field string
Not bool
}
func (e *IsNullExpression) Evaluate(item reflect.Value) (bool, error) {
fieldValues, err := getFieldValues(item, e.Field)
if err != nil || len(fieldValues) == 0 {
return false, fmt.Errorf("field '%s' not found", e.Field)
}
for _, v := range fieldValues {
if v.Kind() == reflect.Ptr || v.Kind() == reflect.Interface {
if v.IsNil() {
return !e.Not, nil
}
} else if v.Kind() == reflect.Slice {
if v.IsNil() || v.Len() == 0 {
return !e.Not, nil
}
} else if !v.IsValid() {
return !e.Not, nil
} else if v.IsZero() {
return !e.Not, nil
}
}
return e.Not, nil // IS NOT NULL: true if found and not nil/zero
}
// Evaluate for AnyExpression
func (ae *AnyExpression) Evaluate(item reflect.Value) (bool, error) {
fieldValues, err := getFieldValues(item, ae.Field)
if err != nil || len(fieldValues) == 0 {
return false, fmt.Errorf("field '%s' not found", ae.Field)
}
// For each field value, check if any of the values match
for _, fieldValue := range fieldValues {
// For each value in the ANY() list, check if it matches
for _, value := range ae.Values {
match, _ := ae.compareValue(fieldValue, value)
if match {
return true, nil
}
}
}
return false, nil
}
// compareValue handles the actual comparison for a single value against a single ANY value
func (ae *AnyExpression) compareValue(fieldValue reflect.Value, value string) (bool, error) {
if fieldValue.Kind() == reflect.Ptr {
if fieldValue.IsNil() {
return false, nil
}
fieldValue = fieldValue.Elem()
}
switch fieldValue.Kind() {
case reflect.String:
s := fieldValue.Interface().(string)
switch ae.Operator {
case EQ:
return strings.EqualFold(s, value), nil
case NE:
return !strings.EqualFold(s, value), nil
case LT:
return strings.ToLower(s) < strings.ToLower(value), nil
case GT:
return strings.ToLower(s) > strings.ToLower(value), nil
case LE:
return strings.ToLower(s) <= strings.ToLower(value), nil
case GE:
return strings.ToLower(s) >= strings.ToLower(value), nil
case CONTAINS:
return strings.Contains(strings.ToLower(s), strings.ToLower(value)), nil
}
case reflect.Bool:
b, _ := strconv.ParseBool(value)
switch ae.Operator {
case EQ:
return fieldValue.Interface().(bool) == b, nil
case NE:
return fieldValue.Interface().(bool) != b, nil
}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
v, _ := strconv.ParseInt(value, 10, 64)
fv := fieldValue.Int()
switch ae.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
v, _ := strconv.ParseUint(value, 10, 64)
fv := fieldValue.Uint()
switch ae.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Float32, reflect.Float64:
v, _ := strconv.ParseFloat(value, 64)
fv := fieldValue.Float()
switch ae.Operator {
case EQ:
return fv == v, nil
case NE:
return fv != v, nil
case LT:
return fv < v, nil
case GT:
return fv > v, nil
case LE:
return fv <= v, nil
case GE:
return fv >= v, nil
}
case reflect.Slice:
// For a slice field, check if the value exists in the slice
if fieldValue.IsNil() {
return false, nil
}
for i := range fieldValue.Len() {
item := fieldValue.Index(i)
if item.Kind() == reflect.Ptr && !item.IsNil() {
item = item.Elem()
}
if item.Kind() == reflect.String {
switch ae.Operator {
case EQ:
if strings.EqualFold(item.String(), value) {
return true, nil
}
case NE:
if !strings.EqualFold(item.String(), value) {
return true, nil
}
case CONTAINS:
if strings.Contains(strings.ToLower(item.String()), strings.ToLower(value)) {
return true, nil
}
}
} else if item.Kind() == reflect.Int || item.Kind() == reflect.Int8 ||
item.Kind() == reflect.Int16 || item.Kind() == reflect.Int32 ||
item.Kind() == reflect.Int64 {
v, err := strconv.ParseInt(value, 10, 64)
if err != nil {
return false, nil
}
itemVal := item.Int()
switch ae.Operator {
case EQ:
if itemVal == v {
return true, nil
}
case NE:
if itemVal != v {
return true, nil
}
case LT:
if itemVal < v {
return true, nil
}
case GT:
if itemVal > v {
return true, nil
}
case LE:
if itemVal <= v {
return true, nil
}
case GE:
if itemVal >= v {
return true, nil
}
}
} else if item.Kind() == reflect.Float32 || item.Kind() == reflect.Float64 {
v, err := strconv.ParseFloat(value, 64)
if err != nil {
return false, nil
}
itemVal := item.Float()
switch ae.Operator {
case EQ:
if itemVal == v {
return true, nil
}
case NE:
if itemVal != v {
return true, nil
}
case LT:
if itemVal < v {
return true, nil
}
case GT:
if itemVal > v {
return true, nil
}
case LE:
if itemVal <= v {
return true, nil
}
case GE:
if itemVal >= v {
return true, nil
}
}
} else if item.Kind() == reflect.Interface {
if s, ok := item.Interface().(string); ok {
switch ae.Operator {
case EQ:
if strings.EqualFold(s, value) {
return true, nil
}
case NE:
if !strings.EqualFold(s, value) {
return true, nil
}
case CONTAINS:
if strings.Contains(strings.ToLower(s), strings.ToLower(value)) {
return true, nil
}
}
}
}
}
}
return false, nil
}
type LexerInterface interface {
NextToken() Token
}
type Parser struct {
l LexerInterface
currentToken Token
peekToken Token
errors []string
}
func NewParser(l LexerInterface) *Parser {
p := &Parser{l: l, errors: []string{}}
p.nextToken()
p.nextToken()
return p
}
func (p *Parser) Errors() []string {
return p.errors
}
func (p *Parser) nextToken() {
p.currentToken = p.peekToken
p.peekToken = p.l.NextToken()
// If the peek token is ILLEGAL, record the error
if p.peekToken.Type == ILLEGAL {
p.errors = append(p.errors, p.peekToken.Literal)
}
}
func (p *Parser) currentTokenIs(t TokenType) bool {
return p.currentToken.Type == t
}
func (p *Parser) ParseQuery() (Expression, error) {
// Handle empty query
if p.currentToken.Type == EOF {
return nil, nil
}
// Check for illegal tokens early (like unclosed strings)
if p.currentToken.Type == ILLEGAL {
p.errors = append(p.errors, p.currentToken.Literal)
return nil, fmt.Errorf("%s", p.currentToken.Literal)
}
// Skip leading AND/OR tokens for user-friendly SQL-like queries
for p.currentToken.Type == AND || p.currentToken.Type == OR {
p.nextToken()
}
expr := p.parseOrExpression()
// Check for unclosed strings or other illegal tokens that might have been encountered
if p.currentToken.Type == ILLEGAL {
p.errors = append(p.errors, p.currentToken.Literal)
return nil, fmt.Errorf("%s", p.currentToken.Literal)
}
// Check for unexpected trailing RPAREN tokens after parsing the main expression
if p.currentToken.Type == RPAREN {
p.errors = append(p.errors, "unbalanced parenthesis: unexpected closing )")
// Skip any trailing RPAREN tokens
for p.currentToken.Type == RPAREN {
p.nextToken()
}
}
if p.currentToken.Type != EOF && len(p.errors) == 0 {
p.errors = append(p.errors, "unexpected token after end of query")
}
// We'll handle this specific case in the compareValue method
if len(p.errors) > 0 {
return nil, fmt.Errorf("%s", strings.Join(p.errors, "; "))
}
return expr, nil
}
// parseOrExpression handles OR precedence
func (p *Parser) parseOrExpression() Expression {
expr := p.parseAndExpression()
for p.currentTokenIs(OR) {
p.nextToken() // move to right expr
right := p.parseAndExpression()
if right == nil {
// If there's an error in the right side, stop parsing this expression
p.errors = append(p.errors, "invalid expression after OR")
return expr
}
if orExpr, ok := expr.(*OrExpression); ok {
orExpr.Expressions = append(orExpr.Expressions, right)
expr = orExpr
} else {
expr = &OrExpression{Expressions: []Expression{expr, right}}
}
if !p.currentTokenIs(OR) {
break
}
}
return expr
}
// parseAndExpression handles AND precedence
func (p *Parser) parseAndExpression() Expression {
expr := p.parsePrimary()
if expr == nil {
return nil
}
for p.currentTokenIs(AND) {
p.nextToken() // move to right expr
right := p.parsePrimary()
if right == nil {
// If there's an error in the right side, stop parsing this expression
p.errors = append(p.errors, "invalid expression after AND")
return expr
}
if andExpr, ok := expr.(*ConjunctionExpression); ok {
andExpr.Expressions = append(andExpr.Expressions, right)
expr = andExpr
} else {
expr = &ConjunctionExpression{Expressions: []Expression{expr, right}}
}
if !p.currentTokenIs(AND) {
break
}
}
return expr
}
func (p *Parser) parsePrimary() Expression {
// Handle NOT operator
if p.currentTokenIs(NOT) {
p.nextToken() // consume NOT
expr := p.parsePrimary()
if expr == nil {
p.errors = append(p.errors, "invalid expression after NOT")
return nil
}
return &NotExpression{Expression: expr}
}
if p.currentTokenIs(LPAREN) {
// We're starting a parenthesized expression
p.nextToken()
// Handle empty parentheses
if p.currentTokenIs(RPAREN) {
p.nextToken()
// Return a special "always false" expression
return &ConjunctionExpression{Expressions: []Expression{}}
}