vector<hypercache::para> hypercache::delayedParaSet;
string hypercache::activeCFile = "";
vector<unsigned long> hypercache::parentConfigs;
-writeout *hypercache::out = NULL;
+ostream* hypercache::log;
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) {
- if ( out_a != NULL )
- out = out_a;
+ char **configmem, const int& configMemSize, const int& cachemode, ostream* _log) {
+ if ( _log != NULL )
+ log = _log;
- *cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, out_a);
+ *cache = new configcache(cacheid, nequi, nskip, datadir, configmem, configMemSize, cachemode, log);
for (vector<para>::iterator parit=delayedParaAdd.begin(); parit != delayedParaAdd.end(); ++parit)
(*cache)->addPara(parit->parid, parit->val);
return dressedfile.substr(dressedfile.find_last_of("\\/")+1);
}
-int hypercache::readC() {
- int readret;
+void hypercache::readC(bool& readnewconfig, int& nequileft) {
+ C->readConfig(readnewconfig, nequileft, &parentConfigs);
- readret = C->readConfig(&parentConfigs);
-
- if ( readret == -1 )
+ if ( nequileft < 0 )
activeCFile = fileOfPath(C->getInFileName());
else
activeCFile = "";
-
- return readret;
}
-void hypercache::writeC() {
- C->writeConfig();
+void hypercache::writeC(int actnequi) {
+ C->writeConfig(actnequi);
activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
}
-void hypercache::writeO(int obsid) {
+void hypercache::writeO(int obsid, int actnequi) {
if ( activeCFile != "" ) {
unsigned long afilehash = configcache::hash(activeCFile);
- Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long));
+ Os[obsid]->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long), actnequi);
}
- Os[obsid]->writeConfig();
+ Os[obsid]->writeConfig(actnequi);
}
-int hypercache::readO(int obsid) {
- int readret;
+void hypercache::readO(int obsid, bool& readnewconfig, int& nequileft) {
+ Os[obsid]->readConfig(readnewconfig, nequileft);
- readret = Os[obsid]->readConfig();
-
- if ( readret == -1 ) {
+ if ( nequileft < 0 ) {
unsigned long *parentconfig = (unsigned long*)Os[obsid]->getHeader("concurrent_cfile");
if ( parentconfig != NULL )
addParentConfig(parentconfig);
}
-
- return readret;
}
void hypercache::addParentConfig(const unsigned long *parentconfig) {