]> git.treefish.org Git - phys/latlib.git/commitdiff
made hypercache multi-observable.
authorAlex Schmidt <alex@treefish.org>
Wed, 17 Apr 2013 07:37:20 +0000 (09:37 +0200)
committerAlex Schmidt <alex@treefish.org>
Wed, 17 Apr 2013 07:37:20 +0000 (09:37 +0200)
CMakeLists.txt
hypercache.cpp
hypercache.h
hypercache_test.cpp [deleted file]

index ba307ba0f601b371f2689265a5514449ec5b1fbb..4506e8d4966ce3959a581787625a23c87132742b 100644 (file)
@@ -31,7 +31,4 @@ target_link_libraries(neigh_test lat_neigh)
 add_executable(culooks_test culooks_test.cpp)
 target_link_libraries(culooks_test lat_culooks)
 
-add_executable(hypercache_test hypercache_test.cpp)
-target_link_libraries(hypercache_test lat_hypercache)
-
 add_subdirectory(o815)
index 2d38b2168b1ec70d162fdb1cb767da8dfad46a30..6c8e190a032ead4876f6985ce0bb9a374c2c188e 100644 (file)
@@ -1,70 +1,59 @@
 #include "hypercache.h"
 
-configcache *hypercache::O = NULL;
 configcache *hypercache::C = NULL;
 vector<hypercache::para> hypercache::delayedParaAdd;
 vector<hypercache::para> hypercache::delayedParaSet;
 string hypercache::activeCFile = "";
 vector<unsigned long> hypercache::parentConfigs;
 writeout *hypercache::out = NULL;
+vector<configcache*> hypercache::Os;
 
 void hypercache::initCache(configcache **cache,
                           const string& cacheid, const int& nequi, const int& nskip, const string& datadir, 
                           char **configmem, const int& configMemSize, const int& cachemode, writeout *out_a) {
-  
-  bool allInitBefore = true;
-  
-  if (O == NULL || C == NULL)
-    allInitBefore = false;
-
   if ( out_a != NULL )
     out = out_a;
-
+  
   *cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a);
+  
+  for (vector<para>::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit)
+    (*cache)->addPara(parit->parid, parit->val);
 
-  if (O != NULL && C != NULL && !allInitBefore) {
-    for (vector<para>::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit) {
-      O->addPara(parit->parid, parit->val);
-      C->addPara(parit->parid, parit->val);
-    }
-    for (vector<para>::iterator parit=delayedParaSet.begin(); parit != delayedParaSet.end(); ++parit) {
-      O->setPara(parit->parid, parit->val);
-      C->setPara(parit->parid, parit->val);
-    }
-  }
+  for (vector<para>::iterator parit=delayedParaSet.begin(); parit != delayedParaSet.end(); ++parit)
+    (*cache)->setPara(parit->parid, parit->val);
 }
 
 void hypercache::addPara(const string& parid, const double& val) {
-  if (O == NULL || C == NULL) {
-    para newpara; 
-    newpara.parid = parid;
-    newpara.val = val;
-    delayedParaAdd.push_back(newpara);
-  }
-  else {
-    O->addPara(parid, val);
+  para newpara; 
+  newpara.parid = parid;
+  newpara.val = val;
+  delayedParaAdd.push_back(newpara);
+
+  if (C != NULL)
     C->addPara(parid, val);
-  }
+
+  for (vector<configcache*>::iterator osit = Os.begin(); osit != Os.end(); ++osit)
+    (*osit)->addPara(parid, val);
 }
 
 void hypercache::setPara(const string& parid, const double& val) {
-  if (O == NULL || C == NULL) {
-    para newpara; 
-    newpara.parid = parid;
-    newpara.val = val;
-    delayedParaSet.push_back(newpara);
-  }
-  else {
-    O->setPara(parid, val);
+  para newpara; 
+  newpara.parid = parid;
+  newpara.val = val;
+  delayedParaSet.push_back(newpara);
+
+  if (C != NULL)
     C->setPara(parid, val);
-    activeCFile = "";
-    parentConfigs.clear();
-  }
+  
+  for (vector<configcache*>::iterator osit = Os.begin(); osit != Os.end(); ++osit)
+    (*osit)->setPara(parid, val);
 }
 
 void hypercache::finalize() {
+  for (vector<configcache*>::iterator osit = Os.begin(); osit != Os.end(); ++osit)
+    delete *osit;
+  
   delete C;
-  delete O;
 }
 
 string hypercache::fileOfPath(const string& dressedfile) {
@@ -89,22 +78,21 @@ void hypercache::writeC() {
   activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
 }
 
-void hypercache::writeO() {
+void hypercache::writeO(int obsid) {
   if ( activeCFile != "" ) {
     unsigned long afilehash = configcache::hash(activeCFile);
-    O->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long));
+    Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long));
   }
-
-  O->writeConfig(); 
+  Os[obsid]->writeConfig(); 
 }
 
-int hypercache::readO() {
+int hypercache::readO(int obsid) {
   int readret;
 
-  readret = O->readConfig();
+  readret = Os[obsid]->readConfig();
 
   if ( readret == -1 ) {
-    unsigned long *parentconfig = (unsigned long*)O->getHeader("concurrent_cfile");
+    unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile");
     if ( parentconfig != NULL )
       addParentConfig(parentconfig);
   }
index f7c039c0704e8cfedd24342ffa525bf7c1ce88fd..523cc56e8831bedbc44d63046d72dd276391a73a 100644 (file)
@@ -9,9 +9,11 @@ using namespace std;
 
 class hypercache {
  public:
-  static void initO(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) {
-    initCache(&O, cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a);
+  static int initO(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) {
+    Os.push_back(NULL);
+    initCache(&Os.back(), cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a);
+    return Os.size()-1;
   }
   static void initC(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) {
@@ -20,12 +22,12 @@ class hypercache {
   
   static void addPara(const string& parid, const double& val=0);
   static void setPara(const string& parid, const double& value);
-  static int readO();
+  static int readO(int obsid);
   static int readC();
-  static void writeO();
+  static void writeO(int obsid);
   static void writeC();
-  static void writeHeaderO(const string& headerid, char *header, long unsigned int size) { O->writeHeader(headerid, header, size); }
-  static void *getHeaderO(const string& headerid) { O->getHeader(headerid); }
+  static void writeHeaderO(int obsid, const string& headerid, char *header, long unsigned int size) { Os[obsid]->writeHeader(headerid, header, size); }
+  static void *getHeaderO(int obsid, const string& headerid) { Os[obsid]->getHeader(headerid); }
   static void writeHeaderC(const string& headerid, char *header, long unsigned int size) { C->writeHeader(headerid, header, size); }
   static void *getHeaderC(const string& headerid) { C->getHeader(headerid); }
 
@@ -44,8 +46,8 @@ class hypercache {
   static void initCache( configcache **cache,
                         const string& cacheid, char **configmem, const int& configMemSize, const int& cachemode=CACHE_MODE_FULL);
 
-  static configcache *O;
   static configcache *C;
+  static vector<configcache*> Os;
   static vector<para> delayedParaAdd;
   static vector<para> delayedParaSet;
   static writeout *out;
diff --git a/hypercache_test.cpp b/hypercache_test.cpp
deleted file mode 100644 (file)
index 388ab0a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "hypercache.h"
-
-#include <string>
-
-using namespace std;
-
-int main() {
-  char *test;
-  char *test2;
-
-  hypercache::initO("hallo", 100, 10, "", &test, sizeof(int), CACHE_MODE_READ);
-
-  hypercache::addPara("kappa", 1);
-
-  hypercache::readO();
-}