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
|
// Generated by Bisonc++ V6.09.02 on Tue, 03 Jun 2025 14:17:32 +0200
// hdr/includes
#ifndef ParserBase_h_included
#define ParserBase_h_included
#include <exception>
#include <vector>
#include <iostream>
// $insert polyincludes
#include <memory>
// $insert preincludes
#include "preheaders.h"
#include "../tokens/tokens.h"
// hdr/baseclass
namespace // anonymous
{
struct PI_;
}
// $insert polymorphic
enum class Tag_
{
SYMBOL,
TERMINAL,
BLOCK,
TEXT,
SIZE_T,
BOOL,
END_TAG_
};
class EndPolyType_
{};
namespace Meta_
{
extern size_t const *t_nErrors;
extern size_t const *s_nErrors_;
template <typename Tp_>
struct TagOf;
template <Tag_ tag>
struct TypeOf;
// $insert polymorphicSpecializations
extern char const *idOfTag_[];
template <>
struct TagOf<Symbol *>
{
static Tag_ const tag = Tag_::SYMBOL;
};
template <>
struct TagOf<Terminal *>
{
static Tag_ const tag = Tag_::TERMINAL;
};
template <>
struct TagOf<Block>
{
static Tag_ const tag = Tag_::BLOCK;
};
template <>
struct TagOf<std::string>
{
static Tag_ const tag = Tag_::TEXT;
};
template <>
struct TagOf<size_t>
{
static Tag_ const tag = Tag_::SIZE_T;
};
template <>
struct TagOf<bool>
{
static Tag_ const tag = Tag_::BOOL;
};
template <>
struct TagOf<EndPolyType_>
{
static Tag_ const tag = Tag_::END_TAG_;
};
template <>
struct TypeOf<Tag_::SYMBOL>
{
using type = Symbol *;
};
template <>
struct TypeOf<Tag_::TERMINAL>
{
using type = Terminal *;
};
template <>
struct TypeOf<Tag_::BLOCK>
{
using type = Block;
};
template <>
struct TypeOf<Tag_::TEXT>
{
using type = std::string;
};
template <>
struct TypeOf<Tag_::SIZE_T>
{
using type = size_t;
};
template <>
struct TypeOf<Tag_::BOOL>
{
using type = bool;
};
template <>
struct TypeOf<Tag_::END_TAG_>
{
using type = EndPolyType_;
};
// Individual semantic value classes are derived from Base, offering a
// member returning the value's Tag_, a member cloning the object of its
// derived Semantic<Tag_> and a member returning a pointerr to its
// derived Semantic<Tag_> data. See also Bisonc++'s distribution file
// README.polymorphic-techical
class Base
{
protected:
Tag_ d_baseTag; // d_baseTag is assigned by Semantic.
public:
Base() = default;
Base(Base const &other) = delete;
virtual ~Base();
Tag_ tag() const;
Base *clone() const;
void *data() const;
private:
virtual Base *vClone() const = 0;
virtual void *vData() const = 0;
};
inline Base *Base::clone() const
{
return vClone();
}
inline void *Base::data() const
{
return vData();
}
inline Tag_ Base::tag() const
{
return d_baseTag;
}
// The class Semantic stores a semantic value of the type matching tg_
template <Tag_ tg_>
class Semantic: public Base
{
typename TypeOf<tg_>::type d_data;
public:
Semantic();
Semantic(Semantic<tg_> const &other); // req'd for cloning
// This constructor member template forwards its arguments to
// d_data, allowing it to be initialized using whatever
// constructor is available for DataType
template <typename ...Params>
Semantic(Params &&...params);
private:
Base *vClone() const override;
void *vData() const override;
};
template <Tag_ tg_>
Semantic<tg_>::Semantic()
{
d_baseTag = tg_; // Base's data member:
}
template <Tag_ tg_>
Semantic<tg_>::Semantic(Semantic<tg_> const &other)
:
d_data(other.d_data)
{
d_baseTag = other.d_baseTag;
}
template <Tag_ tg_>
template <typename ...Params>
Semantic<tg_>::Semantic(Params &&...params)
:
d_data(std::forward<Params>(params) ...)
{
d_baseTag = tg_;
}
template <Tag_ tg_>
Base *Semantic<tg_>::vClone() const
{
return new Semantic<tg_>{*this};
}
template <Tag_ tg_>
void *Semantic<tg_>::vData() const
{
return const_cast<typename TypeOf<tg_>::type *>(&d_data);
}
// The class SType wraps a pointer to Base. It becomes the polymorphic
// STYPE_ type. It also defines get members, allowing constructions like
// $$.get<INT> to be used.
class SType: private std::unique_ptr<Base>
{
using BasePtr = std::unique_ptr<Base>;
public:
SType();
SType(SType const &other);
SType(SType &&tmp);
~SType() = default;
// Specific overloads are needed for SType = SType assignments
SType &operator=(SType const &rhs);
SType &operator=(SType &rhs); // required so it is used
// instead of the template op=
SType &operator=(SType &&tmp);
// $insert polymorphicOpAssignDecl
SType &operator=(Symbol * const &value);
SType &operator=(Symbol * &&tmp);
SType &operator=(Terminal * const &value);
SType &operator=(Terminal * &&tmp);
SType &operator=(Block const &value);
SType &operator=(Block &&tmp);
SType &operator=(std::string const &value);
SType &operator=(std::string &&tmp);
SType &operator=(size_t const &value);
SType &operator=(size_t &&tmp);
SType &operator=(bool const &value);
SType &operator=(bool &&tmp);
SType &operator=(EndPolyType_ const &value);
SType &operator=(EndPolyType_ &&tmp);
template <Tag_ tagParam, typename ...Args>
void assign(Args &&...args);
// By default the get()-members check whether the specified <tag>
// matches the tag returned by SType::tag (d_data's tag). If they
// don't match a run-time fatal error results.
template <Tag_ tag>
typename TypeOf<tag>::type &get();
template <Tag_ tag>
typename TypeOf<tag>::type const &get() const;
Tag_ tag() const;
};
inline SType::SType()
:
std::unique_ptr<Base>(new Semantic<Tag_::END_TAG_>{})
{}
inline SType::SType(SType const &other)
:
BasePtr{ other->clone() }
{}
inline SType::SType(SType &&tmp)
:
BasePtr{ std::move(tmp) }
{
tmp = SType{}; // tmp remains valid
}
inline SType &SType::operator=(SType const &rhs)
{
reset(rhs->clone());
return *this;
}
inline SType &SType::operator=(SType &rhs)
{
reset(rhs->clone());
return *this;
}
inline SType &SType::operator=(SType &&tmp)
{
BasePtr::operator=(std::move(tmp));
return *this;
}
// $insert polymorphicOpAssignImpl
inline SType &SType::operator=(Symbol * const &value)
{
assign< Tag_::SYMBOL >(value);
return *this;
}
inline SType &SType::operator=(Symbol * &&tmp)
{
assign< Tag_::SYMBOL >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(Terminal * const &value)
{
assign< Tag_::TERMINAL >(value);
return *this;
}
inline SType &SType::operator=(Terminal * &&tmp)
{
assign< Tag_::TERMINAL >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(Block const &value)
{
assign< Tag_::BLOCK >(value);
return *this;
}
inline SType &SType::operator=(Block &&tmp)
{
assign< Tag_::BLOCK >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(std::string const &value)
{
assign< Tag_::TEXT >(value);
return *this;
}
inline SType &SType::operator=(std::string &&tmp)
{
assign< Tag_::TEXT >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(size_t const &value)
{
assign< Tag_::SIZE_T >(value);
return *this;
}
inline SType &SType::operator=(size_t &&tmp)
{
assign< Tag_::SIZE_T >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(bool const &value)
{
assign< Tag_::BOOL >(value);
return *this;
}
inline SType &SType::operator=(bool &&tmp)
{
assign< Tag_::BOOL >(std::move(tmp));
return *this;
}
inline SType &SType::operator=(EndPolyType_ const &value)
{
assign< Tag_::END_TAG_ >(value);
return *this;
}
inline SType &SType::operator=(EndPolyType_ &&tmp)
{
assign< Tag_::END_TAG_ >(std::move(tmp));
return *this;
}
template <Tag_ tagParam, typename ...Args>
void SType::assign(Args &&...args)
{
reset(new Semantic<tagParam>(std::forward<Args>(args) ...));
}
template <Tag_ tg>
typename TypeOf<tg>::type &SType::get()
{
// $insert warnTagMismatches
if (tag() != tg)
{
if (*t_nErrors != 0)
const_cast<SType *>(this)->assign<tg>();
else
{
std::cerr << "[Fatal] calling `.get<Tag_::" <<
idOfTag_[static_cast<int>(tg)] <<
">()', but Tag " <<
idOfTag_[static_cast<int>(tag())] << " is encountered. Try "
"option --debug and call setDebug(Parser::ACTIONCASES)\n";
throw 1; // ABORTs
}
}
return *static_cast<typename TypeOf<tg>::type *>( (*this)->data() );
}
template <Tag_ tg>
typename TypeOf<tg>::type const &SType::get() const
{
// $insert warnTagMismatches
if (tag() != tg)
{
if (*t_nErrors != 0)
const_cast<SType *>(this)->assign<tg>();
else
{
std::cerr << "[Fatal] calling `.get<Tag_::" <<
idOfTag_[static_cast<int>(tg)] <<
">()', but Tag " <<
idOfTag_[static_cast<int>(tag())] << " is encountered. Try "
"option --debug and call setDebug(Parser::ACTIONCASES)\n";
throw 1; // ABORTs
}
}
return *static_cast<typename TypeOf<tg>::type *>( (*this)->data() );
}
inline Tag_ SType::tag() const
{
return (*this)->tag();
}
} // namespace Meta_
// $insert parserbase
class ParserBase: public Tokens
{
public:
enum DebugMode_
{
OFF = 0,
ON = 1 << 0,
ACTIONCASES = 1 << 1
};
// $insert tokens
// $insert STYPE
using STYPE_ = Meta_::SType;
private:
// state semval
using StatePair = std::pair<size_t, STYPE_>;
// token semval
using TokenPair = std::pair<int, STYPE_>;
int d_stackIdx = -1;
std::vector<StatePair> d_stateStack;
StatePair *d_vsp = 0; // points to the topmost value stack
size_t d_state = 0;
TokenPair d_next;
int d_token;
bool d_terminalToken = false;
bool d_recovery = false;
protected:
enum Return_
{
PARSE_ACCEPT_ = 0, // values used as parse()'s return values
PARSE_ABORT_ = 1
};
enum ErrorRecovery_
{
UNEXPECTED_TOKEN_,
};
bool d_actionCases_ = false; // set by options/directives
bool d_debug_ = true;
size_t d_requiredTokens_;
size_t d_nErrors_; // initialized by clearin()
size_t d_acceptedTokens_;
STYPE_ d_val_;
ParserBase();
void ABORT() const;
void ACCEPT() const;
void ERROR() const;
STYPE_ &vs_(int idx); // value stack element idx
int lookup_() const;
int savedToken_() const;
int token_() const;
size_t stackSize_() const;
size_t state_() const;
size_t top_() const;
void clearin_();
void errorVerbose_();
void lex_(int token);
void popToken_();
void pop_(size_t count = 1);
void pushToken_(int token);
void push_(size_t nextState);
void redoToken_();
bool recovery_() const;
void reduce_(int rule);
void shift_(int state);
void startRecovery_();
public:
void setDebug(bool mode);
void setDebug(DebugMode_ mode);
};
// hdr/abort
inline void ParserBase::ABORT() const
{
throw PARSE_ABORT_;
}
// hdr/accept
inline void ParserBase::ACCEPT() const
{
throw PARSE_ACCEPT_;
}
// hdr/error
inline void ParserBase::ERROR() const
{
throw UNEXPECTED_TOKEN_;
}
// hdr/savedtoken
inline int ParserBase::savedToken_() const
{
return d_next.first;
}
// hdr/opbitand
inline ParserBase::DebugMode_ operator&(ParserBase::DebugMode_ lhs,
ParserBase::DebugMode_ rhs)
{
return static_cast<ParserBase::DebugMode_>(
static_cast<int>(lhs) & rhs);
}
// hdr/opbitor
inline ParserBase::DebugMode_ operator|(ParserBase::DebugMode_ lhs,
ParserBase::DebugMode_ rhs)
{
return static_cast<ParserBase::DebugMode_>(static_cast<int>(lhs) | rhs);
};
// hdr/recovery
inline bool ParserBase::recovery_() const
{
return d_recovery;
}
// hdr/stacksize
inline size_t ParserBase::stackSize_() const
{
return d_stackIdx + 1;
}
// hdr/state
inline size_t ParserBase::state_() const
{
return d_state;
}
// hdr/token
inline int ParserBase::token_() const
{
return d_token;
}
// hdr/vs
inline ParserBase::STYPE_ &ParserBase::vs_(int idx)
{
return (d_vsp + idx)->second;
}
#endif
|