/* * Copyright (C) 2007-2014 Xagasoft, All rights reserved. * * This file is part of the Xagasoft Build and is released under the * terms of the license contained in the file LICENSE. */ #ifndef CACHE_H #define CACHE_H #include #include #include #include #include "variable.h" #include "types.h" class Cache : public Bu::Singleton { friend class Bu::Singleton; private: Cache(); virtual ~Cache(); public: void bind( const Bu::String &sCacheFile ); void load(); void save(); StrList getRequires( const Bu::String &sOutput ); void setRequires( const Bu::String &sOutput, StrList lReqs ); private: bool bCacheChanged; Bu::String sCacheFile; bool bIsLoaded; typedef Bu::Hash ReqHash; ReqHash hRequires; typedef Bu::Hash VarHash; VarHash hVariables; }; #endif