25 #include <boost/algorithm/string.hpp>
31 using namespace jsoncollector;
36 const std::vector<std::string> EvFDaqDirector::MergeTypeNames_ = {
"",
"DAT",
"PB",
"JSNDATA"};
39 : base_dir_(pset.getUntrackedParameter<std::
string>(
"baseDir")),
40 bu_base_dir_(pset.getUntrackedParameter<std::
string>(
"buBaseDir")),
41 run_(pset.getUntrackedParameter<unsigned int>(
"runNumber")),
42 useFileBroker_(pset.getUntrackedParameter<bool>(
"useFileBroker")),
43 fileBrokerHostFromCfg_(pset.getUntrackedParameter<bool>(
"fileBrokerHostFromCfg",
true)),
44 fileBrokerHost_(pset.getUntrackedParameter<std::
string>(
"fileBrokerHost",
"InValid")),
45 fileBrokerPort_(pset.getUntrackedParameter<std::
string>(
"fileBrokerPort",
"8080")),
46 fileBrokerKeepAlive_(pset.getUntrackedParameter<bool>(
"fileBrokerKeepAlive",
true)),
47 fileBrokerUseLocalLock_(pset.getUntrackedParameter<bool>(
"fileBrokerUseLocalLock",
true)),
48 fuLockPollInterval_(pset.getUntrackedParameter<unsigned int>(
"fuLockPollInterval", 2000)),
49 outputAdler32Recheck_(pset.getUntrackedParameter<bool>(
"outputAdler32Recheck",
false)),
50 requireTSPSet_(pset.getUntrackedParameter<bool>(
"requireTransfersPSet",
false)),
51 selectedTransferMode_(pset.getUntrackedParameter<std::
string>(
"selectedTransferMode",
"")),
52 mergeTypePset_(pset.getUntrackedParameter<std::
string>(
"mergingPset",
"")),
53 directorBU_(pset.getUntrackedParameter<bool>(
"directorIsBU",
false)),
54 hltSourceDirectory_(pset.getUntrackedParameter<std::
string>(
"hltSourceDirectory",
"")),
58 fu_readwritelock_fd_(-1),
59 fulocal_rwlock_fd_(-1),
60 fulocal_rwlock_fd2_(-1),
61 bu_w_lock_stream(nullptr),
62 bu_r_lock_stream(nullptr),
63 fu_rw_lock_stream(nullptr),
64 dirManager_(base_dir_),
66 bu_w_flk(make_flock(F_WRLCK, SEEK_SET, 0, 0, 0)),
67 bu_r_flk(make_flock(F_RDLCK, SEEK_SET, 0, 0, 0)),
68 bu_w_fulk(make_flock(F_UNLCK, SEEK_SET, 0, 0, 0)),
69 bu_r_fulk(make_flock(F_UNLCK, SEEK_SET, 0, 0, 0)),
70 fu_rw_flk(make_flock(F_WRLCK, SEEK_SET, 0, 0, getpid())),
71 fu_rw_fulk(make_flock(F_UNLCK, SEEK_SET, 0, 0, getpid())) {
80 gethostname(hostname, 32);
83 char* fuLockPollIntervalPtr = std::getenv(
"FFF_LOCKPOLLINTERVAL");
84 if (fuLockPollIntervalPtr) {
95 char* fileBrokerParamPtr = std::getenv(
"FFF_USEFILEBROKER");
96 if (fileBrokerParamPtr) {
109 if (
stat(
"/etc/appliance/bus.config", &buf) == 0) {
114 throw cms::Exception(
"EvFDaqDirector") <<
"No file service or BU data address information";
117 <<
"fileBrokerHostFromCfg must be set to true if fileBrokerHost parameter is not valid or empty";
125 char* startFromLSPtr = std::getenv(
"FFF_START_LUMISECTION");
126 if (startFromLSPtr) {
136 char* fileBrokerUseLockParamPtr = std::getenv(
"FFF_FILEBROKERUSELOCALLOCK");
137 if (fileBrokerUseLockParamPtr) {
140 edm::LogInfo(
"EvFDaqDirector") <<
"Setting fileBrokerUseLocalLock parameter by environment string: "
149 std::stringstream
ss;
150 ss <<
"run" << std::setfill(
'0') << std::setw(6) <<
run_;
152 ss = std::stringstream();
157 ss = std::stringstream();
162 int retval =
mkdir(
base_dir_.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
163 if (retval != 0 && errno != EEXIST) {
165 <<
" Error checking for base dir -: " <<
base_dir_ <<
" mkdir error:" << strerror(errno);
170 retval =
mkdir(
run_dir_.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IRWXO | S_IXOTH);
171 if (retval != 0 && errno != EEXIST) {
173 <<
" Error creating run dir -: " <<
run_dir_ <<
" mkdir error:" << strerror(errno);
181 open(fulocal_lock_.c_str(), O_RDWR | O_CREAT, S_IRWXU | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH);
184 <<
" Error creating/opening a local lock file -: " << fulocal_lock_.c_str() <<
" : " << strerror(errno);
185 chmod(fulocal_lock_.c_str(), 0777);
189 open(fulocal_lock_.c_str(), O_RDWR, S_IRWXU | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH);
192 <<
" Error opening a local lock file -: " << fulocal_lock_.c_str() <<
" : " << strerror(errno);
204 if (retval != 0 && errno != EEXIST) {
206 <<
" Error creating bu run dir -: " <<
bu_run_dir_ <<
" mkdir error:" << strerror(errno) <<
"\n";
210 if (retval != 0 && errno != EEXIST) {
212 <<
" Error creating bu run open dir -: " <<
bu_run_open_dir_ <<
" mkdir error:" << strerror(errno) <<
"\n";
216 bu_writelock_fd_ = open(bulockfile.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRWXU);
218 edm::LogWarning(
"EvFDaqDirector") <<
"problem with creating filedesc for buwritelock -: " << strerror(errno);
223 edm::LogWarning(
"EvFDaqDirector") <<
"Error creating write lock stream -: " << strerror(errno);
237 retval =
mkdir(tmphltdir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
238 if (retval != 0 && errno != EEXIST)
240 <<
" Error creating bu run dir -: " << hltdir <<
" mkdir error:" << strerror(errno) <<
"\n";
242 std::filesystem::copy_file(
hltSourceDirectory_ +
"/HltConfig.py", tmphltdir +
"/HltConfig.py");
243 std::filesystem::copy_file(
hltSourceDirectory_ +
"/fffParameters.jsn", tmphltdir +
"/fffParameters.jsn");
245 std::string optfiles[3] = {
"hltinfo",
"blacklist",
"whitelist"};
246 for (
auto& optfile : optfiles) {
248 std::filesystem::copy_file(
hltSourceDirectory_ +
"/" + optfile, tmphltdir +
"/" + optfile);
253 std::filesystem::rename(tmphltdir, hltdir);
262 if (retval != 0 && errno != EEXIST) {
264 <<
" Error checking for bu base dir -: " <<
bu_base_dir_ <<
" mkdir error:" << strerror(errno) <<
"\n";
275 std::stringstream sstp;
282 if (!
stat(defPath.c_str(), &statbuf))
283 edm::LogInfo(
"EvFDaqDirector") <<
"found JSD file in ramdisk -: " << defPath;
286 std::string defPathSuffix =
"src/EventFilter/Utilities/plugins/budef.jsd";
287 defPath =
std::string(std::getenv(
"CMSSW_BASE")) +
"/" + defPathSuffix;
288 if (
stat(defPath.c_str(), &statbuf)) {
289 defPath =
std::string(std::getenv(
"CMSSW_RELEASE_BASE")) +
"/" + defPathSuffix;
290 if (
stat(defPath.c_str(), &statbuf)) {
291 defPath = defPathSuffix;
297 DataPointDefinition::getDataPointDefinitionFor(defPath,
dpd_, &defLabel);
304 boost::system::error_code ec;
305 socket_->shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
330 "Service used for file locking arbitration and for propagating information between other EvF components");
333 desc.
addUntracked<
unsigned int>(
"runNumber", 0)->setComment(
"Run Number in ramdisk to open");
335 ->setComment(
"Use BU file service to grab input data instead of NFS file locking");
337 ->setComment(
"Allow service to discover BU address from hltd configuration");
341 ->setComment(
"Use keep alive to avoid using large number of sockets");
343 ->setComment(
"Use local lock file to synchronize appearance of index and EoLS file markers for hltd");
344 desc.
addUntracked<
unsigned int>(
"fuLockPollInterval", 2000)
345 ->setComment(
"Lock polling interval in microseconds for the input directory file lock");
347 ->setComment(
"Check Adler32 of per-process output files while micro-merging");
349 ->setComment(
"Require complete transferSystem PSet in the process configuration");
351 ->setComment(
"Selected transfer mode (choice in Lvl0 propagated as Python parameter");
352 desc.
addUntracked<
bool>(
"directorIsBU",
false)->setComment(
"BU director mode used for testing");
355 ->setComment(
"Name of merging PSet to look for merging type definitions for streams");
356 descriptions.
add(
"EvFDaqDirector", desc);
387 edm::LogWarning(
"EvFDaqDirector") <<
" Handles to check for files to delete were not set by the input source...";
394 if (it->second->lumi_ == ls) {
495 int retval =
remove(filename.c_str());
497 edm::LogError(
"EvFDaqDirector") <<
"Could not remove used file -: " << filename
498 <<
". error = " << strerror(errno);
506 uint16_t& rawHeaderSize,
508 bool& setExceptionState) {
513 int lock_attempts = 0;
514 long total_lock_attempts = 0;
520 if (stopFileCheck == 0 || stopFilePidCheck == 0) {
521 if (stopFileCheck == 0)
527 if (stopFileLS >= 0 && (
int)ls >= stopFileLS)
531 edm::LogWarning(
"EvFDaqDirector") <<
"Detected stop request from hltd. Ending run for this process after LS -: "
537 timeval ts_lockbegin;
538 gettimeofday(&ts_lockbegin,
nullptr);
540 while (retval == -1) {
549 if (lock_attempts > 5000000 || errno == 116) {
552 <<
"Stale lock file handle. Checking if run directory and fu.lock file are present" << std::endl;
554 edm::LogWarning(
"EvFDaqDirector") <<
"Unable to obtain a lock for 5 seconds. Checking if run directory and "
555 "fu.lock file are present -: errno "
556 << errno <<
":" << strerror(errno) << std::endl;
559 edm::LogWarning(
"EvFDaqDirector") <<
"Detected local EoLS for lumisection " <<
ls;
571 if (total_lock_attempts > 5 * 60000000) {
572 edm::LogError(
"EvFDaqDirector") <<
"Unable to obtain a lock for 5 minutes. Stopping polling activity.";
578 gettimeofday(&ts_lockend,
nullptr);
579 long deltat = (ts_lockend.tv_usec - ts_lockbegin.tv_usec) + (ts_lockend.tv_sec - ts_lockbegin.tv_sec) * 1000000;
581 lockWaitTime = deltat;
588 gettimeofday(&ts_lockend, 0);
592 int fu_readwritelock_fd2 = open(
fulockfile_.c_str(), O_RDWR, S_IRWXU);
593 if (fu_readwritelock_fd2 == -1)
595 <<
" create. error:" << strerror(errno);
597 FILE* fu_rw_lock_stream2 = fdopen(fu_readwritelock_fd2,
"r+");
600 if (fu_rw_lock_stream2 !=
nullptr) {
604 check = fseek(fu_rw_lock_stream2, 0, SEEK_SET);
608 fscanf(fu_rw_lock_stream2,
"%u %u", &readLs, &readIndex);
611 unsigned int currentLs = readLs;
612 bool bumpedOk =
false;
615 if (ls && ls + 1 < currentLs)
619 bumpedOk =
bumpFile(readLs, readIndex, nextFile, fsize, rawHeaderSize, stopFileLS, setExceptionState);
621 if (ls && readLs > currentLs && currentLs > ls) {
623 readLs = currentLs =
ls;
628 if (ls == 0 && readLs > currentLs) {
643 check = fseek(fu_rw_lock_stream2, 0, SEEK_SET);
645 ftruncate(fu_readwritelock_fd2, 0);
647 fprintf(fu_rw_lock_stream2,
"%u %u", readLs, readIndex + 1);
648 fflush(fu_rw_lock_stream2);
649 fsync(fu_readwritelock_fd2);
651 LogDebug(
"EvFDaqDirector") <<
"Written to file -: " << readLs <<
":" << readIndex + 1;
654 <<
"seek on fu read/write lock for updating failed with error " << strerror(errno);
655 setExceptionState =
true;
658 }
else if (currentLs < readLs) {
660 check = fseek(fu_rw_lock_stream2, 0, SEEK_SET);
662 ftruncate(fu_readwritelock_fd2, 0);
664 fprintf(fu_rw_lock_stream2,
"%u %u", readLs, readIndex);
665 fflush(fu_rw_lock_stream2);
666 fsync(fu_readwritelock_fd2);
667 LogDebug(
"EvFDaqDirector") <<
"Written to file -: " << readLs <<
":" <<
readIndex;
670 <<
"seek on fu read/write lock for updating failed with error " << strerror(errno);
671 setExceptionState =
true;
676 edm::LogError(
"EvFDaqDirector") <<
"seek on fu read/write lock for reading failed with error "
680 edm::LogError(
"EvFDaqDirector") <<
"fu read/write lock stream is invalid " << strerror(errno);
682 fclose(fu_rw_lock_stream2);
685 timeval ts_preunlock;
686 gettimeofday(&ts_preunlock, 0);
687 int locked_period_int = ts_preunlock.tv_sec - ts_lockend.tv_sec;
688 double locked_period = locked_period_int + double(ts_preunlock.tv_usec - ts_lockend.tv_usec) / 1000000;
699 edm::LogError(
"EvFDaqDirector") <<
"Error unlocking the fu.lock " << strerror(errno);
702 edm::LogDebug(
"EvFDaqDirector") <<
"Waited during lock -: " << locked_period <<
" seconds";
705 if (fileStatus ==
noFile) {
710 if (stopFileLS >= 0 && (
int)ls > stopFileLS) {
711 edm::LogInfo(
"EvFDaqDirector") <<
"Reached maximum lumisection set by hltd";
719 std::ifstream ij(BUEoLSFile);
723 if (!reader.
parse(ij, deserializeRoot)) {
724 edm::LogError(
"EvFDaqDirector") <<
"Cannot deserialize input JSON file -:" << BUEoLSFile;
738 while (!def.empty()) {
740 if (def.find(
'/') == 0)
745 if (
stat(fullpath.c_str(), &
buf) == 0) {
748 DataPointDefinition::getDataPointDefinitionFor(fullpath, &eolsDpd, &defLabel);
753 DataPointDefinition::getDataPointDefinitionFor(fullpath, &eolsDpd, &defLabel);
755 for (
unsigned int i = 0;
i < eolsDpd.
getNames().size();
i++)
756 if (eolsDpd.
getNames().at(
i) ==
"NFiles")
762 if (def.size() <= 1 || def.find(
'/') == std::string::npos) {
766 def = def.substr(def.find(
'/') + 1);
773 edm::LogError(
"EvFDaqDirector") <<
" error reading number of files from BU JSON -: " << BUEoLSFile;
776 return std::stoi(data);
783 uint16_t& rawHeaderSize,
785 bool& setExceptionState) {
797 if (maxLS >= 0 && ls > (
unsigned int)maxLS)
801 std::stringstream
ss;
802 unsigned int nextIndex =
index;
807 if (
stat(nextFileJson.c_str(), &
buf) == 0) {
809 nextFile = nextFileJson;
818 nextFile = nextFileRaw;
824 if (
stat(BUEoLSFile.c_str(), &
buf) == 0) {
826 if (
stat(nextFileJson.c_str(), &
buf) == 0) {
828 nextFile = nextFileJson;
833 nextFile = nextFileRaw;
838 if (indexFilesInLS < 0)
843 if ((
int)index < indexFilesInLS) {
846 <<
"Potential miss of index file in LS -: " << ls <<
". Missing " << nextFile <<
" because "
847 << indexFilesInLS - 1 <<
" is the highest index expected. Will not update fu.lock file";
848 setExceptionState =
true;
857 if (maxLS >= 0 && ls > (
unsigned int)maxLS)
862 if (
stat(nextFileJson.c_str(), &
buf) == 0) {
865 nextFile = nextFileJson;
870 nextFile = nextFileRaw;
882 edm::LogError(
"EvFDaqDirector") <<
"Error creating fu read/write lock stream " << strerror(errno);
884 edm::LogInfo(
"EvFDaqDirector") <<
"Initializing FU LOCK FILE";
893 open(
fulockfile_.c_str(), O_RDWR | O_CREAT, S_IRWXU | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH);
900 <<
" create:" << create <<
" error:" << strerror(errno);
906 edm::LogError(
"EvFDaqDirector") <<
"problem with opening fuwritelock file stream -: " << strerror(errno);
937 if (checkIfExists ==
false ||
stat(fuBoLS.c_str(), &
buf) != 0) {
938 int bol_fd = open(fuBoLS.c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
944 const uint32_t currentLumiSection,
947 if (currentLumiSection > 0) {
954 open(fuEoLS.c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
960 }
else if (doCreateBoLS) {
967 uint16_t& rawHeaderSize,
968 uint32_t& lsFromHeader,
969 int32_t& eventsFromHeader,
970 int64_t& fileSizeFromHeader,
976 if ((infile = ::open(rawSourcePath.c_str(), O_RDONLY)) < 0) {
979 <<
"parseFRDFileHeader - failed to open input file -: " << rawSourcePath <<
" : " << strerror(errno);
990 if ((infile = ::open(rawSourcePath.c_str(), O_RDONLY)) < 0) {
992 <<
"parseFRDFileHeader - failed to open input file -: " << rawSourcePath <<
" : " << strerror(errno);
1004 ssize_t sz_read =
::read(infile, (
char*)&fileHead, buf_sz);
1011 edm::LogError(
"EvFDaqDirector") <<
"parseFRDFileHeader - unable to read " << rawSourcePath <<
" : "
1017 if ((
size_t)sz_read < buf_sz) {
1018 edm::LogError(
"EvFDaqDirector") <<
"parseFRDFileHeader - file smaller than header: " << rawSourcePath;
1026 if (frd_version == 0) {
1028 if (requireHeader) {
1029 edm::LogError(
"EvFDaqDirector") <<
"no header or invalid version string found in:" << rawSourcePath;
1035 lseek(infile, 0, SEEK_SET);
1038 eventsFromHeader = -1;
1039 fileSizeFromHeader = -1;
1044 if (headerSizeRaw < buf_sz) {
1045 edm::LogError(
"EvFDaqDirector") <<
"inconsistent header size: " << rawSourcePath <<
" size: " << headerSizeRaw
1046 <<
" v:" << frd_version;
1054 fileSizeFromHeader = (int64_t)fileHead.
fileSize_;
1063 if ((infile = ::open(rawSourcePath.c_str(), O_RDONLY)) < 0) {
1064 edm::LogWarning(
"EvFDaqDirector") <<
"rawFileHasHeader - failed to open input file -: " << rawSourcePath <<
" : "
1071 ssize_t sz_read =
::read(infile, (
char*)&fileHead, buf_sz);
1074 edm::LogError(
"EvFDaqDirector") <<
"rawFileHasHeader - unable to read " << rawSourcePath <<
" : "
1080 if ((
size_t)sz_read < buf_sz) {
1081 edm::LogError(
"EvFDaqDirector") <<
"rawFileHasHeader - file smaller than header: " << rawSourcePath;
1091 if (frd_version > 0) {
1102 uint16_t& rawHeaderSize,
1103 int64_t& fileSizeFromHeader,
1111 size_t pos = 0, n_tokens = 0;
1112 while (n_tokens++ < 3 && (pos = jsonStem.find(
'_', pos + 1)) != std::string::npos) {
1114 std::string reducedJsonStem = jsonStem.substr(0, pos);
1116 std::ostringstream fileNameWithPID;
1118 fileNameWithPID << reducedJsonStem <<
"_pid" << std::setfill(
'0') << std::setw(5) <<
pid_ <<
".jsn";
1122 LogDebug(
"EvFDaqDirector") <<
"RAW parse -: " << rawSourcePath <<
" and JSON create " << jsonDestPath;
1126 int32_t nbEventsWrittenRaw;
1127 int64_t fileSizeFromRaw;
1129 rawSourcePath, rawFd, rawHeaderSize, lsFromRaw, nbEventsWrittenRaw, fileSizeFromRaw,
true,
true, closeFile);
1137 int oflag = O_CREAT | O_WRONLY | O_TRUNC | O_EXCL;
1138 int omode = S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH;
1139 if ((outfile = ::open(jsonDestPath.c_str(), oflag, omode)) < 0) {
1140 if (errno == EEXIST) {
1141 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFromRaw - destination file already exists -: " << jsonDestPath
1145 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFromRaw - failed to open output file -: " << jsonDestPath <<
" : "
1147 struct stat out_stat;
1148 if (
stat(jsonDestPath.c_str(), &out_stat) == 0) {
1150 <<
"grabNextJsonFromRaw - output file possibly got created with error, deleting and retry -: "
1152 if (unlink(jsonDestPath.c_str()) == -1) {
1154 <<
"grabNextJsonFromRaw - failed to remove -: " << jsonDestPath <<
" : " << strerror(errno);
1157 if ((outfile = ::open(jsonDestPath.c_str(), oflag, omode)) < 0) {
1158 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFromRaw - failed to open output file (on retry) -: "
1159 << jsonDestPath <<
" : " << strerror(errno);
1164 std::stringstream
ss;
1165 ss <<
"{\"data\":[" << nbEventsWrittenRaw <<
"," << fileSizeFromRaw <<
",\"" << rawSourcePath <<
"\"]}";
1168 if (::
write(outfile, sstr.c_str(), sstr.size()) < 0) {
1169 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFromRaw - failed to write to output file file -: " << jsonDestPath
1170 <<
" : " << strerror(errno);
1174 if (serverLS && serverLS != lsFromRaw)
1175 edm::LogWarning(
"EvFDaqDirector") <<
"grabNextJsonFromRaw - mismatch in expected (server) LS " << serverLS
1176 <<
" and raw file header LS " << lsFromRaw;
1178 fileSizeFromHeader = fileSizeFromRaw;
1179 return nbEventsWrittenRaw;
1184 int64_t& fileSizeFromJson,
1189 std::ostringstream fileNameWithPID;
1190 fileNameWithPID <<
std::filesystem::path(rawSourcePath).stem().string() <<
"_pid" << std::setfill(
'0')
1191 << std::setw(5) <<
pid_ <<
".jsn";
1196 LogDebug(
"EvFDaqDirector") <<
"JSON rename -: " << jsonSourcePath <<
" to " << jsonDestPath;
1200 if ((infile = ::open(jsonSourcePath.c_str(), O_RDONLY)) < 0) {
1201 edm::LogWarning(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to open input file -: " << jsonSourcePath <<
" : "
1203 if ((infile = ::open(jsonSourcePath.c_str(), O_RDONLY)) < 0) {
1204 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to open input file (on retry) -: "
1205 << jsonSourcePath <<
" : " << strerror(errno);
1206 if (errno == ENOENT)
1212 int oflag = O_CREAT | O_WRONLY | O_TRUNC | O_EXCL;
1213 int omode = S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH;
1214 if ((
outfile = ::open(jsonDestPath.c_str(), oflag, omode)) < 0) {
1215 if (errno == EEXIST) {
1216 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - destination file already exists -: " << jsonDestPath
1221 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to open output file -: " << jsonDestPath <<
" : "
1223 struct stat out_stat;
1224 if (
stat(jsonDestPath.c_str(), &out_stat) == 0) {
1226 <<
"grabNextJsonFile - output file possibly got created with error, deleting and retry -: " << jsonDestPath;
1227 if (unlink(jsonDestPath.c_str()) == -1) {
1229 <<
"grabNextJsonFile - failed to remove -: " << jsonDestPath <<
" : " << strerror(errno);
1232 if ((
outfile = ::open(jsonDestPath.c_str(), oflag, omode)) < 0) {
1233 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to open output file (on retry) -: "
1234 << jsonDestPath <<
" : " << strerror(errno);
1240 const std::size_t buf_sz = 512;
1241 std::size_t tot_written = 0;
1242 std::unique_ptr<char>
buf(
new char[buf_sz]);
1244 ssize_t sz, sz_read = 1, sz_write;
1245 while (sz_read > 0 && (sz_read = ::
read(infile, buf.get(), buf_sz)) > 0) {
1248 assert(sz_read - sz_write > 0);
1249 if ((sz = ::
write(
outfile, buf.get() + sz_write, sz_read - sz_write)) < 0) {
1256 }
while (sz_write < sz_read);
1261 if (tot_written > 0) {
1263 if (unlink(jsonSourcePath.c_str()) == -1) {
1264 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to remove -: " << jsonSourcePath <<
" : "
1269 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - failed to copy json file or file was empty -: "
1278 std::stringstream
ss;
1281 if (tot_written <= buf_sz) {
1282 result = reader.
parse(buf.get(), deserializeRoot);
1286 std::ifstream ij(jsonDestPath);
1288 }
catch (std::filesystem::filesystem_error
const& ex) {
1289 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - FILESYSTEM ERROR CAUGHT -: " << ex.what();
1292 result = reader.
parse(ss.str(), deserializeRoot);
1295 if (tot_written <= buf_sz)
1297 edm::LogError(
"EvFDaqDirector") <<
"Failed to deserialize JSON file -: " << jsonDestPath <<
"\nERROR:\n"
1320 <<
"grabNextJsonFile - "
1321 <<
" error reading number of events from BU JSON; No input value. data -: " <<
data;
1327 fileSizeFromJson = -1;
1333 fileSizeFromJson = std::stol(dataSize);
1336 edm::LogWarning(
"EvFDaqDirector") <<
"grabNextJsonFile - error parsing number of Bytes from BU JSON. "
1337 <<
"Input value is -: " << dataSize;
1343 return std::stoi(data);
1344 }
catch (
const std::out_of_range&
e) {
1345 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - error parsing number of events from BU JSON. "
1346 <<
"Input value is -: " <<
data;
1347 }
catch (
const std::invalid_argument& e) {
1348 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - argument error parsing events from BU JSON. "
1349 <<
"Input value is -: " <<
data;
1350 }
catch (std::runtime_error
const& e) {
1352 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - std::runtime_error exception -: " << e.what();
1356 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - SOME OTHER EXCEPTION OCCURED! -: " << e.what();
1359 edm::LogError(
"EvFDaqDirector") <<
"grabNextJsonFile - SOME OTHER EXCEPTION OCCURED!";
1372 std::ostringstream fileNameWithPID;
1373 fileNameWithPID << jsonSourcePath.stem().string() <<
"_pid" << std::setfill(
'0') << std::setw(5) << getpid()
1375 jsonDestPath /= fileNameWithPID.str();
1377 LogDebug(
"EvFDaqDirector") <<
"JSON rename -: " << jsonSourcePath <<
" to " << jsonDestPath;
1380 }
catch (std::filesystem::filesystem_error
const& ex) {
1382 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
1392 }
catch (std::filesystem::filesystem_error
const& ex) {
1394 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
1397 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile std::exception CAUGHT -: " << ex.what();
1400 std::ifstream ij(jsonDestPath);
1404 std::stringstream
ss;
1406 if (!reader.
parse(ss.str(), deserializeRoot)) {
1407 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile Failed to deserialize JSON file -: " << jsonDestPath
1411 throw std::runtime_error(
"Cannot deserialize input JSON file");
1431 <<
" error reading number of events from BU JSON -: No input value " <<
data;
1433 return std::stoi(data);
1434 }
catch (std::filesystem::filesystem_error
const& ex) {
1437 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile BOOST FILESYSTEM ERROR CAUGHT -: " << ex.what();
1438 }
catch (std::runtime_error
const&
e) {
1441 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile runtime Exception -: " << e.what();
1442 }
catch (
const std::out_of_range&) {
1443 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile error parsing number of events from BU JSON. "
1444 <<
"Input value is -: " <<
data;
1445 }
catch (
const std::invalid_argument&) {
1446 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile argument error parsing events from BU JSON. "
1447 <<
"Input value is -: " <<
data;
1451 edm::LogError(
"EvFDaqDirector") <<
"grabNextFile SOME OTHER EXCEPTION OCCURED!!!! -: " << e.what();
1460 uint32_t& closedServerLS,
1466 serverError =
false;
1468 boost::system::error_code ec;
1476 edm::LogWarning(
"EvFDaqDirector") <<
"boost::asio::connect error -:" << ec;
1482 boost::asio::streambuf request;
1483 std::ostream request_stream(&request);
1486 std::stringstream spath;
1487 spath << path <<
"&stopls=" << maxLS;
1491 request_stream <<
"GET " << path <<
" HTTP/1.1\r\n";
1493 request_stream <<
"Accept: */*\r\n";
1494 request_stream <<
"Connection: keep-alive\r\n\r\n";
1499 edm::LogInfo(
"EvFDaqDirector") <<
"reconnecting socket on received connection_reset";
1503 edm::LogWarning(
"EvFDaqDirector") <<
"boost::asio::connect error -:" << ec;
1509 edm::LogWarning(
"EvFDaqDirector") <<
"boost::asio::write error -:" << ec;
1515 boost::asio::read_until(*
socket_, response,
"\r\n", ec);
1517 edm::LogWarning(
"EvFDaqDirector") <<
"boost::asio::read_until error -:" << ec;
1522 std::istream response_stream(&response);
1525 response_stream >> http_version;
1527 response_stream >> serverHttpStatus;
1530 std::getline(response_stream, status_message);
1531 if (!response_stream || http_version.substr(0, 5) !=
"HTTP/") {
1536 if (serverHttpStatus != 200) {
1537 edm::LogWarning(
"EvFDaqDirector") <<
"Response returned with status code " << serverHttpStatus;
1544 while (std::getline(response_stream, header) && header !=
"\r") {
1548 std::map<std::string, std::string> serverMap;
1549 while (std::getline(response_stream, fileInfo) && fileInfo !=
"\r") {
1550 auto pos = fileInfo.find(
'=');
1551 if (pos == std::string::npos)
1553 auto stitle = fileInfo.substr(0, pos);
1554 auto svalue = fileInfo.substr(pos + 1);
1555 serverMap[stitle] = svalue;
1562 auto server_run = serverMap.find(
"runnumber");
1563 assert(server_run != serverMap.end());
1566 auto server_state = serverMap.find(
"state");
1567 assert(server_state != serverMap.end());
1569 auto server_eols = serverMap.find(
"lasteols");
1570 assert(server_eols != serverMap.end());
1572 auto server_ls = serverMap.find(
"lumisection");
1574 int version_maj = 1;
1575 int version_min = 0;
1576 int version_rev = 0;
1581 auto res = sscanf(s_ptr,
"%d.%d.%d", &version_maj, &version_min, &version_rev);
1583 res = sscanf(s_ptr,
"%d.%d", &version_maj, &version_min);
1585 res = sscanf(s_ptr,
"%d", &version_maj);
1595 if (server_ls != serverMap.end())
1598 serverLS = closedServerLS + 1;
1601 if (s_state ==
"STARTING")
1603 auto server_file = serverMap.find(
"file");
1604 assert(server_file == serverMap.end());
1606 edm::LogInfo(
"EvFDaqDirector") <<
"Got STARTING notification with last EOLS " << closedServerLS;
1607 }
else if (s_state ==
"READY") {
1608 auto server_file = serverMap.find(
"file");
1609 if (server_file == serverMap.end()) {
1611 if (serverLS <= closedServerLS)
1612 serverLS = closedServerLS + 1;
1615 <<
"Got READY notification with last EOLS " << closedServerLS <<
" and no new file";
1619 auto server_fileprefix = serverMap.find(
"fileprefix");
1621 if (server_fileprefix != serverMap.end()) {
1622 auto pssize = server_fileprefix->second.size();
1623 if (pssize > 1 && server_fileprefix->second[0] ==
'"' && server_fileprefix->second[pssize - 1] ==
'"')
1624 fileprefix = server_fileprefix->second.substr(1, pssize - 2);
1626 fileprefix = server_fileprefix->second;
1630 auto ssize = server_file->second.size();
1631 if (ssize > 1 && server_file->second[0] ==
'"' && server_file->second[ssize - 1] ==
'"')
1632 filestem = server_file->second.substr(1, ssize - 2);
1634 filestem = server_file->second;
1635 assert(!filestem.empty());
1636 if (version_maj > 1) {
1637 nextFileRaw =
bu_run_dir_ +
"/" + fileprefix + filestem +
".raw";
1638 filestem =
bu_run_dir_ +
"/" + fileprefix + filestem;
1642 nextFileRaw =
bu_run_dir_ +
"/" + filestem +
".raw";
1643 filestem =
bu_run_dir_ +
"/" + fileprefix + filestem;
1644 nextFileJson = filestem +
".jsn";
1648 edm::LogInfo(
"EvFDaqDirector") <<
"Got READY notification with last EOLS " << closedServerLS <<
" new LS "
1649 << serverLS <<
" file:" << filestem;
1651 }
else if (s_state ==
"EOLS") {
1652 serverLS = closedServerLS + 1;
1653 edm::LogInfo(
"EvFDaqDirector") <<
"Got EOLS notification with last EOLS " << closedServerLS;
1655 }
else if (s_state ==
"EOR") {
1657 edm::LogInfo(
"EvFDaqDirector") <<
"Got EOR notification with last EOLS " << closedServerLS;
1659 }
else if (s_state ==
"NORUN") {
1660 auto err_msg = serverMap.find(
"errormessage");
1661 if (err_msg != serverMap.end())
1662 edm::LogWarning(
"EvFDaqDirector") <<
"Server NORUN -:" << server_state->second <<
" : " << err_msg->second;
1667 }
else if (s_state ==
"ERROR") {
1668 auto err_msg = serverMap.find(
"errormessage");
1669 if (err_msg != serverMap.end())
1670 edm::LogWarning(
"EvFDaqDirector") <<
"Server error -:" << server_state->second <<
" : " << err_msg->second;
1672 edm::LogWarning(
"EvFDaqDirector") <<
"Server error -:" << server_state->second;
1676 edm::LogWarning(
"EvFDaqDirector") <<
"Unknown Server state -:" << server_state->second;
1685 if (ec != boost::asio::error::eof) {
1686 edm::LogWarning(
"EvFDaqDirector") <<
"boost::asio::read_until error -:" << ec;
1700 socket_->shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
1702 edm::LogWarning(
"EvFDaqDirector") <<
"socket shutdown error -:" << ec;
1727 uint16_t& rawHeaderSize,
1728 int32_t& serverEventsInNewFile,
1729 int64_t& fileSizeFromMetadata,
1738 int stopFileLS = -1;
1741 if (stopFileCheck == 0 || stopFilePidCheck == 0) {
1742 if (stopFileCheck == 0)
1748 if (stopFileLS >= 0 && (
int)ls >= stopFileLS)
1752 edm::LogWarning(
"EvFDaqDirector") <<
"Detected stop request from hltd. Ending run for this process after LS -: "
1766 timeval ts_lockbegin;
1767 gettimeofday(&ts_lockbegin,
nullptr);
1770 uint32_t serverLS, closedServerLS;
1771 unsigned int serverHttpStatus;
1778 int maxLS = stopFileLS < 0 ? -1 :
std::max(stopFileLS, (
int)currentLumiSection);
1779 bool rawHeader =
false;
1781 serverHttpStatus, serverError, serverLS, closedServerLS, nextFileJson, nextFileRaw, rawHeader, maxLS);
1791 if (currentLumiSection == 0) {
1797 if (closedServerLS >= currentLumiSection) {
1799 for (uint32_t
i =
std::max(currentLumiSection, 1U);
i <= closedServerLS;
i++)
1804 bool fileFound =
true;
1808 serverEventsInNewFile =
1809 grabNextJsonFromRaw(nextFileRaw, rawFd, rawHeaderSize, fileSizeFromMetadata, fileFound, serverLS,
false);
1811 serverEventsInNewFile =
grabNextJsonFile(nextFileJson, nextFileRaw, fileSizeFromMetadata, fileFound);
1814 if (serverEventsInNewFile < 0 && rawFd != -1) {
1835 if (currentLumiSection == 0) {
1845 if (closedServerLS >= currentLumiSection) {
1848 for (uint32_t
i =
std::max(currentLumiSection, 1U);
i <= closedServerLS;
i++)
1855 ls =
std::max(currentLumiSection, serverLS);
1856 else if (fileStatus ==
newFile) {
1859 }
else if (fileStatus ==
noFile) {
1863 edm::LogWarning(
"EvFDaqDirector") <<
"Server reported LS " << serverLS
1864 <<
" which is smaller than currently open LS " << ls <<
". Ignoring response";
1876 if (!std::filesystem::is_directory(openPath)) {
1877 LogDebug(
"EvFDaqDirector") <<
"<open> FU dir not found. Creating... -:" << openPath.string();
1878 std::filesystem::create_directories(openPath);
1883 std::ifstream ij(file);
1887 if (!reader.
parse(ij, deserializeRoot)) {
1888 edm::LogError(
"EvFDaqDirector") <<
"Cannot deserialize input JSON file -:" <<
file;
1892 int ret = deserializeRoot.
get(
"lastLS",
"").
asInt();
1900 unsigned int lscount = 1;
1902 std::stringstream
ss;
1903 ss << fileprefix << std::setfill(
'0') << std::setw(4) << lscount <<
"_EoLS.jsn";
1904 fullpath = ss.str();
1906 }
while (
stat(fullpath.c_str(), &
buf) == 0);
1921 std::vector<std::string>
destinations = tsPset.getParameter<std::vector<std::string>>(
"destinations");
1922 for (
auto&
dest : destinations)
1923 destinationsVal.append(
dest);
1924 (*transferSystemJson_)[
"destinations"] = destinationsVal;
1927 std::vector<std::string> modes = tsPset.getParameter<std::vector<std::string>>(
"transferModes");
1928 for (
auto&
mode : modes)
1930 (*transferSystemJson_)[
"transferModes"] = modesVal;
1932 for (
auto psKeyItr = tsPset.psetTable().begin(); psKeyItr != tsPset.psetTable().end(); ++psKeyItr) {
1933 if (psKeyItr->first !=
"destinations" && psKeyItr->first !=
"transferModes") {
1936 for (
auto&
mode : modes) {
1938 if (!streamDef.
existsAs<std::vector<std::string>>(
mode,
true))
1940 <<
" Missing transfer system specification for -:" << psKeyItr->first <<
" (transferMode " <<
mode
1942 std::vector<std::string> streamDestinations = streamDef.
getParameter<std::vector<std::string>>(
mode);
1946 if (streamDestinations.empty())
1948 <<
" Missing transter system destination(s) for -: " << psKeyItr->first <<
", mode:" <<
mode;
1950 for (
auto& sdest : streamDestinations) {
1951 bool sDestValid =
false;
1952 sDestsValue.append(sdest);
1953 for (
auto&
dest : destinations) {
1959 <<
" Invalid transter system destination specified for -: " << psKeyItr->first <<
", mode:" <<
mode
1960 <<
", dest:" << sdest;
1962 streamVal[
mode] = sDestsValue;
1964 (*transferSystemJson_)[psKeyItr->first] = streamVal;
1969 throw cms::Exception(
"EvFDaqDirector") <<
"transferSystem PSet not found";
1976 streamRequestName =
stream;
1978 std::stringstream
msg;
1979 msg <<
"Transfer system mode definitions missing for -: " <<
stream;
1983 edm::LogWarning(
"EvFDaqDirector") << msg.str() <<
" (permissive mode)";
1990 <<
"Selected mode string is not provided as DaqDirector parameter."
1991 <<
"Switch on requireTSPSet parameter to enforce this requirement. Setting mode to empty string.";
1995 throw cms::Exception(
"EvFDaqDirector") <<
"Selected mode string is not provided as DaqDirector parameter.";
1999 std::stringstream
msg;
2000 msg <<
"Selected transfer mode " <<
selectedTransferMode_ <<
" is not specified for stream " << streamRequestName;
2004 edm::LogWarning(
"EvFDaqDirector") << msg.str() <<
" (permissive mode)";
2014 ret += (*it).asString();
2029 tbb::concurrent_hash_map<std::string, std::string>::accessor ac;
2031 ac->second = streamType;
2038 tbb::concurrent_hash_map<std::string, std::string>::const_accessor search_ac;
2040 return search_ac->second;
2042 edm::LogInfo(
"EvFDaqDirector") <<
" No merging type specified for stream " << stream <<
". Using default value";
2044 tbb::concurrent_hash_map<std::string, std::string>::accessor ac;
2046 ac->second = defaultName;
2053 int proc_flag_fd = open(proc_flag.c_str(), O_RDWR | O_CREAT, S_IRWXU | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH);
2054 close(proc_flag_fd);
2057 struct flock
EvFDaqDirector::make_flock(short type, short whence, off_t start, off_t len, pid_t pid) {
unsigned int maxNumberOfThreads() const
std::string getStreamDestinations(std::string const &stream) const
Value get(UInt index, const Value &defaultValue) const
std::vector< std::string > & getData()
int def(FILE *, FILE *, int)
tuple ret
prodAgent to be discontinued
std::string protocolBufferHistogramFileNameWithInstance(const unsigned int run, const unsigned int ls, std::string const &stream, std::string const &instance)
std::string bolsFileName(const unsigned int run, const unsigned int ls)
std::string streamerDataChecksumFileNameWithInstance(const unsigned int run, const unsigned int ls, std::string const &stream, std::string const &instance)
std::string getMergedProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
void watchPreallocate(Preallocate::slot_type const &iSlot)
const_iterator begin() const
bool existsAs(std::string const ¶meterName, bool trackiness=true) const
checks if a parameter exists as a given type
boost::asio::io_service io_service_
bool rawFileHasHeader(std::string const &rawSourcePath, uint16_t &rawHeaderSize)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
std::string getMergedDatChecksumFilePath(const unsigned int ls, std::string const &stream) const
std::shared_ptr< Json::Value > transferSystemJson_
jsoncollector::DataPointDefinition * dpd_
void accumulateFileSize(unsigned int lumi, unsigned long fileSize)
std::unique_ptr< boost::asio::ip::tcp::resolver > resolver_
void watchPreGlobalEndLumi(PreGlobalEndLumi::slot_type const &iSlot)
std::string getInitFilePath(std::string const &stream) const
std::string getMergedRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string inputRawFileName(const unsigned int run, const unsigned int ls, const unsigned int index)
ParameterSet const & getParameterSet(ParameterSetID const &id)
pthread_mutex_t init_lock_
LuminosityBlockID const & luminosityBlockID() const
std::string getProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string getRawFilePath(const unsigned int ls, const unsigned int index) const
std::string getOpenInitFilePath(std::string const &stream) const
std::string getOpenRawFilePath(const unsigned int ls, const unsigned int index) const
Value & append(const Value &value)
Append value to array at the end.
void createProcessingNotificationMaybe() const
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 parse(const std::string &document, Value &root, bool collectComments=true)
Read a Value from a JSON document.
std::string getEoLSFilePathOnBU(const unsigned int ls) const
Log< level::Error, false > LogError
uint32_t T const *__restrict__ uint32_t const *__restrict__ int32_t int Histo::index_type cudaStream_t stream
std::string getEoRFilePath() const
bool fileBrokerHostFromCfg_
std::vector< std::string > const & getNames() const
unsigned long previousFileSize_
std::unique_ptr< boost::asio::ip::tcp::resolver::iterator > endpoint_iterator_
void createBoLSFile(const uint32_t lumiSection, bool checkIfExists) const
ParameterSetID const & parameterSetID() const
void createRunOpendirMaybe()
unsigned int maxNumberOfStreams() const
std::string hltSourceDirectory_
unsigned int startFromLS_
std::string getOpenProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
void setComment(std::string const &value)
std::mutex * fileDeleteLockPtr_
std::string mergeTypePset_
std::string streamerDataFileNameWithInstance(const unsigned int run, const unsigned int ls, std::string const &stream, std::string const &instance)
std::string getMergedDatFilePath(const unsigned int ls, std::string const &stream) const
std::unique_ptr< boost::asio::ip::tcp::socket > socket_
std::string getStreamMergeType(std::string const &stream, MergeType defaultType)
std::string getOpenOutputJsonFilePath(const unsigned int ls, std::string const &stream) const
tbb::concurrent_hash_map< std::string, std::string > mergeTypeMap_
std::string getOpenRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string getRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string getOpenDatFilePath(const unsigned int ls, std::string const &stream) const
std::string inputJsonFileName(const unsigned int run, const unsigned int ls, const unsigned int index)
std::string stopFilePath_
void tryInitializeFuLockFile()
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)
void removeFile(unsigned int ls, unsigned int index)
unsigned int stop_ls_override_
int grabNextJsonFileAndUnlock(std::filesystem::path const &jsonSourcePath)
std::string selectedTransferMode_
std::string streamerJsonFileNameWithPid(const unsigned int run, const unsigned int ls, std::string const &stream)
std::string input_throttled_file_
std::string getOpenInputJsonFilePath(const unsigned int ls, const unsigned int index) const
std::string eorFileName(const unsigned int run)
int readLastLSEntry(std::string const &file)
std::unique_ptr< boost::asio::ip::tcp::resolver::query > query_
std::string stopFilePathPid_
unsigned int eolsNFilesIndex_
std::string & baseRunDir()
std::string getDatFilePath(const unsigned int ls, std::string const &stream) const
void preBeginJob(edm::PathsAndConsumesOfModulesBase const &, edm::ProcessContext const &)
void watchPreGlobalBeginRun(PreGlobalBeginRun::slot_type const &iSlot)
std::string getOutputJsonFilePath(const unsigned int ls, std::string const &stream) const
Log< level::Info, false > LogInfo
void openFULockfileStream(bool create)
int getNFilesFromEoLS(std::string BUEoLSFile)
FileStatus updateFuLock(unsigned int &ls, std::string &nextFile, uint32_t &fsize, uint16_t &rawHeaderSize, uint64_t &lockWaitTime, bool &setExceptionState)
void preBeginRun(edm::GlobalContext const &globalContext)
std::string rootHistogramFileNameWithPid(const unsigned int run, const unsigned int ls, std::string const &stream)
int grabNextJsonFromRaw(std::string const &rawSourcePath, int &rawFd, uint16_t &rawHeaderSize, int64_t &fileSizeFromHeader, bool &fileFound, uint32_t serverLS, bool closeFile)
unsigned int getLumisectionToStart() const
std::string initFileNameWithPid(const unsigned int run, const unsigned int ls, std::string const &stream)
unsigned long long uint64_t
void checkMergeTypePSet(edm::ProcessContext const &pc)
ParameterSet const & getParameterSet(std::string const &) const
void preGlobalEndLumi(edm::GlobalContext const &globalContext)
void deserialize(Json::Value &root) override
bool bumpFile(unsigned int &ls, unsigned int &index, std::string &nextFile, uint32_t &fsize, uint16_t &rawHeaderSize, int maxLS, bool &setExceptionState)
T getParameter(std::string const &) const
void watchPostGlobalEndRun(PostGlobalEndRun::slot_type const &iSlot)
LuminosityBlockNumber_t luminosityBlock() const
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::string & getDefinition()
evf::FastMonitoringService * fms_
void watchPreBeginJob(PreBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
std::string rootHistogramFileNameWithInstance(const unsigned int run, const unsigned int ls, std::string const &stream, std::string const &instance)
std::list< std::pair< int, std::unique_ptr< InputFile > > > * filesToDeletePtr_
std::string findHighestRunDir()
std::string getBoLSFilePathOnFU(const unsigned int ls) const
char data[epos_bytes_allocation]
bool fileBrokerUseLocalLock_
void postEndRun(edm::GlobalContext const &globalContext)
Unserialize a JSON document into a Value.
static const std::vector< std::string > MergeTypeNames_
int grabNextJsonFile(std::string const &jsonSourcePath, std::string const &rawSourcePath, int64_t &fileSizeFromJson, bool &fileFound)
const_iterator end() const
void checkTransferSystemPSet(edm::ProcessContext const &pc)
std::string fileBrokerPort_
std::string getEoLSFilePathOnFU(const unsigned int ls) const
void createLumiSectionFiles(const uint32_t lumiSection, const uint32_t currentLumiSection, bool doCreateBoLS, bool doCreateEoLS)
EvFDaqDirector::FileStatus contactFileBroker(unsigned int &serverHttpStatus, bool &serverState, uint32_t &serverLS, uint32_t &closedServerLS, std::string &nextFileJson, std::string &nextFileRaw, bool &rawHeader, int maxLS)
void preallocate(edm::service::SystemBounds const &bounds)
Log< level::Warning, false > LogWarning
Iterator for object and array value.
std::string getInputJsonFilePath(const unsigned int ls, const unsigned int index) const
bool fileBrokerKeepAlive_
std::string getRunOpenDirPath() const
std::string fileBrokerHost_
std::string protocolBufferHistogramFileNameWithPid(const unsigned int run, const unsigned int ls, std::string const &stream)
unsigned int fuLockPollInterval_
std::string getFormatedErrorMessages() const
Returns a user friendly string that list errors in the parsed document.
std::string getFFFParamsFilePathOnBU() const
std::string eolsFileName(const unsigned int run, const unsigned int ls)
std::string streamerDataFileNameWithPid(const unsigned int run, const unsigned int ls, std::string const &stream)
std::string getEoRFilePathOnFU() const
std::string bu_run_open_dir_
array value (ordered list)