From df5286fe3bca619beb4771da1ffa8ace9613e9e5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 18 Aug 2006 17:21:02 +0000 Subject: Gutted, deleted almost all the source, too many changes to keep it around, we'll see what happens next. --- src/builder.h | 196 ---------------------------------------------------------- 1 file changed, 196 deletions(-) delete mode 100644 src/builder.h (limited to 'src/builder.h') diff --git a/src/builder.h b/src/builder.h deleted file mode 100644 index c570dbb..0000000 --- a/src/builder.h +++ /dev/null @@ -1,196 +0,0 @@ -#ifndef BUILDER_H -#define BUILDER_H - -#include -#include -#include -#include "build.tab.h" -#include "exceptionbase.h" -#include "staticstring.h" -#include "regexp.h" -#include "cache.h" - -subExceptionDecl( BuildException ) - -class Builder; -class Action; -class Command; -class Rule; -class Target; -class Viewer; -class Cache; - -#define YY_DECL int yylex( YYSTYPE *yylval_param, YYLTYPE *yylloc_param, Builder &bld ) -YY_DECL; - -class Builder -{ - struct ltstr - { - bool operator()(const char* s1, const char* s2) const - { - return strcmp(s1, s2) < 0; - } - }; - -public: - Builder( Viewer &rView ); - virtual ~Builder(); - - void load( const char *sFN ); - void build( const char *sAct=NULL ); - void execute( Action *pAct ); - - void error( YYLTYPE *locp, const std::string &m ); - void error( const std::string &m ); - - std::string file; - - Viewer &view() - { - return rView; - } - - void startList( int tokType ); - void setFilter( const char *sRegExp ); - void augmentList( const char *sFrom ); - void addListItem( const char *sItem ); - void clearList(); - void endList(); - - void addTarget( int tokType, const char *sName ); - void setTargetInputType( int tokType ); - void addTargetInput( const char *sInput ); - void setTargetRule( const char *sRule ); - void endTarget(); - - void setCache( const std::string &sFile ); - void add( Action *pAct ); - void add( Command *pCmd ); - void addRegexCommand( int nType, const char *sReg ); - void add( Rule *pRule ); - void add( Target *pTarg ); - void varSet( const char *sName, const char *sValue ); - void varAddSet( const char *sName, const char *sValue ); - Rule *getRule( const char *sName ); - std::list findRuleChain( Rule *pRule ); - void processRequires( std::list &lInput ); - void requires( const char *sBase, const char *sReq ); - void requiresFromCommand( const char *sBase, const char *sReq ); - void genRequiresFor( const char *sName, time_t tNewTime ); - std::list findTargets( const char *sRegex ); - void requiresRegexp( bool on ) - { - bReqRegexp = on; - } - bool isRequiresRegexp() - { - return bReqRegexp; - } - void setContext( const char *sCont ); - void setContext(); - - bool hasDefaultAction() - { - return pDefaultAction != NULL; - } - - void debug(); - - Rule *lastRule() - { - return pLastAddedRule; - } - - Target *lastTarget() - { - return pLastAddedTarget; - } - - void setTmp( const char *s ) - { - sTmp = s; - } - - const char *getTmp() - { - return sTmp; - } - - Target *getTarget( const char *sName ) - { - if( mTarget.find( sName ) == mTarget.end() ) - throw BuildException("Target %s not found.", sName ); - - return mTarget[sName]; - } - - std::list *getRequires( const char *sReq ) - { - if( mRequires.find(sReq) == mRequires.end() ) - return NULL; - return mRequires[sReq]; - } - - typedef std::map varmap; - varmap *regexVars( RegExp *re ); - void regexVars( RegExp *re, varmap &map ); - std::string varRepl( const char *sSrc, const char *cont, varmap *mExtra ); - - std::string cmdToString( const char *sCmd ); - -private: - void requiresNormal( const char *sBase, const char *sReq ); - void requiresRegexp( const char *sBase, const char *sReq ); - void checkVar( const char *cont, const char *sName ); - void scanBegin(); - void scanEnd(); - - bool hasVar( varmap *pMap, std::string &var ); - - Action *pDefaultAction; - Action *pLastAddedAction; - std::map mAction; - - Rule *pLastAddedRule; - std::map mRule; - - Target *pLastAddedTarget; - std::map mTarget; - - varmap mVar; - - std::map *> mRequires; - - typedef std::list > regreqlist; - regreqlist lRequiresRegexp; - regreqlist lRequiresRegexpCommand; - - std::map mContVar; - StaticString sContext; - - StaticString sTmp; - - bool bReqRegexp; - - Viewer &rView; - - StaticString sCacheFile; - class Cache cRequires; - - std::list > > lTok; - bool bTokFiltered; - int nTokType; - RegExp rTok; - - int nTargetType; - int nTargetInputType; - std::string sTargetName; - std::list lsTargetInput; - std::string sTargetRule; - bool bUsingList; -}; - -void cleanList( std::list &lst ); - -#endif -- cgit v1.2.3