X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/b80a3fda9209144605a6306ba24ec2051d387f50..2c7e8d0d8fdb233087376cc62752fdc45646c8c8:/configcache.h?ds=sidebyside diff --git a/configcache.h b/configcache.h index eaf610a..82fa3f6 100644 --- a/configcache.h +++ b/configcache.h @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -12,8 +13,6 @@ #include #include -#include "writeout.h" - #define CACHE_MODE_DISABLED 0 #define CACHE_MODE_READ 1 #define CACHE_MODE_FULL 2 @@ -37,8 +36,8 @@ class configcache{ public: ~configcache(); configcache(const string& cacheid, const int& nequi, const int& nskip, const string& datadir, char **configmem, const int& configMemSize, - const int& cachemode=CACHE_MODE_FULL, writeout *out_a=NULL); - bool readConfig(vector *excludefiles=NULL); + const int& cachemode=CACHE_MODE_FULL, ostream *_log=NULL); + int readConfig(vector *excludeFileHashes=NULL); void writeConfig(); void addPara(const string& parid, const double& val=0); void setPara(const string& parid, const double& value); @@ -47,8 +46,11 @@ class configcache{ string getOutFileName() { return outFileName.str(); } string getInFileName() { return DATADIR + "/" + openFileDesc.filename; } static unsigned long hash(const string& str); + void closeInFile() { inFile.close(); } + int inFilesLeft() { return inFiles.size(); } private: + ostream* log; infiledesc openFileDesc; void finishOutFile(); int getParIndex(const string& parid); @@ -62,8 +64,6 @@ class configcache{ ofstream outFile; ifstream inFile; - writeout *out; - stringstream outFileName; int readnum; @@ -102,6 +102,8 @@ class configcache{ void deleteHeaderStore(); bool readAllHeaders(); + + vector::iterator getNextInfile(vector *excludeFileHashes); }; #endif