CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::HistoryAppender Class Reference

#include <HistoryAppender.h>

Public Member Functions

std::shared_ptr
< ProcessHistory const > 
appendToProcessHistory (ProcessHistoryID const &inputPHID, ProcessHistory const *inputProcessHistory, ProcessConfiguration const &pc)
 
 HistoryAppender ()
 

Private Member Functions

void checkProcessHistory (ProcessHistory const &ph, ProcessConfiguration const &pc) const
 
 HistoryAppender (HistoryAppender const &)=delete
 
HistoryAppenderoperator= (HistoryAppender const &)=delete
 

Private Attributes

std::shared_ptr
< ProcessHistory const > 
m_cachedHistory
 
ProcessHistoryID m_cachedInputPHID
 

Detailed Description

Definition at line 14 of file HistoryAppender.h.

Constructor & Destructor Documentation

edm::HistoryAppender::HistoryAppender ( )

Definition at line 13 of file HistoryAppender.cc.

14  {
15  }
edm::HistoryAppender::HistoryAppender ( HistoryAppender const &  )
privatedelete

Member Function Documentation

std::shared_ptr< ProcessHistory const > edm::HistoryAppender::appendToProcessHistory ( ProcessHistoryID const &  inputPHID,
ProcessHistory const *  inputProcessHistory,
ProcessConfiguration const &  pc 
)

Definition at line 18 of file HistoryAppender.cc.

References assert(), checkProcessHistory(), Exception, edm::ProcessHistory::id(), edm::errors::LogicError, m_cachedHistory, m_cachedInputPHID, or, and s_emptyHistory.

Referenced by edm::Principal::fillPrincipal().

20  {
21  assert((iInputProcessHistory) == nullptr or (inputPHID == iInputProcessHistory->id()));
22  if (m_cachedHistory.get() != nullptr and inputPHID==m_cachedInputPHID) {
23  return m_cachedHistory;
24  }
25 
26  ProcessHistory const* inputProcessHistory = iInputProcessHistory? iInputProcessHistory : &s_emptyHistory;
27 
28  if (inputPHID.isValid()) {
29  if (iInputProcessHistory == nullptr) {
31  << "HistoryAppender::appendToProcessHistory\n"
32  << "Input ProcessHistory has valid ID but is nullptr\n"
33  << "Contact a Framework developer\n";
34  }
35  }
36 
37  auto newProcessHistory = std::make_shared<ProcessHistory>();
38  *newProcessHistory = *inputProcessHistory;
39  checkProcessHistory(*newProcessHistory, pc);
40  newProcessHistory->push_back(pc);
41  //force it to create the ID
42  newProcessHistory->setProcessHistoryID();
43  m_cachedInputPHID =inputPHID;
44  m_cachedHistory = newProcessHistory;
45  return m_cachedHistory;
46  }
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
assert(m_qm.get())
ProcessHistoryID m_cachedInputPHID
static const edm::ProcessHistory s_emptyHistory
void checkProcessHistory(ProcessHistory const &ph, ProcessConfiguration const &pc) const
std::shared_ptr< ProcessHistory const > m_cachedHistory
void edm::HistoryAppender::checkProcessHistory ( ProcessHistory const &  ph,
ProcessConfiguration const &  pc 
) const
private

Definition at line 49 of file HistoryAppender.cc.

References edm::errors::Configuration, Exception, LaserDQM_cfg::process, edm::ProcessConfiguration::processName(), FSQHLTOfflineSource_cfi::processName, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by appendToProcessHistory().

50  {
51  std::string const& processName = pc.processName();
52  for (auto const& process : ph) {
53  if (processName == process.processName()) {
54  throw edm::Exception(errors::Configuration, "Duplicate Process.")
55  << "The process name " << processName << " was already in the ProcessHistory.\n"
56  << "Please modify the configuration file to use a distinct process name.\n";
57  }
58  }
59  }
tuple process
Definition: LaserDQM_cfg.py:3
HistoryAppender& edm::HistoryAppender::operator= ( HistoryAppender const &  )
privatedelete

Member Data Documentation

std::shared_ptr<ProcessHistory const> edm::HistoryAppender::m_cachedHistory
private

Definition at line 37 of file HistoryAppender.h.

Referenced by appendToProcessHistory().

ProcessHistoryID edm::HistoryAppender::m_cachedInputPHID
private

Definition at line 36 of file HistoryAppender.h.

Referenced by appendToProcessHistory().