]> git.treefish.org Git - phys/latlib.git/blobdiff - configcache.cpp
implemented concurrent obscache confcache protection.
[phys/latlib.git] / configcache.cpp
index fe7bd78d486199ebe3970b7a49293d87dd435a5a..b375230174beb942e736dd2388affec9b0225059 100644 (file)
@@ -172,8 +172,8 @@ void * configcache::getHeader(const string& headerid) {
   return NULL;
 }
 
-bool configcache::readConfig()
-{
+bool configcache::readConfig(vector<string> *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<string>::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;