X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/a55a5830c5c98e950d58593697dd4ee5e4384716..7f5403eed95da4350dcc03d817eb8468dab07142:/configcache.h?ds=sidebyside diff --git a/configcache.h b/configcache.h index 4aa245e..17c8606 100644 --- a/configcache.h +++ b/configcache.h @@ -38,13 +38,16 @@ class configcache{ ~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(); + bool readConfig(vector *excludeFileHashes=NULL); void writeConfig(); void addPara(const string& parid, const double& val=0); void setPara(const string& parid, const double& value); - void writeHeader(char *header, long unsigned int size); - void *getHeader(); - + void writeHeader(const string& headerid, const char *header, long unsigned int size); + void * getHeader(const string& headerid); + string getOutFileName() { return outFileName.str(); } + string getInFileName() { return DATADIR + "/" + openFileDesc.filename; } + static unsigned long hash(const string& str); + private: infiledesc openFileDesc; void finishOutFile(); @@ -88,13 +91,17 @@ class configcache{ void openOutFile(); - char *readHeaderData; - - bool readHeader(); + int readHeader(); bool headerWritten; int readFullBlock(char *tmpData, long unsigned int dataSize); + + vector< pair > headerStore; + + void deleteHeaderStore(); + + bool readAllHeaders(); }; #endif