]> git.treefish.org Git - phys/latlib.git/blobdiff - configcache.h
hypercache now working.
[phys/latlib.git] / configcache.h
index 4aa245e5e69902e896325498870d8249dad7605a..3c521d97d1427a3e575fdc270391b8ab405487a6 100644 (file)
@@ -42,8 +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(char *header, long unsigned int size);
-  void *getHeader();
+  void writeHeader(const string& headerid, char *header, long unsigned int size);
+  void * getHeader(const string& headerid);
   
  private:
   infiledesc openFileDesc;
@@ -88,13 +88,19 @@ class configcache{
 
   void openOutFile();
 
-  char *readHeaderData;
-
-  bool readHeader();
+  int readHeader();
 
   bool headerWritten;
 
   int readFullBlock(char *tmpData, long unsigned int dataSize);
+
+  static unsigned long hash(const string& str);
+
+  vector< pair<unsigned long, void *> > headerStore;
+
+  void deleteHeaderStore();
+
+  bool readAllHeaders();
 };
 
 #endif