forked from go-rel/rel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter_query.go
599 lines (495 loc) · 13.8 KB
/
filter_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
package rel
import (
"errors"
)
// FilterOp defines enumeration of all supported filter types.
type FilterOp int
const (
// FilterAndOp is filter type for and operator.
FilterAndOp FilterOp = iota
// FilterOrOp is filter type for or operator.
FilterOrOp
// FilterNotOp is filter type for not operator.
FilterNotOp
// FilterEqOp is filter type for equal comparison.
FilterEqOp
// FilterNeOp is filter type for not equal comparison.
FilterNeOp
// FilterLtOp is filter type for less than comparison.
FilterLtOp
// FilterLteOp is filter type for less than or equal comparison.
FilterLteOp
// FilterGtOp is filter type for greater than comparison.
FilterGtOp
// FilterGteOp is filter type for greter than or equal comparison.
FilterGteOp
// FilterNilOp is filter type for nil check.
FilterNilOp
// FilterNotNilOp is filter type for not nil check.
FilterNotNilOp
// FilterInOp is filter type for inclusion comparison.
FilterInOp
// FilterNinOp is filter type for not inclusion comparison.
FilterNinOp
// FilterLikeOp is filter type for like comparison.
FilterLikeOp
// FilterNotLikeOp is filter type for not like comparison.
FilterNotLikeOp
// FilterFragmentOp is filter type for custom filter.
FilterFragmentOp
)
// FilterQuery defines details of a coundition type.
type FilterQuery struct {
Type FilterOp
Field string
Value interface{}
Inner []FilterQuery
}
// Build Filter query.
func (fq FilterQuery) Build(query *Query) {
query.WhereQuery = query.WhereQuery.And(fq)
}
// None returns true if no filter is specified.
func (fq FilterQuery) None() bool {
return (fq.Type == FilterAndOp ||
fq.Type == FilterOrOp ||
fq.Type == FilterNotOp) &&
len(fq.Inner) == 0
}
// And wraps filters using and.
func (fq FilterQuery) And(filters ...FilterQuery) FilterQuery {
if fq.None() && len(filters) == 1 {
return filters[0]
} else if fq.Type == FilterAndOp {
fq.Inner = append(fq.Inner, filters...)
return fq
}
inner := append([]FilterQuery{fq}, filters...)
return And(inner...)
}
// Or wraps filters using or.
func (fq FilterQuery) Or(filter ...FilterQuery) FilterQuery {
if fq.None() && len(filter) == 1 {
return filter[0]
} else if fq.Type == FilterOrOp || fq.None() {
fq.Type = FilterOrOp
fq.Inner = append(fq.Inner, filter...)
return fq
}
inner := append([]FilterQuery{fq}, filter...)
return Or(inner...)
}
func (fq FilterQuery) and(other FilterQuery) FilterQuery {
if fq.Type == FilterAndOp {
fq.Inner = append(fq.Inner, other)
return fq
}
return And(fq, other)
}
func (fq FilterQuery) or(other FilterQuery) FilterQuery {
if fq.Type == FilterOrOp || fq.None() {
fq.Type = FilterOrOp
fq.Inner = append(fq.Inner, other)
return fq
}
return Or(fq, other)
}
// AndEq append equal expression using and.
func (fq FilterQuery) AndEq(field string, value interface{}) FilterQuery {
return fq.and(Eq(field, value))
}
// AndNe append not equal expression using and.
func (fq FilterQuery) AndNe(field string, value interface{}) FilterQuery {
return fq.and(Ne(field, value))
}
// AndLt append lesser than expression using and.
func (fq FilterQuery) AndLt(field string, value interface{}) FilterQuery {
return fq.and(Lt(field, value))
}
// AndLte append lesser than or equal expression using and.
func (fq FilterQuery) AndLte(field string, value interface{}) FilterQuery {
return fq.and(Lte(field, value))
}
// AndGt append greater than expression using and.
func (fq FilterQuery) AndGt(field string, value interface{}) FilterQuery {
return fq.and(Gt(field, value))
}
// AndGte append greater than or equal expression using and.
func (fq FilterQuery) AndGte(field string, value interface{}) FilterQuery {
return fq.and(Gte(field, value))
}
// AndNil append is nil expression using and.
func (fq FilterQuery) AndNil(field string) FilterQuery {
return fq.and(Nil(field))
}
// AndNotNil append is not nil expression using and.
func (fq FilterQuery) AndNotNil(field string) FilterQuery {
return fq.and(NotNil(field))
}
// AndIn append is in expression using and.
func (fq FilterQuery) AndIn(field string, values ...interface{}) FilterQuery {
return fq.and(In(field, values...))
}
// AndNin append is not in expression using and.
func (fq FilterQuery) AndNin(field string, values ...interface{}) FilterQuery {
return fq.and(Nin(field, values...))
}
// AndLike append like expression using and.
func (fq FilterQuery) AndLike(field string, pattern string) FilterQuery {
return fq.and(Like(field, pattern))
}
// AndNotLike append not like expression using and.
func (fq FilterQuery) AndNotLike(field string, pattern string) FilterQuery {
return fq.and(NotLike(field, pattern))
}
// AndFragment append fragment using and.
func (fq FilterQuery) AndFragment(expr string, values ...interface{}) FilterQuery {
return fq.and(FilterFragment(expr, values...))
}
// OrEq append equal expression using or.
func (fq FilterQuery) OrEq(field string, value interface{}) FilterQuery {
return fq.or(Eq(field, value))
}
// OrNe append not equal expression using or.
func (fq FilterQuery) OrNe(field string, value interface{}) FilterQuery {
return fq.or(Ne(field, value))
}
// OrLt append lesser than expression using or.
func (fq FilterQuery) OrLt(field string, value interface{}) FilterQuery {
return fq.or(Lt(field, value))
}
// OrLte append lesser than or equal expression using or.
func (fq FilterQuery) OrLte(field string, value interface{}) FilterQuery {
return fq.or(Lte(field, value))
}
// OrGt append greater than expression using or.
func (fq FilterQuery) OrGt(field string, value interface{}) FilterQuery {
return fq.or(Gt(field, value))
}
// OrGte append greater than or equal expression using or.
func (fq FilterQuery) OrGte(field string, value interface{}) FilterQuery {
return fq.or(Gte(field, value))
}
// OrNil append is nil expression using or.
func (fq FilterQuery) OrNil(field string) FilterQuery {
return fq.or(Nil(field))
}
// OrNotNil append is not nil expression using or.
func (fq FilterQuery) OrNotNil(field string) FilterQuery {
return fq.or(NotNil(field))
}
// OrIn append is in expression using or.
func (fq FilterQuery) OrIn(field string, values ...interface{}) FilterQuery {
return fq.or(In(field, values...))
}
// OrNin append is not in expression using or.
func (fq FilterQuery) OrNin(field string, values ...interface{}) FilterQuery {
return fq.or(Nin(field, values...))
}
// OrLike append like expression using or.
func (fq FilterQuery) OrLike(field string, pattern string) FilterQuery {
return fq.or(Like(field, pattern))
}
// OrNotLike append not like expression using or.
func (fq FilterQuery) OrNotLike(field string, pattern string) FilterQuery {
return fq.or(NotLike(field, pattern))
}
// OrFragment append fragment using or.
func (fq FilterQuery) OrFragment(expr string, values ...interface{}) FilterQuery {
return fq.or(FilterFragment(expr, values...))
}
// And compares other filters using and.
func And(inner ...FilterQuery) FilterQuery {
if len(inner) == 1 {
return inner[0]
}
return FilterQuery{
Type: FilterAndOp,
Inner: inner,
}
}
// Or compares other filters using and.
func Or(inner ...FilterQuery) FilterQuery {
if len(inner) == 1 {
return inner[0]
}
return FilterQuery{
Type: FilterOrOp,
Inner: inner,
}
}
// Not wraps filters using not.
// It'll negate the filter type if possible.
func Not(inner ...FilterQuery) FilterQuery {
if len(inner) == 1 {
fq := inner[0]
switch fq.Type {
case FilterEqOp:
fq.Type = FilterNeOp
return fq
case FilterLtOp:
fq.Type = FilterGteOp
case FilterLteOp:
fq.Type = FilterGtOp
case FilterGtOp:
fq.Type = FilterLteOp
case FilterGteOp:
fq.Type = FilterLtOp
case FilterNilOp:
fq.Type = FilterNotNilOp
case FilterInOp:
fq.Type = FilterNinOp
case FilterLikeOp:
fq.Type = FilterNotLikeOp
default:
return FilterQuery{
Type: FilterNotOp,
Inner: inner,
}
}
return fq
}
return FilterQuery{
Type: FilterNotOp,
Inner: inner,
}
}
// Eq expression field equal to value.
func Eq(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterEqOp,
Field: field,
Value: value,
}
}
// Ne compares that left value is not equal to right value.
func Ne(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterNeOp,
Field: field,
Value: value,
}
}
// Lt compares that left value is less than to right value.
func Lt(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterLtOp,
Field: field,
Value: value,
}
}
// Lte compares that left value is less than or equal to right value.
func Lte(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterLteOp,
Field: field,
Value: value,
}
}
// Gt compares that left value is greater than to right value.
func Gt(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterGtOp,
Field: field,
Value: value,
}
}
// Gte compares that left value is greater than or equal to right value.
func Gte(field string, value interface{}) FilterQuery {
return FilterQuery{
Type: FilterGteOp,
Field: field,
Value: value,
}
}
// Nil check whether field is nil.
func Nil(field string) FilterQuery {
return FilterQuery{
Type: FilterNilOp,
Field: field,
}
}
// NotNil check whether field is not nil.
func NotNil(field string) FilterQuery {
return FilterQuery{
Type: FilterNotNilOp,
Field: field,
}
}
// In check whethers value of the field is included in values.
func In(field string, values ...interface{}) FilterQuery {
return FilterQuery{
Type: FilterInOp,
Field: field,
Value: values,
}
}
// InInt check whethers integer values of the field is included.
func InInt(field string, values []int) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return In(field, ivalues...)
}
// InUint check whethers unsigned integer values of the field is included.
func InUint(field string, values []uint) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return In(field, ivalues...)
}
// InString check whethers string values of the field is included.
func InString(field string, values []string) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return In(field, ivalues...)
}
// Nin check whethers value of the field is not included in values.
func Nin(field string, values ...interface{}) FilterQuery {
return FilterQuery{
Type: FilterNinOp,
Field: field,
Value: values,
}
}
// NinInt check whethers integer values of the is not included.
func NinInt(field string, values []int) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return Nin(field, ivalues...)
}
// NinUint check whethers unsigned integer values of the is not included.
func NinUint(field string, values []uint) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return Nin(field, ivalues...)
}
// NinString check whethers string values of the is not included.
func NinString(field string, values []string) FilterQuery {
var (
ivalues = make([]interface{}, len(values))
)
for i := range values {
ivalues[i] = values[i]
}
return Nin(field, ivalues...)
}
// Like compares value of field to match string pattern.
func Like(field string, pattern string) FilterQuery {
return FilterQuery{
Type: FilterLikeOp,
Field: field,
Value: pattern,
}
}
// NotLike compares value of field to not match string pattern.
func NotLike(field string, pattern string) FilterQuery {
return FilterQuery{
Type: FilterNotLikeOp,
Field: field,
Value: pattern,
}
}
// FilterFragment add custom filter.
func FilterFragment(expr string, values ...interface{}) FilterQuery {
return FilterQuery{
Type: FilterFragmentOp,
Field: expr,
Value: values,
}
}
func filterDocument(doc *Document) FilterQuery {
var (
pFields = doc.PrimaryFields()
pValues = doc.PrimaryValues()
)
return filterDocumentPrimary(pFields, pValues, FilterEqOp)
}
func filterDocumentPrimary(pFields []string, pValues []interface{}, op FilterOp) FilterQuery {
var filter FilterQuery
for i := range pFields {
filter = filter.And(FilterQuery{
Type: op,
Field: pFields[i],
Value: pValues[i],
})
}
return filter
}
func filterCollection(col *Collection) FilterQuery {
var (
pFields = col.PrimaryFields()
pValues = col.PrimaryValues()
length = col.Len()
)
return filterCollectionPrimary(pFields, pValues, length)
}
func filterCollectionPrimary(pFields []string, pValues []interface{}, length int) FilterQuery {
var filter FilterQuery
if len(pFields) == 1 {
filter = In(pFields[0], pValues[0].([]interface{})...)
} else {
var (
andFilters = make([]FilterQuery, length)
)
for i := range pValues {
var (
values = pValues[i].([]interface{})
)
for j := range values {
andFilters[j] = andFilters[j].AndEq(pFields[i], values[j])
}
}
filter = Or(andFilters...)
}
return filter
}
func filterBelongsTo(assoc Association) (FilterQuery, error) {
var (
rValue = assoc.ReferenceValue()
fValue = assoc.ForeignValue()
filter = Eq(assoc.ForeignField(), fValue)
)
if rValue != fValue {
return filter, ConstraintError{
Key: assoc.ReferenceField(),
Type: ForeignKeyConstraint,
Err: errors.New("rel: inconsistent belongs to ref and fk"),
}
}
return filter, nil
}
func filterHasOne(assoc Association, asssocDoc *Document) (FilterQuery, error) {
var (
fField = assoc.ForeignField()
fValue = assoc.ForeignValue()
rValue = assoc.ReferenceValue()
filter = filterDocument(asssocDoc).AndEq(fField, rValue)
)
if rValue != fValue {
return filter, ConstraintError{
Key: fField,
Type: ForeignKeyConstraint,
Err: errors.New("rel: inconsistent has one ref and fk"),
}
}
return filter, nil
}