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
|
%{
/* This file is part of kdev-pg-qt
Copyright (C) 2005 Roberto Raggi <roberto@kdevelop.org>
Copyright (C) 2006 Jakob Petsovits <jpetso@gmx.at>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kdev-pg.h"
#include "kdev-pg-clone-tree.h"
#include "kdev-pg-regexp.h"
#include "kdev-pg-unicode-loader.h"
#include "kdev-pg-checker.h"
#include <QtCore/QFile>
#include <cassert>
extern int yylex();
extern void yyerror(const char* msg);
extern int yyLine;
QString lexerEnv;
namespace KDevPG
{
extern QFile file;
extern QTextStream checkOut;
}
KDevPG::Model::OperatorItem *operatorNode = 0;
QString r;
%}
%union {
KDevPG::Model::Node *item;
char* str;
KDevPG::Model::VariableDeclarationItem::DeclarationType declarationType;
KDevPG::Model::VariableDeclarationItem::StorageType storageType;
KDevPG::Model::VariableDeclarationItem::VariableType variableType;
KDevPG::Model::Operator *operatorInformation;
KDevPG::GNFA *nfa;
}
%token T_IDENTIFIER T_ARROW T_TERMINAL T_CODE T_STRING T_UNQUOTED_STRING T_NUMBER ';'
%token T_TOKEN_DECLARATION T_TOKEN_STREAM_DECLARATION T_NAMESPACE_DECLARATION
%token T_PARSERCLASS_DECLARATION T_LEXERCLASS_DECLARATION
%token T_PUBLIC T_PRIVATE T_PROTECTED T_DECLARATION T_BITS
%token T_CONSTRUCTOR T_DESTRUCTOR T_TRY_RECOVER T_TRY_ROLLBACK T_CATCH
%token T_RULE_ARGUMENTS T_MEMBER T_TEMPORARY T_ARGUMENT T_EXPORT_MACRO
%token T_NODE T_NODE_SEQUENCE T_TOKEN T_VARIABLE T_EXPORT_MACRO_HEADER
%token T_AST_DECLARATION
%token T_PARSER_DECLARATION_HEADER T_PARSER_BITS_HEADER T_AST_HEADER
%token T_LEXER_DECLARATION_HEADER T_LEXER_BITS_HEADER
%token T_PARSER_BASE T_AST_BASE T_LEXER_BASE
%token T_BIN T_PRE T_POST T_TERN
%token T_LOPR T_ROPR
%token T_LEFT_ASSOC T_RIGHT_ASSOC T_IS_LEFT_ASSOC T_IS_RIGHT_ASSOC T_PRIORITY
%token T_PAREN
%token T_INLINE
%token T_LEXER T_INPUT_STREAM T_INPUT_ENCODING T_TABLE_LEXER T_SEQUENCE_LEXER
%token T_NAMED_REGEXP T_CONTINUE T_RANGE T_FAIL T_LOOKAHEAD T_BARRIER
%token T_ENTER_RULE_SET T_LEAVE_RULE_SET
%type<str> T_IDENTIFIER T_TERMINAL T_CODE T_STRING T_UNQUOTED_STRING T_RULE_ARGUMENTS T_NUMBER T_NAMED_REGEXP T_RANGE
%type<str> name code_opt rule_arguments_opt priority assoc opt_lexer_action
%type<item> item primary_item try_item primary_atom unary_item
%type<item> postfix_item option_item item_sequence conditional_item
%type<item> member_declaration_rest variableDeclarations variableDeclaration operatorRule
%type<declarationType> declarationType_opt
%type<storageType> scope storageType
%type<variableType> variableType
/* %type<void> operatorDeclaration operatorDeclarations operatorRule */
%type<operatorInformation> operator
%type<nfa> regexp regexp1 regexp2 regexp3 regexp4 regexp5 regexp6 regexp7 aregexp aregexp1 aregexp2 aregexp3 aregexp4 aregexp5 aregexp6 aregexp7
%%
system
: code_opt { KDevPG::globalSystem.decl = $1; }
declarations
rules
code_opt { KDevPG::globalSystem.bits += $5; }
;
declarations
: declaration
| declarations declaration
;
declaration
: T_PARSERCLASS_DECLARATION member_declaration_rest
{ KDevPG::globalSystem.pushParserClassMember($2); }
| T_PARSERCLASS_DECLARATION '(' T_BITS ')' T_CODE
{ KDevPG::globalSystem.bits += $5; }
| T_LEXERCLASS_DECLARATION member_declaration_rest
{ KDevPG::globalSystem.pushLexerClassMember($2); }
| T_LEXERCLASS_DECLARATION '(' T_BITS ')' T_CODE
{ KDevPG::globalSystem.lexerBits += $5; }
| T_TOKEN_DECLARATION declared_tokens ';'
| T_TABLE_LEXER
{ if(KDevPG::globalSystem.hasLexer)
{ KDevPG::checkOut << "** ERROR you have to specify the lexer-type (%table_lexer) before any lexer rules"; exit(-1); }
switch(KDevPG::GDFA::type)
{
case KDevPG::SAscii: KDevPG::GDFA::type = KDevPG::TAscii; break;
case KDevPG::SLatin1: KDevPG::GDFA::type = KDevPG::TLatin1; break;
case KDevPG::SUtf8: KDevPG::GDFA::type = KDevPG::TUtf8; break;
case KDevPG::SUcs2: KDevPG::GDFA::type = KDevPG::TUcs2; break;
case KDevPG::SUtf16: KDevPG::GDFA::type = KDevPG::TUtf16; break;
/* case KDevPG::SUcs4: KDevPG::GDFA::type = KDevPG::TUcs4; break; */
default: /* empty */;
}
}
| T_SEQUENCE_LEXER
{ if(KDevPG::globalSystem.hasLexer)
{ KDevPG::checkOut << "** ERROR you have to specify the lexer-type (%sequence_lexer) before any lexer rules"; exit(-1); }
switch(KDevPG::GDFA::type)
{
case KDevPG::TAscii: KDevPG::GDFA::type = KDevPG::SAscii; break;
case KDevPG::TLatin1: KDevPG::GDFA::type = KDevPG::SLatin1; break;
case KDevPG::TUtf8: KDevPG::GDFA::type = KDevPG::SUtf8; break;
case KDevPG::TUcs2: KDevPG::GDFA::type = KDevPG::SUcs2; break;
case KDevPG::TUtf16: KDevPG::GDFA::type = KDevPG::SUtf16; break;
/* case KDevPG::TUcs4: KDevPG::GDFA::type = KDevPG::SUcs4; break; */
default: /* empty */;
}
}
| T_INPUT_ENCODING T_STRING
{
if(KDevPG::globalSystem.hasLexer)
{ KDevPG::checkOut << "** ERROR you have to specify the lexer-type (%sequence_lexer) before any lexer rules"; exit(-1); }
int base = (KDevPG::GDFA::type / 4) * 4; // warning: magic constant: number of different codecs
QString str = $2;
str = str.toLower();
str.replace('-', "");
if(str == "ascii")
/* base += 0*/;
else if(str == "latin1")
base += 1;
else if(str == "utf8")
base += 2;
else if(str == "ucs2")
base += 3;
else if(str == "utf16")
base += 4;
else if(str == "ucs4" || str == "utf32")
base += 5;
else
{
KDevPG::checkOut << "** ERROR unknown codec ``" << $2 << "''" << endl;
exit(-1);
}
KDevPG::GDFA::type = KDevPG::AutomatonType(base);
}
| T_TOKEN_STREAM_DECLARATION T_IDENTIFIER ';'
{ KDevPG::globalSystem.tokenStream = $2; }
| T_EXPORT_MACRO T_STRING
{ KDevPG::globalSystem.exportMacro = $2; }
| T_EXPORT_MACRO_HEADER T_STRING
{ KDevPG::globalSystem.exportMacroHeader = $2; }
| T_NAMESPACE_DECLARATION T_CODE
{ KDevPG::globalSystem.namespaceCode = $2; }
| T_AST_DECLARATION T_CODE
{ KDevPG::globalSystem.astCode = $2; }
| T_PARSER_DECLARATION_HEADER T_STRING
{ KDevPG::globalSystem.pushParserDeclarationHeader($2); }
| T_PARSER_BITS_HEADER T_STRING
{ KDevPG::globalSystem.pushParserBitsHeader($2); }
| T_AST_HEADER T_STRING
{ KDevPG::globalSystem.pushAstHeader($2); }
| T_LEXER_DECLARATION_HEADER T_STRING
{ KDevPG::globalSystem.pushLexerDeclarationHeader($2); }
| T_INPUT_STREAM T_STRING
{ KDevPG::globalSystem.inputStream = $2; }
| T_LEXER_BITS_HEADER T_STRING
{ KDevPG::globalSystem.pushLexerBitsHeader($2); }
| T_AST_BASE T_IDENTIFIER T_STRING
{ KDevPG::globalSystem.astBaseClasses[$2] = $3; }
| T_PARSER_BASE T_STRING
{ KDevPG::globalSystem.parserBaseClass = $2; }
| T_LEXER_BASE T_STRING
{ KDevPG::globalSystem.lexerBaseClass = $2; }
| T_LEXER T_STRING { KDevPG::globalSystem.hasLexer = true; lexerEnv = $2; if(KDevPG::globalSystem.lexerActions[lexerEnv].empty()) KDevPG::globalSystem.lexerActions[lexerEnv].push_back("qDebug() << \"error\"; exit(-1);"); } T_ARROW lexer_declaration_rest ';'
| T_LEXER { KDevPG::globalSystem.hasLexer = true; KDevPG::loadUnicodeData(); lexerEnv = "start"; if(KDevPG::globalSystem.lexerActions["start"].empty()) KDevPG::globalSystem.lexerActions["start"].push_back("qDebug() << \"error\"; exit(-1);"); } T_ARROW lexer_declaration_rest ';'
;
lexer_declaration_rest
: regexp T_ARROW T_IDENTIFIER ';'
{ KDevPG::globalSystem.regexpById[$3] = $1;
} lexer_declaration_rest
| regexp code_opt opt_lexer_action ';'
{
if($1->acceptsEpsilon())
KDevPG::checkOut << "** WARNING Lexer rule accepting the empty word at line " << yyLine << endl;
else if($1->isEmpty())
KDevPG::checkOut << "** WARNING Lexer rule not accepting anything at line " << yyLine << endl;
QString s = QString($2) + QString(r);
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back($1);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(s);
} lexer_declaration_rest
| regexp T_LOOKAHEAD '(' regexp ')' code_opt opt_lexer_action ';'
{
if($1->acceptsEpsilon())
KDevPG::checkOut << "** WARNING Lexer rule accepting the empty word at line " << yyLine << endl;
else if($1->isEmpty())
KDevPG::checkOut << "** WARNING Lexer rule not accepting anything at line " << yyLine << endl;
bool ignore = false;
auto minLen = $4->minLength(), maxLen = $4->maxLength();
if(minLen == 0)
{
KDevPG::checkOut << "** WARNING Lexer rule specifying epsilon-lookahead at line " << yyLine << ", ignore the lookahead." << endl;
ignore = true;
}
else if(minLen != maxLen)
{
KDevPG::checkOut << "** WARNING Invalid lookahead (no fixed length) at line " << yyLine << " (min length: " << (minLen == -1 ? "none" : QString::number(minLen)) << ", max length: " << (maxLen == -2 ? "infinity" : (maxLen == -1 ? "none" : QString::number(maxLen))) << "), ignore the lookahead." << endl;
ignore = true;
}
if(ignore)
{
QString s = QString($6) + QString(r);
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back($1);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(s);
}
else
{
QString s = "Iterator::plain() -= " + QString::number(minLen) + "; " + QString($6) + QString(r);
*$1 <<= *$4;
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back($1);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(s);
}
} lexer_declaration_rest
| regexp T_BARRIER '(' regexp ')' code_opt opt_lexer_action ';'
{
if($1->acceptsEpsilon())
KDevPG::checkOut << "** WARNING Lexer rule accepting the empty word at line " << yyLine << endl;
else if($1->isEmpty())
KDevPG::checkOut << "** WARNING Lexer rule not accepting anything at line " << yyLine << endl;
bool ignore = false;
auto minLen = $4->minLength(), maxLen = $4->maxLength();
if(minLen == 0)
{
KDevPG::checkOut << "** WARNING Lexer rule specifying epsilon-barrier at line " << yyLine << ", ignore the barrier." << endl;
ignore = true;
}
else if(minLen != maxLen)
{
KDevPG::checkOut << "** WARNING Invalid barrier (no fixed length) at line " << yyLine << " (min length: " << (minLen == -1 ? "none" : QString::number(minLen)) << ", max length: " << (maxLen == -2 ? "infinity" : (maxLen == -1 ? "none" : QString::number(maxLen))) << "), ignore the barrier." << endl;
ignore = true;
}
if(ignore)
{
QString s = QString($6) + QString(r);
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back($1);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(s);
}
else
{
KDevPG::GNFA exclude = KDevPG::GNFA::anything();
exclude <<= *$4;
exclude <<= KDevPG::GNFA::anything();
KDevPG::GNFA *staying = new KDevPG::GNFA(*$1);
*staying ^= exclude;
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back(staying);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(QString($6) + QString(r));
// barrier should not get read partially
exclude <<= KDevPG::GNFA::anyChar();
*$1 <<= *$4;
*$1 ^= exclude;
QString s = "Iterator::plain() -= " + QString::number(minLen) + "; " + QString($6) + QString(r);
KDevPG::globalSystem.lexerEnvs[lexerEnv].push_back($1);
KDevPG::globalSystem.lexerActions[lexerEnv].push_back(s);
}
} lexer_declaration_rest
| T_FAIL T_CODE
{
KDevPG::globalSystem.lexerActions[lexerEnv][0] = QString($2);
} lexer_declaration_rest
| T_ENTER_RULE_SET T_CODE
{
KDevPG::globalSystem.enteringCode[lexerEnv] = QString($2);
} lexer_declaration_rest
| T_LEAVE_RULE_SET T_CODE
{
KDevPG::globalSystem.leavingCode[lexerEnv] = QString($2);
} lexer_declaration_rest
| /* empty */
;
opt_lexer_action
: T_TERMINAL {
r = "\nlxRETURN(" + QString($1) + ")\n";
}
| T_CONTINUE {
r = "\nlxCONTINUE;\n";
}
| /* empty */ { r = "\nlxSKIP\n"; }
;
regexp
: regexp '|' regexp1 { $$ = new KDevPG::GNFA(*$1 |= *$3); delete $1; delete $3; }
| regexp1 { $$ = $1; }
;
regexp1
: regexp1 '&' regexp2 { $$ = new KDevPG::GNFA(*$1 &= *$3); delete $1; delete $3; }
| regexp2 { $$ = $1; }
;
regexp2
: regexp3 '^' regexp2 { $$ = new KDevPG::GNFA(*$1 ^= *$3); delete $1; delete $3; }
| regexp3 { $$ = $1; }
;
regexp3
: '~' regexp3 { $$ = new KDevPG::GNFA($2->negate()); delete $2; }
| '?' regexp3 { $$ = new KDevPG::GNFA(*$2 |= KDevPG::GNFA::emptyWord()); delete $2; }
| regexp4 { $$ = $1; }
;
regexp4
: regexp4 regexp5 { $$ = new KDevPG::GNFA(*$1 <<= *$2); delete $1; delete $2; }
| regexp5 { $$ = $1; }
;
regexp5
: regexp5 '@' regexp6 { $$ = new KDevPG::GNFA(*$1); KDevPG::GNFA *tmp = new KDevPG::GNFA(*$3 <<= *$1); **tmp; *$$ <<= *tmp; delete tmp; delete $1; delete $3; }
| regexp6 { $$ = $1; }
;
regexp6
: regexp6 '*' { $$ = new KDevPG::GNFA(**$1); delete $1; }
| regexp6 '+' { $$ = new KDevPG::GNFA(*$1); **$$; *$$ <<= *$1; delete $1; }
| regexp7 { $$ = $1; }
;
regexp7
: '(' regexp ')' { $$ = new KDevPG::GNFA(*$2); delete $2; }
| '[' aregexp ']' { $$ = $2; }
| '.' { $$ = new KDevPG::GNFA(KDevPG::GNFA::anyChar()); }
| T_STRING { $$ = new KDevPG::GNFA(KDevPG::GNFA::word(KDevPG::unescaped(QByteArray($1)))); }
| T_UNQUOTED_STRING { $$ = new KDevPG::GNFA(KDevPG::GNFA::word(KDevPG::unescaped(QByteArray($1)))); }
| T_NAMED_REGEXP {
if(!KDevPG::globalSystem.regexpById.contains($1))
{
KDevPG::checkOut << "** ERROR: no named regexp " << $1 << endl;
exit(-1);
}
KDevPG::GNFA *regexp = KDevPG::globalSystem.regexpById[$1];
if(!KDevPG::globalSystem.dfaForNfa.contains(regexp))
{
KDevPG::globalSystem.dfaForNfa[regexp] = new KDevPG::GDFA(regexp->dfa());
KDevPG::globalSystem.dfaForNfa[regexp]->minimize();
*regexp = KDevPG::globalSystem.dfaForNfa[regexp]->nfa();
}
$$ = new KDevPG::GNFA(*regexp);
}
| /* empty */ { $$ = new KDevPG::GNFA(KDevPG::GNFA::emptyWord()); }
;
aregexp
: aregexp '|' aregexp1 { $$ = new KDevPG::GNFA(*$1 |= *$3); delete $1; delete $3; }
| aregexp1 { $$ = $1; }
;
aregexp1
: aregexp1 '&' aregexp2 { $$ = new KDevPG::GNFA(*$1 &= *$3); delete $1; delete $3; }
| aregexp2 { $$ = $1; }
;
aregexp2
: aregexp3 '^' aregexp2 { $$ = new KDevPG::GNFA(*$1 ^= *$3); delete $1; delete $3; }
| aregexp3 { $$ = $1; }
;
aregexp3
: '~' aregexp3 { $$ = new KDevPG::GNFA($2->negate()); delete $2; }
| '?' aregexp3 { $$ = new KDevPG::GNFA(*$2 |= KDevPG::GNFA::emptyWord()); delete $2; }
| aregexp4 { $$ = $1; }
;
aregexp4
: aregexp4 aregexp5 { $$ = new KDevPG::GNFA(*$1 |= *$2); delete $1; delete $2; }
| aregexp5
;
aregexp5
: aregexp5 '@' aregexp6 { $$ = new KDevPG::GNFA(*$1); KDevPG::GNFA *tmp = new KDevPG::GNFA(*$3 <<= *$1); **tmp; *$$ <<= *tmp; delete tmp; delete $1; delete $3; }
| aregexp6 { $$ = $1; }
;
aregexp6
: aregexp6 '*' { $$ = new KDevPG::GNFA(**$1); delete $1; }
| aregexp6 '+' { $$ = new KDevPG::GNFA(*$1); **$$; *$$ <<= *$1; delete $1; }
| aregexp7 { $$ = $1; }
;
aregexp7
: '(' regexp ')' { $$ = new KDevPG::GNFA(*$2); delete $2; }
| '[' aregexp ']' { $$ = $2; }
| '.' { $$ = new KDevPG::GNFA(KDevPG::GNFA::anyChar()); }
| T_STRING { $$ = new KDevPG::GNFA(KDevPG::GNFA::word(KDevPG::unescaped(QByteArray($1)))); }
| T_RANGE {
quint32 begin, end;
QString str = KDevPG::unescaped(QByteArray($1));
assert(str.size() >= 3 && str.size() <= 5);
if(str[1] == '-')
{
begin = str[0].unicode();
if(str.size() == 3)
end = str[2].unicode();
else
end = QChar::surrogateToUcs4(str[2], str[3]);
}
else
{
begin = QChar::surrogateToUcs4(str[0], str[1]);
assert(str[2] == '-');
if(str.size() == 4)
end = str[3].unicode();
else
end = QChar::surrogateToUcs4(str[3], str[4]);
}
$$ = new KDevPG::GNFA(KDevPG::GNFA::range(begin, end+1));
}
| T_UNQUOTED_STRING { $$ = new KDevPG::GNFA(KDevPG::GNFA::collection(KDevPG::unescaped(QByteArray($1)))); }
| T_NAMED_REGEXP {
if(!KDevPG::globalSystem.regexpById.contains($1))
{
KDevPG::checkOut << "** ERROR: no named regexp " << $1 << endl;
exit(-1);
}
KDevPG::GNFA *regexp = KDevPG::globalSystem.regexpById[$1];
if(!KDevPG::globalSystem.dfaForNfa.contains(regexp))
{
KDevPG::globalSystem.dfaForNfa[regexp] = new KDevPG::GDFA(regexp->dfa());
KDevPG::globalSystem.dfaForNfa[regexp]->minimize();
*regexp = KDevPG::globalSystem.dfaForNfa[regexp]->nfa();
}
$$ = new KDevPG::GNFA(*regexp);
}
| /* empty */ { $$ = new KDevPG::GNFA(KDevPG::GNFA::emptyWord()); }
;
member_declaration_rest
: '(' T_PUBLIC T_DECLARATION ')' T_CODE
{ $$ = KDevPG::member(KDevPG::Settings::MemberItem::PublicDeclaration, $5); }
| '(' T_PROTECTED T_DECLARATION ')' T_CODE
{ $$ = KDevPG::member(KDevPG::Settings::MemberItem::ProtectedDeclaration, $5); }
| '(' T_PRIVATE T_DECLARATION ')' T_CODE
{ $$ = KDevPG::member(KDevPG::Settings::MemberItem::PrivateDeclaration, $5); }
| '(' T_CONSTRUCTOR ')' T_CODE
{ $$ = KDevPG::member(KDevPG::Settings::MemberItem::ConstructorCode, $4); }
| '(' T_DESTRUCTOR ')' T_CODE
{ $$ = KDevPG::member(KDevPG::Settings::MemberItem::DestructorCode, $4); }
;
declared_tokens
: T_TERMINAL { KDevPG::globalSystem.pushTerminal($1,$1); }
| T_TERMINAL '(' T_STRING ')' { KDevPG::globalSystem.pushTerminal($1,$3); }
| declared_tokens ',' T_TERMINAL { KDevPG::globalSystem.pushTerminal($3,$3); }
| declared_tokens ',' T_TERMINAL '(' T_STRING ')'
{ KDevPG::globalSystem.pushTerminal($3,$5); }
;
rules
: /* empty */
| rules item ';' { KDevPG::globalSystem.pushRule($2); }
;
primary_item
: '0' { $$ = KDevPG::globalSystem.zero(); }
| '(' option_item ')' { $$ = $2; }
| try_item { $$ = $1; }
| primary_atom { $$ = $1; }
| T_INLINE T_IDENTIFIER { $$ = KDevPG::inlinedNonTerminal(KDevPG::globalSystem.pushSymbol($2)); }
| name scope primary_atom { $$ = KDevPG::annotation($1, $3, false, $2); }
| '#' name scope primary_atom { $$ = KDevPG::annotation($2, $4, true, $3); }
;
primary_atom
: T_IDENTIFIER rule_arguments_opt { $$ = KDevPG::nonTerminal(KDevPG::globalSystem.pushSymbol($1), $2); }
| T_TERMINAL { $$ = KDevPG::globalSystem.terminal($1); }
;
try_item
: T_TRY_RECOVER '(' option_item ')'
{
KDevPG::globalSystem.needStateManagement = true;
$$ = KDevPG::tryCatch($3, 0);
}
| T_TRY_ROLLBACK '(' option_item ')' T_CATCH '(' option_item ')'
{
KDevPG::globalSystem.needStateManagement = true;
$$ = KDevPG::tryCatch($3, $7);
}
rule_arguments_opt
: /* empty */ { $$ = const_cast<char*>(""); }
| T_RULE_ARGUMENTS { $$ = $1; }
;
name
: T_IDENTIFIER { $$ = $1; }
/* | T_IDENTIFIER '.' T_IDENTIFIER
{
$$ = $3;
fprintf(stderr, "** WARNING support for scoped name"
" ``%s.%s'' not implemented\n", $1, $3);
}*/
;
scope
: '=' { $$ = KDevPG::Model::VariableDeclarationItem::StorageAstMember; }
| ':' { $$ = KDevPG::Model::VariableDeclarationItem::StorageTemporary; }
;
unary_item
: primary_item '+' { $$ = KDevPG::plus($1); }
| primary_item '*' { $$ = KDevPG::star($1); }
| primary_item { $$ = $1; }
| '?' primary_item { $$ = KDevPG::alternative($2, KDevPG::globalSystem.zero()); }
;
postfix_item
: unary_item { $$ = $1; }
| postfix_item '@' primary_item
{
KDevPG::CloneTree cl;
$$ = KDevPG::cons($1, KDevPG::star(KDevPG::cons(cl.clone($3), cl.clone($1))));
}
| postfix_item T_CODE { $$ = KDevPG::action($1, $2); }
| T_CODE { $$ = KDevPG::action(0, $1); }
;
item_sequence
: postfix_item { $$ = $1; }
| item_sequence postfix_item { $$ = KDevPG::cons($1, $2); }
;
conditional_item
: item_sequence { $$ = $1; }
| '?' T_CODE item_sequence { $$ = KDevPG::condition($2, $3); }
;
option_item
: conditional_item { $$ = $1; }
| option_item '|' conditional_item { $$ = KDevPG::alternative($1, $3); }
;
item
: option_item T_ARROW T_IDENTIFIER T_CODE '[' variableDeclarations ']'
{
$$ = KDevPG::evolve($1, KDevPG::globalSystem.pushSymbol($3),
(KDevPG::Model::VariableDeclarationItem*) $6, $4);
}
| option_item T_ARROW T_IDENTIFIER '[' variableDeclarations ']' code_opt
{
$$ = KDevPG::evolve($1, KDevPG::globalSystem.pushSymbol($3),
(KDevPG::Model::VariableDeclarationItem*) $5, $7);
}
| option_item T_ARROW T_IDENTIFIER code_opt
{ $$ = KDevPG::evolve($1, KDevPG::globalSystem.pushSymbol($3), 0, $4); }
| { if(KDevPG::globalSystem.generateAst == false)
{
qFatal("Operator-expression-parsing is not yet supported with --no-ast!");
exit(-1);
}
operatorNode = KDevPG::createNode<KDevPG::Model::OperatorItem>();
} operatorRule { KDevPG::globalSystem.needOperatorStack = true; $$ = $2; }
;
code_opt
: /* empty */ { $$ = const_cast<char*>(""); }
| T_CODE { $$ = $1; }
;
operatorDeclarations
: operatorDeclaration operatorDeclarations
| /* empty */ { ; }
;
operatorRule
: T_LOPR primary_atom operatorDeclarations T_ROPR T_IDENTIFIER '[' variableDeclarations ']' code_opt
{
operatorNode->mBase = (KDevPG::Model::NonTerminalItem*)$2;
operatorNode->mName = $5;
if(!KDevPG::globalSystem.astBaseClasses.contains(operatorNode->mBase->mSymbol->mName))
KDevPG::globalSystem.astBaseClasses[operatorNode->mBase->mSymbol->mName] = KDevPG::capitalized(operatorNode->mName) + "Ast";
$$ = KDevPG::evolve(operatorNode, KDevPG::globalSystem.pushSymbol($5), (KDevPG::Model::VariableDeclarationItem*)$7, $9);
}
| T_LOPR primary_atom operatorDeclarations T_ROPR T_IDENTIFIER T_CODE '[' variableDeclarations ']'
{
operatorNode->mBase = (KDevPG::Model::NonTerminalItem*)$2;
operatorNode->mName = $5;
if(!KDevPG::globalSystem.astBaseClasses.contains(operatorNode->mBase->mSymbol->mName))
KDevPG::globalSystem.astBaseClasses[operatorNode->mBase->mSymbol->mName] = KDevPG::capitalized(operatorNode->mName) + "Ast";
$$ = KDevPG::evolve(operatorNode, KDevPG::globalSystem.pushSymbol($5), (KDevPG::Model::VariableDeclarationItem*)$8, $6);
}
| T_LOPR primary_atom operatorDeclarations T_ROPR T_IDENTIFIER code_opt
{
operatorNode->mBase = (KDevPG::Model::NonTerminalItem*)$2;
operatorNode->mName = $5;
if(!KDevPG::globalSystem.astBaseClasses.contains(operatorNode->mBase->mSymbol->mName))
KDevPG::globalSystem.astBaseClasses[operatorNode->mBase->mSymbol->mName] = KDevPG::capitalized(operatorNode->mName) + "Ast";
$$ = KDevPG::evolve(operatorNode, KDevPG::globalSystem.pushSymbol($5), 0, $6);
}
;
operatorDeclaration
: T_BIN operator priority assoc { operatorNode->pushBin(*$2, $4, $3); free($2); }
| T_TERN operator operator priority assoc { operatorNode->pushTern(*$2, *$3, $5, $4); free($2); free($3); }
| T_PRE operator priority { operatorNode->pushPre(*$2, $3); free($2); }
| T_POST operator priority { operatorNode->pushPost(*$2, "0", $3); free($2); free($3); }
| T_POST operator priority assoc { operatorNode->pushPost(*$2, $4, $3); free($2); }
| T_PAREN operator operator { operatorNode->pushParen(*$2, *$3); free($2); free($3); }
;
priority
: '0' { $$ = (char*)"0"; }
| T_NUMBER { $$ = $1; }
| T_PRIORITY T_CODE { $$ = $2; }
;
assoc
: T_LEFT_ASSOC { $$ = (char*)"1"; }
| T_RIGHT_ASSOC { $$ = (char*)"0"; }
| T_IS_LEFT_ASSOC T_CODE { uint yyleng = strlen($2);
char *tmp = (char*)calloc(yyleng+7, sizeof(char));
tmp[0] = '(';
strcpy(tmp+1, $2);
strcpy(tmp+yyleng+6-6+1, "?1:0)");
$$ = tmp;
}
| T_IS_RIGHT_ASSOC T_CODE { uint yyleng = strlen($2);
char *tmp = (char*)calloc(yyleng+7, sizeof(char));
tmp[0] = '(';
strcpy(tmp+1, $2);
strcpy(tmp+yyleng+6-6+1, "?0:1)");
$$ = tmp;
}
;
operator
: '?' T_CODE T_TERMINAL T_CODE { $$ = KDevPG::makeOperator(KDevPG::globalSystem.terminal($3), $2, $4); }
| '?' T_CODE T_TERMINAL { $$ = KDevPG::makeOperator(KDevPG::globalSystem.terminal($3), $2, ""); }
| T_TERMINAL T_CODE { $$ = KDevPG::makeOperator(KDevPG::globalSystem.terminal($1), "", $2); }
| T_TERMINAL { $$ = KDevPG::makeOperator(KDevPG::globalSystem.terminal($1), "", ""); }
;
variableDeclarations
: variableDeclaration { $$ = $1; }
| variableDeclarations variableDeclaration
{
KDevPG::Model::VariableDeclarationItem *last = (KDevPG::Model::VariableDeclarationItem*) $1;
while (last->mNext != 0) {
last = last->mNext;
}
last->mNext = (KDevPG::Model::VariableDeclarationItem*) $2;
$$ = $1;
}
;
variableDeclaration
: declarationType_opt storageType variableType T_IDENTIFIER ':' T_IDENTIFIER
{ $$ = KDevPG::variableDeclaration($1, $2, $3, false, $4, $6); }
| declarationType_opt storageType T_TOKEN T_IDENTIFIER ';'
{ $$ = KDevPG::variableDeclaration($1, $2, KDevPG::Model::VariableDeclarationItem::TypeToken, false, $4, ""); }
| declarationType_opt storageType variableType '#' T_IDENTIFIER ':' T_IDENTIFIER
{ $$ = KDevPG::variableDeclaration($1, $2, $3, true, $5, $7); }
| declarationType_opt storageType T_TOKEN '#' T_IDENTIFIER ';'
{ $$ = KDevPG::variableDeclaration($1, $2, KDevPG::Model::VariableDeclarationItem::TypeToken, true, $5, ""); }
;
declarationType_opt
: /* empty */ { $$ = KDevPG::Model::VariableDeclarationItem::DeclarationLocal; }
| T_ARGUMENT { $$ = KDevPG::Model::VariableDeclarationItem::DeclarationArgument; }
;
storageType
: T_MEMBER { $$ = KDevPG::Model::VariableDeclarationItem::StorageAstMember; }
| T_TEMPORARY { $$ = KDevPG::Model::VariableDeclarationItem::StorageTemporary; }
;
variableType
: T_NODE { $$ = KDevPG::Model::VariableDeclarationItem::TypeNode; }
| T_VARIABLE { $$ = KDevPG::Model::VariableDeclarationItem::TypeVariable; }
;
%%
|