#include <iostream>
#include <time.h>
#include <dirent.h>
+#include <errno.h>
+#include <sys/stat.h>
+#include <fcntl.h>
#include <boost/iostreams/filtering_streambuf.hpp>
#include <boost/iostreams/stream.hpp>
refetchDataFiles = false;
}
+string configcache::paraString() {
+ stringstream parastring;
+
+ for(int ipara=0; ipara<Paras.size(); ipara++)
+ parastring << "_" << Paras[ipara].id << Paras[ipara].val;
+
+ return parastring.str();
+}
+
string configcache::getFileId(int actnequi, const bool& shortid)
{
stringstream fileid;
if(!shortid) fileid << CACHEID << "_" << actnequi << "_" << NSKIP;
- for(int ipara=0; ipara<Paras.size(); ipara++)
- fileid << "_" << Paras[ipara].id << Paras[ipara].val;
+
+ fileid << "_" << hash( paraString() );
return fileid.str();
}
{
*readnewconfig = false;
- if(DATADIR == "" || MODE == CACHE_MODE_DISABLED) return;
+ if( DATADIR == "" || !(MODE==CACHE_MODE_RO||MODE==CACHE_MODE_RW) ) return;
if(refetchDataFiles){
refetchDataFiles = false;
}
while( (!inFile.is_open()) && inFiles.size() > 0 ) {
+ string inFileParaString;
+
openFileDesc = *inFileIt;
if (openFileDesc.nequi < NEQUI)
if(log) *log << "CCACHE: Opening dat-file: " << inFileIt->filename << endl << flush;
inFile.open( (DATADIR + "/" + inFileIt->filename).c_str(), std::ios::binary );
+ getline( inFile, inFileParaString );
+ if( inFileParaString != paraString() ) {
+ if(log) *log << "CCACHE: Parastring does not match. Closing dat-file..." << endl << flush;
+ inFile.close();
+ }
+
inFiles.erase(inFileIt);
if( !inFile.is_open() ) continue;
void configcache::openOutFile(int actnequi)
{
time_t secstamp = time(NULL);
+ int iseq=0;
+
+ while (true) {
+ outFileName.str("");
+ outFileName << DATADIR << "/" << secstamp << "." << iseq << "_" << getFileId(actnequi) << "_.edat.tmp";
- outFileName.str("");
- outFileName << DATADIR << "/" << secstamp << "_" << getFileId(actnequi) << "_.edat.tmp";
+ int tmpfd = open(outFileName.str().c_str(), O_CREAT | O_EXCL, 0644);
+
+ if ( tmpfd != -1 ) {
+ close(tmpfd);
+ break;
+ }
+ else if ( errno != EEXIST ) {
+ if(log) *log << "CCACHE: Could not create cachefile!" << endl << flush;
+ exit(1);
+ }
+ iseq++;
+ }
+
outFile.open( outFileName.str().c_str(), std::ios::binary );
+ outFile << paraString() << endl;
+
ioBuffers->out = new boost::iostreams::filtering_ostreambuf;
ioBuffers->out->push(boost::iostreams::bzip2_compressor());
ioBuffers->out->push(outFile);
void configcache::writeHeader(const string& headerid, const char *header, long unsigned int size, int actnequi) {
unsigned long headeridhash;
- if( DATADIR == "" || MODE < 2 ) return;
+ if( DATADIR == "" || !(MODE==CACHE_MODE_WO||MODE==CACHE_MODE_RW) ) return;
if(!outFile.is_open())
openOutFile(actnequi);
{
long unsigned int zeroheader=0;
- if ( DATADIR == "" || MODE < 2 ) return;
+ if ( DATADIR == "" || !(MODE==CACHE_MODE_WO||MODE==CACHE_MODE_RW) ) return;
if ( ! outFile.is_open() )
openOutFile(actnequi);