16 #include <boost/algorithm/string.hpp> 17 #include <boost/filesystem/fstream.hpp> 50 #include <boost/lexical_cast.hpp> 56 edm::RawInputSource(pset, desc),
57 defPath_(pset.getUntrackedParameter<
std::
string> (
"buDefPath",
std::
string(getenv(
"CMSSW_BASE"))+
"/src/EventFilter/Utilities/plugins/budef.jsd")),
58 eventChunkSize_(pset.getUntrackedParameter<unsigned
int> (
"eventChunkSize",32)*1048576),
59 eventChunkBlock_(pset.getUntrackedParameter<unsigned
int> (
"eventChunkBlock",32)*1048576),
60 numBuffers_(pset.getUntrackedParameter<unsigned
int> (
"numBuffers",2)),
61 maxBufferedFiles_(pset.getUntrackedParameter<unsigned
int> (
"maxBufferedFiles",2)),
62 getLSFromFilename_(pset.getUntrackedParameter<bool> (
"getLSFromFilename",
true)),
63 verifyAdler32_(pset.getUntrackedParameter<bool> (
"verifyAdler32",
true)),
64 verifyChecksum_(pset.getUntrackedParameter<bool> (
"verifyChecksum",
true)),
65 useL1EventID_(pset.getUntrackedParameter<bool> (
"useL1EventID",
false)),
67 fileListMode_(pset.getUntrackedParameter<bool> (
"fileListMode",
false)),
68 fileListLoopMode_(pset.getUntrackedParameter<bool> (
"fileListLoopMode",
false)),
74 currentLumiSection_(0),
80 gethostname(thishost, 255);
81 edm::LogInfo(
"FedRawDataInputSource") <<
"Construction. read-ahead chunk size -: " 83 <<
" MB on host " << thishost;
85 long autoRunNumber = -1;
90 throw cms::Exception(
"FedRawDataInputSource::FedRawDataInputSource") <<
"Run number not found from filename";
103 std::string defPathSuffix =
"src/EventFilter/Utilities/plugins/budef.jsd";
115 DataPointDefinition::getDataPointDefinitionFor(
defPath_,
dpd_,&defLabel);
124 throw cms::Exception(
"FedRawDataInputSource::FedRawDataInputSource") <<
125 "no reading enabled with numBuffers parameter 0";
132 edm::LogError(
"FedRawDataInputSource::FedRawDataInputSource") <<
"Intel crc32c checksum computation unavailable";
139 edm::LogInfo(
"FedRawDataInputSource") <<
"No FastMonitoringService found in the configuration";
145 throw cms::Exception(
"FedRawDataInputSource") <<
"FastMonitoringService not found";
151 cms::Exception(
"FedRawDataInputSource") <<
"EvFDaqDirector not found";
174 cvReader_.push_back(
new std::condition_variable);
176 threadInit_.store(
false,std::memory_order_release);
199 std::unique_lock<std::mutex> lk(
mReader_);
220 desc.
setComment(
"File-based Filter Farm input source for reading raw data from BU ramdisk");
221 desc.
addUntracked<
unsigned int> (
"eventChunkSize",32)->setComment(
"Input buffer (chunk) size");
222 desc.
addUntracked<
unsigned int> (
"eventChunkBlock",32)->setComment(
"Block size used in a single file read call (must be smaller or equal to buffer size)");
223 desc.
addUntracked<
unsigned int> (
"numBuffers",2)->setComment(
"Number of buffers used for reading input");
224 desc.
addUntracked<
unsigned int> (
"maxBufferedFiles",2)->setComment(
"Maximum number of simultaneously buffered raw files");
225 desc.
addUntracked<
bool> (
"verifyAdler32",
true)->setComment(
"Verify event Adler32 checksum with FRDv3 or v4");
226 desc.
addUntracked<
bool> (
"verifyChecksum",
true)->setComment(
"Verify event CRC-32C checksum of FRDv5 or higher");
227 desc.
addUntracked<
bool> (
"useL1EventID",
false)->setComment(
"Use L1 event ID from FED header if true or from TCDS FED if false");
228 desc.
addUntracked<
bool> (
"fileListMode",
false)->setComment(
"Use fileNames parameter to directly specify raw files to open");
229 desc.
addUntracked<std::vector<std::string>> (
"fileNames", std::vector<std::string>())->
setComment(
"file list used when fileListMode is enabled");
231 descriptions.
add(
"source", desc);
260 bool found = (
stat(fuEoLS.c_str(), &buf) == 0);
263 int eol_fd = open(fuEoLS.c_str(), O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
278 edm::LogInfo(
"FedRawDataInputSource") <<
"----------------RUN ENDED----------------";
316 if (checkIfExists==
false ||
stat(fuBoLS.c_str(), &buf) != 0) {
317 int bol_fd = open(fuBoLS.c_str(), O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
331 bool found = (
stat(fuEoLS.c_str(), &buf) == 0);
334 int eol_fd = open(fuEoLS.c_str(), O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
347 gettimeofday(&tv, 0);
348 const edm::Timestamp lsopentime( (
unsigned long long) tv.tv_sec * 1000000 + (
unsigned long long) tv.tv_usec );
353 lumiSection, lsopentime,
359 edm::LogInfo(
"FedRawDataInputSource") <<
"New lumi section was opened. LUMI -: "<< lumiSection;
384 std::unique_lock<std::mutex> lkw(
mWakeup_);
398 throw cms::Exception(
"FedRawDataInputSource::getNextEvent") <<
"Run has been aborted by the input source reader thread";
454 <<
" but according to BU JSON there should be " 459 std::unique_lock<std::mutex> lkw(
mWakeup_);
482 "Premature end of input file while reading event header";
502 if (detectedFRDversion_==0) {
503 detectedFRDversion_=*((
uint32*)dataPosition);
504 if (detectedFRDversion_>5)
507 assert(detectedFRDversion_>=1);
515 "Premature end of input file while reading event header";
522 <<
" event id:"<<
event_->event()<<
" lumi:" <<
event_->lumi()
523 <<
" run:" <<
event_->run() <<
" of size:" <<
event_->size()
524 <<
" bytes does not fit into a chunk of size:" <<
eventChunkSize_ <<
" bytes";
532 "Premature end of input file while reading event data";
558 unsigned char *dataPosition;
566 <<
" event id:"<<
event_->event()<<
" lumi:" <<
event_->lumi()
567 <<
" run:" <<
event_->run() <<
" of size:" <<
event_->size()
568 <<
" bytes does not fit into a chunk of size:" <<
eventChunkSize_ <<
" bytes";
576 "Premature end of input file while reading event data";
610 if ( crc !=
event_->crc32c() ) {
613 "Found a wrong crc32c checksum: expected 0x" << std::hex <<
event_->crc32c() <<
614 " but calculated 0x" << crc;
619 uint32_t adler = adler32(0
L,Z_NULL,0);
620 adler = adler32(adler,(Bytef*)
event_->payload(),
event_->eventSize());
622 if ( adler !=
event_->adler32() ) {
625 "Found a wrong Adler32 checksum: expected 0x" << std::hex <<
event_->adler32() <<
626 " but calculated 0x" << adler;
647 catch (
const boost::filesystem::filesystem_error& ex)
649 edm::LogError(
"FedRawDataInputSource") <<
" - deleteFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what()
650 <<
". Trying again.";
655 catch (
const boost::filesystem::filesystem_error&) {}
659 edm::LogError(
"FedRawDataInputSource") <<
" - deleteFile std::exception CAUGHT -: " << ex.what()
660 <<
". Trying again.";
721 bool fileIsBeingProcessed =
false;
724 fileIsBeingProcessed =
true;
728 if (!fileIsBeingProcessed) {
747 gettimeofday(&stv,0);
749 time = (time << 32) + stv.tv_usec;
752 uint32_t eventSize =
event_->eventSize();
753 char*
event = (
char*)
event_->payload();
756 while (eventSize > 0) {
757 assert(eventSize>=
sizeof(
fedt_t));
758 eventSize -=
sizeof(
fedt_t);
761 assert(eventSize>=fedSize -
sizeof(
fedt_t));
762 eventSize -= (fedSize -
sizeof(
fedt_t));
767 throw cms::Exception(
"FedRawDataInputSource::fillFEDRawDataCollection") <<
"Out of range FED ID : " <<
fedId;
780 tstamp =
edm::Timestamp(static_cast<edm::TimeValue_t> ((gpsh << 32) + gpsl));
790 memcpy(fedData.
data(),
event + eventSize, fedSize);
792 assert(eventSize == 0);
805 std::ostringstream fileNameWithPID;
806 fileNameWithPID << jsonSourcePath.stem().string() <<
"_pid" 807 << std::setfill(
'0') << std::setw(5) << getpid() <<
".jsn";
808 jsonDestPath /= fileNameWithPID.str();
810 LogDebug(
"FedRawDataInputSource") <<
"JSON rename -: " << jsonSourcePath <<
" to " 815 catch (
const boost::filesystem::filesystem_error& ex)
818 edm::LogError(
"FedRawDataInputSource") <<
"grabNextFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
829 catch (
const boost::filesystem::filesystem_error& ex)
832 edm::LogError(
"FedRawDataInputSource") <<
"grabNextFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
837 edm::LogError(
"FedRawDataInputSource") <<
"grabNextFile std::exception CAUGHT -: " << ex.what();
840 boost::filesystem::ifstream ij(jsonDestPath);
844 std::stringstream ss;
846 if (!reader.
parse(ss.str(), deserializeRoot)) {
847 edm::LogError(
"FedRawDataInputSource") <<
"Failed to deserialize JSON file -: " << jsonDestPath
849 <<
"CONTENT:\n" << ss.str()<<
".";
850 throw std::runtime_error(
"Cannot deserialize input JSON file");
869 throw cms::Exception(
"FedRawDataInputSource::grabNextJsonFile") <<
870 " error reading number of events from BU JSON -: No input value " <<
data;
872 return boost::lexical_cast<
int>(
data);
875 catch (
const boost::filesystem::filesystem_error& ex)
879 edm::LogError(
"FedRawDataInputSource") <<
"grabNextJsonFile - BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
881 catch (std::runtime_error
e)
885 edm::LogError(
"FedRawDataInputSource") <<
"grabNextJsonFile - runtime Exception -: " << e.what();
888 catch( boost::bad_lexical_cast
const& ) {
889 edm::LogError(
"FedRawDataInputSource") <<
"grabNextJsonFile - error parsing number of events from BU JSON. " 890 <<
"Input value is -: " <<
data;
897 edm::LogError(
"FedRawDataInputSource") <<
"grabNextFile - SOME OTHER EXCEPTION OCCURED!!!! -: " << e.what();
908 InputSource::rewind();
921 unsigned int currentLumiSection = 0;
931 uint32_t lockCount=0;
942 bool copy_active=
false;
943 for (
auto j :
tid_active_)
if (j) copy_active=
true;
958 std::unique_lock<std::mutex> lkw(
mWakeup_);
963 LogDebug(
"FedRawDataInputSource") <<
"No free chunks or threads...";
994 status =
getFile(ls,nextFile,fileSize,thisLockWaitTimeUs);
1004 if (thisLockWaitTimeUs>0.)
1005 sumLockWaitTimeUs+=thisLockWaitTimeUs;
1012 sumLockWaitTimeUs=0;
1033 currentLumiSection =
ls;
1038 edm::LogError(
"FedRawDataInputSource") <<
"Got old LS ("<<ls<<
") file from EvFDAQDirector! Expected LS:" << currentLumiSection<<
". Aborting execution."<<std::endl;
1048 if (!(dbgcount%20))
LogDebug(
"FedRawDataInputSource") <<
"No file for me... sleep and try again...";
1054 LogDebug(
"FedRawDataInputSource") <<
"The director says to grab -: " << nextFile;
1058 std::string rawFile = rawFilePath.replace_extension(
".raw").string();
1061 int stat_res =
stat(rawFile.c_str(),&st);
1063 edm::LogError(
"FedRawDataInputSource") <<
"Can not stat file (" << errno <<
"):-"<< rawFile << std::endl;
1067 fileSize=st.st_size;
1074 int eventsInNewFile;
1076 if (fileSize==0) eventsInNewFile=0;
1077 else eventsInNewFile=-1;
1081 assert( eventsInNewFile>=0 );
1082 assert((eventsInNewFile>0) == (fileSize>0));
1090 InputFile * newInputFile =
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,ls,rawFile,fileSize,neededChunks,eventsInNewFile,
this);
1094 for (
unsigned int i=0;
i<neededChunks;
i++) {
1097 bool copy_active=
false;
1098 for (
auto j :
tid_active_)
if (j) copy_active=
true;
1105 unsigned int newTid = 0xffffffff;
1111 bool copy_active=
false;
1112 for (
auto j :
tid_active_)
if (j) copy_active=
true;
1124 if (newChunk ==
nullptr) {
1132 std::unique_lock<std::mutex> lk(
mReader_);
1135 if (
i==neededChunks-1 && fileSize%eventChunkSize_) toRead = fileSize%
eventChunkSize_;
1136 newChunk->
reset(
i*eventChunkSize_,toRead,
i);
1146 if (!eventsInNewFile) {
1148 std::unique_lock<std::mutex> lkw(
mWakeup_);
1149 InputFile * newInputFile =
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,ls,rawFile,0,0,0,
this);
1158 while(!
freeChunks_.try_pop(newChunk)) usleep(100000);
1160 std::unique_lock<std::mutex> lkw(
mWakeup_);
1164 newChunk->
reset(0,toRead,0);
1168 InputFile * newInputFile =
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,ls,rawFile,fileSize,1,eventsInNewFile,
this);
1169 newInputFile->
chunks_[0]=newChunk;
1178 unsigned numFinishedThreads = 0;
1181 while (!
workerPool_.try_pop(tid)) {usleep(10000);}
1182 std::unique_lock<std::mutex> lk(
mReader_);
1185 numFinishedThreads++;
1196 threadInit_.exchange(
true,std::memory_order_acquire);
1201 std::unique_lock<std::mutex> lk(
mReader_);
1226 int fileDescriptor = open(file->
fileName_.c_str(), O_RDONLY);
1227 off_t
pos = lseek(fileDescriptor,chunk->
offset_,SEEK_SET);
1230 if (fileDescriptor>=0)
1231 LogDebug(
"FedRawDataInputSource") <<
"Reader thread opened file -: TID: " << tid <<
" file: " << file->
fileName_ <<
" at offset " << pos;
1235 "readWorker failed to open file -: " << file->
fileName_ <<
" fd:" << fileDescriptor <<
1236 " or seek to offset " << chunk->
offset_ <<
", lseek returned:" << pos;
1242 unsigned int bufferLeft = 0;
1256 std::chrono::milliseconds msec = std::chrono::duration_cast<std::chrono::milliseconds>(
diff);
1257 LogDebug(
"FedRawDataInputSource") <<
" finished reading block -: " << (bufferLeft >> 20) <<
" MB" <<
" in " << msec.count() <<
" ms ("<< (bufferLeft >> 20)/
double(msec.count())<<
" GB/s)";
1258 close(fileDescriptor);
1271 throw cms::Exception(
"FedRawDataInputSource:threadError") <<
" file reader thread error ";
1279 while (!waitForChunk(currentChunk_)) {
1281 if (parent_->exceptionState()) parent_->threadError();
1284 dataPosition = chunks_[currentChunk_]->buf_+ chunkPosition_;
1285 size_t currentLeft = chunks_[currentChunk_]->size_ - chunkPosition_;
1287 if (currentLeft < size) {
1290 while (!waitForChunk(currentChunk_+1)) {
1292 if (parent_->exceptionState()) parent_->threadError();
1295 dataPosition-=chunkPosition_;
1296 assert(dataPosition==chunks_[currentChunk_]->buf_);
1297 memmove(chunks_[currentChunk_]->buf_, chunks_[currentChunk_]->buf_+chunkPosition_, currentLeft);
1298 memcpy(chunks_[currentChunk_]->buf_ + currentLeft, chunks_[currentChunk_+1]->buf_, size - currentLeft);
1300 bufferPosition_+=
size;
1301 chunkPosition_=size-currentLeft;
1306 chunkPosition_+=
size;
1307 bufferPosition_+=
size;
1315 assert(size < chunks_[currentChunk_]->size_ - chunkPosition_);
1316 assert(size - offset < chunks_[currentChunk_]->size_);
1317 memcpy(chunks_[currentChunk_-1]->buf_+offset,chunks_[currentChunk_]->buf_+chunkPosition_,size);
1318 chunkPosition_+=
size;
1319 bufferPosition_+=
size;
1323 chunkPosition_-=
size;
1324 bufferPosition_-=
size;
1336 LogDebug(
"FedRawDataInputSource") <<
"opened file -: " << std::endl << file->
fileName_;
1339 throw cms::Exception(
"FedRawDataInputSource:readNextChunkIntoBuffer") <<
"failed to open file " << std::endl
1345 uint32_t existingSize = 0;
1360 for (uint32_t
i=0;
i<blockcount;
i++) {
1374 LogDebug(
"FedRawDataInputSource") <<
"Closing input file -: " << std::endl << file->
fileName_;
1388 itr->second+=events;
1398 auto && ret = std::pair<bool,unsigned int>(
true,itr->second);
1404 return std::pair<bool,unsigned int>(
false,0);
1411 if (a.rfind(
"/")!=std::string::npos) a=a.substr(a.rfind(
"/"));
1412 if (
b.rfind(
"/")!=std::string::npos)
b=
b.substr(
b.rfind(
"/"));
1419 auto end = fileStem.find(
"_");
1420 if (fileStem.find(
"run")==0) {
1424 long rval = boost::lexical_cast<
long>(runStr);
1425 edm::LogInfo(
"FedRawDataInputSource") <<
"Autodetected run number in fileListMode -: "<<
rval;
1428 catch( boost::bad_lexical_cast
const& ) {
1429 edm::LogWarning(
"FedRawDataInputSource") <<
"Unable to autodetect run number in fileListMode from file -: "<<
fileName;
1440 if (nextFile.find(
"file://")==0) nextFile=nextFile.substr(7);
1441 else if (nextFile.find(
"file:")==0) nextFile=nextFile.substr(5);
1444 if (fileStem.find(
"ls")) fileStem = fileStem.substr(fileStem.find(
"ls")+2);
1445 if (fileStem.find(
"_")) fileStem = fileStem.substr(0,fileStem.find(
"_"));
1448 ls = boost::lexical_cast<
unsigned int>(fileStem);
1464 return getFile(ls,nextFile,fsize,lockWaitTime);
static const char runNumber_[]
void setComment(std::string const &value)
std::vector< std::string > & getData()
unsigned int getgpshigh(const unsigned char *)
void startedLookingForFile()
bool gtpe_board_sense(const unsigned char *p)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
void setExceptionDetected(unsigned int ls)
static Timestamp invalidTimestamp()
void setAllowAnything()
allow any parameter label/value pairs
unsigned int get(const unsigned char *, bool)
void setInState(FastMonitoringThread::InputState inputState)
const uint32 FRDHeaderVersionSize[6]
volatile std::atomic< bool > shutdown_flag
void setInStateSup(FastMonitoringThread::InputState inputState)
void createProcessingNotificationMaybe() const
bool parse(const std::string &document, Value &root, bool collectComments=true)
Read a Value from a JSON document.
bool isSingleStreamThread()
ProductProvenance const & dummyProvenance() const
std::string getEoLSFilePathOnBU(const unsigned int ls) const
U second(std::pair< T, U > const &p)
static Timestamp beginOfTime()
void setComment(std::string const &value)
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
FileStatus updateFuLock(unsigned int &ls, std::string &nextFile, uint32_t &fsize, uint64_t &lockWaitTime)
void resize(size_t newsize)
#define FED_EVSZ_EXTRACT(a)
edm::EventAuxiliary makeEventAuxiliary(TCDSRecord *record, unsigned int runNumber, unsigned int lumiSection, std::string const &processGUID, bool verifyLumiSection)
void setDeleteTracking(std::mutex *fileDeleteLock, std::list< std::pair< int, InputFile * >> *filesToDelete)
StreamID streamID() const
BranchDescription const & branchDescription() const
void put(BranchDescription const &bd, std::unique_ptr< WrapperBase > edp, ProductProvenance const &productProvenance) const
unsigned long long TimeValue_t
virtual void deserialize(Json::Value &root)
ProcessHistoryID daqInit(ProductRegistry &productRegistry, ProcessHistoryRegistry &processHistoryRegistry) const
bool evm_board_sense(const unsigned char *p, size_t size)
uint32_t crc32c(uint32_t crc, const unsigned char *buf, size_t len)
void setInputSource(FedRawDataInputSource *inputSource)
unsigned long long int rval
def getRunNumber(filename)
unsigned long long uint64_t
void add(std::string const &label, ParameterSetDescription const &psetDescription)
def remove(d, key, TELL=False)
void setProcessHistoryID(ProcessHistoryID const &phid)
void stoppedLookingForFile(unsigned int lumi)
std::string getBoLSFilePathOnFU(const unsigned int ls) const
char data[epos_bytes_allocation]
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Unserialize a JSON document into a Value.
bool emptyLumisectionMode() const
unsigned int gtpe_get(const unsigned char *)
std::vector< std::string > const & getNames()
std::string getEoLSFilePathOnFU(const unsigned int ls) const
void setFMS(evf::FastMonitoringService *fms)
unsigned int getgpslow(const unsigned char *)
std::string getFormatedErrorMessages() const
Returns a user friendly string that list errors in the parsed document.
void reportLockWait(unsigned int ls, double waitTime, unsigned int lockCount)
std::string getEoRFilePathOnFU() const