X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/71e93c2cca7c6f967c3c77c3e26c037ad4f4f555..0391c237272d90acfc769f4aeebe0554d47f74cb:/hypercache.cpp?ds=inline diff --git a/hypercache.cpp b/hypercache.cpp index 81b7b3c..26c8626 100644 --- a/hypercache.cpp +++ b/hypercache.cpp @@ -1,17 +1,19 @@ #include "hypercache.h" +#include +#include + configcache *hypercache::C = NULL; vector hypercache::delayedParaAdd; vector hypercache::delayedParaSet; string hypercache::activeCFile = ""; vector hypercache::parentConfigs; ostream* hypercache::log; -vector hypercache::Os; +vector hypercache::Os; int hypercache::NEQUI; int hypercache::NSKIP; int hypercache::nequileft; pair hypercache::mostEquilibratedConfig; -int hypercache::lastWrittenObsEquis; void hypercache::initCache(configcache **cache, const string& cacheid, const int& nequi, const int& nskip, const string& datadir, @@ -40,8 +42,8 @@ void hypercache::addPara(const string& parid, const double& val) { if (C != NULL) C->addPara(parid, val); - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - (*osit)->addPara(parid, val); + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + osit->c->addPara(parid, val); } void hypercache::setPara(const string& parid, const double& val) { @@ -53,16 +55,16 @@ void hypercache::setPara(const string& parid, const double& val) { if (C != NULL) C->setPara(parid, val); - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - (*osit)->setPara(parid, val); + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + osit->c->setPara(parid, val); nequileft = NEQUI; mostEquilibratedConfig.first = NEQUI; } void hypercache::finalize() { - for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) - delete *osit; + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + delete osit->c; delete C; } @@ -72,18 +74,11 @@ string hypercache::fileOfPath(const string& dressedfile) { } bool hypercache::readC() { - bool readnewconfig_nonex; - int nequileftReadConfig_nonex; - bool readAtLeastOneConfig = false; - - C->readConfig(readnewconfig_nonex, nequileftReadConfig_nonex, &parentConfigs); + bool readAtLeastOneConfig; - if (readnewconfig_nonex) { - nequileft = nequileftReadConfig_nonex; - readAtLeastOneConfig = true; - } + C->readConfig(&readAtLeastOneConfig, &nequileft, &parentConfigs); - if ( nequileft < 0 && readnewconfig_nonex ) + if ( nequileft < 0 && readAtLeastOneConfig ) activeCFile = fileOfPath(C->getInFileName()); else activeCFile = ""; @@ -100,7 +95,7 @@ bool hypercache::readC() { int nequileftReadConfig_ex; memcpy (tmpconfig, C->getConfigMem(), C->getConfigSize()); - C->readConfig(readnewconfig_ex, nequileftReadConfig_ex, NULL); + C->readConfig(&readnewconfig_ex, &nequileftReadConfig_ex, NULL); if (! readnewconfig_ex) { *log << "HYPERCACHE: No more excluded config-files for possible equilibration available." << endl << flush; @@ -125,7 +120,6 @@ bool hypercache::readC() { /* storing most equilibrated config */ if ( nequileft < mostEquilibratedConfig.first && readAtLeastOneConfig ) { - //*log << "HYPERCACHE: Storing a copy of so far most equilibrated config with nequileft = " << nequileft << endl << flush; mostEquilibratedConfig.first = nequileft; memcpy(mostEquilibratedConfig.second, C->getConfigMem(), C->getConfigSize()); } @@ -135,7 +129,6 @@ bool hypercache::readC() { *log << "HYPERCACHE: Injecting back most equilibrated stored config with nequileft = " << mostEquilibratedConfig.first << endl << flush; nequileft = mostEquilibratedConfig.first; memcpy(C->getConfigMem(), mostEquilibratedConfig.second, C->getConfigSize()); - //readAtLeastOneConfig = false; } return readAtLeastOneConfig; @@ -152,23 +145,23 @@ void hypercache::writeC() { } void hypercache::writeO(int obsid) { - if ( ( lastWrittenObsEquis + NSKIP != NEQUI-nequileft-NSKIP ) && Os[obsid]->isOutFileOpen() ) - Os[obsid]->finishOutFile(); + if ( ( Os[obsid].lastWrittenObsEquis + NSKIP != NEQUI-nequileft-NSKIP ) && Os[obsid].c->isOutFileOpen() ) + Os[obsid].c->finishOutFile(); if ( activeCFile != "" ) { unsigned long afilehash = configcache::hash(activeCFile); - Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), NEQUI-nequileft-NSKIP); + Os[obsid].c->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), NEQUI-nequileft-NSKIP); } - Os[obsid]->writeConfig(NEQUI-nequileft-NSKIP); + Os[obsid].c->writeConfig(NEQUI-nequileft-NSKIP); - lastWrittenObsEquis = NEQUI-nequileft-NSKIP; + Os[obsid].lastWrittenObsEquis = NEQUI-nequileft-NSKIP; } -void hypercache::readO(int obsid, bool& readnewconfig, int& nequileft) { - Os[obsid]->readConfig(readnewconfig, nequileft); +void hypercache::readO(int obsid, bool *readNewObsConfig, int *nequiObsLeft) { + Os[obsid].c->readConfig(readNewObsConfig, nequiObsLeft); - if ( nequileft < 0 ) { - unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile"); + if ( *readNewObsConfig && *nequiObsLeft < 0 ) { + unsigned long *parentconfig = (unsigned long*)Os[obsid].c->getHeader("concurrent_cfile"); if ( parentconfig != NULL ) addParentConfig(parentconfig); }