16 #include <boost/algorithm/string.hpp> 53 defPath_(
pset.getUntrackedParameter<
std::
string>(
"buDefPath",
"")),
54 eventChunkSize_(
pset.getUntrackedParameter<unsigned
int>(
"eventChunkSize", 32) * 1048576),
55 eventChunkBlock_(
pset.getUntrackedParameter<unsigned
int>(
"eventChunkBlock", 32) * 1048576),
56 numBuffers_(
pset.getUntrackedParameter<unsigned
int>(
"numBuffers", 2)),
57 maxBufferedFiles_(
pset.getUntrackedParameter<unsigned
int>(
"maxBufferedFiles", 2)),
58 getLSFromFilename_(
pset.getUntrackedParameter<
bool>(
"getLSFromFilename",
true)),
59 alwaysStartFromFirstLS_(
pset.getUntrackedParameter<
bool>(
"alwaysStartFromFirstLS",
false)),
60 verifyChecksum_(
pset.getUntrackedParameter<
bool>(
"verifyChecksum",
true)),
61 useL1EventID_(
pset.getUntrackedParameter<
bool>(
"useL1EventID",
false)),
65 fileListMode_(
pset.getUntrackedParameter<
bool>(
"fileListMode",
false)),
66 fileListLoopMode_(
pset.getUntrackedParameter<
bool>(
"fileListLoopMode",
false)),
71 currentLumiSection_(0),
72 tcds_pointer_(nullptr),
75 gethostname(thishost, 255);
76 edm::LogInfo(
"FedRawDataInputSource") <<
"Construction. read-ahead chunk size -: " << std::endl
81 throw cms::Exception(
"FedRawDataInputSource::fillFEDRawDataCollection")
82 <<
"Invalid TCDS Test FED range parameter";
88 long autoRunNumber = -1;
92 if (autoRunNumber < 0)
93 throw cms::Exception(
"FedRawDataInputSource::FedRawDataInputSource") <<
"Run number not found from filename";
112 throw cms::Exception(
"FedRawDataInputSource::FedRawDataInputSource")
113 <<
"no reading enabled with numBuffers parameter 0";
120 edm::LogError(
"FedRawDataInputSource::FedRawDataInputSource") <<
"Intel crc32c checksum computation unavailable";
127 edm::LogInfo(
"FedRawDataInputSource") <<
"No FastMonitoringService found in the configuration";
132 throw cms::Exception(
"FedRawDataInputSource") <<
"FastMonitoringService not found";
138 cms::Exception(
"FedRawDataInputSource") <<
"EvFDaqDirector not found";
142 edm::LogInfo(
"FedRawDataInputSource") <<
"EvFDaqDirector/Source configured to use file service";
163 cvReader_.push_back(
new std::condition_variable);
165 threadInit_.store(
false, std::memory_order_release);
185 it->second->unsetDeleteFile();
200 std::unique_lock<std::mutex> lk(
mReader_);
221 desc.setComment(
"File-based Filter Farm input source for reading raw data from BU ramdisk");
222 desc.addUntracked<
unsigned int>(
"eventChunkSize", 32)->setComment(
"Input buffer (chunk) size");
223 desc.addUntracked<
unsigned int>(
"eventChunkBlock", 32)
224 ->setComment(
"Block size used in a single file read call (must be smaller or equal to buffer size)");
225 desc.addUntracked<
unsigned int>(
"numBuffers", 2)->setComment(
"Number of buffers used for reading input");
226 desc.addUntracked<
unsigned int>(
"maxBufferedFiles", 2)
227 ->setComment(
"Maximum number of simultaneously buffered raw files");
228 desc.addUntracked<
unsigned int>(
"alwaysStartFromfirstLS",
false)
229 ->setComment(
"Force source to start from LS 1 if server provides higher lumisection number");
230 desc.addUntracked<
bool>(
"verifyChecksum",
true)
231 ->setComment(
"Verify event CRC-32C checksum of FRDv5 and higher or Adler32 with v3 and v4");
232 desc.addUntracked<
bool>(
"useL1EventID",
false)
233 ->setComment(
"Use L1 event ID from FED header if true or from TCDS FED if false");
234 desc.addUntracked<std::vector<unsigned int>>(
"testTCDSFEDRange", std::vector<unsigned int>())
235 ->setComment(
"[min, max] range to search for TCDS FED ID in test setup");
236 desc.addUntracked<
bool>(
"fileListMode",
false)
237 ->setComment(
"Use fileNames parameter to directly specify raw files to open");
238 desc.addUntracked<std::vector<std::string>>(
"fileNames", std::vector<std::string>())
239 ->setComment(
"file list used when fileListMode is enabled");
240 desc.setAllowAnything();
241 descriptions.
add(
"source",
desc);
269 open(fuEoLS.c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
280 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
286 edm::LogInfo(
"FedRawDataInputSource") <<
"----------------RUN ENDED----------------";
329 open(fuEoLS.c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
343 gettimeofday(&tv,
nullptr);
344 const edm::Timestamp lsopentime((
unsigned long long)tv.tv_sec * 1000000 + (
unsigned long long)tv.tv_usec);
352 edm::LogInfo(
"FedRawDataInputSource") <<
"New lumi section was opened. LUMI -: " << lumiSection;
373 std::unique_lock<std::mutex> lkw(
mWakeup_);
384 <<
"Run has been aborted by the input source reader thread";
429 <<
" but according to BU JSON there should be " <<
currentFile_->nEvents_ <<
" events";
433 std::unique_lock<std::mutex> lkw(
mWakeup_);
453 <<
"Premature end of input file while reading file header";
456 <<
"File with only raw header and no events received in LS " <<
currentFile_->lumi_;
473 <<
"Premature end of input file while reading event header";
504 <<
"Premature end of input file while reading event header";
508 event_ = std::make_unique<FRDEventMsgView>(dataPosition);
511 <<
" event id:" <<
event_->event() <<
" lumi:" <<
event_->lumi() <<
" run:" <<
event_->run()
520 <<
"Premature end of input file while reading event data";
526 event_ = std::make_unique<FRDEventMsgView>(dataPosition);
546 unsigned char* dataPosition;
551 event_ = std::make_unique<FRDEventMsgView>(dataPosition);
554 <<
" event id:" <<
event_->event() <<
" lumi:" <<
event_->lumi() <<
" run:" <<
event_->run()
563 <<
"Premature end of input file while reading event data";
586 event_ = std::make_unique<FRDEventMsgView>(dataPosition);
589 chunkEnd =
currentFile_->advance(dataPosition, msgSize);
600 if (crc !=
event_->crc32c()) {
604 <<
"Found a wrong crc32c checksum: expected 0x" << std::hex <<
event_->crc32c() <<
" but calculated 0x" 608 uint32_t adler = adler32(0
L, Z_NULL, 0);
609 adler = adler32(adler, (Bytef*)
event_->payload(),
event_->eventSize());
611 if (adler !=
event_->adler32()) {
615 <<
"Found a wrong Adler32 checksum: expected 0x" << std::hex <<
event_->adler32() <<
" but calculated 0x" 640 <<
"No TCDS or GTP FED in event with FEDHeader EID -: " <<
L1EventID_;
681 bool fileIsBeingProcessed =
false;
684 fileIsBeingProcessed =
true;
705 gettimeofday(&stv,
nullptr);
710 uint32_t eventSize =
event_->eventSize();
711 unsigned char*
event = (
unsigned char*)
event_->payload();
715 uint16_t selectedTCDSFed = 0;
716 while (eventSize > 0) {
726 throw cms::Exception(
"FedRawDataInputSource::fillFEDRawDataCollection") <<
"Out of range FED ID : " <<
fedId;
728 if (!selectedTCDSFed) {
729 selectedTCDSFed =
fedId;
735 throw cms::Exception(
"FedRawDataInputSource::fillFEDRawDataCollection")
736 <<
"Second TCDS FED ID " <<
fedId <<
" found. First ID: " << selectedTCDSFed;
746 tstamp =
edm::Timestamp(static_cast<edm::TimeValue_t>((gpsh << 32) + gpsl));
756 memcpy(fedData.
data(),
event + eventSize, fedSize);
767 unsigned int currentLumiSection = 0;
777 uint32_t lockCount = 0;
788 bool copy_active =
false;
806 std::unique_lock<std::mutex> lkw(
mWakeup_);
811 LogDebug(
"FedRawDataInputSource") <<
"No free chunks or threads...";
827 uint32_t fileSizeIndex;
828 int64_t fileSizeFromMetadata;
836 uint16_t rawHeaderSize = 0;
837 uint32_t lsFromRaw = 0;
838 int32_t serverEventsInNewFile = -1;
852 unsigned int nOtherLumis = nConcurrentLumis > 0 ? nConcurrentLumis - 1 : 0;
853 unsigned int checkLumiStart = currentLumiSection > nOtherLumis ? currentLumiSection - nOtherLumis : 1;
854 bool hasDiscardedLumi =
false;
855 for (
unsigned int i = checkLumiStart;
i <= currentLumiSection;
i++) {
857 edm::LogWarning(
"FedRawDataInputSource") <<
"Source detected that the lumisection is discarded -: " <<
i;
858 hasDiscardedLumi =
true;
862 if (hasDiscardedLumi)
868 edm::LogWarning(
"FedRawDataInputSource") <<
"Input throttled detected, reading files is paused...";
889 serverEventsInNewFile,
890 fileSizeFromMetadata,
911 serverEventsInNewFile,
912 fileSizeFromMetadata,
923 if (thisLockWaitTimeUs > 0.)
924 sumLockWaitTimeUs += thisLockWaitTimeUs;
932 sumLockWaitTimeUs = 0;
962 if (
ls > currentLumiSection) {
966 currentLumiSection =
ls;
974 if (ls < daqDirector_->getStartLumisectionFromEnv()) {
986 }
else if (
ls < 100) {
990 for (
unsigned int nextLS =
std::min(lsToStart,
ls); nextLS <=
ls; nextLS++) {
1001 for (
unsigned int nextLS = currentLumiSection + 1; nextLS <=
ls; nextLS++) {
1006 currentLumiSection =
ls;
1010 if (currentLumiSection > 0 &&
ls < currentLumiSection) {
1012 <<
"Got old LS (" <<
ls <<
") file from EvFDAQDirector! Expected LS:" << currentLumiSection
1013 <<
". Aborting execution." << std::endl;
1028 if (!(dbgcount % 20))
1029 LogDebug(
"FedRawDataInputSource") <<
"No file for me... sleep and try again...";
1033 backoff_exp =
std::min(4, backoff_exp);
1035 int sleeptime = (
int)(100000. *
pow(2, backoff_exp));
1045 LogDebug(
"FedRawDataInputSource") <<
"The director says to grab -: " << nextFile;
1053 rawFile = rawFilePath.replace_extension(
".raw").string();
1057 int stat_res =
stat(rawFile.c_str(), &st);
1058 if (stat_res == -1) {
1059 edm::LogError(
"FedRawDataInputSource") <<
"Can not stat file (" << errno <<
"):-" << rawFile << std::endl;
1070 int eventsInNewFile;
1073 eventsInNewFile = 0;
1075 eventsInNewFile = -1;
1079 if (rawHeaderSize) {
1080 int rawFdEmpty = -1;
1081 uint16_t rawHeaderCheck;
1084 nextFile, rawFdEmpty, rawHeaderCheck, fileSizeFromMetadata, fileFound, 0,
true);
1085 assert(fileFound && rawHeaderCheck == rawHeaderSize);
1090 eventsInNewFile = serverEventsInNewFile;
1091 assert(eventsInNewFile >= 0);
1092 assert((eventsInNewFile > 0) ==
1093 (fileSize > rawHeaderSize));
1102 std::unique_ptr<InputFile> newInputFile(
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,
1113 auto newInputFilePtr = newInputFile.get();
1116 for (
unsigned int i = 0;
i < neededChunks;
i++) {
1118 bool copy_active =
false;
1128 unsigned int newTid = 0xffffffff;
1138 bool copy_active =
false;
1156 if (newChunk ==
nullptr) {
1158 if (newTid != 0xffffffff)
1167 std::unique_lock<std::mutex> lk(
mReader_);
1181 if (!eventsInNewFile) {
1187 std::unique_lock<std::mutex> lkw(
mWakeup_);
1189 std::unique_ptr<InputFile> newInputFile(
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,
1196 (rawHeaderSize > 0),
1213 std::unique_lock<std::mutex> lkw(
mWakeup_);
1218 newChunk->
reset(0, toRead, 0);
1222 std::unique_ptr<InputFile> newInputFile(
new InputFile(evf::EvFDaqDirector::FileStatus::newFile,
1232 newInputFile->chunks_[0] = newChunk;
1241 unsigned numFinishedThreads = 0;
1247 std::unique_lock<std::mutex> lk(
mReader_);
1250 numFinishedThreads++;
1260 threadInit_.exchange(
true, std::memory_order_acquire);
1264 std::unique_lock<std::mutex> lk(
mReader_);
1291 unsigned int bufferLeft = (chunk->
offset_ == 0 &&
file->rawFd_ != -1) ?
file->rawHeaderSize_ : 0;
1296 bool fileOpenedHere =
false;
1299 fileDescriptor =
file->rawFd_;
1300 if (fileDescriptor == -1) {
1301 fileDescriptor = open(
file->fileName_.c_str(), O_RDONLY);
1302 fileOpenedHere =
true;
1303 file->rawFd_ = fileDescriptor;
1307 fileDescriptor =
file->rawFd_;
1309 if (fileDescriptor == -1) {
1310 fileDescriptor = open(
file->fileName_.c_str(), O_RDONLY);
1311 fileOpenedHere =
true;
1314 fileDescriptor = open(
file->fileName_.c_str(), O_RDONLY);
1315 fileOpenedHere =
true;
1319 if (fileDescriptor < 0) {
1320 edm::LogError(
"FedRawDataInputSource") <<
"readWorker failed to open file -: " <<
file->fileName_
1321 <<
" fd:" << fileDescriptor <<
" error: " << strerror(errno);
1325 if (fileOpenedHere) {
1327 pos = lseek(fileDescriptor, chunk->
offset_, SEEK_SET);
1330 <<
"readWorker failed to seek file -: " <<
file->fileName_ <<
" fd:" << fileDescriptor <<
" to offset " 1331 << chunk->
offset_ <<
" error: " << strerror(errno);
1337 LogDebug(
"FedRawDataInputSource") <<
"Reader thread opened file -: TID: " << tid <<
" file: " <<
file->fileName_
1338 <<
" at offset " << lseek(fileDescriptor, 0, SEEK_CUR);
1340 unsigned int skipped = bufferLeft;
1350 edm::LogError(
"FedRawDataInputSource") <<
"readWorker failed to read file -: " <<
file->fileName_
1351 <<
" fd:" << fileDescriptor <<
" error: " << strerror(errno);
1361 <<
"readWorker failed to read file -: " <<
file->fileName_ <<
" fd:" << fileDescriptor <<
" last:" <<
last 1362 <<
" expectedChunkSize:" << chunk->
usedSize_ 1364 <<
" block:" << (
i + 1) <<
"/" <<
readBlocks_ <<
" error: " << strerror(errno);
1375 std::chrono::milliseconds msec = std::chrono::duration_cast<std::chrono::milliseconds>(
diff);
1376 LogDebug(
"FedRawDataInputSource") <<
" finished reading block -: " << (bufferLeft >> 20) <<
" MB" 1377 <<
" in " << msec.count() <<
" ms (" << (bufferLeft >> 20) /
double(msec.count())
1380 if (chunk->
offset_ + bufferLeft ==
file->fileSize_) {
1381 close(fileDescriptor);
1382 fileDescriptor = -1;
1387 close(fileDescriptor);
1402 throw cms::Exception(
"FedRawDataInputSource:threadError") <<
" file reader thread error ";
1429 if (currentLeft <
size) {
1477 LogDebug(
"FedRawDataInputSource:InputFile") <<
"Deleting input file -:" <<
fileName_;
1480 }
catch (
const std::filesystem::filesystem_error& ex) {
1482 <<
" - deleteFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what() <<
". Trying again.";
1485 <<
" - deleteFile std::exception CAUGHT -: " << ex.what() <<
". Trying again.";
1493 uint32_t existingSize = 0;
1497 if (
file->rawFd_ == -1) {
1499 if (
file->rawHeaderSize_)
1506 existingSize +=
file->rawHeaderSize_;
1509 LogDebug(
"FedRawDataInputSource") <<
"opened file -: " << std::endl <<
file->fileName_;
1511 throw cms::Exception(
"FedRawDataInputSource:readNextChunkIntoBuffer")
1512 <<
"failed to open file " << std::endl
1518 (
void*)(
file->chunks_[0]->buf_ + existingSize),
1521 existingSize +=
last;
1526 if (
file->chunkPosition_ == 0) {
1530 existingSize +=
last;
1535 memmove((
void*)
file->chunks_[0]->buf_,
file->chunks_[0]->buf_ +
file->chunkPosition_, existingSizeLeft);
1541 for (uint32_t
i = 0;
i < blockcount;
i++) {
1542 const ssize_t
last =
1545 existingSizeLeft +=
last;
1551 file->chunkPosition_ = 0;
1556 LogDebug(
"FedRawDataInputSource") <<
"Closing input file -: " << std::endl <<
file->fileName_;
1576 std::pair<bool, unsigned int>
ret(
true, itr->second);
1581 return std::pair<bool, unsigned int>(
false, 0);
1586 if (
a.rfind(
'/') != std::string::npos)
1587 a =
a.substr(
a.rfind(
'/'));
1588 if (
b.rfind(
'/') != std::string::npos)
1589 b =
b.substr(
b.rfind(
'/'));
1597 if (fileStem.find(
"file://") == 0)
1598 fileStem = fileStem.substr(7);
1599 else if (fileStem.find(
"file:") == 0)
1600 fileStem = fileStem.substr(5);
1601 auto end = fileStem.find(
'_');
1603 if (fileStem.find(
"run") == 0) {
1607 long rval = std::stol(runStr);
1608 edm::LogInfo(
"FedRawDataInputSource") <<
"Autodetected run number in fileListMode -: " << rval;
1612 <<
"Unable to autodetect run number in fileListMode from file -: " <<
fileName;
1625 if (nextFile.find(
"file://") == 0)
1626 nextFile = nextFile.substr(7);
1627 else if (nextFile.find(
"file:") == 0)
1628 nextFile = nextFile.substr(5);
1631 if (fileStem.find(
"ls"))
1632 fileStem = fileStem.substr(fileStem.find(
"ls") + 2);
1633 if (fileStem.find(
'_'))
1634 fileStem = fileStem.substr(0, fileStem.find(
'_'));
1637 ls = std::stoul(fileStem);
1652 return getFile(
ls, nextFile, fsize, lockWaitTime);
static const char runNumber_[]
unsigned int getgpshigh(const unsigned char *)
void startedLookingForFile()
bool gtpe_board_sense(const unsigned char *p)
constexpr size_t FRDHeaderMaxVersion
void setExceptionDetected(unsigned int ls)
static Timestamp invalidTimestamp()
static const uint32_t length
unsigned int get(const unsigned char *, bool)
bool useFileBroker() const
ret
prodAgent to be discontinued
volatile std::atomic< bool > shutdown_flag
std::string getEoLSFilePathOnFU(const unsigned int ls) const
bool lumisectionDiscarded(unsigned int ls)
FileStatus getNextFromFileBroker(const unsigned int currentLumiSection, unsigned int &ls, std::string &nextFile, int &rawFd, uint16_t &rawHeaderSize, int32_t &serverEventsInNewFile_, int64_t &fileSize, uint64_t &thisLockWaitTimeUs)
bool isSingleStreamThread()
Log< level::Error, false > LogError
unsigned int numConcurrentLumis() const
StreamID streamID() const
bool isExceptionOnData(unsigned int ls)
ProcessHistoryID daqInit(ProductRegistry &productRegistry, ProcessHistoryRegistry &processHistoryRegistry) const
std::string getEoRFilePathOnFU() const
edm::EventAuxiliary makeEventAuxiliary(const tcds::Raw_v1 *, unsigned int runNumber, unsigned int lumiSection, bool isRealData, const edm::EventAuxiliary::ExperimentType &, const std::string &processGUID, bool verifyLumiSection, bool suppressWarning)
uint32_t fragmentLength() const
The length of the event fragment counted in 64-bit words including header and trailer.
U second(std::pair< T, U > const &p)
std::string getEoLSFilePathOnBU(const unsigned int ls) const
static Timestamp beginOfTime()
void put(BranchDescription const &bd, std::unique_ptr< WrapperBase > edp, ProductProvenance const &productProvenance) const
void resize(size_t newsize)
ProductProvenance const & dummyProvenance() const
filePath
CUSTOMIZE FOR ML.
static int parseFRDFileHeader(std::string const &rawSourcePath, int &rawFd, uint16_t &rawHeaderSize, uint32_t &lsFromHeader, int32_t &eventsFromHeader, int64_t &fileSizeFromHeader, bool requireHeader, bool retry, bool closeFile)
int grabNextJsonFileAndUnlock(std::filesystem::path const &jsonSourcePath)
unsigned long long TimeValue_t
bool evm_board_sense(const unsigned char *p, size_t size)
void createProcessingNotificationMaybe() const
uint32_t crc32c(uint32_t crc, const unsigned char *buf, size_t len)
void setInputSource(FedRawDataInputSource *inputSource)
Log< level::Info, false > LogInfo
FileStatus updateFuLock(unsigned int &ls, std::string &nextFile, uint32_t &fsize, uint16_t &rawHeaderSize, uint64_t &lockWaitTime, bool &setExceptionState)
BranchDescription const & branchDescription() const
unsigned int getStartLumisectionFromEnv() const
int grabNextJsonFromRaw(std::string const &rawSourcePath, int &rawFd, uint16_t &rawHeaderSize, int64_t &fileSizeFromHeader, bool &fileFound, uint32_t serverLS, bool closeFile)
def getRunNumber(filename)
void setInStateSup(FastMonState::InputState inputState)
unsigned long long uint64_t
void add(std::string const &label, ParameterSetDescription const &psetDescription)
def remove(d, key, TELL=False)
void stoppedLookingForFile(unsigned int lumi)
unsigned int getLumisectionToStart() const
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
unsigned int gtpe_get(const unsigned char *)
void setDeleteTracking(std::mutex *fileDeleteLock, std::list< std::pair< int, std::unique_ptr< InputFile >>> *filesToDelete)
constexpr std::array< uint32, FRDHeaderMaxVersion+1 > FRDHeaderVersionSize
Log< level::Warning, false > LogWarning
void createBoLSFile(const uint32_t lumiSection, bool checkIfExists) const
bool exceptionDetected() const
void setFMS(evf::FastMonitoringService *fms)
unsigned int getgpslow(const unsigned char *)
Power< A, B >::type pow(const A &a, const B &b)
void reportLockWait(unsigned int ls, double waitTime, unsigned int lockCount)
void setInState(FastMonState::InputState inputState)