CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::PrincipalCache Class Reference

#include <PrincipalCache.h>

Public Member Functions

void adjustEventsToNewProductRegistry (std::shared_ptr< ProductRegistry const > reg)
 
void adjustIndexesAfterProductRegistryAddition ()
 
void deleteRun (ProcessHistoryID const &phid, RunNumber_t run)
 
EventPrincipaleventPrincipal (unsigned int iStreamIndex) const
 
std::shared_ptr< LuminosityBlockPrincipalgetAvailableLumiPrincipalPtr ()
 
bool hasRunPrincipal () const
 
void insert (std::shared_ptr< RunPrincipal > rp)
 
void insert (std::unique_ptr< LuminosityBlockPrincipal > lbp)
 
void insert (std::shared_ptr< EventPrincipal > ep)
 
void merge (std::shared_ptr< RunAuxiliary > aux, std::shared_ptr< ProductRegistry const > reg)
 
void preReadFile ()
 
 PrincipalCache ()
 
 PrincipalCache (PrincipalCache &&)=default
 
RunPrincipalrunPrincipal (ProcessHistoryID const &phid, RunNumber_t run) const
 
RunPrincipalrunPrincipal () const
 
std::shared_ptr< RunPrincipal > const & runPrincipalPtr (ProcessHistoryID const &phid, RunNumber_t run) const
 
std::shared_ptr< RunPrincipal > const & runPrincipalPtr () const
 
void setNumberOfConcurrentPrincipals (PreallocationConfiguration const &)
 
void setProcessHistoryRegistry (ProcessHistoryRegistry const &phr)
 
 ~PrincipalCache ()
 

Private Member Functions

void throwLumiMissing () const
 
void throwRunMissing () const
 

Private Attributes

std::vector< std::shared_ptr< EventPrincipal > > eventPrincipals_
 
ProcessHistoryID inputProcessHistoryID_
 
LuminosityBlockNumber_t lumi_
 
edm::ReusableObjectHolder< LuminosityBlockPrincipallumiHolder_
 
ProcessHistoryRegistry const * processHistoryRegistry_
 
ProcessHistoryID reducedInputProcessHistoryID_
 
RunNumber_t run_
 
std::shared_ptr< RunPrincipalrunPrincipal_
 

Detailed Description

Definition at line 47 of file PrincipalCache.h.

Constructor & Destructor Documentation

edm::PrincipalCache::PrincipalCache ( )

Definition at line 12 of file PrincipalCache.cc.

edm::PrincipalCache::~PrincipalCache ( )

Definition at line 14 of file PrincipalCache.cc.

14 {}
edm::PrincipalCache::PrincipalCache ( PrincipalCache &&  )
default

Member Function Documentation

void edm::PrincipalCache::adjustEventsToNewProductRegistry ( std::shared_ptr< ProductRegistry const >  reg)

Definition at line 120 of file PrincipalCache.cc.

References edm::Principal::adjustIndexesAfterProductRegistryAddition(), edm::Principal::adjustToNewProductRegistry(), eventPrincipal(), and eventPrincipals_.

Referenced by eventPrincipal(), and edm::EventProcessor::readFile().

120  {
121  for (auto& eventPrincipal : eventPrincipals_) {
122  if (eventPrincipal) {
124  bool eventOK = eventPrincipal->adjustToNewProductRegistry(*reg);
125  assert(eventOK);
126  }
127  }
128  }
std::vector< std::shared_ptr< EventPrincipal > > eventPrincipals_
EventPrincipal & eventPrincipal(unsigned int iStreamIndex) const
bool adjustToNewProductRegistry(ProductRegistry const &reg)
Definition: Principal.cc:311
void adjustIndexesAfterProductRegistryAddition()
Definition: Principal.cc:884
void edm::PrincipalCache::adjustIndexesAfterProductRegistryAddition ( )

Definition at line 130 of file PrincipalCache.cc.

References lumiHolder_, eostools::move(), AlCaHLTBitMon_ParallelJobs::p, runPrincipal_, and groupFilesInBlocks::temp.

Referenced by eventPrincipal(), and edm::EventProcessor::readFile().

130  {
131  if (runPrincipal_) {
132  runPrincipal_->adjustIndexesAfterProductRegistryAddition();
133  }
134  //Need to temporarily hold all the lumis to clear out the lumiHolder_
135  std::vector<std::shared_ptr<LuminosityBlockPrincipal>> temp;
136  while (auto p = lumiHolder_.tryToGet()) {
137  p->adjustIndexesAfterProductRegistryAddition();
138  temp.emplace_back(std::move(p));
139  }
140  }
edm::ReusableObjectHolder< LuminosityBlockPrincipal > lumiHolder_
std::shared_ptr< RunPrincipal > runPrincipal_
def move(src, dest)
Definition: eostools.py:511
void edm::PrincipalCache::deleteRun ( ProcessHistoryID const &  phid,
RunNumber_t  run 
)

Definition at line 103 of file PrincipalCache.cc.

References Exception, edm::errors::LogicError, reducedInputProcessHistoryID_, run_, and runPrincipal_.

Referenced by edm::SubProcess::deleteRunFromCache(), edm::EventProcessor::deleteRunFromCache(), edm::test::TestProcessor::endRun(), and eventPrincipal().

103  {
104  if (runPrincipal_.get() == nullptr) {
105  throw edm::Exception(edm::errors::LogicError) << "PrincipalCache::deleteRun\n"
106  << "Illegal attempt to delete run from cache\n"
107  << "There is no run in cache to delete\n"
108  << "Contact a Framework Developer\n";
109  }
110  if (reducedInputProcessHistoryID_ != phid || run != run_) {
112  << "PrincipalCache::deleteRun\n"
113  << "Illegal attempt to delete run from cache\n"
114  << "Run number or reduced ProcessHistoryID inconsistent with those in cache\n"
115  << "Contact a Framework Developer\n";
116  }
117  runPrincipal_.reset();
118  }
ProcessHistoryID reducedInputProcessHistoryID_
std::shared_ptr< RunPrincipal > runPrincipal_
EventPrincipal& edm::PrincipalCache::eventPrincipal ( unsigned int  iStreamIndex) const
inline
std::shared_ptr< LuminosityBlockPrincipal > edm::PrincipalCache::getAvailableLumiPrincipalPtr ( )

Definition at line 49 of file PrincipalCache.cc.

References lumiHolder_.

Referenced by edm::test::TestProcessor::beginLuminosityBlock(), edm::SubProcess::doBeginLuminosityBlockAsync(), hasRunPrincipal(), and edm::EventProcessor::readLuminosityBlock().

49  {
50  return lumiHolder_.tryToGet();
51  }
edm::ReusableObjectHolder< LuminosityBlockPrincipal > lumiHolder_
bool edm::PrincipalCache::hasRunPrincipal ( ) const
inline
void edm::PrincipalCache::insert ( std::shared_ptr< RunPrincipal rp)

Definition at line 81 of file PrincipalCache.cc.

References Exception, inputProcessHistoryID_, edm::errors::LogicError, processHistoryRegistry_, reducedInputProcessHistoryID_, edm::ProcessHistoryRegistry::reducedProcessHistoryID(), run_, and runPrincipal_.

Referenced by edm::test::TestProcessor::beginRun(), edm::SubProcess::doBeginRunAsync(), eventPrincipal(), edm::EventProcessor::init(), edm::EventProcessor::readRun(), edm::SubProcess::SubProcess(), and edm::test::TestProcessor::TestProcessor().

81  {
82  if (runPrincipal_.get() != nullptr) {
83  throw edm::Exception(edm::errors::LogicError) << "PrincipalCache::insert\n"
84  << "Illegal attempt to insert run into cache\n"
85  << "Contact a Framework Developer\n";
86  }
87  if (inputProcessHistoryID_ != rp->aux().processHistoryID()) {
89  inputProcessHistoryID_ = rp->aux().processHistoryID();
90  }
91  run_ = rp->run();
92  runPrincipal_ = rp;
93  }
ProcessHistoryID reducedInputProcessHistoryID_
ProcessHistoryID const & reducedProcessHistoryID(ProcessHistoryID const &fullID) const
ProcessHistoryID inputProcessHistoryID_
ProcessHistoryRegistry const * processHistoryRegistry_
std::shared_ptr< RunPrincipal > runPrincipal_
void edm::PrincipalCache::insert ( std::unique_ptr< LuminosityBlockPrincipal lbp)

Definition at line 95 of file PrincipalCache.cc.

References lumiHolder_, and eostools::move().

95 { lumiHolder_.add(std::move(lbp)); }
edm::ReusableObjectHolder< LuminosityBlockPrincipal > lumiHolder_
def move(src, dest)
Definition: eostools.py:511
void edm::PrincipalCache::insert ( std::shared_ptr< EventPrincipal ep)

Definition at line 97 of file PrincipalCache.cc.

References eventPrincipals_.

97  {
98  unsigned int iStreamIndex = ep->streamID().value();
99  assert(iStreamIndex < eventPrincipals_.size());
100  eventPrincipals_[iStreamIndex] = ep;
101  }
std::vector< std::shared_ptr< EventPrincipal > > eventPrincipals_
void edm::PrincipalCache::merge ( std::shared_ptr< RunAuxiliary aux,
std::shared_ptr< ProductRegistry const >  reg 
)

Definition at line 53 of file PrincipalCache.cc.

References Exception, inputProcessHistoryID_, edm::errors::LogicError, processHistoryRegistry_, reducedInputProcessHistoryID_, edm::ProcessHistoryRegistry::reducedProcessHistoryID(), run_, and runPrincipal_.

Referenced by eventPrincipal(), and edm::EventProcessor::readAndMergeRun().

53  {
54  if (runPrincipal_.get() == nullptr) {
55  throw edm::Exception(edm::errors::LogicError) << "PrincipalCache::merge\n"
56  << "Illegal attempt to merge run into cache\n"
57  << "There is no run in cache to merge with\n"
58  << "Contact a Framework Developer\n";
59  }
60  if (inputProcessHistoryID_ != aux->processHistoryID()) {
63  << "PrincipalCache::merge\n"
64  << "Illegal attempt to merge run into cache\n"
65  << "Reduced ProcessHistoryID inconsistent with the one already in cache\n"
66  << "Contact a Framework Developer\n";
67  }
68  inputProcessHistoryID_ = aux->processHistoryID();
69  }
70  if (aux->run() != run_) {
71  throw edm::Exception(edm::errors::LogicError) << "PrincipalCache::merge\n"
72  << "Illegal attempt to merge run into cache\n"
73  << "Run number inconsistent with run number already in cache\n"
74  << "Contact a Framework Developer\n";
75  }
76  bool runOK = runPrincipal_->adjustToNewProductRegistry(*reg);
77  assert(runOK);
78  runPrincipal_->mergeAuxiliary(*aux);
79  }
ProcessHistoryID reducedInputProcessHistoryID_
ProcessHistoryID const & reducedProcessHistoryID(ProcessHistoryID const &fullID) const
ProcessHistoryID inputProcessHistoryID_
ProcessHistoryRegistry const * processHistoryRegistry_
std::shared_ptr< RunPrincipal > runPrincipal_
void edm::PrincipalCache::preReadFile ( )

Definition at line 142 of file PrincipalCache.cc.

References runPrincipal_.

Referenced by edm::EventProcessor::readFile(), and setProcessHistoryRegistry().

142  {
143  if (runPrincipal_) {
144  runPrincipal_->preReadFile();
145  }
146  }
std::shared_ptr< RunPrincipal > runPrincipal_
RunPrincipal & edm::PrincipalCache::runPrincipal ( ProcessHistoryID const &  phid,
RunNumber_t  run 
) const
RunPrincipal & edm::PrincipalCache::runPrincipal ( ) const

Definition at line 35 of file PrincipalCache.cc.

References runPrincipal_, and throwRunMissing().

35  {
36  if (runPrincipal_.get() == nullptr) {
38  }
39  return *runPrincipal_.get();
40  }
void throwRunMissing() const
std::shared_ptr< RunPrincipal > runPrincipal_
std::shared_ptr< RunPrincipal > const & edm::PrincipalCache::runPrincipalPtr ( ProcessHistoryID const &  phid,
RunNumber_t  run 
) const
std::shared_ptr< RunPrincipal > const & edm::PrincipalCache::runPrincipalPtr ( ) const

Definition at line 42 of file PrincipalCache.cc.

References runPrincipal_, and throwRunMissing().

42  {
43  if (runPrincipal_.get() == nullptr) {
45  }
46  return runPrincipal_;
47  }
void throwRunMissing() const
std::shared_ptr< RunPrincipal > runPrincipal_
void edm::PrincipalCache::setNumberOfConcurrentPrincipals ( PreallocationConfiguration const &  iConfig)

Definition at line 16 of file PrincipalCache.cc.

References eventPrincipals_, and edm::PreallocationConfiguration::numberOfStreams().

Referenced by eventPrincipal(), edm::EventProcessor::init(), edm::SubProcess::SubProcess(), and edm::test::TestProcessor::TestProcessor().

16  {
17  eventPrincipals_.resize(iConfig.numberOfStreams());
18  }
std::vector< std::shared_ptr< EventPrincipal > > eventPrincipals_
void edm::PrincipalCache::setProcessHistoryRegistry ( ProcessHistoryRegistry const &  phr)
inline
void edm::PrincipalCache::throwLumiMissing ( ) const
private

Definition at line 154 of file PrincipalCache.cc.

References Exception, and edm::errors::LogicError.

Referenced by setProcessHistoryRegistry().

154  {
156  << "PrincipalCache::lumiPrincipal or PrincipalCache::lumiPrincipalPtr\n"
157  << "Requested a luminosity block that is not in the cache (should never happen)\n"
158  << "Contact a Framework Developer\n";
159  }
void edm::PrincipalCache::throwRunMissing ( ) const
private

Definition at line 148 of file PrincipalCache.cc.

References Exception, and edm::errors::LogicError.

Referenced by runPrincipal(), runPrincipalPtr(), and setProcessHistoryRegistry().

148  {
149  throw edm::Exception(edm::errors::LogicError) << "PrincipalCache::runPrincipal\n"
150  << "Requested a run that is not in the cache (should never happen)\n"
151  << "Contact a Framework Developer\n";
152  }

Member Data Documentation

std::vector<std::shared_ptr<EventPrincipal> > edm::PrincipalCache::eventPrincipals_
private
ProcessHistoryID edm::PrincipalCache::inputProcessHistoryID_
private

Definition at line 100 of file PrincipalCache.h.

Referenced by insert(), and merge().

LuminosityBlockNumber_t edm::PrincipalCache::lumi_
private

Definition at line 103 of file PrincipalCache.h.

edm::ReusableObjectHolder<LuminosityBlockPrincipal> edm::PrincipalCache::lumiHolder_
private
ProcessHistoryRegistry const* edm::PrincipalCache::processHistoryRegistry_
private

Definition at line 91 of file PrincipalCache.h.

Referenced by insert(), merge(), and setProcessHistoryRegistry().

ProcessHistoryID edm::PrincipalCache::reducedInputProcessHistoryID_
private

Definition at line 101 of file PrincipalCache.h.

Referenced by deleteRun(), insert(), merge(), runPrincipal(), and runPrincipalPtr().

RunNumber_t edm::PrincipalCache::run_
private

Definition at line 102 of file PrincipalCache.h.

Referenced by deleteRun(), insert(), merge(), runPrincipal(), and runPrincipalPtr().

std::shared_ptr<RunPrincipal> edm::PrincipalCache::runPrincipal_
private