39 template <
typename S,
typename T>
41 tinyxml2::XMLDocument
doc;
42 if (
f.fileHasBeenClosed) {
43 os <<
"\n<State Value=\"closed\"/>";
45 os <<
"\n<State Value=\"open\"/>";
47 os <<
"\n<LFN>" <<
doc.NewText(
f.logicalFileName.c_str())->
Value() <<
"</LFN>";
48 os <<
"\n<PFN>" <<
doc.NewText(
f.physicalFileName.c_str())->
Value() <<
"</PFN>";
49 os <<
"\n<Catalog>" <<
doc.NewText(
f.catalog.c_str())->
Value() <<
"</Catalog>";
50 os <<
"\n<ModuleLabel>" <<
doc.NewText(
f.moduleLabel.c_str())->
Value() <<
"</ModuleLabel>";
51 os <<
"\n<GUID>" <<
f.guid <<
"</GUID>";
53 for (
auto const&
branch :
f.branchNames) {
54 os <<
"\n <Branch>" <<
doc.NewText(
branch.c_str())->
Value() <<
"</Branch>";
57 os <<
"\n</Branches>";
67 tinyxml2::XMLDocument
doc;
68 os <<
"\n<InputFile>";
70 os <<
"\n<InputType>" <<
f.inputType <<
"</InputType>";
71 os <<
"\n<InputSourceClass>" <<
doc.NewText(
f.inputSourceClassName.c_str())->
Value() <<
"</InputSourceClass>";
72 os <<
"\n<EventsRead>" <<
f.numEventsRead <<
"</EventsRead>";
78 tinyxml2::XMLDocument
doc;
80 os <<
"\n<OutputModuleClass>" <<
doc.NewText(
f.outputModuleClassName.c_str())->
Value() <<
"</OutputModuleClass>";
81 os <<
"\n<TotalEvents>" <<
f.numEventsWritten <<
"</TotalEvents>\n";
82 os <<
"\n<DataType>" <<
doc.NewText(
f.dataType.c_str())->
Value() <<
"</DataType>\n";
83 os <<
"\n<BranchHash>" <<
doc.NewText(
f.branchHash.c_str())->
Value() <<
"</BranchHash>\n";
89 os <<
"\n<Run ID=\"" <<
rep.runNumber <<
"\">\n";
91 for (
auto const& il :
rep.lumiSectionsToNEvents) {
93 os <<
" <LumiSection ID=\"" << il.first <<
"\"/>\n";
96 os <<
" <LumiSection ID=\"" << il.first <<
"\" NEvents=\"" << il.second <<
"\"/>\n";
112 <<
t <<
" but no matching input file is found\n";
118 <<
"Access reported for input file with token " <<
t <<
" but no matching input file is found\n";
124 <<
"Access reported for input file with token " <<
t <<
" after this file has been closed.\n" 125 <<
"File record follows:\n" 132 if (
t >= outputFiles_.size()) {
134 <<
"Access reported for output file with token " <<
t <<
" but no matching output file is found\n";
136 if (outputFiles_[
t].fileHasBeenClosed) {
138 <<
"Access reported for output file with token " <<
t <<
" after this file has been closed.\n" 139 <<
"File record follows:\n" 140 << outputFiles_[
t] <<
'\n';
142 return outputFiles_[
t];
155 outputFile.contributingInputsSecSource.push_back(
t);
172 for (
auto const& runReport :
f.runReports) {
173 *ost_ << runReport.second;
175 *ost_ <<
"\n</Runs>\n";
176 *ost_ <<
"</InputFile>\n";
196 tinyxml2::XMLDocument
doc;
202 for (
auto const& runReport :
f.runReports) {
203 *ost_ << runReport.second;
205 *ost_ <<
"\n</Runs>\n";
207 *ost_ <<
"\n<Inputs>";
208 for (
auto token :
f.contributingInputs) {
210 *ost_ <<
"\n<Input>";
215 *ost_ <<
"\n</Input>";
216 doc.DeleteChildren();
218 for (
auto token :
f.contributingInputsSecSource) {
220 *ost_ <<
"\n<Input>";
225 *ost_ <<
"\n</Input>";
226 doc.DeleteChildren();
228 *ost_ <<
"\n</Inputs>";
229 *ost_ <<
"\n</File>\n";
238 for (
auto const&
inputFile : inputFiles_) {
243 for (
auto const&
inputFile : inputFilesSecSource_) {
256 auto& theMap = outputFiles_.at(
token).runReports;
257 std::map<RunNumber, RunReport>::iterator iter(theMap.lower_bound(
runNumber));
258 if (iter == theMap.end() ||
runNumber < iter->first) {
266 std::map<RunNumber, RunReport>& theMap =
inputFile.runReports;
267 std::map<RunNumber, RunReport>::iterator iter(theMap.lower_bound(
runNumber));
268 if (iter == theMap.end() ||
runNumber < iter->first) {
277 unsigned int lumiSect,
279 auto& theMap = outputFiles_.at(
token).runReports;
280 std::map<RunNumber, RunReport>::iterator iter(theMap.lower_bound(
runNumber));
281 if (iter == theMap.end() ||
runNumber < iter->first) {
284 iter->second.lumiSectionsToNEvents[lumiSect] +=
nEvents;
291 std::map<RunNumber, RunReport>& theMap =
inputFile.runReports;
292 std::map<RunNumber, RunReport>::iterator iter(theMap.lower_bound(
runNumber));
293 if (iter == theMap.end() ||
runNumber < iter->first) {
308 *(
impl_->ost_) <<
"</FrameworkJobReport>\n" << std::flush;
316 *(
impl_->ost_) <<
"</FrameworkJobReport>\n" << std::flush;
326 *(
impl_->ost_) <<
"<FrameworkJobReport>\n";
343 if (inputType ==
"mixingFiles") {
347 newToken = itr -
impl_->inputFilesSecSource_.begin();
349 if (inputType ==
"secondaryFiles") {
352 impl_->inputFiles_.emplace_back();
353 newFile = &
impl_->inputFiles_.back();
354 newToken =
impl_->inputFiles_.size() - 1;
358 impl_->lastOpenedPrimaryInputFile_ =
impl_->inputFiles_.size() - 1;
366 newFile->
guid = guid;
373 impl_->insertInputForOutputs(theInputType, newToken);
389 f.fileHasBeenClosed =
true;
408 auto itr =
impl_->outputFiles_.emplace_back();
411 r.logicalFileName = logicalFileName;
412 r.physicalFileName = physicalFileName;
414 r.outputModuleClassName = outputModuleClassName;
418 r.branchHash = branchHash;
419 r.numEventsWritten = 0;
421 r.fileHasBeenClosed =
false;
426 if (!
impl_->inputFiles_[
i].fileHasBeenClosed) {
427 r.contributingInputs.push_back(
i);
432 if (!
impl_->inputFilesSecSource_[
i].fileHasBeenClosed) {
433 r.contributingInputsSecSource.push_back(
i);
436 return itr -
impl_->outputFiles_.begin();
441 ++
f.numEventsWritten;
446 f.fileHasBeenClosed =
true;
448 impl_->writeOutputFile(
f);
457 msg <<
"<SkippedEvent Run=\"" <<
run <<
"\"";
458 msg <<
" Event=\"" <<
event <<
"\" />\n";
468 f.fastCopyingInputs.insert(std::make_pair(
inputFileName, fastCopying));
473 unsigned int lumiSectId,
479 impl_->associateInputLumiSection(
run, lumiSectId);
487 tinyxml2::XMLDocument
doc;
492 msg <<
"<AnalysisFile>\n" 493 <<
" <FileName>" <<
doc.NewText(
fileName.c_str())->
Value() <<
"</FileName>\n";
495 typedef std::map<std::string, std::string>::const_iterator const_iterator;
496 for (const_iterator
pos = fileData.begin(), posEnd = fileData.end();
pos != posEnd; ++
pos) {
497 msg <<
" <" <<
pos->first <<
" Value=\"" <<
pos->second <<
"\" />" 500 msg <<
"</AnalysisFile>\n";
511 msg <<
"<FrameworkError ExitStatus=\"" << exitCode <<
"\" Type=\"" << shortDesc <<
"\" >\n";
512 msg <<
"<![CDATA[\n" << longDesc <<
"\n]]>\n";
513 msg <<
"</FrameworkError>\n";
522 tinyxml2::XMLDocument
doc;
523 tinyxml2::XMLPrinter printer;
524 tinyxml2::XMLElement*
skipped =
doc.NewElement(
"SkippedFile");
525 skipped->SetAttribute(
"Pfn", pfn.c_str());
526 skipped->SetAttribute(
"Lfn", lfn.c_str());
530 msg << printer.CStr();
539 tinyxml2::XMLDocument
doc;
540 tinyxml2::XMLPrinter printer;
541 tinyxml2::XMLElement*
fallback =
doc.NewElement(
"FallbackAttempt");
542 fallback->SetAttribute(
"Pfn", pfn.c_str());
543 fallback->SetAttribute(
"Lfn", lfn.c_str());
547 msg << printer.CStr();
548 msg <<
"<![CDATA[\n" <<
err <<
"\n]]>\n";
558 msg <<
"<MemoryService>\n";
560 typedef std::vector<std::string>::const_iterator const_iterator;
561 for (const_iterator
pos = memoryData.begin(), posEnd = memoryData.end();
pos != posEnd; ++
pos) {
564 msg <<
"</MemoryService>\n";
573 msg <<
"<MessageSummary>\n";
574 typedef std::map<std::string, double>::const_iterator const_iterator;
575 for (const_iterator
pos = messageData.begin(), posEnd = messageData.end();
pos != posEnd; ++
pos) {
576 msg <<
" <" <<
pos->first <<
" Value=\"" <<
pos->second <<
"\" />" 579 msg <<
"</MessageSummary>\n";
585 bool expected =
false;
586 if (not
impl_->printedReadBranches_.compare_exchange_strong(expected,
true))
590 std::ostream& ost = *(
impl_->ost_);
591 ost <<
"<ReadBranches>\n";
592 tinyxml2::XMLDocument
doc;
593 tinyxml2::XMLPrinter printer;
594 for (
auto const& iBranch :
impl_->readBranches_) {
595 tinyxml2::XMLElement*
branch =
doc.NewElement(
"Branch");
596 branch->SetAttribute(
"Name", iBranch.first.c_str());
597 branch->SetAttribute(
"ReadCount", int64_t(iBranch.second));
599 ost << printer.CStr();
600 printer.ClearBuffer();
602 for (
auto const& iBranch :
impl_->readBranchesSecFile_) {
603 tinyxml2::XMLElement*
branch =
doc.NewElement(
"Branch");
604 branch->SetAttribute(
"Name", iBranch.first.c_str());
605 branch->SetAttribute(
"ReadCount", int64_t(iBranch.second));
607 ost << printer.CStr();
608 printer.ClearBuffer();
610 ost <<
"</ReadBranches>\n";
611 if (!
impl_->readBranchesSecSource_.empty()) {
612 ost <<
"<SecondarySourceReadBranches>\n";
613 for (
auto const& iBranch :
impl_->readBranchesSecSource_) {
614 tinyxml2::XMLElement*
branch =
doc.NewElement(
"Branch");
615 branch->SetAttribute(
"Name", iBranch.first.c_str());
616 branch->SetAttribute(
"ReadCount", int64_t(iBranch.second.value().load()));
618 ost << printer.CStr();
619 printer.ClearBuffer();
621 ost <<
"</SecondarySourceReadBranches>\n";
630 std::set<std::string>
const& clonedBranches =
631 impl_->inputFiles_.at(
impl_->lastOpenedPrimaryInputFile_).fastClonedBranches;
632 if (clonedBranches.find(
branchName) == clonedBranches.end()) {
643 std::set<std::string>& clonedBranches =
644 impl_->inputFiles_.at(
impl_->lastOpenedPrimaryInputFile_).fastClonedBranches;
645 for (std::set<std::string>::const_iterator it = fastClonedBranches.begin(), itEnd = fastClonedBranches.end();
648 if (clonedBranches.insert(*it).second) {
655 tinyxml2::XMLDocument
doc;
660 msg <<
"<RandomServiceStateFile>\n" 662 <<
"</RandomServiceStateFile>\n";
669 std::map<std::string, std::string>
const&
metrics) {
672 msg <<
"<PerformanceReport>\n" 673 <<
" <PerformanceSummary Metric=\"" << metricClass <<
"\">\n";
675 typedef std::map<std::string, std::string>::const_iterator const_iterator;
676 for (const_iterator iter =
metrics.begin(), iterEnd =
metrics.end(); iter != iterEnd; ++iter) {
677 msg <<
" <Metric Name=\"" << iter->first <<
"\" " 678 <<
"Value=\"" << iter->second <<
"\"/>\n";
681 msg <<
" </PerformanceSummary>\n" 682 <<
"</PerformanceReport>\n";
689 std::map<std::string, std::string>
const&
metrics) {
692 msg <<
"<PerformanceReport>\n" 693 <<
" <PerformanceModule Metric=\"" << metricClass <<
"\" " 696 typedef std::map<std::string, std::string>::const_iterator const_iterator;
697 for (const_iterator iter =
metrics.begin(), iterEnd =
metrics.end(); iter != iterEnd; ++iter) {
698 msg <<
" <Metric Name=\"" << iter->first <<
"\" " 699 <<
"Value=\"" << iter->second <<
"\"/>\n";
702 msg <<
" </PerformanceModule>\n" 703 <<
"</PerformanceReport>\n";
709 std::ostringstream
msg;
711 tinyxml2::XMLDocument
doc;
712 for (
auto const&
f :
impl_->outputFiles_) {
716 msg <<
"\n<LumiSections>";
718 typedef std::vector<JobReport::Token>::iterator iterator;
719 for (
auto const& iInput :
f.contributingInputs) {
720 auto const& inpFile =
impl_->inputFiles_[iInput];
722 msg <<
"\n <LFN>" <<
doc.NewText(inpFile.logicalFileName.c_str())->
Value() <<
"</LFN>";
723 msg <<
"\n <PFN>" <<
doc.NewText(inpFile.physicalFileName.c_str())->
Value() <<
"</PFN>";
724 msg <<
"\n <FastCopying>" <<
findOrDefault(
f.fastCopyingInputs, inpFile.physicalFileName) <<
"</FastCopying>";
726 doc.DeleteChildren();
728 msg <<
"\n</Inputs>";
void reportSkippedFile(std::string const &pfn, std::string const &lfn)
void associateRun(JobReport::Token token, unsigned int runNumber)
void reportMemoryInfo(std::vector< std::string > const &memoryData)
void reportInputRunNumber(unsigned int run)
void eventReadFromFile(InputType inputType, Token fileToken)
void reportFallbackAttempt(std::string const &pfn, std::string const &lfn, std::string const &err)
unsigned long long EventNumber_t
void reportFastCopyingStatus(Token t, std::string const &inputFileName, bool fastCopying)
void temporarilyCloseXML()
void reportRunNumber(JobReport::Token token, unsigned int run)
void reportRandomStateFile(std::string const &name)
S & print(S &os, JobReport::InputFile const &f)
edm::propagate_const< std::unique_ptr< JobReportImpl > > impl_
Token inputFileOpened(std::string const &physicalFileName, std::string const &logicalFileName, std::string const &catalog, std::string const &inputType, std::string const &inputSourceClassName, std::string const &moduleLabel, std::string const &guid, std::vector< std::string > const &branchNames)
std::vector< InputFile > inputFiles_
void reportPerformanceForModule(std::string const &metricClass, std::string const &moduleName, std::map< std::string, std::string > const &metrics)
void reportSkippedEvent(RunNumber_t run, EventNumber_t event)
void insertInputForOutputs(InputType inputType, Token t)
void writeInputFile(InputFile const &f)
void reportInputLumiSection(unsigned int run, unsigned int lumiSectId)
void reportPerformanceSummary(std::string const &metricClass, std::map< std::string, std::string > const &metrics)
reco::JetExtendedAssociation::JetExtendedData Value
Token outputFileOpened(std::string const &physicalFileName, std::string const &logicalFileName, std::string const &catalog, std::string const &outputModuleClassName, std::string const &moduleLabel, std::string const &guid, std::string const &dataType, std::string const &branchHash, std::vector< std::string > const &branchNames)
void reportError(std::string const &shortDesc, std::string const &longDesc, int const &exitCode)
void associateInputRun(unsigned int runNumber)
S & formatFile(T const &f, S &os)
void reportReadBranch(InputType inputType, std::string const &branchName)
Inform the job report that a branch has been read.
void reportFastClonedBranches(std::set< std::string > const &fastClonedBranches, long long nEvents)
Inform the job report that branches have been fast Cloned.
Value const & findOrDefault(std::map< Key, Value > const &m, Key const &k, Value const &defaultValue)
void eventWrittenToFile(Token fileToken, RunNumber_t run, EventNumber_t event)
void reportMessageInfo(std::map< std::string, double > const &messageData)
void associateLumiSection(JobReport::Token token, unsigned int runNumber, unsigned int lumiSection, unsigned long nEvents)
std::string dumpFiles(void)
debug/test util
std::string moduleName(StableProvenance const &provenance, ProcessHistory const &history)
void reportAnalysisFile(std::string const &fileName, std::map< std::string, std::string > const &fileData)
void outputFileClosed(Token fileToken)
void writeOutputFile(OutputFile const &f)
InputFile & getInputFileForToken(InputType inputType, Token t)
void reportDataType(Token fileToken, std::string const &dataType)
std::ostream & operator<<(std::ostream &ost, const HLTGlobalStatus &hlt)
Formatted printout of trigger table.
void inputFileClosed(InputType inputType, Token fileToken)
void associateInputLumiSection(unsigned int runNumber, unsigned int lumiSection)
void reportReadBranches()
OutputFile & getOutputFileForToken(Token t)
oneapi::tbb::concurrent_vector< InputFile > inputFilesSecSource_
void reportLumiSection(JobReport::Token token, unsigned int run, unsigned int lumiSectId, unsigned long nEvents=0)