X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/31dc8788f9711670917daaa5cc544d0d87ec3afc..b80a3fda9209144605a6306ba24ec2051d387f50:/configcache.cpp?ds=sidebyside diff --git a/configcache.cpp b/configcache.cpp index fe7bd78..b375230 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 *excludefiles) +{ 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 (excludefiles != NULL) + for (vector::iterator exit = excludefiles->begin(); exit != excludefiles->end(); ++exit) + if ( *exit == 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; @@ -237,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;