X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/3bb55613d615dd93b662c4cd1a9c6198f7de53ff..46e492935d31a36641b8e8a5cd27bd86e7df96c4:/configcache.h?ds=sidebyside diff --git a/configcache.h b/configcache.h index 139218b..869fed6 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 @@ -31,21 +30,30 @@ struct infiledesc { int nskip; bool doVirtualEquilibration; bool extended; + bool firstConfig; }; 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(); - void writeConfig(); + const int& cachemode=CACHE_MODE_FULL, ostream *_log=NULL); + void readConfig(bool& readnewconfig, int& nequileft, vector *excludeFileHashes=NULL); + void writeConfig(int actnequi); void addPara(const string& parid, const double& val=0); void setPara(const string& parid, const double& value); - void writeHeader(char *header, const int& size); - void *getHeader(); - + void writeHeader(const string& headerid, const char *header, long unsigned int size, int actnequi); + void * getHeader(const string& headerid); + 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(); } + char* getConfigMem() { return configMem; } + int getConfigSize() { return configSize; } + private: + ostream* log; infiledesc openFileDesc; void finishOutFile(); int getParIndex(const string& parid); @@ -54,13 +62,11 @@ class configcache{ string DATADIR; string CACHEID; int MODE; - string getFileId(const bool& shortid=false); + string getFileId(int actnequi, const bool& shortid=false); ofstream outFile; ifstream inFile; - writeout *out; - stringstream outFileName; int readnum; @@ -86,12 +92,23 @@ class configcache{ int readDataToMem(char *tmpData, long unsigned int dataSize); - void openOutFile(); - bool openInFile(); + void openOutFile(int actnequi); + + int readHeader(); + + bool headerWritten; + + int readFullBlock(char *tmpData, long unsigned int dataSize); + + vector< pair > headerStore; + + void deleteHeaderStore(); + + bool readAllHeaders(); - char *headerData; + vector::iterator getNextInfile(vector *excludeFileHashes); - void readHeader(); + int nequileft_internal; }; #endif