X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/3a8bc55b2fdece524393351af7996d743931c5b3..31dc8788f9711670917daaa5cc544d0d87ec3afc:/configcache.h?ds=inline diff --git a/configcache.h b/configcache.h index 3dda989..3c521d9 100644 --- a/configcache.h +++ b/configcache.h @@ -30,6 +30,7 @@ struct infiledesc { int nequi; int nskip; bool doVirtualEquilibration; + bool extended; }; class configcache{ @@ -41,6 +42,8 @@ class configcache{ void writeConfig(); void addPara(const string& parid, const double& val=0); void setPara(const string& parid, const double& value); + void writeHeader(const string& headerid, char *header, long unsigned int size); + void * getHeader(const string& headerid); private: infiledesc openFileDesc; @@ -81,7 +84,23 @@ class configcache{ vector Paras; - int readConfigToMem(char *tmpConfig); + int readDataToMem(char *tmpData, long unsigned int dataSize); + + void openOutFile(); + + int readHeader(); + + bool headerWritten; + + int readFullBlock(char *tmpData, long unsigned int dataSize); + + static unsigned long hash(const string& str); + + vector< pair > headerStore; + + void deleteHeaderStore(); + + bool readAllHeaders(); }; #endif