X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/2e2c5c148405f6b0c68608083204c2c1854adcfd..7f5403eed95da4350dcc03d817eb8468dab07142:/configcache.cpp diff --git a/configcache.cpp b/configcache.cpp index 62b9fdb..1095775 100644 --- a/configcache.cpp +++ b/configcache.cpp @@ -172,8 +172,8 @@ void * configcache::getHeader(const string& headerid) { return NULL; } -bool configcache::readConfig() -{ +bool configcache::readConfig(vector *excludeFileHashes) +{ if(DATADIR == "" || MODE == CACHE_MODE_DISABLED) return false; if(refetchDataFiles){ @@ -186,12 +186,26 @@ bool configcache::readConfig() if( (!inFile.is_open()) && inFiles.size() == 0 ) return false; while( (!inFile.is_open()) && inFiles.size() > 0 ) { - if(out) *out->log << "CCACHE: Opening dat-file: " << inFiles.back().filename << endl << flush; + bool excludethisfile=false; openFileDesc = inFiles.back(); - inFile.open( (DATADIR + "/" + inFiles.back().filename).c_str(), std::ios::binary ); - inFiles.pop_back(); + if (excludeFileHashes != NULL) + for (vector::iterator exit = excludeFileHashes->begin(); exit != excludeFileHashes->end(); ++exit) + if ( *exit == hash(inFiles.back().filename) ) { + excludethisfile = true; + break; + } + + if ( ! excludethisfile ) { + if(out) *out->log << "CCACHE: Opening dat-file: " << inFiles.back().filename << endl << flush; + inFile.open( (DATADIR + "/" + inFiles.back().filename).c_str(), std::ios::binary ); + } + else + if(out) *out->log << "CCACHE: Excluded dat-file: " << inFiles.back().filename << endl << flush; + + inFiles.pop_back(); + if( !inFile.is_open() ) continue; inBuffer = new boost::iostreams::filtering_istreambuf; @@ -228,7 +242,8 @@ void configcache::openOutFile() time_t secstamp = time(NULL); outFileName.str(""); - outFileName << DATADIR << "/" << secstamp << "_" << getFileId() << "_.edat.tmp"; + outFileName << DATADIR << "/" << secstamp << "_" << getFileId() << "_.edat.tmp"; + outFile.open( outFileName.str().c_str(), std::ios::binary ); outBuffer = new boost::iostreams::filtering_ostreambuf; @@ -236,7 +251,7 @@ void configcache::openOutFile() outBuffer->push(outFile); } -void configcache::writeHeader(const string& headerid, char *header, long unsigned int size) { +void configcache::writeHeader(const string& headerid, const char *header, long unsigned int size) { unsigned long headeridhash; if( DATADIR == "" || MODE < 2 ) return;