| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937 |
- #include "ERMInterpreter.h"
- #include <boost/filesystem.hpp>
- #include <boost/algorithm/string.hpp>
- #include <boost/foreach.hpp>
- #include <boost/lexical_cast.hpp>
- /*
- * ERMInterpreter.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- namespace spirit = boost::spirit;
- using namespace VERMInterpreter;
- namespace ERMPrinter
- {
- //console printer
- using namespace ERM;
- struct VarPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TVarExpNotMacro const& val) const
- {
- tlog2 << val.varsym;
- if(val.val.is_initialized())
- {
- tlog2 << val.val.get();
- }
- }
- void operator()(TMacroUsage const& val) const
- {
- tlog2 << "$" << val.macro << "&";
- }
- };
- void varPrinter(const TVarExp & var)
- {
- boost::apply_visitor(VarPrinterVisitor(), var);
- }
- struct IExpPrinterVisitor : boost::static_visitor<>
- {
- void operator()(int const & constant) const
- {
- tlog2 << constant;
- }
- void operator()(TVarExp const & var) const
- {
- varPrinter(var);
- }
- };
- void iexpPrinter(const TIexp & exp)
- {
- boost::apply_visitor(IExpPrinterVisitor(), exp);
- }
- struct IdentifierPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TIexp const& iexp) const
- {
- iexpPrinter(iexp);
- }
- void operator()(TArithmeticOp const& arop) const
- {
- iexpPrinter(arop.lhs);
- tlog2 << " " << arop.opcode << " ";
- iexpPrinter(arop.rhs);
- }
- };
- void identifierPrinter(const boost::optional<Tidentifier> & id)
- {
- if(id.is_initialized())
- {
- tlog2 << "identifier: ";
- BOOST_FOREACH(TIdentifierInternal x, id.get())
- {
- tlog2 << "#";
- boost::apply_visitor(IdentifierPrinterVisitor(), x);
- }
- }
- }
- struct ConditionCondPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TComparison const& cmp) const
- {
- iexpPrinter(cmp.lhs);
- tlog2 << " " << cmp.compSign << " ";
- iexpPrinter(cmp.rhs);
- }
- void operator()(int const& flag) const
- {
- tlog2 << "condflag " << flag;
- }
- };
- void conditionPrinter(const boost::optional<Tcondition> & cond)
- {
- if(cond.is_initialized())
- {
- Tcondition condp = cond.get();
- tlog2 << " condition: ";
- boost::apply_visitor(ConditionCondPrinterVisitor(), condp.cond);
- tlog2 << " cond type: " << condp.ctype;
- //recursive call
- if(condp.rhs.is_initialized())
- {
- tlog2 << "rhs: ";
- boost::optional<Tcondition> rhsc = condp.rhs.get().get();
- conditionPrinter(rhsc);
- }
- else
- {
- tlog2 << "no rhs; ";
- }
- }
- }
- struct BodyVarpPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TVarExpNotMacro const& cmp) const
- {
- if(cmp.questionMark.is_initialized())
- {
- tlog2 << cmp.questionMark.get();
- }
- if(cmp.val.is_initialized())
- {
- tlog2 << "val:" << cmp.val.get();
- }
- tlog2 << "varsym: |" << cmp.varsym << "|";
- }
- void operator()(TQMacroUsage const& cmp) const
- {
- tlog2 << "???$$" << cmp.qmacro << "$$";
- }
- };
- struct BodyOptionItemPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TVarConcatString const& cmp) const
- {
- tlog2 << "+concat\"";
- varPrinter(cmp.var);
- tlog2 << " with " << cmp.string.str;
- }
- void operator()(TStringConstant const& cmp) const
- {
- tlog2 << " \"" << cmp.str << "\" ";
- }
- void operator()(TCurriedString const& cmp) const
- {
- tlog2 << "cs: ";
- iexpPrinter(cmp.iexp);
- tlog2 << " '" << cmp.string.str << "' ";
- }
- void operator()(TSemiCompare const& cmp) const
- {
- tlog2 << cmp.compSign << "; rhs: ";
- iexpPrinter(cmp.rhs);
- }
- void operator()(TMacroUsage const& cmp) const
- {
- tlog2 << "$$" << cmp.macro << "$$";
- }
- void operator()(TMacroDef const& cmp) const
- {
- tlog2 << "@@" << cmp.macro << "@@";
- }
- void operator()(TIexp const& cmp) const
- {
- iexpPrinter(cmp);
- }
- void operator()(TVarpExp const& cmp) const
- {
- tlog2 << "varp";
- boost::apply_visitor(BodyVarpPrinterVisitor(), cmp.var);
- }
- void operator()(spirit::unused_type const& cmp) const
- {
- tlog2 << "nothing";
- }
- };
- struct BodyOptionVisitor : boost::static_visitor<>
- {
- void operator()(TVRLogic const& cmp) const
- {
- tlog2 << cmp.opcode << " ";
- iexpPrinter(cmp.var);
- }
- void operator()(TVRArithmetic const& cmp) const
- {
- tlog2 << cmp.opcode << " ";
- iexpPrinter(cmp.rhs);
- }
- void operator()(TNormalBodyOption const& cmp) const
- {
- tlog2 << cmp.optionCode << "~";
- BOOST_FOREACH(TBodyOptionItem optList, cmp.params)
- {
- boost::apply_visitor(BodyOptionItemPrinterVisitor(), optList);
- }
- }
- };
- void bodyPrinter(const Tbody & body)
- {
- tlog2 << " body items: ";
- BOOST_FOREACH(TBodyOption bi, body)
- {
- tlog2 << " (";
- apply_visitor(BodyOptionVisitor(), bi);
- tlog2 << ") ";
- }
- }
- struct CommandPrinterVisitor : boost::static_visitor<>
- {
- void operator()(Ttrigger const& trig) const
- {
- tlog2 << "trigger: " << trig.name << " ";
- identifierPrinter(trig.identifier);
- conditionPrinter(trig.condition);
- }
- void operator()(Tinstruction const& trig) const
- {
- tlog2 << "instruction: " << trig.name << " ";
- identifierPrinter(trig.identifier);
- conditionPrinter(trig.condition);
- bodyPrinter(trig.body);
- }
- void operator()(Treceiver const& trig) const
- {
- tlog2 << "receiver: " << trig.name << " ";
- identifierPrinter(trig.identifier);
- conditionPrinter(trig.condition);
- if(trig.body.is_initialized())
- bodyPrinter(trig.body.get());
- }
- void operator()(TPostTrigger const& trig) const
- {
- tlog2 << "post trigger: " << trig.name << " ";
- identifierPrinter(trig.identifier);
- conditionPrinter(trig.condition);
- }
- };
- struct LinePrinterVisitor : boost::static_visitor<>
- {
- void operator()(Tcommand const& cmd) const
- {
- CommandPrinterVisitor un;
- boost::apply_visitor(un, cmd.cmd);
- std::cout << "Line comment: " << cmd.comment << std::endl;
- }
- void operator()(std::string const& comment) const
- {
- }
- void operator()(spirit::unused_type const& nothing) const
- {
- }
- };
- void printERM(const TERMline & ast)
- {
- tlog2 << "";
- boost::apply_visitor(LinePrinterVisitor(), ast);
- }
- void printTVExp(const TVExp & exp);
- struct VOptionPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TVExp const& cmd) const
- {
- printTVExp(cmd);
- }
- void operator()(TSymbol const& cmd) const
- {
- BOOST_FOREACH(TVModifier mod, cmd.symModifier)
- {
- tlog2 << mod << " ";
- }
- tlog2 << cmd.sym;
- }
- void operator()(char const& cmd) const
- {
- tlog2 << "'" << cmd << "'";
- }
- void operator()(int const& cmd) const
- {
- tlog2 << cmd;
- }
- void operator()(double const& cmd) const
- {
- tlog2 << cmd;
- }
- void operator()(TERMline const& cmd) const
- {
- printERM(cmd);
- }
- void operator()(TStringConstant const& cmd) const
- {
- tlog2 << "^" << cmd.str << "^";
- }
- };
- void printTVExp(const TVExp & exp)
- {
- BOOST_FOREACH(TVModifier mod, exp.modifier)
- {
- tlog2 << mod << " ";
- }
- tlog2 << "[ ";
- BOOST_FOREACH(TVOption opt, exp.children)
- {
- boost::apply_visitor(VOptionPrinterVisitor(), opt);
- tlog2 << " ";
- }
- tlog2 << "]";
- }
- struct TLPrinterVisitor : boost::static_visitor<>
- {
- void operator()(TVExp const& cmd) const
- {
- printTVExp(cmd);
- }
- void operator()(TERMline const& cmd) const
- {
- printERM(cmd);
- }
- };
- void printAST(const TLine & ast)
- {
- boost::apply_visitor(TLPrinterVisitor(), ast);
- tlog2 << std::endl;
- }
- }
- void ERMInterpreter::scanForScripts()
- {
- using namespace boost::filesystem;
- //parser checking
- if(!exists(DATA_DIR "/Data/s/"))
- {
- tlog3 << "Warning: Folder " DATA_DIR "/Data/s/ doesn't exist!\n";
- return;
- }
- directory_iterator enddir;
- for (directory_iterator dir(DATA_DIR "/Data/s"); dir!=enddir; dir++)
- {
- if(is_regular(dir->status()))
- {
- std::string name = dir->path().leaf();
- if( boost::algorithm::ends_with(name, ".erm") ||
- boost::algorithm::ends_with(name, ".verm") )
- {
- ERMParser ep(dir->path().string());
- FileInfo * finfo = new FileInfo;
- finfo->filename = dir->path().string();
- std::vector<ERM::TLine> buf = ep.parseFile();
- finfo->length = buf.size();
- files.push_back(finfo);
- for(int g=0; g<buf.size(); ++g)
- {
- scripts[LinePointer(finfo, g)] = buf[g];
- }
- }
- }
- }
- }
- void ERMInterpreter::printScripts( EPrintMode mode /*= EPrintMode::ALL*/ )
- {
- std::map< LinePointer, ERM::TLine >::const_iterator prevIt;
- for(std::map< LinePointer, ERM::TLine >::const_iterator it = scripts.begin(); it != scripts.end(); ++it)
- {
- if(it == scripts.begin() || it->first.file != prevIt->first.file)
- {
- tlog2 << "----------------- script " << it->first.file->filename << " ------------------\n";
- }
-
- ERMPrinter::printAST(it->second);
- prevIt = it;
- }
- }
- struct ScriptScanner : boost::static_visitor<>
- {
- ERMInterpreter * interpreter;
- LinePointer lp;
- ScriptScanner(ERMInterpreter * interpr, const LinePointer & _lp) : interpreter(interpr), lp(_lp)
- {}
- void operator()(TVExp const& cmd) const
- {
- //
- }
- void operator()(TERMline const& cmd) const
- {
- if(cmd.which() == 0) //TCommand
- {
- Tcommand tcmd = boost::get<Tcommand>(cmd);
- switch (tcmd.cmd.which())
- {
- case 0: //trigger
- {
- Trigger trig;
- trig.line = lp;
- interpreter->triggers[ TriggerType(boost::get<ERM::Ttrigger>(tcmd.cmd).name) ].push_back(trig);
- }
- break;
- case 3: //post trigger
- {
- Trigger trig;
- trig.line = lp;
- interpreter->postTriggers[ TriggerType(boost::get<ERM::TPostTrigger>(tcmd.cmd).name) ].push_back(trig);
- }
- break;
- default:
- break;
- }
- }
-
- }
- };
- void ERMInterpreter::scanScripts()
- {
- for(std::map< LinePointer, ERM::TLine >::const_iterator it = scripts.begin(); it != scripts.end(); ++it)
- {
- boost::apply_visitor(ScriptScanner(this, it->first), it->second);
- }
- }
- ERMInterpreter::ERMInterpreter()
- {
- globalEnv = new Environment();
- }
- void ERMInterpreter::executeTrigger( Trigger & trig )
- {
- for(LinePointer lp = trig.line; lp.isValid(); ++lp)
- {
- ERM::TLine curLine = retrieveLine(lp);
- if(isATrigger(curLine))
- break;
- executeLine(lp);
- }
- }
- bool ERMInterpreter::isATrigger( const ERM::TLine & line )
- {
- switch(line.which())
- {
- case 0: //v-exp
- {
- TVExp vexp = boost::get<TVExp>(line);
- if(vexp.children.size() == 0)
- return false;
- switch (getExpType(vexp.children[0]))
- {
- case SYMBOL:
- {
- //TODO: what about sym modifiers?
- //TOOD: macros?
- ERM::TSymbol sym = boost::get<ERM::TSymbol>(vexp.children[0]);
- return sym.sym == triggerSymbol || sym.sym == postTriggerSymbol;
- }
- break;
- case TCMD:
- return isCMDATrigger( boost::get<ERM::Tcommand>(vexp.children[0]) );
- break;
- default:
- return false;
- break;
- }
- }
- break;
- case 1: //erm
- {
- TERMline line = boost::get<TERMline>(line);
- switch(line.which())
- {
- case 0: //tcmd
- return isCMDATrigger( boost::get<ERM::Tcommand>(line) );
- break;
- default:
- return false;
- break;
- }
- }
- break;
- default:
- assert(0); //it should never happen
- break;
- }
- assert(0);
- }
- ERM::EVOtions ERMInterpreter::getExpType( const ERM::TVOption & opt )
- {
- //MAINTENANCE: keep it correct!
- return static_cast<ERM::EVOtions>(opt.which());
- }
- bool ERMInterpreter::isCMDATrigger( const ERM::Tcommand & cmd )
- {
- switch (cmd.cmd.which())
- {
- case 0: //trigger
- case 3: //post trigger
- return true;
- break;
- default:
- return false;
- break;
- }
- }
- ERM::TLine ERMInterpreter::retrieveLine( LinePointer linePtr ) const
- {
- return *scripts.find(linePtr);
- }
- /////////
- //code execution
- struct ERMExpDispatch : boost::static_visitor<>
- {
- void operator()(Ttrigger const& trig) const
- {
- //the first executed line, check if we should proceed
- }
- void operator()(Tinstruction const& trig) const
- {
- }
- void operator()(Treceiver const& trig) const
- {
- }
- void operator()(TPostTrigger const& trig) const
- {
- }
- };
- struct CommandExec : boost::static_visitor<>
- {
- void operator()(Tcommand const& cmd) const
- {
- boost::apply_visitor(ERMExpDispatch(), cmd.cmd);
- std::cout << "Line comment: " << cmd.comment << std::endl;
- }
- void operator()(std::string const& comment) const
- {
- //comment - do nothing
- }
- void operator()(spirit::unused_type const& nothing) const
- {
- //nothing - do nothing
- }
- };
- struct LineExec : boost::static_visitor<>
- {
- void operator()(TVExp const& cmd) const
- {
- //printTVExp(cmd);
- }
- void operator()(TERMline const& cmd) const
- {
- boost::apply_visitor(CommandExec(), cmd);
- }
- };
- /////////
- void ERMInterpreter::executeLine( const LinePointer & lp )
- {
- boost::apply_visitor(LineExec(), scripts[lp]);
- }
- void ERMInterpreter::init()
- {
- ermGlobalEnv = new ERMEnvironment();
- globalEnv = new Environment();
- //TODO: reset?
- }
- struct ERMExecEnvironment
- {
- ERMEnvironment * ermGlobalEnv;
- Trigger * trigEnv;
- FunctionLocalVars * funcVars;
- ERMExecEnvironment(ERMEnvironment * erm, Trigger * trig = NULL, FunctionLocalVars * funvars = NULL)
- : ermGlobalEnv(erm), trigEnv(trig), funcVars(funvars)
- {}
- template<typename T>
- T* getVar(std::string toFollow, boost::optional<int> initVal)
- {
- int initV;
- bool hasInit = false;
- if(initVal.is_initialized())
- {
- initV = initVal.get();
- hasInit = true;
- }
- int endNum = 0;
- if(toFollow[0] == 'd')
- {
- endNum = 1;
- //TODO: support
- }
- T* ret;
- for(int b=toFollow.size()-1; b>=endNum; --b)
- {
- bool retIt = b == endNum+1; //if we should return the value are currently at
- char cr = toFollow[toFollow.size() - 1];
- if(cr == 'c')//write number of current day
- {
- //TODO
- }
- else if(cr == 'd') //info for external env - add i/o set
- {
- throw EIexpProblem("d inside i-expression not allowed!");
- }
- else if(cr == 'e')
- {
- if(hasInit)
- {
- if(retIt)
- {
- //these C-style cast is here just to shut up compiler errors
- if(initV > 0 && initV <= FunctionLocalVars::NUM_FLOATINGS)
- {
- if(funcVars)
- ret = (T*)funcVars->floats + initV - 1;
- else
- throw EIexpProblem("Function context not available!");
- }
- else if(initV < 0 && initV >= -TriggerLocalVars::EVAR_NUM)
- {
- if(trigEnv)
- ret = (T*)trigEnv->ermLocalVars.evar - initV + 1; //minus is important!
- else
- throw EIexpProblem("No trigger context available!");
- }
- else
- throw EIexpProblem("index " + boost::lexical_cast<std::string>(initV) + " not allowed for e array");
- }
- else
- throw EIexpProblem("e variables cannot appear in this context");
- }
- else
- throw EIexpProblem("e variables cannot appear in this context");
- }
- else if(cr >= 'f' && cr <= 't')
- {
- if(retIt)
- ret = &ermGlobalEnv->getQuickVar(cr);
- else
- {
- if(hasInit)
- throw EIexpProblem("quick variables cannot be used in this context");
- else
- {
- initV = ermGlobalEnv->getQuickVar(cr);
- hasInit = true;
- }
- }
- }
- else if(cr == 'v') //standard variables
- {
- if(hasInit)
- {
- if(initV > 0 && initV <= ERMEnvironment::NUM_STANDARDS)
- {
- if(retIt)
- ret = ermGlobalEnv->standardVars + initV - 1;
- else
- initV = ermGlobalEnv->standardVars[initV-1];
- }
- else
- throw EIexpProblem("standard variable index out of range");
- }
- else
- throw EIexpProblem("standard variable cannot be used in this context!");
- }
- else if(cr == 'w') //local hero variables
- {
- //TODO
- }
- else if(cr == 'x') //function parameters
- {
- if(hasInit)
- {
- if(initV > 0 && initV <= FunctionLocalVars::NUM_PARAMETERS)
- {
- if(funcVars)
- {
- if(retIt)
- ret = funcVars->params + initV-1;
- else
- initV = funcVars->params[initV-1];
- }
- else throw EIexpProblem("Function parameters cannot be used outside a function!");
- }
- else
- throw EIexpProblem("Parameter number out of range");
- }
- else
- throw EIexpProblem("Specify which function parameter should be used");
- }
- else if(cr == 'y')
- {
- if(hasInit)
- {
- if(initV > 0 && initV <= FunctionLocalVars::NUM_LOCALS)
- {
- if(funcVars)
- {
- if(retIt)
- ret = funcVars->locals + initV-1;
- else
- initV = funcVars->params[initV - 1];
- }
- else
- throw EIexpProblem("Function local variables cannot be used outside a function!");
- }
- else if(initV < 0 && initV >= -TriggerLocalVars::YVAR_NUM)
- {
- if(trigEnv)
- {
- if(retIt)
- ret = trigEnv->ermLocalVars.yvar - initV + 1;
- else
- initV = trigEnv->ermLocalVars.yvar[-initV + 1];
- }
- else
- throw EIexpProblem("Trigger local variables cannot be used outside triggers!");
- }
- else
- throw EIexpProblem("Wrong argument for function local variable!");
- }
- else
- throw EIexpProblem("y variable cannot be used in this context!");
- }
- else if(cr == 'z')
- {
- if(hasInit)
- {
- if(retIt)
- {
- //these C-style casts are here just to shut up compiler errors
- if(initV > 0 && initV <= ermGlobalEnv->NUM_STRINGS)
- {
- ret = (T*)ermGlobalEnv->strings + initV - 1;
- }
- else if(initV < 0 && initV >= -FunctionLocalVars::NUM_STRINGS)
- {
- if(funcVars)
- {
- ret = (T*)funcVars->strings + initV - 1;
- }
- else
- throw EIexpProblem("Function local string variables cannot be used outside functions!");
- }
- else
- throw EIexpProblem("Wrong parameter for string variable!");
- }
- else
- throw EIexpProblem("String variables can only be returned!");
- }
- else
- throw EIexpProblem("String variables cannot be used in this context!");
- }
- else
- {
- throw EIexpProblem(std::string("Symbol ") + cr + " is not allowed in this context!");
- }
-
- }
- return ret;
- }
- };
- namespace IexpDisemboweler
- {
- enum EDir{GET, SET};
- }
- template<typename T>
- struct LVL2IexpDisemboweler : boost::static_visitor<>
- {
- T * inout;
- IexpDisemboweler::EDir dir;
- /*const*/ ERMExecEnvironment * env;
- LVL2IexpDisemboweler(T * in_out, /*const*/ ERMExecEnvironment * _env, IexpDisemboweler::EDir _dir)
- : inout(in_out), env(_env), dir(_dir) //writes value to given var
- {}
- void processNotMacro(const TVarExpNotMacro & val) const
- {
- if(val.questionMark.is_initialized())
- throw EIexpProblem("Question marks ('?') are not allowed in getter i-expressions");
- //const-cast just to do some code-reuse...
- *inout = *const_cast<ERMExecEnvironment*>(env)->getVar<T>(val.varsym, val.val);
- }
- void operator()(TVarExpNotMacro const& val) const
- {
- processNotMacro(val);
- }
- void operator()(TMacroUsage const& val) const
- {
- std::map<std::string, ERM::TVarExpNotMacro>::const_iterator it =
- env->ermGlobalEnv->macroBindings.find(val .macro);
- if(it == env->ermGlobalEnv->macroBindings.end())
- throw EUsageOfUndefinedMacro(val.macro);
- else
- processNotMacro(it->second);
- }
- };
- template<typename T>
- struct LVL1IexpDisemboweler : boost::static_visitor<>
- {
- T * inout;
- IexpDisemboweler::EDir dir;
- /*const*/ ERMExecEnvironment * env;
- LVL1IexpDisemboweler(T * in_out, /*const*/ ERMExecEnvironment * _env, IexpDisemboweler::EDir _dir)
- : inout(in_out), env(_env), dir(_dir) //writes value to given var
- {}
- void operator()(int const & constant) const
- {
- if(dir == IexpDisemboweler::GET)
- {
- *inout = constant;
- }
- else
- {
- throw EIexpProblem("Cannot set a constant!");
- }
- }
- void operator()(TVarExp const & var) const
- {
- boost::apply_visitor(LVL2IexpDisemboweler<T>(inout, env, dir), var);
- }
- };
- template<typename T>
- T ERMInterpreter::getIexp( const ERM::TIexp & iexp, /*const*/ Trigger * trig /*= NULL*/, /*const*/ FunctionLocalVars * fun /*= NULL*/) const
- {
- T ret;
- ERMExecEnvironment env(ermGlobalEnv, trig, fun);
- boost::apply_visitor(LVL1IexpDisemboweler<T>(&ret, &env, IexpDisemboweler::GET), iexp);
- return ret;
- }
- const std::string ERMInterpreter::triggerSymbol = "trigger";
- const std::string ERMInterpreter::postTriggerSymbol = "postTrigger";
- const std::string ERMInterpreter::defunSymbol = "defun";
- struct TriggerIdMatchHelper : boost::static_visitor<>
- {
- int & ret;
- ERMInterpreter * interpreter;
- Trigger * trig;
- TriggerIdMatchHelper(int & b, ERMInterpreter * ermint, Trigger * _trig)
- : ret(b), interpreter(ermint), trig(_trig)
- {}
- void operator()(TIexp const& iexp) const
- {
- ret = interpreter->getIexp<int>(iexp, trig);
- }
- void operator()(TArithmeticOp const& arop) const
- {
- //error?!?
- }
- };
- bool TriggerIdentifierMatch::tryMatch( Trigger * interptrig, const ERM::Ttrigger & trig ) const
- {
- if(trig.identifier.is_initialized())
- {
- ERM::Tidentifier tid = trig.identifier.get();
- std::map< int, std::vector<int> >::const_iterator it = matchToIt.find(tid.size());
- if(it == matchToIt.end())
- return false;
- else
- {
- const std::vector<int> & pattern = it->second;
- for(int g=0; g<pattern.size(); ++g)
- {
- int val = -1;
- boost::apply_visitor(TriggerIdMatchHelper(val, ermEnv, interptrig), tid[g]);
- return pattern[g] == val;
- }
- }
- }
- else
- {
- if(allowNoIdetifier)
- return true;
- }
- }
|