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
|
%{
// GetDP - Copyright (C) 1997-2015 P. Dular, C. Geuzaine
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/getdp/getdp/issues
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "ProData.h"
#include "ProParser.h"
#include "ProParser.tab.hpp"
#include "MallocUtils.h"
#include "Message.h"
extern std::string getdp_yystring;
// Redefinition of YY_INPUT to allow input character count (this is
// slower than fread(), but the .pro files are never that big) and
// direct parsing from a string
#ifdef YY_INPUT
#undef YY_INPUT
#endif
#define YY_INPUT(buf,result,max_size) { \
int c; \
if(getdp_yystring.size()){ \
c = getdp_yystring[0]; \
getdp_yystring = getdp_yystring.substr(1); \
} \
else{ \
c = getc(getdp_yyin); \
} \
getdp_yycolnum++; \
result = (c == EOF) ? YY_NULL : (buf[0] = c, 1); \
}
%}
alpha [a-zA-Z\_]
digit [0-9]
exp [Ee][-+]?{digit}+
string {alpha}({alpha}|{digit})*
%%
[\ \t\r\f] /* nothing to do */;
[\n] { getdp_yycolnum = 0; getdp_yylinenum++; }
<<EOF>> { getdp_yyincludenum = 0; return(0); }
";" return tEND;
"/*" cStyleComments();
"//" cxxStyleComments();
"\"" { parseString('\"'); return tBIGSTR; }
"\'" { parseString('\''); return tBIGSTR; }
"=" return tDEF;
"*^" return tCROSSPRODUCT;
"/\\" return tCROSSPRODUCT;
"||" return tOR;
"&&" return tAND;
"==" return tEQUAL;
"!=" return tNOTEQUAL;
"~=" return tAPPROXEQUAL;
"<=" return tLESSOREQUAL;
">=" return tGREATEROREQUAL;
">>" return tGREATERGREATER;
"<<" return tLESSLESS;
"..." return tDOTS;
":" return tDOTS;
"::" return tSCOPE;
"##" return tSHOW;
#include return tInclude;
0D return t0D;
1D return t1D;
2D return t2D;
3D return t3D;
AbsolutePath return tAbsolutePath;
ACos return tAcos;
ASin return tAsin;
Acos return tAcos;
Adapt return tAdapt;
AddCorrection return tAddCorrection ;
AddMHMoving return tAddMHMoving;
AddOppositeFullSolution return tAddOppositeFullSolution ;
All return tAll;
Append return tAppend;
AppendTimeStepToFileName return tAppendTimeStepToFileName;
AppendExpressionToFileName return tAppendExpressionToFileName;
AppendExpressionFormat return tAppendExpressionFormat;
AppendStringToFileName return tAppendStringToFileName;
AppendToExistingFile return tAppendToExistingFile;
Asin return tAsin;
AtAnteriorTimeStep return tAtAnteriorTimeStep;
AtGaussPoints return tAtGaussPoints;
MaxOverTime return tMaxOverTime;
FourierSteinmetz return tFourierSteinmetz;
Atan return tAtan;
Atan2 return tAtan2;
Atanh return tAtanh;
Auto return tAuto;
Barrier return tBarrier;
BaseFileName return tBaseFileName;
BasisFunction return tBasisFunction;
Beta return tBeta;
Branch return tBranch;
Break return tBreak;
BroadcastFields return tBroadcastFields;
Call return tCall;
CallTest return tCallTest;
Case return tCase;
Ceil return tCeil;
ChangeOfCoordinates return tChangeOfCoordinates;
ChangeOfCoordinates2 return tChangeOfCoordinates2;
ChangeOfState return tChangeOfState;
ChangeOfValues return tChangeOfValues;
CodeName return tCodeName;
Coefficient return tCoefficient;
Comma return tComma;
Const return tConstant;
Constant return tConstant;
Constraint return tConstraint;
CopyDofs return tCopyDofs;
CopyDegreesOfFreedom return tCopyDofs;
CopyIncrement return tCopyIncrement;
CopyResidual return tCopyResidual;
CopyRHS return tCopyRHS;
CopyRightHandSide return tCopyRHS;
CopySolution return tCopySolution;
Cos return tCos;
Cosh return tCosh;
CosineTransform return tCosineTransform;
CreateDir return tCreateDir;
CreateDirectory return tCreateDir;
Criterion return tCriterion;
CreateSolution return tCreateSolution;
Cross return tCrossProduct;
CrossProduct return tCrossProduct;
CurrentDirectory return tCurrentDirectory;
CurrentDir return tCurrentDirectory;
CurrentFileName return tCurrentFileName;
DTime return tDTime;
Date return tDate;
DecomposeInSimplex return tDecomposeInSimplex;
DefineConstant return tDefineConstant;
DefineFunction return tDefineFunction;
DefineGroup return tDefineGroup;
DefineNumber return tDefineNumber;
DefineString return tDefineString;
DefineVariable return tDefineConstant;
DeformMesh return tDeformMesh;
DeformeMesh return tDeformMesh;
Delete return tDelete;
DeleteFile return tDeleteFile;
Depth return tDepth;
deRham return tdeRham;
DestinationSystem return tDestinationSystem;
dFunction return tdFunction;
Dimension return tDimension;
DimNameSpace return tDimNameSpace;
DirName return tDirName;
DivisionCoefficient return tDivisionCoefficient;
DofValue return tDofValue;
Dt return tDt;
DtDof return tDtDof;
DtDofJacNL return tDtDofJacNL;
DtDt return tDtDt;
DtDtDof return tDtDtDof;
DtDtDtDof return tDtDtDtDof;
DtDtDtDtDof return tDtDtDtDtDof;
DtDtDtDtDtDof return tDtDtDtDtDtDof;
DtNL return tDtNL;
Echo return tEcho;
Eig return tEig;
EigenSolve return tEigenSolve;
EigenSolveJac return tEigenSolveJac;
EigenvalueLegend return tEigenvalueLegend;
Else return tElse;
ElseIf return tElseIf;
EndFor return tEndFor;
EndIf return tEndIf;
Entity return tEntity;
EntitySubType return tEntitySubType;
EntityType return tEntityType;
Error return tError;
Evaluate return tEvaluate;
EvaluationPoints return tEvaluationPoints;
Exists return tExists;
Exp return tExp;
Fabs return tFabs;
File return tFile;
FileExists return tFileExists;
Filter return tFilter;
FixRelativePath return tFixRelativePath;
Flag return tFlag;
Floor return tFloor;
Fmod return tFmod;
Footer return tFooter;
For return tFor;
Format return tFormat;
Formulation return tFormulation;
FourierTransform return tFourierTransform;
FourierTransformJ return tFourierTransformJ;
Frequency return tFrequency;
FrequencyLegend return tFrequencyLegend;
FrequencySpectrum return tFrequencySpectrum;
DummyFrequencies return tFrequencySpectrum;
Full_Matrix return tFull_Matrix;
Function return tFunction;
FunctionSpace return tFunctionSpace;
Galerkin return tIntegral;
Gamma return tGamma;
GenerateGroup return tGenerateGroup;
GenerateGroupCumulative return tGenerateGroupCumulative;
GenerateJacGroup return tGenerateJacGroup;
GenerateJacGroupCumulative return tGenerateJacGroupCumulative;
GenerateMHMoving return tGenerateMHMoving;
GenerateMHMovingSeparate return tGenerateMHMovingSeparate;
GenerateOnly return tGenerateOnly;
GenerateOnlyJac return tGenerateOnlyJac;
GenerateRHSGroup return tGenerateRHSGroup;
GenerateRightHandSideGroup return tGenerateRHSGroup;
GenerateRHSGroupCumulative return tGenerateRHSGroupCumulative;
GenerateRightHandSideGroupCumulative return tGenerateRHSGroupCumulative;
GeoElement return tGeoElement;
GetForced return tGetForced;
GetForcedStr return tGetForcedStr;
GetNumber return tGetNumber;
GetRegion return tGetRegion ;
GetRegions return tGetRegions ;
GetResidual return tGetResidual;
GetNormSolution return tGetNormSolution;
GetNormResidual return tGetNormResidual;
GetNormRHS return tGetNormRHS;
GetNormRightHandSide return tGetNormRHS;
GetNormIncrement return tGetNormIncrement;
GetString return tGetString;
GlobalEquation return tGlobalEquation;
GlobalQuantity return tGlobalQuantity;
GlobalTerm return tGlobalTerm;
GmshClearAll return tGmshClearAll;
GmshMerge return tGmshMerge;
GmshOpen return tGmshOpen;
GmshRead return tGmshRead;
GmshWrite return tGmshWrite;
Group return tGroup;
GroupExists return tGroupExists;
GETDP_MAJOR_VERSION return tGETDP_MAJOR_VERSION;
GETDP_MINOR_VERSION return tGETDP_MINOR_VERSION;
GETDP_PATCH_VERSION return tGETDP_PATCH_VERSION;
HarmonicToTime return tHarmonicToTime;
Header return tHeader;
Hidden return tHidden;
Hypot return tHypot;
If return tIf;
In return tIn;
InSupport return tInSupport;
Include return tInclude;
IndexOfSystem return tIndexOfSystem;
InitMovingBand2D return tInitMovingBand2D;
Integral return tIntegral;
Integration return tIntegration;
Iso return tIso;
IterativeLinearSolver return tIterativeLinearSolver;
IterativeLoop return tIterativeLoop;
IterativeLoopN return tIterativeLoopN;
IterativeTimeReduction return tIterativeTimeReduction;
JacNL return tJacNL;
Jacobian return tJacobian;
Lanczos return tLanczos;
LastTimeStepOnly return tLastTimeStepOnly;
LevelInclude return tLevelInclude;
LevelTest return tLevelTest;
LinSpace return tLinSpace;
List return tList;
ListAlt return tListAlt;
ListFromFile return tListFromFile;
ListFromServer return tListFromServer;
Log return tLog;
Log10 return tLog10;
LogSpace return tLogSpace;
MHBilinear return tMHBilinear;
MHJacNL return tMHBilinear;
MHLinear return tMHTransform;
MHTransform return tMHTransform;
MPI_Barrier return tBarrier;
MPI_BroadcastFields return tBroadcastFields;
MPI_BroadcastVariables return tBroadcastVariables;
MPI_Printf return tMPI_Printf;
MPI_Rank return tMPI_Rank;
MPI_SetCommSelf return tSetCommSelf;
MPI_SetCommWorld return tSetCommWorld;
MPI_Size return tMPI_Size;
Macro return tMacro;
MaxNumberOfDivisions return tMaxNumberOfDivisions;
MaxNumberOfPoints return tMaxNumberOfPoints;
MeshMovingBand2D return tMeshMovingBand2D;
MetricTensor return tMetricTensor;
Modulo return tModulo;
MovingBand2D return tMovingBand2D;
MultiplySolution return tMultiplySolution ;
Name return tName;
NameToString return tNameToString;
N2S return tNameToString;
NameOfBasisFunction return tNameOfBasisFunction;
NameOfCoef return tNameOfCoef;
NameOfConstraint return tNameOfConstraint;
NameOfFormulation return tNameOfFormulation;
NameOfMesh return tNameOfMesh;
NameOfPostProcessing return tNameOfPostProcessing;
NameOfResolution return tNameOfResolution;
NameOfSpace return tNameOfSpace;
NameOfSystem return tNameOfSystem;
NameStruct return tNameStruct;
NbrMaxIteration return tNbrMaxIteration;
NbrRegions return tNbrRegions ;
NeverDt return tNeverDt;
NoMesh return tNoMesh;
NoNewLine return tNoNewLine;
NoTitle return tNoTitle;
NumberOfDivisions return tNumberOfDivisions;
NumberOfPoints return tNumberOfPoints;
NumInclude return tNumInclude;
OnBox return tOnBox;
OnCut return tOnSection;
OnElementsOf return tOnElementsOf;
OnelabAction return tOnelabAction;
OnGlobal return tOnGlobal;
OnGrid return tOnGrid;
OnLine return tOnLine;
OnPlane return tOnPlane;
OnPoint return tOnPoint;
OnRegion return tOnRegion;
OnSection return tOnSection;
Operation return tOperation;
OperationEnd return tOperationEnd;
OptimizerInitialize return tOptimizerInitialize;
OptimizerUpdate return tOptimizerUpdate;
Order return tOrder;
OriginSystem return tOriginSystem;
OverrideTimeStepValue return tOverrideTimeStepValue;
Parse return tParse;
Pi return tPi;
Plot return tPlot;
PostOperation return tPostOperation;
PostProcessing return tPostProcessing;
PostQuantity return tQuantity;
Print return tPrint;
PrintConstants return tPrintConstants;
PrintGroup return tPrintGroup;
Printf return tPrintf;
Quantity return tQuantity;
Rand return tRand;
Rational return tRational;
Read return tRead;
Region return tRegion;
RegionRef return tRegionRef;
RelaxationFactor return tRelaxationFactor;
RenameFile return tRenameFile;
ResampleTime return tResampleTime;
Resolution return tResolution;
Return return tReturn;
Round return tRound;
SaveMesh return tSaveMesh;
SaveSolutionExtendedMH return tSaveSolutionExtendedMH;
SaveSolutionMHtoTime return tSaveSolutionMHtoTime;
SaveSolutionWithEntityNum return tSaveSolutionWithEntityNum;
SelectCorrection return tSelectCorrection ;
SendMergeFileRequest return tSendMergeFileRequest;
SendToServer return tSendToServer;
SetCommSelf return tSetCommSelf;
SetCommWorld return tSetCommWorld;
SetDTime return tSetDTime;
SetExtrapolationOrder return tSetExtrapolationOrder;
SetFrequency return tSetFrequency;
SetGlobalSolverOptions return tSetGlobalSolverOptions;
SetNumber return tSetNumber;
SetString return tSetString;
SetTime return tSetTime;
SetTimeStep return tSetTimeStep;
Sign return tSign;
Sin return tSin;
Sinh return tSinh;
Skin return tSkin;
Sleep return tSleep;
Smoothing return tSmoothing;
SolidAngle return tSolidAngle;
SolveAgainWithOther return tSolveAgainWithOther;
SolveJac_AdaptRelax return tSolveJac_AdaptRelax;
Solver return tSolver;
Sort return tSort;
Sprintf return tSprintf;
Sqrt return tSqrt;
StoppingCriterion return tStoppingCriterion;
Store return tStoreInRegister;
StoreInVariable return tStoreInVariable;
StoreInField return tStoreInField;
StoreInMeshBasedField return tStoreInMeshBasedField;
StoreInRegister return tStoreInRegister;
StoreMaxInRegister return tStoreMaxInRegister;
StoreMaxXinRegister return tStoreMaxXinRegister;
StoreMaxYinRegister return tStoreMaxYinRegister;
StoreMaxZinRegister return tStoreMaxZinRegister;
StoreMinInRegister return tStoreMinInRegister;
StoreMinXinRegister return tStoreMinXinRegister;
StoreMinYinRegister return tStoreMinYinRegister;
StoreMinZinRegister return tStoreMinZinRegister;
Str return tStr;
StrPrefix return tStrPrefix;
StrRelative return tStrRelative;
StrCat return tStrCat;
StrChoice return tStrChoice;
StrCmp return tStrCmp;
StrFind return tStrFind;
StrLen return tStrLen;
StrList return tStrList;
StrSub return tStrSub;
StringToName return tStringToName;
S2N return tStringToName;
Struct return tDefineStruct;
SubFunction return tSubFunction;
SubRegion return tSubRegion;
SubRegion2 return tSubRegion2;
SubRegionRef return tSubRegionRef;
SubSpace return tSubSpace;
SubType return tSubType;
SubdFunction return tSubdFunction;
Support return tSupport;
Symmetry return tSymmetry;
System return tDefineSystem;
SystemCommand return tSystemCommand;
Tan return tTan;
Tanh return tTanh;
Target return tTarget;
Test return tTest;
Theta return tTheta;
Time0 return tTime0;
TimeFunction return tTimeFunction;
TimeLegend return tTimeLegend;
TimeLoopAdaptive return tTimeLoopAdaptive;
TimeLoopNewmark return tTimeLoopNewmark;
TimeLoopRungeKutta return tTimeLoopRungeKutta;
TimeLoopTheta return tTimeLoopTheta;
TimeMax return tTimeMax;
TimeStep return tTimeStep;
TimeToHarmonic return tTimeToHarmonic;
TimeValue return tTimeValue;
TimeImagValue return tTimeImagValue;
TimeInterval return tTimeInterval;
ToleranceFactor return tToleranceFactor;
TotalMemory return tTotalMemory;
Trace return tTrace;
Type return tType;
UndefineConstant return tUndefineConstant;
UndefineFunction return tUndefineFunction;
Update return tUpdate;
UpdateConstraint return tUpdateConstraint;
UpperCase return tUpperCase;
LowerCase return tLowerCase;
LowerCaseIn return tLowerCaseIn;
UsingPost return tUsingPost;
Value return tValue;
ValueIndex return tValueIndex;
ValueName return tValueName;
WithArgument return tWithArgument;
While return tWhile;
Write return tWrite;
{digit}+ { getdp_yylval.i = atoi(yytext); return tINT; }
{digit}+"."{digit}*({exp})? |
{digit}*"."{digit}+({exp})? |
{digit}+{exp} { getdp_yylval.d = atof(yytext); return tFLOAT; }
{string} { getdp_yylval.c = strSave(yytext); return tSTRING; }
. return yytext[0];
%%
#undef getdp_yywrap
int getdp_yywrap()
{
return 1;
}
#ifdef __cplusplus
#define input yyinput
#endif
#ifndef yytext_ptr
#define yytext_ptr yytext
#endif
char *strSave(const char *string)
{
return ((char *)strcpy((char *)Malloc(strlen(string)+1), string));
}
char *strEmpty()
{
char* s = (char *)Malloc(1); *s = 0;
return s;
}
void cStyleComments()
{
int c;
while(1) {
while((c = input()) != '*'){
if(c == '\n') getdp_yylinenum++;
if(feof(getdp_yyin)) {
Message::Error("End of file in commented region");
exit(1);
}
}
if((c = input()) == '/') return;
unput(c);
}
}
void cxxStyleComments()
{
int c;
while(1){
c = input();
if(c == '\n' || feof(getdp_yyin)) break;
}
getdp_yylinenum++;
}
void parseString(char endchar)
{
char tmp[2048];
int c = input();
int i = 0;
while(c != endchar){
if(feof(getdp_yyin)) {
Message::Error("End of file in string");
getdp_yycolnum = 0;
break;
}
else if(c == '\n') {
getdp_yycolnum = 0;
}
else if(i >= (int)sizeof(tmp)-1) {
Message::Error("String too long");
break;
}
else {
tmp[i++] = c;
}
c = input();
}
tmp[i] = '\0';
getdp_yylval.c = strSave(tmp);
}
static bool is_alpha(const int c)
{
return (c>='a' && c<='z') || (c>='A' && c<='Z') || c=='_';
}
void skipUntil(const char *skip, const char *until)
{
int l_skip, l_until, l_max, l;
char chars[256];
int c_next, c_next_skip, c_next_until, c_previous = 0;
int nb_skip = 0;
l_skip = (skip)? strlen(skip) : 0;
l_until = strlen(until);
l_max = (l_skip > l_until) ? l_skip : l_until;
if(l_max >= (int)sizeof(chars)){
Message::Error("Search pattern too long in skipUntil");
return;
}
while(1){
while (1){
chars[0] = input();
if(chars[0] == '\n') getdp_yylinenum++;
if(feof(getdp_yyin)){
Message::Error("Unexpected end of file");
return;
}
if(chars[0] == '/'){
c_next = input();
if (c_next == '*') cStyleComments();
else if(c_next == '/') cxxStyleComments();
else unput(c_next);
}
if(!c_previous || !is_alpha(c_previous)){
if(chars[0] == until[0]) break;
if(skip && chars[0] == skip[0]) break;
}
c_previous = chars[0];
}
l = l_max;
for(int i = 1; i < l; i++){
chars[i] = input();
if(chars[i] == '\n') getdp_yylinenum++;
if(feof(getdp_yyin)){
l = i;
break;
}
}
c_next = input(); unput(c_next);
c_next_skip = (l_skip<l)? chars[l_skip] : c_next;
c_next_until = (l_until<l)? chars[l_until] : c_next;
if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){
if(!nb_skip){
return;
}
else{
nb_skip--;
}
}
else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){
nb_skip++;
// Attention: unput(.) should be applied a number of times equal to
// l-l_skip (always >0 for skip="For" and until="EndFor", or skip="If" and
// until="EndIf"); in particular, because "If" is followed by a minimum of
// 3 chars (e.g., '(1)'), with a total lenght thus exactly equal to the
// one of "EndIf", one avoid an error when looking then for
// "EndIf". (Patrick)
}
else{
for(int i = 1; i < l - 1; i++){
unput(chars[l-i]);
if(chars[l-i] == '\n') getdp_yylinenum--;
}
}
}
}
void skipUntil_test(const char *skip, const char *until,
const char *until2, int l_until2_sub, int *type_until2)
{
int l_skip, l_until, l_until2, l_max, l;
char chars[256];
int c_next, c_next_skip, c_next_until, c_next_until2, c_previous = 0, flag_EOL_EOF = 0;
int nb_skip = 0;
l_skip = (skip)? strlen(skip) : 0;
l_until = strlen(until);
l_until2 = (until2)? strlen(until2) : 0;
l_max = (l_skip > l_until) ? l_skip : l_until;
l_max = (l_until2 > l_max) ? l_until2 : l_max;
if(l_max >= (int)sizeof(chars)){
Message::Error("Search pattern too long in skipUntil_test");
return;
}
while(1){
while (1){
chars[0] = input();
if(chars[0] == '\n') getdp_yylinenum++;
if(feof(getdp_yyin)){
Message::Error("Unexpected end of file");
return;
}
if(chars[0] == '/'){
c_next = input();
if (c_next == '*') cStyleComments();
else if(c_next == '/') cxxStyleComments();
else unput(c_next);
}
if(chars[0] == '"'){
parseString('"');
}
if(chars[0] == '\''){
parseString('\'');
}
if(!c_previous || !is_alpha(c_previous)){
if(chars[0] == until[0]) break;
if(skip && chars[0] == skip[0]) break;
if(!nb_skip && until2 && chars[0] == until2[0]) break;
// Useless to search for until2 if nb_skip!=0
}
c_previous = chars[0];
}
l = l_max;
flag_EOL_EOF = 0;
for(int i = 1; i < l; i++){
chars[i] = input();
if(chars[i] == '\n'){
// getdp_yylinenum++;
unput(chars[i]); chars[i] = 0; l = i; flag_EOL_EOF = 1;
break;
}
if(feof(getdp_yyin)){
l = i; flag_EOL_EOF = 1;
break;
}
}
if(!flag_EOL_EOF){
c_next = input(); unput(c_next);
c_next_skip = (l_skip<l)? chars[l_skip] : c_next;
c_next_until = (l_until<l)? chars[l_until] : c_next;
if (!nb_skip)
c_next_until2 = (l_until2<l)? chars[l_until2] : c_next;
}
else{
c_next = 0; c_next_skip = 0; c_next_until = 0; c_next_until2 = 0;
}
if(!nb_skip && !strncmp(chars,until2,l_until2) && !is_alpha(c_next_until2)){
*type_until2 = 1; // Found word is full until2 (e.g., "ElseIf")
for(int i = 1; i <= l; i++){ // Only correct if l == l_until2
unput(chars[l-i]);
// if(chars[l-i] == '\n') getdp_yylinenum--;
} // New file position points "ElseIf", that will be then analysed by the parser
return;
}
else if(!nb_skip && !strncmp(chars,until2,l_until2_sub) && !is_alpha(chars[l_until2_sub])){
*type_until2 = 2; // Found word is subword from until2 (e.g., "Else")
for(int i = 1; i <= l-l_until2_sub; i++){ // Only correct if l_until2_sub < l
unput(chars[l-i]);
// if(chars[l-i] == '\n') getdp_yylinenum--;
}
return;
}
else if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){
for(int i = 1; i <= l-l_until; i++){
unput(chars[l-i]);
// if(chars[l-i] == '\n') getdp_yylinenum--;
}
if(!nb_skip){
return;
}
else{
nb_skip--;
}
}
else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){
nb_skip++;
}
else{
for(int i = 1; i < l - 1; i++){
unput(chars[l-i]);
// if(chars[l-i] == '\n') getdp_yylinenum--;
}
}
}
}
void hack_fsetpos_printf()
{
char chars[5];
int c = input(), c2 = input(), c3 = input();
unput(c3); unput(c2); unput(c);
chars[0] = c; chars[1] = c2; chars[2] = c3; chars[3] = 0;
printf("++++++ c: %d %d %d /%s/\n", (int)c, (int)c2, (int)c3, chars);
}
void hack_fsetpos()
{
input();
}
|