CMS 3D CMS Logo

InputFile.cc
Go to the documentation of this file.
1 /*----------------------------------------------------------------------
2 Holder for an input TFile.
3 ----------------------------------------------------------------------*/
4 #include "TList.h"
5 #include "TStreamerInfo.h"
6 #include "TClass.h"
7 #include "InputFile.h"
8 
13 
14 #include <exception>
15 #include <iomanip>
16 
17 namespace edm {
18  InputFile::InputFile(char const* fileName, char const* msg, InputType inputType)
19  : file_(), fileName_(fileName), reportToken_(0), inputType_(inputType) {
21  {
22  // ROOT's context management implicitly assumes that a file is opened and
23  // closed on the same thread. To avoid the problem, we declare a local
24  // TContext object; when it goes out of scope, its destructor unregisters
25  // the context, guaranteeing the context is unregistered in the same thread
26  // it was registered in. Fixes issue #15524.
27  TDirectory::TContext contextEraser;
28 
29  file_ = std::unique_ptr<TFile>(TFile::Open(fileName)); // propagate_const<T> has no reset() function
30  }
31  std::exception_ptr e = edm::threadLocalException::getException();
32  if (e != std::exception_ptr()) {
33  edm::threadLocalException::setException(std::exception_ptr());
34  std::rethrow_exception(e);
35  }
36  if (!file_) {
37  return;
38  }
39  if (file_->IsZombie()) {
40  file_ = nullptr; // propagate_const<T> has no reset() function
41  return;
42  }
43 
44  logFileAction(" Successfully opened file ", fileName);
45  }
46 
48 
49  void InputFile::inputFileOpened(std::string const& logicalFileName,
50  std::string const& inputType,
51  std::string const& moduleName,
52  std::string const& label,
53  std::string const& fid,
54  std::vector<std::string> const& branchNames) {
55  Service<JobReport> reportSvc;
56  reportToken_ = reportSvc->inputFileOpened(
57  fileName_, logicalFileName, std::string(), inputType, moduleName, label, fid, branchNames);
58  }
59 
61  Service<JobReport> reportSvc;
62  reportSvc->eventReadFromFile(inputType_, reportToken_);
63  }
64 
65  void InputFile::reportInputRunNumber(unsigned int run) const {
66  Service<JobReport> reportSvc;
67  reportSvc->reportInputRunNumber(run);
68  }
69 
70  void InputFile::reportInputLumiSection(unsigned int run, unsigned int lumi) const {
71  Service<JobReport> reportSvc;
72  reportSvc->reportInputLumiSection(run, lumi);
73  }
74 
75  void InputFile::reportSkippedFile(std::string const& fileName, std::string const& logicalFileName) {
76  Service<JobReport> reportSvc;
77  reportSvc->reportSkippedFile(fileName, logicalFileName);
78  }
79 
81  std::string const& logicalFileName,
82  std::string const& errorMessage) {
83  Service<JobReport> reportSvc;
84  reportSvc->reportFallbackAttempt(pfn, logicalFileName, errorMessage);
85  }
86 
88  if (file_->IsOpen()) {
89  file_->Close();
90  try {
91  logFileAction(" Closed file ", fileName_.c_str());
92  Service<JobReport> reportSvc;
93  reportSvc->inputFileClosed(inputType_, reportToken_);
94  } catch (std::exception const&) {
95  // If Close() called in a destructor after an exception throw, the services may no longer be active.
96  // Therefore, we catch any reasonable new exception.
97  }
98  }
99  }
100 
101  void InputFile::logFileAction(char const* msg, char const* fileName) const {
102  LogAbsolute("fileAction") << std::setprecision(0) << TimeOfDay() << msg << fileName;
103  FlushMessageLog();
104  }
105 
107  Service<JobReport> reportSvc;
108  reportSvc->reportReadBranches();
109  }
110 
112  Service<JobReport> reportSvc;
113  reportSvc->reportReadBranch(inputType, branchName);
114  }
115 } // namespace edm
MessageLogger.h
edm::TimeOfDay
Definition: TimeOfDay.h:9
edm::InputFile::logFileAction
void logFileAction(char const *msg, char const *fileName) const
Definition: InputFile.cc:101
edm::InputFile::fileName_
std::string fileName_
Definition: InputFile.h:55
electrons_cff.branchName
branchName
Definition: electrons_cff.py:521
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::moduleName
std::string moduleName(StableProvenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:27
ExceptionPropagate.h
mps_check.msg
tuple msg
Definition: mps_check.py:285
edm::InputFile::reportReadBranch
static void reportReadBranch(InputType inputType, std::string const &branchname)
Definition: InputFile.cc:111
edm::threadLocalException::getException
std::exception_ptr getException()
Definition: ExceptionPropagate.cc:7
MillePedeFileConverter_cfg.fileName
fileName
Definition: MillePedeFileConverter_cfg.py:32
edm::InputType
InputType
Definition: InputType.h:5
edm::InputFile::reportReadBranches
static void reportReadBranches()
Definition: InputFile.cc:106
edm::InputFile::reportSkippedFile
static void reportSkippedFile(std::string const &fileName, std::string const &logicalFileName)
Definition: InputFile.cc:75
edm::InputFile::inputType_
InputType inputType_
Definition: InputFile.h:57
Service.h
edm::threadLocalException::setException
void setException(std::exception_ptr e)
Definition: ExceptionPropagate.cc:6
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
cppFunctionSkipper.exception
exception
Definition: cppFunctionSkipper.py:10
edm::FlushMessageLog
void FlushMessageLog()
Definition: MessageLogger.cc:34
edm::InputFile::file_
edm::propagate_const< std::unique_ptr< TFile > > file_
Definition: InputFile.h:54
edm::Service
Definition: Service.h:30
edm::LogAbsolute
Log< level::System, true > LogAbsolute
Definition: MessageLogger.h:134
InputFile.h
edm::InputFile::reportInputRunNumber
void reportInputRunNumber(unsigned int run) const
Definition: InputFile.cc:65
edm::InputFile::reportInputLumiSection
void reportInputLumiSection(unsigned int run, unsigned int lumi) const
Definition: InputFile.cc:70
writedatasetfile.run
run
Definition: writedatasetfile.py:27
edm::InputFile::InputFile
InputFile(char const *fileName, char const *msg, InputType inputType)
Definition: InputFile.cc:18
edm::InputFile::reportFallbackAttempt
static void reportFallbackAttempt(std::string const &pfn, std::string const &logicalFileName, std::string const &errorMessage)
Definition: InputFile.cc:80
edm::InputFile::eventReadFromFile
void eventReadFromFile() const
Definition: InputFile.cc:60
edm::InputFile::inputFileOpened
void inputFileOpened(std::string const &logicalFileName, std::string const &inputType, std::string const &moduleName, std::string const &label, std::string const &fid, std::vector< std::string > const &branchNames)
Definition: InputFile.cc:49
TimeOfDay.h
lumi
Definition: LumiSectionData.h:20
edm::InputFile::Close
void Close()
Definition: InputFile.cc:87
label
const char * label
Definition: PFTauDecayModeTools.cc:11
edm::InputFile::reportToken_
JobReport::Token reportToken_
Definition: InputFile.h:56
edm::InputFile::~InputFile
~InputFile()
Definition: InputFile.cc:47
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37