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
|
/* 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.
*/
#ifndef KDEV_PG_CODEGEN_H
#define KDEV_PG_CODEGEN_H
#include "kdev-pg.h"
#include "kdev-pg-default-visitor.h"
namespace KDevPG
{
/**
* This class is the LL/shunting yard-parser code generator. It generates the actual parsing code.
* @todo Investigate whether parts of it are not code-generation, but in fact realy computations which should be handled independently from the output-language.
*/
class CodeGenerator: protected DefaultVisitor
{
public:
QTextStream& out;
Model::EvolveItem *mEvolve;
QSet<QString> *mNames;
Model::SymbolItem *mSym;
public:
CodeGenerator(QTextStream& o, QSet<QString> *names, Model::SymbolItem *sym)
: out(o), mNames(names), mSym(sym), mCurrentCatchId(0)
{}
void operator()(Model::Node *node);
protected:
virtual void visitZero(Model::ZeroItem *node);
virtual void visitSymbol(Model::SymbolItem *node);
virtual void visitNonTerminal(Model::NonTerminalItem *node);
virtual void visitTerminal(Model::TerminalItem *node);
virtual void visitPlus(Model::PlusItem *node);
virtual void visitStar(Model::StarItem *node);
virtual void visitAction(Model::ActionItem *node);
virtual void visitAlternative(Model::AlternativeItem *node);
virtual void visitCons(Model::ConsItem *node);
virtual void visitEvolve(Model::EvolveItem *node);
virtual void visitTryCatch(Model::TryCatchItem *node);
virtual void visitAlias(Model::AliasItem *node);
virtual void visitAnnotation(Model::AnnotationItem *node);
virtual void visitCondition(Model::ConditionItem *node);
virtual void visitOperator(Model::OperatorItem *node);
private:
int mCurrentCatchId;
int setCatchId(int catch_id);
};
class GenerateForwardParserRule
{
public:
QTextStream& out;
public:
GenerateForwardParserRule(QTextStream& o): out(o)
{}
void operator()(QPair<QString, Model::SymbolItem*> const &__it);
};
class GenerateParserRule
{
public:
QTextStream& out;
QSet<QString> mNames;
public:
GenerateParserRule(QTextStream& o): out(o)
{}
void operator()(QPair<QString, Model::SymbolItem*> const &__it);
};
class GenerateLocalDeclarations: protected DefaultVisitor
{
public:
QTextStream& out;
QSet<QString> *mNames;
public:
GenerateLocalDeclarations(QTextStream& o, QSet<QString> *names)
: out(o), mNames(names)
{}
void operator()(Model::Node *node);
virtual void visitVariableDeclaration(Model::VariableDeclarationItem *node);
};
class GenerateParseMethodSignature: protected DefaultVisitor
{
public:
QTextStream& out;
bool firstParameter;
QSet<QString> *mNames;
public:
GenerateParseMethodSignature(QTextStream& o, QSet<QString> *names)
: out(o), firstParameter(true), mNames(names)
{}
void operator()(Model::SymbolItem *node);
virtual void visitVariableDeclaration(Model::VariableDeclarationItem *node);
};
class GenerateRecursiveDelegation
{
public:
QTextStream& out;
GenerateRecursiveDelegation(QTextStream& o)
: out(o)
{}
void operator()(Model::SymbolItem *node);
};
template<bool printType, bool printName>
class GenerateVariableDeclaration
{
public:
QTextStream& out;
public:
GenerateVariableDeclaration(QTextStream& o): out(o)
{}
void operator()(Model::VariableDeclarationItem *node);
};
class GenerateTokenVariableInitialization : public DefaultVisitor
{
public:
QTextStream& out;
GenerateTokenVariableInitialization( QTextStream& o) : out(o)
{
}
void operator()(Model::SymbolItem* node);
virtual void visitVariableDeclaration(Model::VariableDeclarationItem *node);
};
class GenerateMemberCode
{
public:
QTextStream& out;
int mKindMask;
public:
GenerateMemberCode(QTextStream& o, int kind_mask)
: out(o), mKindMask(kind_mask)
{}
void operator()(Settings::MemberItem* m);
};
class GenerateParserDeclarations
{
public:
QTextStream& out;
public:
GenerateParserDeclarations(QTextStream& o): out(o)
{}
void operator()();
};
class GenerateParserBits
{
public:
QTextStream& out;
public:
GenerateParserBits(QTextStream& o): out(o)
{}
void operator()();
};
class GenerateTokenTexts
{
public:
QTextStream& out;
public:
GenerateTokenTexts(QTextStream& o): out(o)
{}
void operator()();
};
}
#endif // KDEV_PG_CODEGEN_H
|