parser.hh gecode/flatzinc.hh string vector iostream algorithm gecode/flatzinc/option.hh gecode/flatzinc/varspec.hh gecode/flatzinc/conexpr.hh gecode/flatzinc/ast.hh gecode/flatzinc/parser.tab.hh gecode/flatzinc/symboltable.hh Gecode::FlatZinc::OutputOrder Gecode::FlatZinc::SymbolEntry Gecode::FlatZinc::ParserState Gecode Gecode::FlatZinc /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2007 * *Lastmodified: *$Date:2012-03-3005:58:02+0200(Fri,30Mar2012)$by$Author:tack$ *$Revision:12665$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ #ifndef__FLATZINC_PARSER_HH__ #define__FLATZINC_PARSER_HH__ #include<gecode/flatzinc.hh> //Thisisaworkaroundforabuginflexthatonlyshowsup //withtheMicrosoftC++compiler #ifdefined(_MSC_VER) #defineYY_NO_UNISTD_H #ifdef__cplusplus extern"C"intisatty(int); #endif #endif //TheMicrosoftC++compilermarkscertainfunctionsasdeprecated, //solet'stakethealternativedefinitions #ifdefined(_MSC_VER) #definestrdup_strdup #definefileno_fileno #endif #include<string> #include<vector> #include<iostream> #include<algorithm> #include<gecode/flatzinc/option.hh> #include<gecode/flatzinc/varspec.hh> #include<gecode/flatzinc/conexpr.hh> #include<gecode/flatzinc/ast.hh> #include<gecode/flatzinc/parser.tab.hh> #include<gecode/flatzinc/symboltable.hh> namespaceGecode{namespaceFlatZinc{ typedefstd::pair<std::string,Option<std::vector<int>*>>intvartype; classVarSpec; typedefstd::pair<std::string,VarSpec*>varspec; classOutputOrder{ public: booloperator ()(conststd::pair<std::string,AST::Node*>&x, conststd::pair<std::string,AST::Node*>&y){ returnx.first<y.first; } }; enumSymbolType{ ST_INTVAR,//<Integervariable ST_BOOLVAR,//<Booleanvariable ST_FLOATVAR,//<Floatvariable ST_SETVAR,//<Setvariable ST_INTVARARRAY,//<Integervariablearray ST_BOOLVARARRAY,//<Booleanvariablearray ST_SETVARARRAY,//<Setvariablearray ST_FLOATVARARRAY,//<Floatvariablearray ST_INTVALARRAY,//<Integerarray ST_BOOLVALARRAY,//<Booleanarray ST_SETVALARRAY,//<Setarray ST_FLOATVALARRAY,//<Floatarray ST_INT,//<Integer ST_BOOL,//<Boolean ST_SET,//<Set ST_FLOAT//<Float }; classSymbolEntry{ public: SymbolTypet;//<Typeofentry inti;//<Valueofentryorarraystartindex SymbolEntry(void){} SymbolEntry(SymbolTypet0,inti0):t(t0),i(i0){} }; forceinlineSymbolEntryse_iv(inti){ returnSymbolEntry(ST_INTVAR,i); } forceinlineSymbolEntryse_bv(inti){ returnSymbolEntry(ST_BOOLVAR,i); } forceinlineSymbolEntryse_fv(inti){ returnSymbolEntry(ST_FLOATVAR,i); } forceinlineSymbolEntryse_sv(inti){ returnSymbolEntry(ST_SETVAR,i); } forceinlineSymbolEntryse_iva(inti){ returnSymbolEntry(ST_INTVARARRAY,i); } forceinlineSymbolEntryse_bva(inti){ returnSymbolEntry(ST_BOOLVARARRAY,i); } forceinlineSymbolEntryse_fva(inti){ returnSymbolEntry(ST_FLOATVARARRAY,i); } forceinlineSymbolEntryse_sva(inti){ returnSymbolEntry(ST_SETVARARRAY,i); } forceinlineSymbolEntryse_i(inti){ returnSymbolEntry(ST_INT,i); } forceinlineSymbolEntryse_b(boolb){ returnSymbolEntry(ST_BOOL,b); } forceinlineSymbolEntryse_s(inti){ returnSymbolEntry(ST_SET,i); } forceinlineSymbolEntryse_f(inti){ returnSymbolEntry(ST_FLOAT,i); } forceinlineSymbolEntryse_ia(inti){ returnSymbolEntry(ST_INTVALARRAY,i); } forceinlineSymbolEntryse_ba(inti){ returnSymbolEntry(ST_BOOLVALARRAY,i); } forceinlineSymbolEntryse_sa(inti){ returnSymbolEntry(ST_SETVALARRAY,i); } forceinlineSymbolEntryse_fa(inti){ returnSymbolEntry(ST_FLOATVALARRAY,i); } classParserState{ public: ParserState(conststd::string&b,std::ostream&err0, Gecode::FlatZinc::FlatZincSpace*fg0) :buf(b.c_str()),pos(0),length(b.size()),fg(fg0), hadError(false),err(err0){} ParserState(char*buf0,intlength0,std::ostream&err0, Gecode::FlatZinc::FlatZincSpace*fg0) :buf(buf0),pos(0),length(length0),fg(fg0), hadError(false),err(err0){} void*yyscanner; constchar*buf; unsignedintpos,length; Gecode::FlatZinc::FlatZincSpace*fg; std::vector<std::pair<std::string,AST::Node*>>_output; SymbolTable<SymbolEntry>symbols; std::vector<varspec>intvars; std::vector<varspec>boolvars; std::vector<varspec>setvars; std::vector<varspec>floatvars; std::vector<int>arrays; std::vector<AST::SetLit>setvals; std::vector<double>floatvals; std::vector<ConExpr*>domainConstraints; boolhadError; std::ostream&err; intfillBuffer(char*lexBuf,unsignedintlexBufSize){ if(pos>=length) return0; intnum=std::min(length-pos,lexBufSize); memcpy(lexBuf,buf+pos,num); pos+=num; returnnum; } voidoutput(std::stringx,AST::Node*n){ _output.push_back(std::pair<std::string,AST::Node*>(x,n)); } AST::Array*getOutput(void){ OutputOrderoo; std::sort(_output.begin(),_output.end(),oo); AST::Array*a=newAST::Array(); for(unsignedinti=0;i<_output.size();i++){ a->a.push_back(newAST::String(_output[i].first+"=")); if(_output[i].second->isArray()){ AST::Array*oa=_output[i].second->getArray(); for(unsignedintj=0;j<oa->a.size();j++){ a->a.push_back(oa->a[j]); oa->a[j]=NULL; } delete_output[i].second; }else{ a->a.push_back(_output[i].second); } a->a.push_back(newAST::String(";\n")); } returna; } }; }} #endif //STATISTICS:flatzinc-any