]> git.treefish.org Git - phys/latlib.git/blobdiff - configcache.h
added hypercache class, which combines observable and configuration cache.
[phys/latlib.git] / configcache.h
index 139218b9cbf3b11c7ea6582cea2cc5f83ae4f1f4..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, const int& size);
-  void *getHeader();
+  void writeHeader(const string& headerid, char *header, long unsigned int size);
+  void * getHeader(const string& headerid);
   
  private:
   infiledesc openFileDesc;
@@ -87,11 +87,20 @@ class configcache{
   int readDataToMem(char *tmpData, long unsigned int dataSize);
 
   void openOutFile();
-  bool openInFile();
 
-  char *headerData;
+  int readHeader();
 
-  void 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