X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/fbbe6f07bc8720030541b7319acb02c9233cd622..ad54f29de351976a096b4991fe426ffc30332df2:/hypercache.cpp?ds=sidebyside diff --git a/hypercache.cpp b/hypercache.cpp index 8fcc609..03a20f8 100644 --- a/hypercache.cpp +++ b/hypercache.cpp @@ -1,73 +1,115 @@ #include "hypercache.h" -hypercache::defaults *hypercache::Defaults = NULL; -configcache *hypercache::O = NULL; configcache *hypercache::C = NULL; +vector hypercache::delayedParaAdd; +vector hypercache::delayedParaSet; +string hypercache::activeCFile = ""; +vector hypercache::parentConfigs; +ostream* hypercache::log; +vector hypercache::Os; -void hypercache::initCache(configcache *cache, +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) { + char **configmem, const int& configMemSize, const int& cachemode, ostream* _log) { + if ( _log != NULL ) + log = _log; - bool allInitBefore = true; + *cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, log); - if (O == NULL || C == NULL) - allInitBefore = false; + for (vector::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit) + (*cache)->addPara(parit->parid, parit->val); - cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a); - - if (Defaults == NULL) { - Defaults = new defaults; - Defaults->nequi = nequi; - Defaults->nskip = nskip; - Defaults->datadir = datadir; - Defaults->out = out_a; - } + for (vector::iterator parit=delayedParaSet.begin(); parit != delayedParaSet.end(); ++parit) + (*cache)->setPara(parit->parid, parit->val); +} - if (O != NULL && C != NULL && !allInitBefore) { - for (vector::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit) { - O->addPara(parit->parid, parit->val); - C->addPara(parit->parid, parit->val); - } - for (vector::iterator parit=delayedParaSet.begin(); parit != delayedParaSet.end(); ++parit) { - O->setPara(parit->parid, parit->val); - C->setPara(parit->parid, parit->val); - } - } +void hypercache::addPara(const string& parid, const double& val) { + para newpara; + newpara.parid = parid; + newpara.val = val; + delayedParaAdd.push_back(newpara); + + if (C != NULL) + C->addPara(parid, val); + + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + (*osit)->addPara(parid, val); } -void hypercache::initCache(configcache *cache, const string& subdir, - const string& cacheid, char **configmem, const int& configMemSize, const int& cachemode) { - if (Defaults == NULL) { - cerr << "Defaults were not initialized prior to short initialization!" << endl; - exit(1); - } +void hypercache::setPara(const string& parid, const double& val) { + para newpara; + newpara.parid = parid; + newpara.val = val; + delayedParaSet.push_back(newpara); + + if (C != NULL) + C->setPara(parid, val); - initCache(cache, cacheid, Defaults->nequi, Defaults->nskip, Defaults->datadir + "/" + subdir, - configmem, configMemSize, cachemode, Defaults->out); + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + (*osit)->setPara(parid, 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); - C->addPara(parid, val); - } +void hypercache::finalize() { + for (vector::iterator osit = Os.begin(); osit != Os.end(); ++osit) + delete *osit; + + delete C; } -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); +string hypercache::fileOfPath(const string& dressedfile) { + return dressedfile.substr(dressedfile.find_last_of("\\/")+1); +} + +int hypercache::readC() { + int readret; + + readret = C->readConfig(&parentConfigs); + + if ( readret == -1 ) + activeCFile = fileOfPath(C->getInFileName()); + else + activeCFile = ""; + + return readret; +} + +int hypercache::read1CForEqui() { + int readret = C->readConfig(NULL); + C->closeInFile(); + return readret; +} + +void hypercache::writeC() { + C->writeConfig(); + activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) ); +} + +void hypercache::writeO(int obsid) { + if ( activeCFile != "" ) { + unsigned long afilehash = configcache::hash(activeCFile); + Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long)); } - else { - O->setPara(parid, val); - C->setPara(parid, val); + Os[obsid]->writeConfig(); +} + +int hypercache::readO(int obsid) { + int readret; + + readret = Os[obsid]->readConfig(); + + if ( readret == -1 ) { + unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile"); + if ( parentconfig != NULL ) + addParentConfig(parentconfig); } + + return readret; +} + +void hypercache::addParentConfig(const unsigned long *parentconfig) { + for (vector::iterator parit = parentConfigs.begin(); parit != parentConfigs.end(); ++parit) + if ( *parit == *parentconfig ) + return; + + parentConfigs.push_back(*parentconfig); }