-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogic.lua
1314 lines (1165 loc) · 37.7 KB
/
logic.lua
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
local function pack(...)
return {n = select('#', ...), ...}
end
local array_mt = {}
local function mark_as_array(tab)
return setmetatable(tab, array_mt)
end
local function array(...)
return mark_as_array({...})
end
local function is_array(tab)
return getmetatable(tab) == array_mt
end
local function null()
return nil
end
local function string_starts(String, Start)
return string.sub(String, 1, string.len(Start)) == Start
end
local function string_ends(String, End)
return End == '' or string.sub(String, -string.len(End)) == End
end
local function is_logic(closure, tab)
local is_object = type(tab) == 'table' and not closure.opts.is_nil(tab) and not closure.opts.is_array(tab)
if is_object == false then
return false
end
local contains_one_key = false
for _, v in pairs(tab) do
if not contains_one_key and type(v) ~= 'function' then
contains_one_key = true
else
return false
end
end
return is_object and contains_one_key
end
local function js_to_boolean(closure, value)
if value == 0 or value == '' or value == '' or closure.opts.is_nil(value) then
return false
end
if type(value) == 'number' and value ~= value then
return false
end
return not (not value)
end
local function js_reducible_array_to_string(closure, value)
if closure.opts.is_array(value) then
local newval = value
while #newval == 1 and closure.opts.is_array(newval[1]) do
-- reduce array that only contain array
newval = newval[1]
end
if #newval == 0 then
return ''
elseif #newval == 1 then
return tostring(newval[1])
end
end
return value
end
local function js_to_number(closure, value)
value = js_reducible_array_to_string(closure, value)
if value == 0 or value == '' or value == '0' or value == false then
return 0
end
if value == true then
return 1
end
local n = tonumber(value)
if type(n) ~= 'number' then
return 0 / 0
end
return n
end
local function js_is_equal(closure, a, b)
if type(a) == type(b) then
return a == b
end
if closure.opts.is_nil(a) or closure.opts.is_nil(b) then
return a == b
end
-- handle empty or single item array
if closure.opts.is_array(a) or closure.opts.is_array(b) then
local a_ar = js_reducible_array_to_string(closure, a)
local b_ar = js_reducible_array_to_string(closure, b)
if type(a_ar) == 'string' and type(b_ar) == 'string' then
return a_ar == b_ar
end
end
-- convert to number
local a_num = js_to_number(closure, a)
local b_num = js_to_number(closure, b)
return a_num == b_num
end
local function js_array_to_string(closure, a)
local res = ''
local stack = {}
local local_closure = {
table = a,
index = 1
}
local first = true
while local_closure ~= nil do
local fully_iterated = true
for i = local_closure.index, #local_closure.table, 1 do
local v = local_closure.table[i]
local str
if closure.opts.is_array(v) then
-- prevent recursive loop
local recurse = false
for _, saved in pairs(stack) do
if saved.table == v then
recurse = true
break
end
end
if recurse then
break
end
--
-- add to stack
local_closure.index = i + 1
table.insert(stack, local_closure)
local_closure = {table = v, index = 1}
fully_iterated = false
--
break
elseif type(v) == 'table' then
str = '[object Object]'
else
str = tostring(v)
end
-- add comma between array items
if first then
first = false
else
res = res .. ','
end
--
res = res .. str
end
if fully_iterated then
local_closure = table.remove(stack)
end
end
return res
end
local function js_to_string(closure, a)
if closure.opts.is_array(a) then
return js_array_to_string(closure, a)
elseif type(a) == 'table' then
-- object
return '[object Object]'
end
-- others
return tostring(a)
end
local operations = {}
operations.__index = operations
operations['!!'] = function(closure, a)
return js_to_boolean(closure, a)
end
operations['!'] = function(closure, a)
return not js_to_boolean(closure, a)
end
operations['=='] = function(closure, a, b)
return js_is_equal(closure, a, b)
end
operations['==='] = function(_, a, b)
return a == b
end
operations['!='] = function(closure, a, b)
return not js_is_equal(closure, a, b)
end
operations['!=='] = function(_, a, b)
return a ~= b
end
operations['>'] = function(closure, a, b)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
return a == a and b == b and a > b
end
operations['>='] = function(closure, a, b)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
return a == a and b == b and a >= b
end
operations['<'] = function(closure, a, b, c)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
if closure.opts.is_nil(c) then
return a == a and b == b and a < b
else
c = js_to_number(closure, c)
return a == a and b == b and c == c and a < b and b < c
end
end
operations['<='] = function(closure, a, b, c)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
if closure.opts.is_nil(c) then
return a == a and b == b and a <= b
else
c = js_to_number(closure, c)
return a == a and b == b and c == c and a <= b and b <= c
end
end
operations['+'] = function(closure, ...)
local arg = pack(...)
local a = 0
for i = 1, arg.n do
local v = arg[i]
if i == 1 and type(v) == 'string' and arg.n > 1 then
a = ''
end
if type(a) == 'string' then
a = a .. js_to_string(closure, v)
else
local n = js_to_number(closure, v)
if n == n then
a = a + n
else
a = js_to_string(closure, a) .. js_to_string(closure, v)
end
end
end
return a
end
operations['*'] = function(closure, ...)
local arg = pack(...)
local a = 1
for i = 1, arg.n do
local v = arg[i]
a = a * js_to_number(closure, v)
end
return a
end
operations['-'] = function(closure, a, b)
a = js_to_number(closure, a)
if closure.opts.is_nil(b) then
return -a
end
b = js_to_number(closure, b)
return a - b
end
operations['/'] = function(closure, a, b)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
return a / b
end
operations['%'] = function(closure, a, b)
a = js_to_number(closure, a)
b = js_to_number(closure, b)
return a % b
end
operations['min'] = function(closure, ...)
local arg = pack(...)
for i = 1, arg.n do
local v = arg[i]
v = js_to_number(closure, v)
if v ~= v then
return v
end
arg[i] = v
end
return math.min(unpack(arg))
end
operations['max'] = function(closure, ...)
local arg = pack(...)
for i = 1, arg.n do
local v = arg[i]
v = js_to_number(closure, v)
if v ~= v then
return v
end
arg[i] = v
end
return math.max(unpack(arg))
end
operations['log'] = function(_, a)
print(a)
return a
end
operations['in'] = function(closure, a, b)
if closure.opts.is_array(b) then
for _, v in ipairs(b) do
if v == a then
return true
end
end
elseif type(b) == 'table' then
for _, v in pairs(b) do
if v == a then
return true
end
end
elseif type(b) == 'string' then
local i = string.find(b, tostring(a))
return i ~= nil
end
return false
end
operations['cat'] = function(closure, ...)
local arg = pack(...)
local res = ''
for i = 1, arg.n do
local v = arg[i]
res = res .. js_to_string(closure, v)
end
return res
end
operations['substr'] = function(closure, source, st, en)
if closure.opts.is_nil(st) then
return source
end
if st >= 0 then
st = st + 1
end
if closure.opts.is_nil(en) then
return string.sub(source, st)
end
if en >= 0 then
en = st + en - 1
else
en = string.len(source) + en
end
return string.sub(source, st, en)
end
operations['merge'] = function(closure, ...)
local arg = pack(...)
if arg.n < 1 then
return closure.opts.array()
end
local res = closure.opts.array()
for i = 1, arg.n do
local v = arg[i]
if not closure.opts.is_array(v) then
table.insert(res, v)
else
for _, sv in ipairs(v) do
table.insert(res, sv)
end
end
end
return res
end
operations['var'] = function(closure, attr, default)
local data = closure.data
if closure.opts.is_nil(attr) or attr == '' then
return data
end
if closure.opts.is_nil(data) or type(data) ~= 'table' then
return data
end
if type(attr) == 'number' then
local val = data[attr + 1]
if closure.opts.is_nil(val) then
return default
end
return val
end
if type(attr) ~= 'string' then
return closure.opts.null()
end
if (string_starts(attr, '.') or string_ends(attr, '.')) then
return closure.opts.null()
end
for sub in attr:gmatch('([^\\.]+)') do
data = data[sub]
if closure.opts.is_nil(data) then
return default
end
end
return data
end
operations['missing'] = function(closure, ...)
local arg = pack(...)
local missing = closure.opts.array()
local keys = arg
if closure.opts.is_array(keys[1]) then
keys = keys[1]
end
for i = 1, keys.n or #keys do
local attr = keys[i]
local val = operations.var(closure, attr)
if closure.opts.is_nil(val) or val == '' then
table.insert(missing, attr)
end
end
return missing
end
operations['missingSome'] = function(closure, minimum, keys)
local missing = operations.missing(closure, unpack(keys))
if #keys - #missing >= minimum then
return closure.opts.array()
else
return missing
end
end
operations['method'] = function(closure, obj, method, ...)
if obj ~= nil and method ~= nil then
return obj[method](obj, ...)
end
return closure.opts.null()
end
operations['join'] = function(closure, separator, items)
if not closure.opts.is_array(items) then
return closure.opts.null()
end
if not js_to_boolean(closure, separator) then
return js_to_string(closure, items)
end
local res = ''
for i, v in ipairs(items) do
if i > 1 then
res = res .. js_to_string(closure, separator)
end
res = res .. js_to_string(closure, v)
end
return res
end
operations['length'] = function(_, obj)
if type(obj) == 'string' then
return string.len(obj)
end
if type(obj) == 'table' then
return #obj
end
return 0
end
operations['typeof'] = function(closure, v)
if closure.opts.null() == v then
return 'object'
end
local t = type(v)
if t == 'nil' then
return 'undefined'
end
if t == 'table' or t == 'userdata' or t == 'thread' then
return 'object'
end
return t
end
operations['isArray'] = function(closure, v)
return closure.opts.is_array(v)
end
operations['toUpperCase'] = function(_, v)
if type(v) ~= "string" then
return nil
end
return string.upper(v)
end
operations['toLowerCase'] = function(_, v)
if type(v) ~= "string" then
return nil
end
return string.lower(v)
end
-- snake-case alias to be compatible with original json logic
operations['missing_some'] = operations['missingSome']
operations['is_array'] = operations['isArray']
local function get_operator(tab)
for k, _ in pairs(tab) do
return k
end
return nil
end
local function table_copy_fill(source, opts)
local target = {}
for i, _ in pairs(source) do
target[i] = opts.null() or true
end
if opts.is_array(source) then
opts.mark_as_array(target)
end
return target
end
function recurse_array(stack, closure, last_child_result)
-- zero length
if #closure.logic == 0 then
return table.remove(stack), closure.opts.array()
end
-- state initialization
closure.state.length = closure.state.length or #closure.logic
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or {}
closure.state.normalized = closure.state.normalized or table_copy_fill(closure.logic, closure.opts)
--
-- recurse if necessary
if not closure.state.recursed[closure.state.index] then
closure.state.recursed[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[closure.state.index],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.normalized[closure.state.index] = last_child_result
--
-- process next item if available
if closure.state.index < closure.state.length then
closure.state.index = closure.state.index + 1
return closure, last_child_result
end
return table.remove(stack), closure.state.normalized
end
local recurser = {}
-- 'if' should be called with a odd number of parameters, 3 or greater
-- This works on the pattern:
-- if( 0 ){ 1 }else{ 2 };
-- if( 0 ){ 1 }else if( 2 ){ 3 }else{ 4 };
-- if( 0 ){ 1 }else if( 2 ){ 3 }else if( 4 ){ 5 }else{ 6 };
-- The implementation is:
-- For pairs of values (0,1 then 2,3 then 4,5 etc)
-- If the first evaluates truthy, evaluate and return the second
-- If the first evaluates falsy, jump to the next pair (e.g, 0,1 to 2,3)
-- given one parameter, evaluate and return it. (it's an Else and all the If/ElseIf were false)
-- given 0 parameters, return NULL (not great practice, but there was no Else)
recurser['if'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero or one length
if #closure.logic[op] <= 1 then
return table.remove(stack), nil
end
-- state initialization
closure.state.length = closure.state.length or #closure.logic[op]
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or {}
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse if haven't
if not closure.state.recursed[closure.state.index] then
closure.state.recursed[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][closure.state.index],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.normalized[op][closure.state.index] = last_child_result
--
if closure.state.index % 2 == 1 and closure.state.index < closure.state.length then
if js_to_boolean(closure, closure.state.normalized[op][closure.state.index]) then
-- closure conditions is true
closure.state.index = closure.state.index + 1
else
-- closure conditions is false
closure.state.index = closure.state.index + 2
end
else
last_child_result = closure.state.normalized[op][closure.state.index]
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['?:'] = recurser['if']
recurser['and'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
return table.remove(stack), nil
end
-- state initialization
closure.state.length = closure.state.length or #closure.logic[op]
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or {}
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse if haven't
if not closure.state.recursed[closure.state.index] then
closure.state.recursed[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][closure.state.index],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.normalized[op][closure.state.index] = last_child_result
--
if
js_to_boolean(closure, closure.state.normalized[op][closure.state.index]) and
closure.state.index < closure.state.length
then
-- closure condition is true
closure.state.index = closure.state.index + 1
else
-- closure condition is false or the last element
last_child_result = closure.state.normalized[op][closure.state.index]
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['or'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
closure = table.remove(stack)
return closure, nil
end
-- state initialization
closure.state.length = closure.state.length or #closure.logic[op]
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or {}
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse if necessary
if not closure.state.recursed[closure.state.index] then
closure.state.recursed[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][closure.state.index],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.normalized[op][closure.state.index] = last_child_result
--
if
not js_to_boolean(closure, closure.state.normalized[op][closure.state.index]) and
closure.state.index < closure.state.length
then
-- if true then continue next
closure.state.index = closure.state.index + 1
else
-- false or the last element
last_child_result = closure.state.normalized[op][closure.state.index]
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['filter'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
return table.remove(stack), nil
end
-- state initialization
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or false
closure.state.scoped = closure.state.scoped or false
closure.state.filtered = closure.state.filtered or {}
closure.state.result = closure.state.result or closure.opts.array()
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse scoped_data if necessary
if not closure.state.recursed then
closure.state.recursed = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][1],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
if not closure.state.scoped then
if type(last_child_result) ~= 'table' then
return table.remove(stack), nil
end
closure.state.scoped = true
closure.state.normalized[op][1] = last_child_result
closure.state.length = #closure.state.normalized[op][1]
end
--
-- filter and recurse if necessary
local scoped_data = closure.state.normalized[op][1]
if not closure.state.filtered[closure.state.index] then
closure.state.filtered[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][2],
data = scoped_data[closure.state.index],
state = {},
opts = closure.opts
}
return closure, last_child_result
end
if js_to_boolean(closure, last_child_result) then
table.insert(closure.state.result, scoped_data[closure.state.index])
end
--
if closure.state.index < closure.state.length then
closure.state.index = closure.state.index + 1
else
last_child_result = closure.state.result
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['map'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
return table.remove(stack), nil
end
-- state initialization
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or false
closure.state.scoped = closure.state.scoped or false
closure.state.mapped = closure.state.mapped or {}
closure.state.result = closure.state.result or table_copy_fill(closure.logic[op], closure.opts)
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse scoped_data if necessary
if not closure.state.recursed then
closure.state.recursed = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][1],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
if not closure.state.scoped then
if type(last_child_result) ~= 'table' then
return table.remove(stack), nil
end
closure.state.scoped = true
closure.state.normalized[op][1] = last_child_result
closure.state.length = #closure.state.normalized[op][1]
end
--
-- map and recurse if necessary
local scoped_data = closure.state.normalized[op][1]
if closure.state.length < 1 then
return table.remove(stack), closure.opts.array()
end
if not closure.state.mapped[closure.state.index] then
closure.state.mapped[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][2],
data = scoped_data[closure.state.index],
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.result[closure.state.index] = last_child_result
--
if closure.state.index < closure.state.length then
closure.state.index = closure.state.index + 1
else
last_child_result = closure.state.result
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['reduce'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
closure = table.remove(stack)
return closure, nil
end
-- state initialization
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or false
closure.state.scoped = closure.state.scoped or false
closure.state.reduced = closure.state.reduced or {}
closure.state.result = closure.state.result or closure.logic[op][3]
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse scoped_data if necessary
if not closure.state.recursed then
closure.state.recursed = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][1],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
if not closure.state.scoped then
if type(last_child_result) ~= 'table' then
return table.remove(stack), closure.state.result
end
closure.state.scoped = true
closure.state.normalized[op][1] = last_child_result
closure.state.length = #closure.state.normalized[op][1]
end
--
-- reduce and recurse if necessary
local scoped_data = closure.state.normalized[op][1]
if closure.state.length < 1 then
return table.remove(stack), closure.state.result
end
if not closure.state.reduced[closure.state.index] then
closure.state.reduced[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][2],
data = {
current = scoped_data[closure.state.index],
accumulator = closure.state.result
},
state = {},
opts = closure.opts
}
return closure, last_child_result
end
closure.state.result = last_child_result
--
if closure.state.index < closure.state.length then
closure.state.index = closure.state.index + 1
else
last_child_result = closure.state.result
closure = table.remove(stack)
end
return closure, last_child_result
end
recurser['all'] = function(stack, closure, last_child_result)
local op = get_operator(closure.logic)
-- zero length
if #closure.logic[op] == 0 then
return table.remove(stack), nil
end
-- state initialization
closure.state.index = closure.state.index or 1
closure.state.recursed = closure.state.recursed or false
closure.state.scoped = closure.state.scoped or false
closure.state.checked = closure.state.checked or {}
closure.state.normalized[op] = closure.state.normalized[op] or closure.opts.array()
--
-- recurse scoped_data if necessary
if not closure.state.recursed then
closure.state.recursed = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][1],
data = closure.data,
state = {},
opts = closure.opts
}
return closure, last_child_result
end
if not closure.state.scoped then
if type(last_child_result) ~= 'table' then
return table.remove(stack), nil
end
closure.state.scoped = true
closure.state.normalized[op][1] = last_child_result
closure.state.length = #closure.state.normalized[op][1]
end
--
-- filter and recurse if necessary
local scoped_data = closure.state.normalized[op][1]
if closure.state.length < 1 then
closure = table.remove(stack)
return closure, nil
end
if not closure.state.checked[closure.state.index] then
closure.state.checked[closure.state.index] = true
table.insert(stack, closure)
closure = {
logic = closure.logic[op][2],
data = scoped_data[closure.state.index],
state = {},
opts = closure.opts
}
return closure, last_child_result
end
--
if js_to_boolean(closure, last_child_result) and closure.state.index < closure.state.length then