-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecTokenStruct.cpp
804 lines (639 loc) · 38.3 KB
/
execTokenStruct.cpp
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
#include <sstream>
#include <stdlib.h>
#include <iostream>
#include "execTokenStruct.h"
#include "methodStorage.h"
#include "gjye++.h"
#include "miscTools.h"
#include "blockWrappers.h"
namespace exec {
//################ EXCHANGE TOKEN FOR DATA ################//
bool parseTokID(std::string tokID, int retArry[]) { // turn «#|#» into array of # and #
if (tokID.find('«') != std::string::npos && tokID.find('»') != std::string::npos && tokID.find('¬') != std::string::npos) {
int sIndex = (tokID.find('«'));
int eIndex = (tokID.find('»'));
tokID = tokID.substr(sIndex+1,eIndex-sIndex);
int index = (tokID.find('¬'));
retArry[0] = (int) tools::stringToInt(tokID.substr(0,index));
retArry[1] = (int) tools::stringToInt( tokID.substr(index+1,tokID.length()) );
if ( retArry[0] < 0 || retArry[1] < 0) return false; // invalid params
return true;
} else {return false;}
}
/// ################################ ///
//################ EXECUTE VECTOR STRUCT ################//
std::string runVectorStruct(EnviroWrap * environment, TokenGroup * tGroup, std::string catalyst) { // builds temp vectors out of vector declarations ( [2,22,222,2222] )
if (catalyst == "-1") {catalyst = tGroup->catalyst;}
std::string catalystCpy;
catalystCpy = catalyst;
if (catalystCpy.at(0) == '[' && catalystCpy.at(catalystCpy.length()-1) == ']') {
catalystCpy.replace(0,1,"");
catalystCpy.replace(catalystCpy.length()-1,1,"");
std::string tokenQualifier = environment->dataStructure.variableReferencer("_VECTOR_");
VariableStorage * tmpVS = new VariableStorage;
environment->dataStructure.addVector(tokenQualifier, *tmpVS, -1, true); // create an empty set
delete tmpVS;
while (catalystCpy.length() > 0) { // loop through each element of the vector dec.
int delimiter = (catalystCpy.find(',') != std::string::npos ? catalystCpy.find(',') : catalystCpy.length());
std::string headerName = "", tokenData = "", token = catalystCpy.substr(0,delimiter);
if (token.find('«') != std::string::npos && token.find('»',token.find('«')) != std::string::npos) { // take care of sublevels
std::string tokID, tokVal;
int sIndex = 0, eIndex = 0, tokArry[2];
sIndex = (token.find('«'));
eIndex = (token.find('»',sIndex));
tokID = token.substr(sIndex,eIndex-sIndex+1);
if (parseTokID(tokID,tokArry) == false) {break;} // stop parsing the vector (we couldn't successfully parse an internal token)
tokVal = tGroup->getData(tokArry[0],tokArry[1]);
if (tokVal.at(0) == '[' && tokVal.at(tokVal.length()-1) == ']') { // a vector's inside of this vector
token = runVectorStruct(environment,tGroup,tokVal); // recurse
} else if (tokVal.find('=',1) == std::string::npos || tokVal.at(0) == '(' && tokVal.at(tokVal.length()-1) == ')') { // don't catch non-parenthetical assignations! (they will be tree/hash headers)
token = runTokenStruct(environment,tGroup,token); // callback, give them the ENTIRE token string! A QUICK FIX, used to just give them tokID!!!
} else {token = tokVal;}
}
// at this point, any assignations inside of a vector will be treated as tree/hash heads!!
//std::cout << "\ntoken runVectorStruct: " << token <<std::endl; // TMP
if (token.find('=',1) != std::string::npos) { // vector declaration (single)
int oPar = token.find('=',1);
int cPar = token.length();
headerName = token.substr(0,oPar); // not including =
tokenData = token.substr(oPar+1,cPar-oPar-1);
if (headerName.find('«') != std::string::npos) {headerName = runTokenStruct(environment,tGroup,headerName);} // call backs
if (tokenData.find('«') != std::string::npos) {tokenData = runTokenStruct(environment,tGroup,tokenData);}
} else {tokenData = token;} // array declaration (single)
if (headerName != "")
headerName = tools::prepareVectorData(&environment->dataStructure, headerName); // give us the values (take out of variable form)
//std::cout << "\nname/data runVectorStruct: " << headerName << " is " << tokenData <<std::endl; // TMP
if (tokenData.at(0) == '%') { // add a vector/scalar to this vector
VariableStorage * vectorStorage = NULL;
std::string tokenDataTmp = tokenData.substr(1,tokenData.length() - 1); // strip the leading %
vectorStorage = environment->dataStructure.vecStringToVector(&tokenDataTmp); // jump to the vector object we want to check (modifies tokenDataTmp to make it the highest level)
tokenDataTmp = tools::prepareVectorData(&environment->dataStructure, tokenDataTmp); // this is the highest level! ie) %topName[index][tokenDataTmp]; or %tokenDataTmp;
if (vectorStorage->type(tokenDataTmp) == 0) { // it's actually a scalar
tokenData = tools::prepareVectorData(&environment->dataStructure, tokenData); // get the _actual_ value (replace vars, etc.)
environment->dataStructure.getVector(tokenQualifier, false)->addVariable(headerName, tokenData);
}
else {
vectorStorage = vectorStorage->getVector(tokenDataTmp, false);
environment->dataStructure.getVector(tokenQualifier, false)->addVector(headerName, *vectorStorage);
if (tokenData.at(1) == '_') environment->dataStructure.removeVariable(tokenData.substr(1)); // clean up transients
}
}
else { // add a variable to this vector
tokenData = tools::prepareVectorData(&environment->dataStructure, tokenData); // get the _actual_ value (replace vars, etc.)
environment->dataStructure.getVector(tokenQualifier, false)->addVariable(headerName, tokenData);
}
catalystCpy.replace(0,delimiter+1,"");
}
tokenQualifier.insert(0,"%");
return tokenQualifier;
} else {return "%%";} // ut-oh
}
/// ################################ ///
//################ EXECUTE TOKEN STRUCT ################//
FuncObj * instantSTDL(std::string * objType, std::string * postfixFuncData, EnviroWrap * environment) { // factory class method
if (environment == NULL) environment = new EnviroWrap();
if (objType == NULL) return NULL;
if ( postfixFuncData != NULL && *objType == "" ) { // unaries will have an empty type (they only have one operand ... the data!)
*postfixFuncData = *objType;
*objType = "right";
return new Unaries_Obj(&environment->dataStructure);
}
else if ( postfixFuncData != NULL && (objType->at(objType->length()-1) == '>' || objType->at(objType->length()-1) == '<'
|| (objType->at(objType->length()-2) == '>' || objType->at(objType->length()-2) == '<' || objType->at(objType->length()-2) == '=' || objType->at(objType->length()-2) == '!')
&& objType->at(objType->length()-1) == '=') ) {
*postfixFuncData = *objType;
*objType = "right";
return new Compares_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '=') {
*postfixFuncData = *objType;
*objType = "right";
return new Assignation_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '*') {
*postfixFuncData = *objType;
*objType = "right";
return new Multiplication_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '-') {
*postfixFuncData = *objType;
*objType = "right";
return new Subtraction_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '/') {
*postfixFuncData = *objType;
*objType = "right";
return new Division_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '%') {
*postfixFuncData = *objType;
*objType = "right";
return new Modulus_Obj(&environment->dataStructure);
}
else if (postfixFuncData != NULL && objType->at(objType->length()-1) == '+') {
*postfixFuncData = *objType;
*objType = "right";
return new Addition_Obj(&environment->dataStructure);
}
else if (*objType == "Add" || *objType == "Prefix" || *objType == "Postfix" || *objType == "Insert" || *objType == "Prepend" || *objType == "Append") return new Add_Obj(&environment->dataStructure);
else if (*objType == "CharAt") return new CharAt_Obj(&environment->dataStructure);
else if (*objType == "Exit" || *objType == "Die" || *objType == "Quit") return new Exit_Obj(&environment->dataStructure);
else if (*objType == "IndexOf" || *objType == "LastIndexOf") return new IndexOf_Obj(&environment->dataStructure);
else if (*objType == "Join") return new Join_Obj(&environment->dataStructure);
else if (*objType == "Local" || *objType == "My") return new Local_Obj(&environment->dataStructure);
else if (*objType == "Lc" || *objType == "Uc" || *objType == "Lower" || *objType == "Upper" || *objType == "Lowercase" || *objType == "Uppercase") return new LowerUpperCase_Obj(&environment->dataStructure);
else if (*objType == "LcFirst" || *objType == "UcFirst") return new LowerUpperCaseFirst_Obj(&environment->dataStructure);
else if (*objType == "Length" || *objType == "LengthOf") return new Length_Obj(&environment->dataStructure);
else if (*objType == "Print") return new Print_Obj(&environment->dataStructure);
else if (*objType == "Random" || *objType == "Rand") return new Random_Obj(&environment->dataStructure);
else if (*objType == "Remove" || *objType == "Delete") return new Remove_Obj(&environment->dataStructure);
else if (*objType == "Reverse") return new Reverse_Obj(&environment->dataStructure);
else if (*objType == "Round") return new Round_Obj(&environment->dataStructure);
else if (*objType == "Select") return new Select_Obj(&environment->dataStructure);
else if (*objType == "Split") return new Split_Obj(&environment->dataStructure);
else if (*objType == "ValueOf") return new ValueOf_Obj(&environment->dataStructure);
else if (*objType == "contains" || *objType == "lacks") return new Contains_Obj(&environment->dataStructure);
else if (*objType == "beginsWith" || *objType == "endsWith") return new beginsWith_Obj(&environment->dataStructure);
else if (*objType == "isDefined" || *objType == "exists") return new isDefined_Obj(&environment->dataStructure);
else return new Void_Obj(&environment->dataStructure);
}
std::string runTokenStruct(EnviroWrap * environment, TokenGroup * tGroup, std::string catalyst) { // driver ... internal tracking is of the form ~ ^ ^
if (catalyst == "-1") {catalyst = tGroup->catalyst;}
std::string catalystCpy = catalyst;
FuncObj * thisObj = NULL;
std::vector<std::string> tVecVocab, tVecParams, tVecTypes;
while (catalystCpy.find('«') != std::string::npos && catalystCpy.find('»',catalystCpy.find('«')) != std::string::npos) {
bool isOperator = false;
std::string tokID = "", levelType = "ValueOf", levelData = "", postfixFuncData = "";
unsigned int sIndex = 0, eIndex = 0;
int tokArry[2];
sIndex = (catalystCpy.find('«'));
if (sIndex != std::string::npos)
eIndex = (catalystCpy.find('»',sIndex));
if (eIndex == std::string::npos) {std::cout << "CRITERROR :: Malformation: Token mismatch " <<std::endl;exit(1);}
tokID = catalystCpy.substr(sIndex,eIndex-sIndex+1);
catalystCpy.replace(sIndex,eIndex-sIndex+1,"^");
if (parseTokID(tokID,tokArry) == false) {std::cout << "ERROR :: Token miss: " << tokID <<std::endl;break;} // token miss!
tokID = tGroup->getData(tokArry[0],tokArry[1]);
if (tokID.length() == 0) {std::cout << "ERROR: Empty token: " << tokArry[0] << "¬" << tokArry[1] <<std::endl;exit(1);} // the token has nothing in it!!
if (tokID.at(0) == '{' && tokID.at(tokID.length()-1) == '}') { // catch generic block declarations
std::string blockData = tokID.substr(1,tokID.length()-2); // look ma, no braces!
std::string returnValue = "";
BlockWrap * tempBlock = NULL;
tempBlock = new BlockWrap(blockData, environment);
if (SHOW_DEBUGGING) std::cout << "\n=-=-=-=-=-=-=-=-=-= ENTERING BLOCK =-=-=-=-=-=-=-=-=-=\n contents: >>" << blockData << "<<" <<std::endl;
returnValue = tempBlock->executeCode(); // note: RAW data is returned here, so it must be treated below!
delete tempBlock;
std::string tokenQualifier = environment->dataStructure.variableReferencer("_STRING_"); // save the return value to a temp value, then return THAT
environment->dataStructure.addVariable(tokenQualifier,returnValue, -1, true);
tokenQualifier.insert(0,"$");
catalystCpy.replace(catalystCpy.find('^'),1,tokenQualifier);
if (SHOW_DEBUGGING) std::cout << "\n=-=-=-=-=-=-=-=-=-= LEAVING BLOCK =-=-=-=-=-=-=-=-=-=\n returned: >>" << catalystCpy << "<<" <<std::endl;
continue;
}
else if (tokID.at(0) == '(' && tokID.at(tokID.length()-1) == ')') { // catch parens ... OLD: tokID.find('(') != std::string::npos && tokID.find(')',tokID.find('(')) != std::string::npos
catalystCpy.replace(catalystCpy.find('^'),1,runTokenStruct(environment,tGroup, tokID.substr(1,tokID.length()-2) ));
continue;
}
else if (tokID.at(0) == '[' && tokID.at(tokID.length()-1) == ']') { // catch vector declarations
catalystCpy.replace(catalystCpy.find('^'),1,runVectorStruct(environment,tGroup,tokID));
continue; // let runVectorStruct take care of everything thereafter (it can call on us if it wants)
}
else if (tokID.at(0) == '"' && tokID.at(tokID.length()-1) == '"' || tokID.at(0) == '\'' && tokID.at(tokID.length()-1) == '\'' || tools::isNumber(tokID) == true) { // catch strings and numbers! (cleanEscapes)
std::string tokenQualifier = environment->dataStructure.variableReferencer("_STRING_");
tokID = tools::prepareVectorData(&environment->dataStructure, tokID); // auto cleanEscapes
if (SHOW_DEBUGGING) std::cout << "STRING :: " << tokID << " into " << tokenQualifier <<std::endl;
environment->dataStructure.addVariable(tokenQualifier,tokID, -1, true);
tokenQualifier.insert(0,"$");
catalystCpy.replace(catalystCpy.find('^'),1,tokenQualifier);
continue;
}
else if (tokID.at(0) != '«' && isalpha(tokID.at(0)) > 0) { // catch functions -- select«#|#» select «#|#» or select $/% (« is considered alnum)
unsigned int oPar,cPar;
oPar = tokID.find_first_not_of(letterChars);
if (oPar == std::string::npos) oPar = tokID.length(); // no parameters
cPar = tokID.length();
levelType = tokID.substr(0,oPar);
if (oPar < tokID.length() && tokID.at(oPar) == ' ') {++oPar;} // don't include a leading space
if (oPar < cPar) levelData = tokID.substr(oPar,cPar-oPar);
else levelData = ""; // no parameters
}
else if (tokID.at(0) == '-' || tokID.at(0) == '+' || tokID.at(0) == '!'
|| tokID.find('+') != std::string::npos && tokID.find('+')+1 < tokID.length() && tokID.at( tokID.find('+')+1 ) == '+'
|| tokID.find('-') != std::string::npos && tokID.find('-')+1 < tokID.length() && tokID.at( tokID.find('-')+1 ) == '-') { // handles the unaries, pre-mods and logic. neg. separately
levelType = "";
levelData = tokID;
}
else if (tokID.find_first_of(operators,1) != std::string::npos) { // get the operators (after position 0), should backswallow !=
unsigned int oPar,cPar;
oPar = tokID.find_first_of(operators,1);
if ( oPar+1 < tokID.length() && tokID.at(oPar) != '?' && tokID.at(oPar) != ':' && tokID.at(oPar+1) == '=' )
++oPar;
cPar = tokID.length();
levelType = tokID.substr(0,oPar+1);
levelData = tokID.substr(oPar+1,cPar-oPar-1);
}
else {
unsigned int tmp = 0;
while ( tmp+1 < tokID.length() && (tmp = tokID.find_first_of("&|",tmp+1)) != std::string::npos && tmp+1 < tokID.length() && tokID.at(tmp+1) != tokID.at(tmp) ) // get the && and || operators (after position 0)
++tmp;
if ( tmp != std::string::npos && tmp+1 < tokID.length() && ( tokID.at(tmp) == '&' || tokID.at(tmp) == '|' ) && tokID.at(tmp+1) == tokID.at(tmp) ) { // we found a && or ||
unsigned int oOp, eOp;
char oper = tokID.at( tmp );
if (tokID.at( tmp+1 ) == oper)
++tmp;
oOp = tmp;
eOp = tokID.length();
levelType = tokID.substr(0,oOp+1);
levelData = tokID.substr(oOp+1,eOp-oOp-1);
}
else {
levelType = "ValueOf";
levelData = tokID;
}
}
// ACTUALLY DO THE OBJECT CREATION (SET UP) HERE //
if (thisObj == NULL && tVecVocab.size() == 0) {
// WHILE HANDLER //
if ( levelType == "While" ) {
if (SHOW_DEBUGGING) std::cout << "WHILE BLOCK: " << levelData <<std::endl;
// GRAB EXPRESSION //
std::string tokIDSub = "", ifReturnExpr = "", ifReturnValue = "", returnValue = "", ifReturnRaw = "";
unsigned int sIndexSub = 0, eIndexSub = 0;
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == ' ') ++sIndexSub; // we allow a space, but ignore it (jump over it)
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == '«') { // it's a token
eIndexSub = levelData.find('»',sIndexSub)+1; // NOT GREEDY (only take one token)
}
else if (sIndexSub < levelData.length() && (levelData.at(sIndexSub) == '$' || levelData.at(sIndexSub) == '%')) { // it's a variable or vector $/%
eIndexSub = levelData.find_first_not_of(validKeyChars,sIndexSub+1);
}
ifReturnExpr = levelData.substr(sIndexSub,eIndexSub-sIndexSub);
levelData.replace(sIndexSub,eIndexSub-sIndexSub,"^");
if ( ifReturnExpr.length() == 0 ) {std::cout << "CRITERROR :: Malformation: While expression (too few tokens - expr)" <<std::endl;exit(1);}
// END GRAB EXPRESSION //
// RETRIEVE THE BLOCK TO EXECUTE //
sIndexSub = (levelData.find('^') + 1);
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == ' ') ++sIndexSub; // we allow a space, but ignore it (jump over it)
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == '«') { // it's a token
eIndexSub = levelData.find('»',sIndexSub)+1; // NOT GREEDY (only take one token)
}
else if (sIndexSub < levelData.length() && (levelData.at(sIndexSub) == '$' || levelData.at(sIndexSub) == '%')) { // it's a variable or vector $/%
eIndexSub = levelData.find_first_not_of(validKeyChars,sIndexSub+1);
}
tokIDSub = levelData.substr(sIndexSub,eIndexSub-sIndexSub);
levelData.replace(sIndexSub,eIndexSub-sIndexSub,"^");
if ( tokIDSub.length() == 0 ) {std::cout << "CRITERROR :: Malformation: While expression (too few tokens - block)" <<std::endl;exit(1);}
// END RETRIEVE BLOCK //
ifReturnRaw = runTokenStruct(environment,tGroup,ifReturnExpr);
ifReturnValue = tools::prepareVectorData( &environment->dataStructure, ifReturnRaw, false ); // retrieve expression value
if ( ifReturnRaw.length() > 0 && ifReturnRaw.at(1) == '_' ) environment->dataStructure.removeVariable( ifReturnRaw.substr(1) ); // clean up
if ( !tools::isInteger( ifReturnValue ) ) {std::cout << "CRITERROR :: Malformation: While expression (non-numeric)" <<std::endl;exit(1);}
// BUILD THE BLOCK THAT WE'RE EXECUTING //
std::string blockData;
BlockWrap * tempBlock = NULL;
if (tokIDSub.find('«') != std::string::npos && tokIDSub.find('»',tokIDSub.find('«')) != std::string::npos) { // take care of sublevels
std::string tokID, tokVal;
int sIndex = 0, eIndex = 0, tokArry[2];
sIndex = (tokIDSub.find('«'));
eIndex = (tokIDSub.find('»',sIndex));
tokID = tokIDSub.substr(sIndex,eIndex-sIndex+1);
if (parseTokID(tokID,tokArry) == false) {break;} // stop parsing the vector (we couldn't successfully parse an internal token)
tokVal = tGroup->getData(tokArry[0],tokArry[1]);
if ( tokVal.at(0) == '{' && tokVal.at(tokVal.length()-1) == '}' ) {
blockData = tokVal.substr(1,tokVal.length()-2); // look ma, no braces!
tempBlock = new BlockWrap(blockData, environment);
}
}
// END BUILD BLOCK //
// HANDLE EXPR //
while ( (int) tools::stringToInt( ifReturnValue ) != 0 ) {
if (tempBlock != NULL) {
returnValue = tempBlock->executeCode(); // note: RAW data is returned here, so it must be treated below!
} else {
returnValue = runTokenStruct(environment,tGroup,tokIDSub);
returnValue = tools::prepareVectorData( &environment->dataStructure, returnValue ); // retrieve expression value
}
// CHECK IF CONDITION STILL TRUE //
ifReturnRaw = runTokenStruct(environment,tGroup,ifReturnExpr);
ifReturnValue = tools::prepareVectorData( &environment->dataStructure, ifReturnRaw, false ); // retrieve expression value
if ( ifReturnRaw.length() > 0 && ifReturnRaw.at(1) == '_' ) environment->dataStructure.removeVariable( ifReturnRaw.substr(1) ); // clean up
if ( !tools::isInteger( ifReturnValue ) ) {std::cout << "CRITERROR :: Malformation: While expression (non-numeric)" <<std::endl;exit(1);}
// DONE CHECK //
}
// END HANDLE EXPR //
std::string tokenQualifier = environment->dataStructure.variableReferencer("_STRING_"); // save the return value to a temp value, then return THAT
environment->dataStructure.addVariable(tokenQualifier,returnValue, -1, true);
tokenQualifier.insert(0,"$");
// clean up //
if (tempBlock != NULL) delete tempBlock; // destroy the block
int eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
catalystCpy.replace(eIndex,1, tokenQualifier);
///
continue;
}
// END WHILE HANDLER //
// IF HANDLER //
if ( levelType == "If" || levelType == "ElseIf" ) {
if (SHOW_DEBUGGING) std::cout << "IF BLOCK: " << levelData <<std::endl;
if ( levelType == "ElseIf" && tGroup->insideIfBlock == false ) {std::cout << "CRITERROR :: Malformation: ElseIf expression not contained within If segment " <<std::endl;exit(1);}
if ( levelType == "ElseIf" && tGroup->openIfBlock == false ) { // already handled, ignore
// clean up //
unsigned int eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (eIndex != std::string::npos) catalystCpy.replace(eIndex,1, "");
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for If-ElseIf block (ignore)!" <<std::endl;
///
continue;
}
if (levelType == "If") {
sIndex = (catalystCpy.find('^'));
if (sIndex != std::string::npos) catalystCpy.replace(sIndex,1,"~");
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for If block!" <<std::endl;
}
// GRAB EXPRESSION //
std::string tokIDSub = "", ifReturnValue = "", returnValue = "";
unsigned int sIndexSub = 0, eIndexSub = 0;
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == ' ') ++sIndexSub; // we allow a space, but ignore it (jump over it)
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == '«') { // it's a token
eIndexSub = levelData.find('»',sIndexSub)+1; // NOT GREEDY (only take one token)
}
else if (sIndexSub < levelData.length() && (levelData.at(sIndexSub) == '$' || levelData.at(sIndexSub) == '%')) { // it's a variable or vector $/%
eIndexSub = levelData.find_first_not_of(validKeyChars,sIndexSub+1);
if ( eIndexSub == std::string::npos ) eIndexSub = levelData.length();
}
tokIDSub = levelData.substr(sIndexSub,eIndexSub-sIndexSub);
levelData.replace(sIndexSub,eIndexSub-sIndexSub,"^");
if ( tokIDSub.length() == 0 ) {std::cout << "CRITERROR :: Malformation: If expression (too few tokens - expr)" <<std::endl;exit(1);}
tGroup->insideIfBlock = false; // turn off (temporarily) for expression execution
ifReturnValue = tools::prepareVectorData( &environment->dataStructure, runTokenStruct(environment,tGroup,tokIDSub) ); // retrieve expression value -- taints if state
// END GRAB EXPRESSION //
tGroup->insideIfBlock = true; // automatic entrance (elseif validated itself earlier)
if (SHOW_DEBUGGING) std::cout << "IN (" << tGroup->insideIfBlock << ") : " << ifReturnValue <<std::endl;
// HANDLE EXPR //
if ( !tools::isInteger( ifReturnValue ) ) {std::cout << "CRITERROR :: Malformation: If expression " <<std::endl;exit(1);}
if ( (int) tools::stringToInt( ifReturnValue ) != 0 ) { // true expression
sIndexSub = (levelData.find('^') + 1);
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == ' ') ++sIndexSub; // we allow a space, but ignore it (jump over it)
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == '«') { // it's a token
eIndexSub = levelData.find('»',sIndexSub)+1; // NOT GREEDY (only take one token)
}
else if (sIndexSub < levelData.length() && (levelData.at(sIndexSub) == '$' || levelData.at(sIndexSub) == '%')) { // it's a variable or vector $/%
eIndexSub = levelData.find_first_not_of(validKeyChars,sIndexSub+1);
if ( eIndexSub == std::string::npos ) eIndexSub = levelData.length();
}
tokIDSub = levelData.substr(sIndexSub,eIndexSub-sIndexSub); // note: this overwrites the old (expr) definition ... but it doesn't matter at this point
levelData.replace(sIndexSub,eIndexSub-sIndexSub,"^");
if ( tokIDSub.length() == 0 ) {std::cout << "CRITERROR :: Malformation: If expression (too few tokens - block)" <<std::endl;exit(1);}
if (tokIDSub.at(0) == '«') {
TokenGroup * tGroupCpy = new TokenGroup(tGroup); // (shallow) copy -- don't screw up the if states
tGroupCpy->insideIfBlock = false;
tGroupCpy->openIfBlock = false;
returnValue = runTokenStruct(environment,tGroupCpy,tokIDSub); // execute If/ElseIf block
delete tGroupCpy;
}
else returnValue = tokIDSub;
tGroup->openIfBlock = false;
// clean up //
unsigned int sIndex=0,eIndex=0;
sIndex = (catalystCpy.find('~'));
eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (sIndex == std::string::npos) sIndex = eIndex;
else if (eIndex == std::string::npos || sIndex > eIndex) {eIndex = sIndex;}
if (eIndex != std::string::npos) catalystCpy.replace(sIndex,eIndex-sIndex+1, returnValue);
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for If-ElseIf block (clean)!" <<std::endl;
///
}
else { // false expression
tGroup->openIfBlock = true;
}
// END HANDLE EXPR //
continue;
}
else if ( levelType == "Else" ) {
if ( tGroup->insideIfBlock == false ) {std::cout << "CRITERROR :: Malformation: Else expression not contained within If segment " <<std::endl;exit(1);}
if ( tGroup->openIfBlock == false ) {
// clean up //
unsigned int eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (eIndex != std::string::npos) catalystCpy.replace(eIndex,1, "");
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for Else block!" <<std::endl;
///
continue;
}
// HANDLE EXPRESSION //
std::string tokIDSub = "", returnValue = "";
unsigned int sIndexSub = 0, eIndexSub = 0;
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == ' ') ++sIndexSub; // we allow a space, but ignore it (jump over it)
if (sIndexSub < levelData.length() && levelData.at(sIndexSub) == '«') { // it's a token
eIndexSub = levelData.find('»',sIndexSub)+1; // NOT GREEDY (only take one token)
}
else if (sIndexSub < levelData.length() && (levelData.at(sIndexSub) == '$' || levelData.at(sIndexSub) == '%')) { // it's a variable or vector $/%
eIndexSub = levelData.find_first_not_of(validKeyChars,sIndexSub+1);
if ( eIndexSub == std::string::npos ) eIndexSub = levelData.length();
}
tokIDSub = levelData.substr(sIndexSub,eIndexSub-sIndexSub);
levelData.replace(sIndexSub,eIndexSub-sIndexSub,"^");
if ( tokIDSub.length() == 0 ) {std::cout << "CRITERROR :: Malformation: Else expression (too few tokens - block)" <<std::endl;exit(1);}
// END HANDLE EXPRESSION //
if (tokIDSub.at(0) == '«') {
TokenGroup * tGroupCpy = new TokenGroup(tGroup); // (shallow) copy -- don't screw up the if states
tGroupCpy->insideIfBlock = false;
tGroupCpy->openIfBlock = false;
returnValue = runTokenStruct(environment,tGroupCpy,tokIDSub); // execute Else block
delete tGroupCpy;
}
else returnValue = tokIDSub;
tGroup->insideIfBlock = false;
tGroup->openIfBlock = false;
// clean up //
unsigned int sIndex=0,eIndex=0;
sIndex = (catalystCpy.find('~'));
eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (sIndex == std::string::npos) sIndex = eIndex;
else if (sIndex > eIndex) {eIndex = sIndex;}
if (eIndex != std::string::npos) catalystCpy.replace(sIndex,eIndex-sIndex+1, returnValue);
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for Else block!" <<std::endl;
///
continue;
}
else if ( tGroup->insideIfBlock == true ) {
tGroup->insideIfBlock = false; // implicit close
tGroup->openIfBlock = false;
// clean up //
unsigned int sIndex=0,eIndex=0;
sIndex = (catalystCpy.find('~'));
if (sIndex != std::string::npos) {
eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (eIndex != std::string::npos && sIndex < eIndex) {
catalystCpy.replace(sIndex,eIndex-sIndex+1, "");
}
}
///
}
// END IF HANDLING //
// LAZY && and || operators //
if ( levelType.length() > 3 && (levelType.at(levelType.length()-1) == '&' && levelType.at(levelType.length()-2) == '&'
|| levelType.at(levelType.length()-1) == '|' && levelType.at(levelType.length()-2) == '|') ){
std::string returnValue = "";
char type = levelType.at(levelType.length()-1);
levelType = levelType.substr(0,levelType.length()-2); // trim operator off of end
if (levelType.find('«') != std::string::npos) {
levelType = runTokenStruct(environment,tGroup,levelType);
}
int varDataL = (int) tools::stringToInt( tools::prepareVectorData(&environment->dataStructure, levelType) );
if (varDataL != 0 && type == '&' || varDataL == 0 && type == '|') {
if (levelData.find('«') != std::string::npos) {
levelData = runTokenStruct(environment,tGroup,levelData);
}
int varDataR = (int) tools::stringToInt( tools::prepareVectorData(&environment->dataStructure, levelData) );
if (varDataR != 0) returnValue = "1";
else returnValue = "0";
}
else if (varDataL == 1 && type == '|') {returnValue = "1";}
else {returnValue = "0";} // varDataL == 0 && type == '&'
// turn return string into a variable
std::string tokenQualifier = environment->dataStructure.variableReferencer("_STRING_");
environment->dataStructure.addVariable(tokenQualifier,returnValue, -1, true);
tokenQualifier.insert(0,"$");
// clean up //
unsigned int eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (eIndex != std::string::npos) catalystCpy.replace(eIndex,1, tokenQualifier);
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for Lazy Operators!" <<std::endl;
///
continue;
}
// END LAZY //
// OPERATORS (other) //
if (levelType.length() > 1 &&
(levelType == "Local" || levelType == "My" || levelType == "ValueOf" || levelType.at(levelType.length()-1) == '='
|| levelType.at(levelType.length()-1) == '*' || levelType.at(levelType.length()-1) == '-' || levelType.at(levelType.length()-1) == '<'
|| levelType.at(levelType.length()-1) == '>'
|| levelType.at(levelType.length()-1) == '/' || levelType.at(levelType.length()-1) == '%' || levelType.at(levelType.length()-1) == '+')
|| levelType == "" // unaries
) {
thisObj = instantSTDL(&levelType, &postfixFuncData, environment); // create it immediately (don't bother with matching) ... levelType -> postfixFuncData for operators
isOperator = true;
}
// END OPERATORS //
sIndex = (catalystCpy.find('^'));
if (sIndex != std::string::npos) catalystCpy.replace(sIndex,1,"~");
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for this input (fn)!" <<std::endl;
// grab prefixed result and store in postfixFuncData for parsing later ... remove prefixed data
if (isOperator == false && environment->methodStructure.isPostFixFunc(levelType) == true) {
unsigned int sIndex = (catalystCpy.rfind('%',catalystCpy.find('~'))), eIndex = catalystCpy.find('~'); // go for the gusto
if (sIndex == std::string::npos) sIndex = (catalystCpy.rfind('$',catalystCpy.find('~'))); // or fall back
if (sIndex == std::string::npos || eIndex == std::string::npos) {std::cout << "CRITERROR :: Malformation: Failure to grab prefix expression before " << levelType << "()!" <<std::endl;exit(1);}
if (eIndex > 0 && catalystCpy.at(eIndex-1) == ' ') --eIndex; // fix the extra space problem (not vector)
postfixFuncData = catalystCpy.substr(sIndex,eIndex-sIndex);
if (eIndex+1 < catalystCpy.length() && catalystCpy.at(eIndex) == ' ') ++eIndex; // and then put it back
catalystCpy.replace(sIndex,eIndex-sIndex,"");
if (SHOW_DEBUGGING) std::cout << "postfixFuncData: " << postfixFuncData <<std::endl; //TMP
}
}
////
// in this order, recursive execution //
if (postfixFuncData.find('«') != std::string::npos) {
postfixFuncData = runTokenStruct(environment,tGroup,postfixFuncData); // we can't execute the object until everything above it is executed
}
if (levelType.find('«') != std::string::npos) { // is this a problem? (we used it above)
levelType = runTokenStruct(environment,tGroup,levelType); // we can't execute the object until everything above it is executed
}
if (levelData.find('«') != std::string::npos) {
levelData = runTokenStruct(environment,tGroup,levelData); // we can't execute the object until everything above it is executed
}
///
// build our types vector for this params entry //
if (isOperator == false) {
tVecVocab.push_back(levelType);
tVecParams.push_back(levelData);
if (levelData != "") {
std::string varData = levelData.substr(1,levelData.length()-1);
if (levelData.at(0) == '%') {
VariableStorage * tempVector;
tempVector = environment->dataStructure.vecStringToVector(&varData);
varData = tools::prepareVectorData(&environment->dataStructure, varData, false);
tVecTypes.push_back(tempVector->typeString(varData));
} else {
tVecTypes.push_back(environment->dataStructure.typeString(varData));
}
} else tVecTypes.push_back("");
if (postfixFuncData != "") {
tVecVocab.push_back("left");
tVecParams.push_back(postfixFuncData);
std::string varData = postfixFuncData.substr(1,postfixFuncData.length()-1);
if (postfixFuncData.at(0) == '%') {
VariableStorage * tempVector;
tempVector = environment->dataStructure.vecStringToVector(&varData);
varData = tools::prepareVectorData(&environment->dataStructure, varData, false);
std::string type = tempVector->typeString(varData);
if (type == "-1") type = "%"; // to fix isDefined
tVecTypes.push_back(type);
} else {
std::string type = environment->dataStructure.typeString(varData);
if (type == "-1") type = "$"; // to fix isDefined
tVecTypes.push_back(type);
}
}
}
///
if (thisObj != NULL) { // the operators are already ready to go!
if (thisObj->setLevelData(levelType,levelData)) {
if (SHOW_DEBUGGING) std::cout << "PUSHSUC: " << levelType << "() " << thisObj->getLevelData(levelType) <<std::endl; //TMP
if (postfixFuncData != "") { // and push postfixed function
if (thisObj->setLevelData("left",postfixFuncData)) {
if (SHOW_DEBUGGING) std::cout << "PUSHSUC (post): " << thisObj->getLevelData("left") <<std::endl; //TMP
} else {std::cout << "CRITERROR :: Malformation: Failure to push post function " << levelType << "()!" <<std::endl;exit(1);} //TMP
}
} else {std::cout << "CRITERROR :: Malformation: Failure to push function " << levelType << "()!" <<std::endl;exit(1);} //TMP
}
if (thisObj != NULL && levelType == "ValueOf") { // for valueof, purge the object after one loop (fixes Select (1),(3) problem -- we can't chain the valueof method!)
// clean up //
unsigned int sIndex=0,eIndex=0;
sIndex = (catalystCpy.find('~'));
eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (sIndex == std::string::npos) sIndex = eIndex;
else if (eIndex == std::string::npos || sIndex > eIndex) {eIndex = sIndex;}
if (sIndex != std::string::npos && eIndex != std::string::npos) catalystCpy.replace(sIndex,eIndex-sIndex+1, thisObj->executeCode()); // and execute object
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for this input (vof-fn)!" <<std::endl;
///
delete thisObj;
thisObj = NULL; // because delete doesn't do it for us (it screws us below)
}
} // end while() builder
if (thisObj == NULL && tVecVocab.size() > 0 && tVecTypes.size() > 0) { // build user-def funcs
const MethodDefinition * methDef; // do NOT delete!
methDef = environment->methodStructure.findMatch(tVecVocab, tVecTypes);
if (methDef != NULL) {
//methDef->toString();
if (methDef->isSTDL == true)
thisObj = instantSTDL(&tVecVocab.at(0), NULL, environment);
for (unsigned int i = 0; i < tVecVocab.size(); ++i) {
if (thisObj->setLevelData(tVecVocab.at(i),tVecParams.at(i))) {
if (SHOW_DEBUGGING) std::cout << "PUSHSUC: " << tVecVocab.at(i) << "() " << thisObj->getLevelData(tVecVocab.at(i)) <<std::endl; //TMP
} else {std::cout << "CRITERROR :: Malformation: Failure to push function " << tVecVocab.at(i) << "()!" <<std::endl;exit(1);} //TMP
}
} else {
std::cout << "CRITERROR :: Malformation: Failure to build unknown function " << tVecVocab.at(0) << "()!" <<std::endl;
for (unsigned int i = 0; i < tVecVocab.size(); ++i) std::cout << tVecVocab.at(i) << " and " << tVecParams.at(i) << " of " << tVecTypes.at(i) <<std::endl;
exit(1);
}
}
if (thisObj != NULL) { // execute the build funcs only
// clean up //
unsigned int sIndex=0,eIndex=0;
sIndex = (catalystCpy.find('~'));
eIndex = (catalystCpy.rfind('^',catalystCpy.length()-1));
if (sIndex == std::string::npos) sIndex = eIndex;
else if (eIndex == std::string::npos || sIndex > eIndex) {eIndex = sIndex;}
if (sIndex != std::string::npos && eIndex != std::string::npos) catalystCpy.replace(sIndex,eIndex-sIndex+1, thisObj->executeCode());
else std::cout << "WARNING :: Malformation: I couldn't follow the internal tracking for this input (bld-fn)!" <<std::endl;
///
delete thisObj;
} // otherwise it could've been a block, if-else, etc
while (catalystCpy.length() > 0 && catalystCpy.at(0) == ' ')
catalystCpy.erase( 0, 1 );
while (catalystCpy.length() > 0 && catalystCpy.at( catalystCpy.length()-1 ) == ' ')
catalystCpy.erase( catalystCpy.length()-1 , 1 );
if (SHOW_DEBUGGING) std::cout << " OUTPUT (catcopy): " << catalystCpy <<std::endl; //TMP
return catalystCpy;
}
/// ################################ ///
}