-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax.js
724 lines (606 loc) · 17.3 KB
/
syntax.js
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
// WHERE syntax class
const SyntaxWhere = function() {
// properties
this.condition = null;
}
// WHERE syntax prototype
SyntaxWhere.prototype = {
// whether the conditions are met
"isValid": function(symbols) {
// check the properties
if (this.condition == null) {
return true;
}
// judgment
if (this.condition.getText(symbols)) {
return true;
} else {
return false;
}
},
}
// SELECT syntax class
const SyntaxSelect = function() {
// properties
this.distinct = false;
this.list = [];
}
// SELECT syntax prototype
SyntaxSelect.prototype = {
// get result text
"getText": function(symbols) {
// check the properties
if (this.list.length == 0) {
return symbols.getText(0);
}
// get value
let text = "";
for (const term of this.list) {
text += term.getText(symbols);
}
return text;
},
}
// ORDER BY syntax class
const SyntaxOrder = function() {
// properties
this.list = [];
}
// ORDER BY syntax prototype
SyntaxOrder.prototype = {
// compare the magnitude of two values
"compare": function(a, b) {
for (const single of this.list) {
// compare in order
const x = single.value.getText(a.symbols);
const y = single.value.getText(b.symbols);
if (x != y) {
let result = 1;
if (x < y) {
result = -1;
}
if (single.desc) {
// descending order
result = -result;
}
return result;
}
}
return 0;
},
}
// Search condition class
const SyntaxCondition = function() {
// properties
this.list = [];
}
// Search condition prototype
SyntaxCondition.prototype = {
// get result text
"getText": function(symbols) {
// first text
let text = this.list[0].getText(symbols);
if (this.list.length == 1) {
return text;
}
if (text && text !== "0") {
return 1;
}
// second and subsequent text
for (let i = 1; i < this.list.length; i++) {
text = this.list[i].getText(symbols);
if (text && text !== "0") {
return 1;
}
}
return 0;
},
}
// Condition part class
const SyntaxPart = function() {
// properties
this.list = [];
}
// Condition part prototype
SyntaxPart.prototype = {
// get result text
"getText": function(symbols) {
// first text
let text = this.list[0].getText(symbols);
if (this.list.length == 1) {
return text;
}
if (!text || text === "0") {
return 0;
}
// second and subsequent text
for (let i = 1; i < this.list.length; i++) {
text = this.list[i].getText(symbols);
if (!text || text === "0") {
return 0;
}
}
return 1;
},
}
// Condition unit class
const SyntaxUnit = function() {
// properties
this.not = false;
this.expression = null;
}
// Condition unit prototype
SyntaxUnit.prototype = {
// get result text
"getText": function(symbols) {
// text
const text = this.expression.getText(symbols);
if (!this.not) {
return text;
}
// deal the NOT
if (text && text !== "0") {
return 0;
}
return 1;
},
}
// Condition expression class
const SyntaxExpression = function(first) {
// properties
this.first = first;
this.compare = "";
this.second = null;
this.clause = null;
}
// Condition expression prototype
SyntaxExpression.prototype = {
// get result text
"getText": function(symbols) {
let result = false;
let text = this.first.getText(symbols);
if (this.clause == null) {
// no comparison target
if (!this.compare) {
return text;
}
// get the comparison target
let second = this.second.getText(symbols);
if (PatternCommon.isInt(text) && !PatternCommon.isInt(second)) {
second = PatternCommon.toInt(second);
}
if (!PatternCommon.isInt(text) && PatternCommon.isInt(second)) {
text = PatternCommon.toInt(text);
}
// compare
if (PatternCommon.isInt(text)) {
// for BigInt
switch (this.compare) {
case "==":
result = text.equals(second);
break;
case "!=":
case "<>":
result = text.notEquals(second);
break;
case "<":
result = text.lesser(second);
break;
case "<=":
result = text.lesserOrEquals(second);
break;
case ">":
result = text.greater(second);
break;
case ">=":
result = text.greaterOrEquals(second);
break;
}
} else {
// otherwise
switch (this.compare) {
case "==":
result = (text == second);
break;
case "!=":
case "<>":
result = (text != second);
break;
case "<":
result = (text < second);
break;
case "<=":
result = (text <= second);
break;
case ">":
result = (text > second);
break;
case ">=":
result = (text >= second);
break;
}
}
} else {
// IN clause
let i = 0;
while (!result && i < this.clause.list.length) {
if (this.clause.list[i] == text) {
result = true;
}
i++;
}
if (this.clause.not) {
result = !result;
}
}
// convert to number
if (result) {
return 1;
} else {
return 0;
}
},
}
// Operator term class
const SyntaxTerm = function(first) {
// properties
this.first = first;
this.operators = [];
this.follows = [];
}
// Operator term prototype
SyntaxTerm.prototype = {
// add an operator
"add": function(operator, follow) {
this.operators.push(operator);
this.follows.push(follow);
},
// get result text
"getText": function(symbols) {
// check the properties
let text = this.first.getText(symbols);
if (this.operators.length == 0) {
return text;
}
// addition and subtraction
for (let i = 0; i < this.operators.length; i++) {
const follow = this.follows[i].getText(symbols);
switch (this.operators[i]) {
case "+":
text = PatternCommon.toInt(text).add(PatternCommon.toInt(follow));
break;
case "-":
text = PatternCommon.toInt(text).subtract(PatternCommon.toInt(follow));
break;
default:
text += "" + follow;
break;
}
}
return text;
},
}
// Operator factor class
const SyntaxFactor = function(first) {
// properties
this.first = first;
this.operators = [];
this.follows = [];
}
// Operator factor prototype
SyntaxFactor.prototype = {
// add an operator
"add": function(operator, follow) {
this.operators.push(operator);
this.follows.push(follow);
},
// get result text
"getText": function(symbols) {
// check the properties
const text = this.first.getText(symbols);
if (this.operators.length == 0) {
return text;
}
// multiplication and division
let value = PatternCommon.toInt(text);
for (let i = 0; i < this.operators.length; i++) {
const follow = PatternCommon.toInt(this.follows[i].getText(symbols));
switch (this.operators[i]) {
case "*":
value = value.multiply(follow);
break;
case "/":
value = value.divide(follow);
break;
default:
value = value.mod(follow);
break;
}
}
return value;
},
}
// Operator value class
const SyntaxValue = function(element) {
// properties
this.element = element;
this.follows = [];
}
// Operator value prototype
SyntaxValue.prototype = {
// get result text
"getText": function(symbols) {
// convert to pattern value
let text = this.element.getText(symbols);
for (const follow of this.follows) {
follow.setValue(text);
text = follow.getText(symbols);
}
return text;
},
}
// Property class
const SyntaxProperty = function(name) {
// properties
this.name = name;
this.value = null;
}
// Property prototype
SyntaxProperty.prototype = {
// set pattern value
"setValue": function(pattern) {
this.value = new PatternValue(pattern);
},
// get result text
"getText": function(symbols) {
return this.value.getProperty(this.name);
},
}
// Method class
const SyntaxMethod = function(name, param) {
// fields
this._name = name;
this._param = param;
this._value = null;
this._functions = {
"at": this._getAt.bind(this),
"rotate": this._getRotate.bind(this),
"skip": this._getSkip.bind(this),
"take": this._getTake.bind(this),
};
}
// Method prototype
SyntaxMethod.prototype = {
// set pattern value
"setValue": function(pattern) {
this._value = "" + pattern;
},
// get result text
"getText": function(symbols) {
// get method
const method = this._functions[this._name];
if (method == null) {
return this._value;
}
// execute the method
const number = PatternCommon.toInt(this._param.getText(symbols));
return method(number, this._value.length);
},
// get the value at the specified position
"_getAt": function(number, length) {
if (number.abs().greater(length) || number.equals(length)) {
return "";
}
if (number.isNegative()) {
return this._value[number.add(length)];
} else {
return this._value[number];
}
},
// get the rotated value
"_getRotate": function(number, length) {
let rotate = number.mod(length);
if (rotate.isNegative()) {
rotate = rotate.add(length);
}
return this._value.substring(rotate) + this._value.substring(0, rotate);
},
// get the skipped value
"_getSkip": function(number, length) {
if (number.abs().greater(length) || number.equals(length)) {
return "";
}
if (number.isNegative()) {
return this._value.substring(0, number.add(length));
} else {
return this._value.substring(number);
}
},
// get the value from the beginning
"_getTake": function(number, length) {
if (number.abs().greater(length) || number.equals(length)) {
return this._value;
}
if (number.isNegative()) {
return this._value.substring(number.add(length));
} else {
return this._value.substring(0, number);
}
},
}
// Method parameter class
const SyntaxParameter = function() {
// properties
this.term = null;
this.value = null;
}
// Method parameter prototype
SyntaxParameter.prototype = {
// get result text
"getText": function(symbols) {
if (this.term != null) {
return this.term.getText(symbols);
}
if (this.value != null) {
return "-" + this.value.getText(symbols);
}
return "";
},
}
// Iterator class
const SyntaxIterator = function(name, lambda) {
// fields
this._name = name;
this._lambda = lambda;
this._value = null;
this._functions = {
"every": this._testsEvery.bind(this),
"some": this._testsSome.bind(this),
};
}
// Iterator prototype
SyntaxIterator.prototype = {
// set pattern value
"setValue": function(pattern) {
this._value = "" + pattern;
},
// get result text
"getText": function(symbols) {
// set user-defined variables
if (this._lambda.whole != null) {
symbols.setText(this._lambda.whole, this._value);
}
// execution of iterator
let result = "";
const method = this._functions[this._name];
if (method != null) {
result = method(symbols);
}
// delete user-defined variables
symbols.setText(this._lambda.index, null);
if (this._lambda.whole != null) {
symbols.setText(this._lambda.whole, null);
}
return result;
},
// test for all indexes
"_testsEvery": function(symbols) {
for (let i = 0; i < this._value.length; i++) {
symbols.setText(this._lambda.index, i);
const text = this._lambda.getText(symbols);
if (!text || text === "0") {
return 0;
}
}
return 1;
},
// test for any index
"_testsSome": function(symbols) {
for (let i = 0; i < this._value.length; i++) {
symbols.setText(this._lambda.index, i);
const text = this._lambda.getText(symbols);
if (text && text !== "0") {
return 1;
}
}
return 0;
},
}
// Lambda expression class
const SyntaxLambda = function(index) {
// properties
this.index = index;
this.whole = null;
this.condition = null;
}
// Lambda expression prototype
SyntaxLambda.prototype = {
// get result text
"getText": function(symbols) {
return this.condition.getText(symbols);
},
}
// Auto-defined variable class
const SyntaxAuto = function(number) {
// fields
if (isNaN(number)) {
this._number = 0;
} else {
this._number = number;
}
}
// Auto-defined variable prototype
SyntaxAuto.prototype = {
// get result text
"getText": function(symbols) {
return symbols.getText(this._number);
},
}
// User-defined variable class
const SyntaxUser = function(name) {
// fields
this._name = name;
}
// User-defined variable prototype
SyntaxUser.prototype = {
// get result text
"getText": function(symbols) {
return symbols.getText(this._name);
},
}
// Literal value class
const SyntaxLiteral = function(text) {
// fields
this._text = text;
}
// Literal value prototype
SyntaxLiteral.prototype = {
// get result text
"getText": function(symbols) {
return this._text;
},
}
// Symbol table class
const SymbolTable = function(patterns) {
// fields
this._auto = patterns;
this._user = {};
this._term = {};
}
// Symbol table prototype
SymbolTable.prototype = {
// set the text of a variable
"setText": function(name, text) {
if (!isNaN(name)) {
return;
}
if (text == null) {
delete this._user[name];
} else {
this._user[name] = text;
}
},
// set the operator term
"setTerm": function(pair) {
this._term[pair.name] = pair.term;
},
// get the text of a variable
"getText": function(name) {
if (isNaN(name)) {
// user-defined variable
if (name == null) {
return "";
}
if (this._term[name] == null) {
return this._user[name];
} else {
return this._term[name].getText(this);
}
}
// auto-defined variable
if (name < 0 || this._auto.length <= name) {
return "";
}
return this._auto[name];
},
}