return parastring.str();
}
-string configcache::getFileId(int actnequi, const bool& shortid)
+string configcache::getFileId(int actnequi, const bool& superextended, const bool& shortid)
{
stringstream fileid;
if(!shortid) fileid << CACHEID << "_" << actnequi << "_" << NSKIP;
- fileid << "_" << hash( paraString() );
+ if( superextended )
+ fileid << "_" << hash( paraString() );
+ else
+ fileid << "_" << paraString();
return fileid.str();
}
if( infile.size() < 4 ) return false;
- if( infile.substr(infile.size()-4) == ".dat" )
+ if( infile.substr(infile.size()-4) == ".dat" ) {
filedesc->extended = false;
- else if( infile.substr(infile.size()-4) == "edat" )
+ filedesc->superextended = false;
+ }
+ else if( infile.substr(infile.size()-4) == "edat" ) {
filedesc->extended = true;
+ filedesc->superextended = false;
+ }
+ else if( infile.substr(infile.size()-4) == "sdat" ) {
+ filedesc->extended = true;
+ filedesc->superextended = true;
+ }
else
return false;
delete[] inchar;
- if( truncIn.find( getFileId(NEQUI, true) + "_" ) == string::npos ) return false;
+ if( truncIn.find( getFileId(NEQUI, filedesc->superextended, true) + "_" ) == string::npos ) return false;
return true;
}
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();
+ if( openFileDesc.superextended ) {
+ 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;
while (true) {
outFileName.str("");
- outFileName << DATADIR << "/" << secstamp << "." << iseq << "_" << getFileId(actnequi) << "_.edat.tmp";
+ outFileName << DATADIR << "/" << secstamp << "." << iseq << "_" << getFileId(actnequi, true, false) << "_.sdat.tmp";
int tmpfd = open(outFileName.str().c_str(), O_CREAT | O_EXCL, 0644);