CMS 3D CMS Logo

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

#include <PrincipalGetAdapter.h>

Public Types

typedef std::vector< BasicHandleBasicHandleVec
 

Public Member Functions

template<typename PROD >
bool checkIfComplete () const
 
BranchDescription const & getBranchDescription (TypeID const &type, std::string const &productInstanceName) const
 
BasicHandle getByLabel_ (TypeID const &tid, InputTag const &tag, ModuleCallingContext const *mcc) const
 
BasicHandle getByLabel_ (TypeID const &tid, std::string const &label, std::string const &instance, std::string const &process, ModuleCallingContext const *mcc) const
 
BasicHandle getByToken_ (TypeID const &id, KindOfType kindOfType, EDGetToken token, ModuleCallingContext const *mcc) const
 
template<typename PROD >
void getManyByType (std::vector< Handle< PROD > > &results, ModuleCallingContext const *mcc) const
 
void getManyByType_ (TypeID const &tid, BasicHandleVec &results, ModuleCallingContext const *mcc) const
 
BasicHandle getMatchingSequenceByLabel_ (TypeID const &typeID, InputTag const &tag, ModuleCallingContext const *mcc) const
 
BasicHandle getMatchingSequenceByLabel_ (TypeID const &typeID, std::string const &label, std::string const &instance, std::string const &process, ModuleCallingContext const *mcc) const
 
bool isComplete () const
 
PrincipalGetAdapteroperator= (PrincipalGetAdapter const &)=delete
 
Principalprincipal ()
 
Principal const & principal () const
 
 PrincipalGetAdapter (Principal &pcpl, ModuleDescription const &md)
 
 PrincipalGetAdapter (PrincipalGetAdapter const &)=delete
 
ProcessHistory const & processHistory () const
 
EDProductGetter const * prodGetter () const
 
void setConsumer (EDConsumerBase const *iConsumer)
 
 ~PrincipalGetAdapter ()
 

Private Member Functions

BranchType const & branchType () const
 
BasicHandle makeFailToGetException (KindOfType, TypeID const &, EDGetToken) const
 
void throwAmbiguousException (TypeID const &productType, EDGetToken token) const
 

Private Attributes

EDConsumerBase const * consumer_
 
ModuleDescription const & md_
 
Principalprincipal_
 

Detailed Description

Definition at line 128 of file PrincipalGetAdapter.h.

Member Typedef Documentation

Definition at line 163 of file PrincipalGetAdapter.h.

Constructor & Destructor Documentation

PrincipalGetAdapter::PrincipalGetAdapter ( Principal pcpl,
ModuleDescription const &  md 
)

Definition at line 20 of file PrincipalGetAdapter.cc.

21  :
22  //putProducts_(),
23  principal_(pcpl),
24  md_(md),
25  consumer_(nullptr)
26  {
27  }
EDConsumerBase const * consumer_
ModuleDescription const & md_
PrincipalGetAdapter::~PrincipalGetAdapter ( )

Definition at line 29 of file PrincipalGetAdapter.cc.

29  {
30  }
edm::PrincipalGetAdapter::PrincipalGetAdapter ( PrincipalGetAdapter const &  )
delete

Member Function Documentation

BranchType const & PrincipalGetAdapter::branchType ( ) const
private

Definition at line 144 of file PrincipalGetAdapter.cc.

144  {
145  return principal_.branchType();
146  }
BranchType const & branchType() const
Definition: Principal.h:167
template<typename PROD >
bool PrincipalGetAdapter::checkIfComplete ( ) const
inline
BranchDescription const & PrincipalGetAdapter::getBranchDescription ( TypeID const &  type,
std::string const &  productInstanceName 
) const

Definition at line 223 of file PrincipalGetAdapter.cc.

References edm::ProductHolderBase::branchDescription(), edm::hlt::Exception, edm::TypeID::friendlyClassName(), getHLTprescales::index, edm::ProductHolderIndexHelper::index(), edm::errors::InsertFailure, edm::PRODUCT_TYPE, and edm::ProductHolderIndexInvalid.

Referenced by edm::Event::getRefBeforePut(), edm::Run::put(), edm::LuminosityBlock::put(), and edm::Event::put().

224  {
225  ProductHolderIndexHelper const& productHolderIndexHelper = principal_.productLookup();
226  ProductHolderIndex index = productHolderIndexHelper.index(PRODUCT_TYPE, type, md_.moduleLabel().c_str(),productInstanceName.c_str(), md_.processName().c_str());
227  if(index == ProductHolderIndexInvalid) {
229  << "Illegal attempt to 'put' an unregistered product.\n"
230  << "No product is registered for\n"
231  << " process name: '" << md_.processName() << "'\n"
232  << " module label: '" << md_.moduleLabel() << "'\n"
233  << " product friendly class name: '" << type.friendlyClassName() << "'\n"
234  << " product instance name: '" << productInstanceName << "'\n"
235 
236  << "The ProductRegistry contains:\n"
238  << '\n';
239  }
240  ProductHolderBase const* phb = principal_.getProductHolderByIndex(index);
241  assert(phb != nullptr);
242  return phb->branchDescription();
243  }
type
Definition: HCALResponse.h:21
ProductRegistry const & productRegistry() const
Definition: Principal.h:149
std::string const & processName() const
unsigned int ProductHolderIndex
std::string const & moduleLabel() const
ConstProductHolderPtr getProductHolderByIndex(ProductHolderIndex const &oid) const
Definition: Principal.cc:438
ModuleDescription const & md_
ProductHolderIndexHelper const & productLookup() const
Definition: Principal.h:151
BasicHandle PrincipalGetAdapter::getByLabel_ ( TypeID const &  tid,
InputTag const &  tag,
ModuleCallingContext const *  mcc 
) const

Definition at line 149 of file PrincipalGetAdapter.cc.

References edm::PRODUCT_TYPE.

Referenced by edm::LuminosityBlock::getByLabel(), edm::Run::getByLabel(), edm::Event::getByLabel(), edm::LuminosityBlock::getByLabelImpl(), edm::Run::getByLabelImpl(), and edm::Event::getByLabelImpl().

151  {
152  return principal_.getByLabel(PRODUCT_TYPE, typeID, tag, consumer_, mcc);
153  }
EDConsumerBase const * consumer_
BasicHandle getByLabel(KindOfType kindOfType, TypeID const &typeID, InputTag const &inputTag, EDConsumerBase const *consumes, ModuleCallingContext const *mcc) const
Definition: Principal.cc:445
BasicHandle PrincipalGetAdapter::getByLabel_ ( TypeID const &  tid,
std::string const &  label,
std::string const &  instance,
std::string const &  process,
ModuleCallingContext const *  mcc 
) const

Definition at line 156 of file PrincipalGetAdapter.cc.

References edm::PRODUCT_TYPE.

160  {
162  }
static PFTauRenderPlugin instance
EDConsumerBase const * consumer_
BasicHandle getByLabel(KindOfType kindOfType, TypeID const &typeID, InputTag const &inputTag, EDConsumerBase const *consumes, ModuleCallingContext const *mcc) const
Definition: Principal.cc:445
tuple process
Definition: LaserDQM_cfg.py:3
BasicHandle PrincipalGetAdapter::getByToken_ ( TypeID const &  id,
KindOfType  kindOfType,
EDGetToken  token,
ModuleCallingContext const *  mcc 
) const

Definition at line 165 of file PrincipalGetAdapter.cc.

References revisionDML::branchType(), h, getHLTprescales::index, edm::BasicHandle::isValid(), edm::ProductHolderIndexAndSkipBit::productHolderIndex(), edm::ProductHolderIndexAmbiguous, edm::ProductHolderIndexInvalid, edm::ProductHolderIndexAndSkipBit::skipCurrentProcess(), edm::throwAmbiguousException(), and unlikely.

Referenced by edm::LuminosityBlock::getByToken(), edm::Run::getByToken(), and edm::Event::getByToken().

166  {
167  ProductHolderIndexAndSkipBit indexAndBit = consumer_->indexFrom(token,branchType(),id);
168  ProductHolderIndex index = indexAndBit.productHolderIndex();
169  bool skipCurrentProcess = indexAndBit.skipCurrentProcess();
170  if( unlikely(index == ProductHolderIndexInvalid)) {
171  return makeFailToGetException(kindOfType,id,token);
172  } else if( unlikely(index == ProductHolderIndexAmbiguous)) {
173  // This deals with ambiguities where the process is specified
174  throwAmbiguousException(id, token);
175  }
176  bool ambiguous = false;
177  BasicHandle h = principal_.getByToken(kindOfType, id, index, skipCurrentProcess, ambiguous, mcc);
178  if (ambiguous) {
179  // This deals with ambiguities where the process is not specified
180  throwAmbiguousException(id, token);
181  } else if(!h.isValid()) {
182  return makeFailToGetException(kindOfType,id,token);
183  }
184  return h;
185  }
ProductHolderIndexAndSkipBit indexFrom(EDGetToken, BranchType, TypeID const &) const
EDConsumerBase const * consumer_
unsigned int ProductHolderIndex
#define unlikely(x)
Definition: Likely.h:21
BranchType const & branchType() const
BasicHandle getByToken(KindOfType kindOfType, TypeID const &typeID, ProductHolderIndex index, bool skipCurrentProcess, bool &ambiguous, ModuleCallingContext const *mcc) const
Definition: Principal.cc:479
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
BasicHandle makeFailToGetException(KindOfType, TypeID const &, EDGetToken) const
void throwAmbiguousException(TypeID const &productType, EDGetToken token) const
template<typename PROD >
void PrincipalGetAdapter::getManyByType ( std::vector< Handle< PROD > > &  results,
ModuleCallingContext const *  mcc 
) const
inline

Definition at line 318 of file PrincipalGetAdapter.h.

References edm::convert_handle(), end, getManyByType_(), PROD, edm::es::products(), query::result, and python.entryComment::results.

Referenced by edm::LuminosityBlock::getManyByType(), edm::Run::getManyByType(), and edm::Event::getManyByType().

319  {
320  BasicHandleVec bhv;
321  this->getManyByType_(TypeID(typeid(PROD)), bhv, mcc);
322 
323  // Go through the returned handles; for each element,
324  // 1. create a Handle<PROD> and
325  //
326  // This function presents an exception safety difficulty. If an
327  // exception is thrown when converting a handle, the "got
328  // products" record will be wrong.
329  //
330  // Since EDProducers are not allowed to use this function,
331  // the problem does not seem too severe.
332  //
333  // Question: do we even need to keep track of the "got products"
334  // for this function, since it is *not* to be used by EDProducers?
335  std::vector<Handle<PROD> > products;
336 
337  typename BasicHandleVec::iterator it = bhv.begin();
338  typename BasicHandleVec::iterator end = bhv.end();
339 
340  while (it != end) {
342  convert_handle(std::move(*it), result); // throws on conversion error
343  products.push_back(result);
344  ++it;
345  }
346  results.swap(products);
347  }
ESProducts< T, S > products(const T &i1, const S &i2)
Definition: ESProducts.h:189
tuple result
Definition: query.py:137
#define end
Definition: vmac.h:37
void convert_handle(BasicHandle &&bh, Handle< T > &result)
Definition: ConvertHandle.h:20
void getManyByType_(TypeID const &tid, BasicHandleVec &results, ModuleCallingContext const *mcc) const
#define PROD(A, B)
std::vector< BasicHandle > BasicHandleVec
void PrincipalGetAdapter::getManyByType_ ( TypeID const &  tid,
BasicHandleVec results,
ModuleCallingContext const *  mcc 
) const

Definition at line 211 of file PrincipalGetAdapter.cc.

Referenced by getManyByType().

213  {
215  }
EDConsumerBase const * consumer_
void getManyByType(TypeID const &typeID, BasicHandleVec &results, EDConsumerBase const *consumes, ModuleCallingContext const *mcc) const
Definition: Principal.cc:511
BasicHandle PrincipalGetAdapter::getMatchingSequenceByLabel_ ( TypeID const &  typeID,
InputTag const &  tag,
ModuleCallingContext const *  mcc 
) const

Definition at line 188 of file PrincipalGetAdapter.cc.

References edm::ELEMENT_TYPE.

Referenced by edm::Event::getByLabel().

190  {
191  return principal_.getByLabel(ELEMENT_TYPE, typeID, tag, consumer_, mcc);
192  }
EDConsumerBase const * consumer_
BasicHandle getByLabel(KindOfType kindOfType, TypeID const &typeID, InputTag const &inputTag, EDConsumerBase const *consumes, ModuleCallingContext const *mcc) const
Definition: Principal.cc:445
BasicHandle PrincipalGetAdapter::getMatchingSequenceByLabel_ ( TypeID const &  typeID,
std::string const &  label,
std::string const &  instance,
std::string const &  process,
ModuleCallingContext const *  mcc 
) const

Definition at line 195 of file PrincipalGetAdapter.cc.

References edm::ELEMENT_TYPE, and h.

199  {
201  typeID,
202  label,
203  instance,
204  process,
205  consumer_,
206  mcc);
207  return h;
208  }
static PFTauRenderPlugin instance
EDConsumerBase const * consumer_
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
BasicHandle getByLabel(KindOfType kindOfType, TypeID const &typeID, InputTag const &inputTag, EDConsumerBase const *consumes, ModuleCallingContext const *mcc) const
Definition: Principal.cc:445
tuple process
Definition: LaserDQM_cfg.py:3
bool PrincipalGetAdapter::isComplete ( ) const

Definition at line 251 of file PrincipalGetAdapter.cc.

Referenced by checkIfComplete().

251  {
252  return principal_.isComplete();
253  }
bool isComplete() const
Definition: Principal.h:195
BasicHandle PrincipalGetAdapter::makeFailToGetException ( KindOfType  kindOfType,
TypeID const &  productType,
EDGetToken  token 
) const
private

Definition at line 107 of file PrincipalGetAdapter.cc.

References cppFunctionSkipper::exception, tablePrinter::labels, edm::makeHandleExceptionFactory(), edm::EDConsumerBase::Labels::module, edm::EDConsumerBase::Labels::process, edm::PRODUCT_TYPE, edm::EDConsumerBase::Labels::productInstance, and edm::errors::ProductNotFound.

109  {
110  EDConsumerBase::Labels labels;
111  consumer_->labelsForToken(token,labels);
112  //no need to copy memory since the exception will no occur after the
113  // const char* have been deleted
114  return BasicHandle(makeHandleExceptionFactory([labels,kindOfType,productType]()->std::shared_ptr<cms::Exception> {
115  std::shared_ptr<cms::Exception> exception(std::make_shared<Exception>(errors::ProductNotFound));
116  if (kindOfType == PRODUCT_TYPE) {
117  *exception << "Principal::getByToken: Found zero products matching all criteria\nLooking for type: " << productType << "\n"
118  << "Looking for module label: " << labels.module << "\n" << "Looking for productInstanceName: " << labels.productInstance << "\n"
119  << (0==labels.process[0] ? "" : "Looking for process: ") << labels.process << "\n";
120  } else {
121  *exception << "Principal::getByToken: Found zero products matching all criteria\nLooking for a container with elements of type: " << productType << "\n"
122  << "Looking for module label: " << labels.module << "\n" << "Looking for productInstanceName: " << labels.productInstance << "\n"
123  << (0==labels.process[0] ? "" : "Looking for process: ") << labels.process << "\n";
124  }
125  return exception;
126  }));
127  }
EDConsumerBase const * consumer_
std::shared_ptr< HandleExceptionFactory > makeHandleExceptionFactory(T &&iFunctor)
void labelsForToken(EDGetToken iToken, Labels &oLabels) const
PrincipalGetAdapter& edm::PrincipalGetAdapter::operator= ( PrincipalGetAdapter const &  )
delete
Principal& edm::PrincipalGetAdapter::principal ( )
inline
Principal const& edm::PrincipalGetAdapter::principal ( ) const
inline

Definition at line 158 of file PrincipalGetAdapter.h.

References principal_.

158 {return principal_;}
ProcessHistory const & PrincipalGetAdapter::processHistory ( ) const

Definition at line 218 of file PrincipalGetAdapter.cc.

Referenced by edm::LuminosityBlock::processHistory(), edm::Run::processHistory(), and edm::Event::processHistory().

218  {
219  return principal_.processHistory();
220  }
ProcessHistory const & processHistory() const
Definition: Principal.h:139
EDProductGetter const * PrincipalGetAdapter::prodGetter ( ) const

Definition at line 246 of file PrincipalGetAdapter.cc.

Referenced by edm::Event::getRefBeforePut().

246  {
247  return principal_.prodGetter();
248  }
EDProductGetter const * prodGetter() const
Definition: Principal.h:95
void edm::PrincipalGetAdapter::setConsumer ( EDConsumerBase const *  iConsumer)
inline

Definition at line 140 of file PrincipalGetAdapter.h.

References consumer_.

Referenced by edm::Run::setConsumer(), edm::Event::setConsumer(), and edm::LuminosityBlock::setConsumer().

140  {
141  consumer_ = iConsumer;
142  }
EDConsumerBase const * consumer_
void PrincipalGetAdapter::throwAmbiguousException ( TypeID const &  productType,
EDGetToken  token 
) const
private

Definition at line 130 of file PrincipalGetAdapter.cc.

References cppFunctionSkipper::exception, tablePrinter::labels, edm::EDConsumerBase::Labels::module, edm::EDConsumerBase::Labels::process, and edm::EDConsumerBase::Labels::productInstance.

131  {
132  EDConsumerBase::Labels labels;
133  consumer_->labelsForToken(token,labels);
134  cms::Exception exception("AmbiguousProduct");
135  exception << "Principal::getByToken: More than 1 product matches all criteria\nLooking for a container with elements of type: " << productType << "\n"
136  << "Looking for module label: " << labels.module << "\n" << "Looking for productInstanceName: " << labels.productInstance << "\n"
137  << (0==labels.process[0] ? "" : "Looking for process: ") << labels.process << "\n"
138  << "This can only occur with get function calls using a Handle<View> argument.\n"
139  << "Try a get not using a View or change the instance name of one of the products";
140  throw exception;
141  }
EDConsumerBase const * consumer_
void labelsForToken(EDGetToken iToken, Labels &oLabels) const

Member Data Documentation

EDConsumerBase const* edm::PrincipalGetAdapter::consumer_
private

Definition at line 231 of file PrincipalGetAdapter.h.

Referenced by setConsumer().

ModuleDescription const& edm::PrincipalGetAdapter::md_
private

Definition at line 229 of file PrincipalGetAdapter.h.

Principal& edm::PrincipalGetAdapter::principal_
private

Definition at line 225 of file PrincipalGetAdapter.h.

Referenced by principal().