CMS 3D CMS Logo

PrincipalGetAdapter.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_PrincipalGetAdapter_h
2 #define FWCore_Framework_PrincipalGetAdapter_h
3 
4 // -*- C++ -*-
5 //
6 
7 // Class : PrincipalGetAdapter
8 //
80 /*----------------------------------------------------------------------
81 
82 ----------------------------------------------------------------------*/
83 #include <cassert>
84 #include <typeinfo>
85 #include <string>
86 #include <vector>
87 #include <type_traits>
88 
92 
94 
96 
98 
100 
102 
110 
111 namespace edm {
112 
113  class ModuleCallingContext;
115  class ProducerBase;
116 
117  namespace principal_get_adapter_detail {
118  void throwOnPutOfNullProduct(char const* principalType,
119  TypeID const& productType,
120  std::string const& productInstanceName);
121  void throwOnPutOfUninitializedToken(char const* principalType, std::type_info const& productType);
122  void throwOnPutOfWrongType(std::type_info const& wrongType, TypeID const& rightType);
123  void throwOnPrematureRead(char const* principalType,
124  TypeID const& productType,
125  std::string const& moduleLabel,
126  std::string const& productInstanceName);
127 
128  void throwOnPrematureRead(char const* principalType, TypeID const& productType, EDGetToken);
129  void throwGetManyByType();
130 
131  } // namespace principal_get_adapter_detail
133  public:
134  PrincipalGetAdapter(Principal const& pcpl, ModuleDescription const& md, bool isComplete);
135 
137 
138  PrincipalGetAdapter(PrincipalGetAdapter const&) = delete; // Disallow copying and moving
139  PrincipalGetAdapter& operator=(PrincipalGetAdapter const&) = delete; // Disallow copying and moving
140 
141  //size_t size() const;
142 
143  void setConsumer(EDConsumerBase const* iConsumer) { consumer_ = iConsumer; }
144  EDConsumerBase const* getConsumer() const { return consumer_; }
145 
148 
149  void setProducer(ProducerBase const* iProd) { prodBase_ = iProd; }
150 
151  size_t numberOfProductsConsumed() const;
152 
153  bool isComplete() const { return isComplete_; }
154 
155  template <typename PROD>
156  bool checkIfComplete() const;
157 
158  Transition transition() const;
159 
160  ProcessHistory const& processHistory() const;
161 
162  Principal const& principal() const { return principal_; }
163 
164  BranchDescription const& getBranchDescription(TypeID const& type, std::string const& productInstanceName) const;
165 
166  EDPutToken::value_type getPutTokenIndex(TypeID const& type, std::string const& productInstanceName) const;
167 
170  typedef std::vector<BasicHandle> BasicHandleVec;
171 
172  BranchDescription const& getBranchDescription(unsigned int iPutTokenIndex) const;
173  ProductID const& getProductID(unsigned int iPutTokenIndex) const;
174  ModuleDescription const& moduleDescription() const { return md_; }
175 
176  std::vector<edm::ProductResolverIndex> const& putTokenIndexToProductResolverIndex() const;
177 
178  //uses the EDPutToken index
179  std::vector<bool> const& recordProvenanceList() const;
180  //------------------------------------------------------------
181  // Protected functions.
182  //
183 
184  // The following 'get' functions serve to isolate the PrincipalGetAdapter class
185  // from the Principal class.
186 
187  BasicHandle getByLabel_(TypeID const& tid, InputTag const& tag, ModuleCallingContext const* mcc) const;
188 
189  BasicHandle getByLabel_(TypeID const& tid,
190  std::string const& label,
191  std::string const& instance,
192  std::string const& process,
193  ModuleCallingContext const* mcc) const;
194 
195  BasicHandle getByToken_(TypeID const& id,
196  KindOfType kindOfType,
198  ModuleCallingContext const* mcc) const;
199 
201  InputTag const& tag,
202  ModuleCallingContext const* mcc) const;
203 
205  std::string const& label,
206  std::string const& instance,
207  std::string const& process,
208  ModuleCallingContext const* mcc) const;
209 
210  // Also isolates the PrincipalGetAdapter class
211  // from the Principal class.
212  EDProductGetter const* prodGetter() const;
213 
214  void labelsForToken(EDGetToken const& iToken, ProductLabels& oLabels) const;
215 
216  unsigned int processBlockIndex(std::string const& processName) const;
217 
218  private:
219  // Is this an Event, a LuminosityBlock, or a Run.
220  BranchType const& branchType() const;
221 
223 
224  void throwAmbiguousException(TypeID const& productType, EDGetToken token) const;
225 
227 
228  private:
229  //------------------------------------------------------------
230  // Data members
231  //
232 
233  // Each PrincipalGetAdapter must have an associated Principal, used as the
234  // source of all 'gets' and the target of 'puts'.
236 
237  // Each PrincipalGetAdapter must have a description of the module executing the
238  // "transaction" which the PrincipalGetAdapter represents.
240 
242  SharedResourcesAcquirer* resourcesAcquirer_; // We do not use propagate_const because the acquirer is itself mutable.
243  ProducerBase const* prodBase_ = nullptr;
245  };
246 
247  template <typename PROD>
248  inline std::ostream& operator<<(std::ostream& os, Handle<PROD> const& h) {
249  os << h.product() << " " << h.provenance() << " " << h.id();
250  return os;
251  }
252 
253  //------------------------------------------------------------
254  // Metafunction support for compile-time selection of code used in
255  // PrincipalGetAdapter::put member template.
256  //
257 
258  // has_postinsert is a metafunction of one argument, the type T. As
259  // with many metafunctions, it is implemented as a class with a data
260  // member 'value', which contains the value 'returned' by the
261  // metafunction.
262  //
263  // has_postinsert<T>::value is 'true' if T has the post_insert
264  // member function (with the right signature), and 'false' if T has
265  // no such member function.
266 
267  namespace detail {
268  using no_tag = std::false_type; // type indicating FALSE
269  using yes_tag = std::true_type; // type indicating TRUE
270 
271  // Definitions forthe following struct and function templates are
272  // not needed; we only require the declarations.
273  template <typename T, void (T::*)()>
275  template <typename T>
277  template <typename T>
279 
280  template <typename T>
281  struct has_postinsert {
282  static constexpr bool value = std::is_same<decltype(has_postinsert_helper<T>(nullptr)), yes_tag>::value &&
284  };
285 
286  } // namespace detail
287 
288  //------------------------------------------------------------
289 
290  // The following function objects are used by Event::put, under the
291  // control of a metafunction if, to either call the given object's
292  // post_insert function (if it has one), or to do nothing (if it
293  // does not have a post_insert function).
294  template <typename T>
295  struct DoPostInsert {
296  void operator()(T* p) const { p->post_insert(); }
297  };
298 
299  template <typename T>
301  void operator()(T*) const {}
302  };
303 
304  // Implementation of PrincipalGetAdapter member templates. See PrincipalGetAdapter.cc for the
305  // implementation of non-template members.
306  //
307 
308  template <typename PROD>
311  }
312 
313 } // namespace edm
314 #endif
EDPutToken::value_type getPutTokenIndex(TypeID const &type, std::string const &productInstanceName) const
SharedResourcesAcquirer * resourcesAcquirer_
void setConsumer(EDConsumerBase const *iConsumer)
void labelsForToken(EDGetToken const &iToken, ProductLabels &oLabels) const
static PFTauRenderPlugin instance
void throwOnPutOfUninitializedToken(char const *principalType, std::type_info const &productType)
BasicHandle getByLabel_(TypeID const &tid, InputTag const &tag, ModuleCallingContext const *mcc) const
no_tag has_postinsert_helper(...)
EDProductGetter const * prodGetter() const
std::false_type no_tag
Definition: WrapperDetail.h:22
EDConsumerBase const * consumer_
SharedResourcesAcquirer * getSharedResourcesAcquirer() const
void setSharedResourcesAcquirer(SharedResourcesAcquirer *iSra)
ProducerBase const * prodBase_
ProcessHistory const & processHistory() const
BranchType
Definition: BranchType.h:11
std::string const & productInstanceLabel(EDPutToken) const
void throwAmbiguousException(TypeID const &productType, EDGetToken token) const
void setProducer(ProducerBase const *iProd)
std::vector< bool > const & recordProvenanceList() const
char const * label
BranchType const & branchType() const
BasicHandle getByToken_(TypeID const &id, KindOfType kindOfType, EDGetToken token, ModuleCallingContext const *mcc) const
EDConsumerBase const * getConsumer() const
ProductID const & getProductID(unsigned int iPutTokenIndex) const
Principal const & principal() const
unsigned int value_type
Definition: EDPutToken.h:42
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex() const
Transition
Definition: Transition.h:12
void operator()(T *p) const
void throwOnPutOfWrongType(std::type_info const &wrongType, TypeID const &rightType)
void throwUnregisteredPutException(TypeID const &type, std::string const &productInstanceLabel) const
Definition: value.py:1
void operator()(T *) const
PrincipalGetAdapter & operator=(PrincipalGetAdapter const &)=delete
PrincipalGetAdapter(Principal const &pcpl, ModuleDescription const &md, bool isComplete)
unsigned int processBlockIndex(std::string const &processName) const
BranchDescription const & getBranchDescription(TypeID const &type, std::string const &productInstanceName) const
std::true_type yes_tag
Definition: WrapperDetail.h:23
BasicHandle getMatchingSequenceByLabel_(TypeID const &typeID, InputTag const &tag, ModuleCallingContext const *mcc) const
HLT enums.
size_t numberOfProductsConsumed() const
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
BasicHandle makeFailToGetException(KindOfType, TypeID const &, EDGetToken) const
ModuleDescription const & moduleDescription() const
ModuleDescription const & md_
void throwOnPutOfNullProduct(char const *principalType, TypeID const &productType, std::string const &productInstanceName)
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
long double T
TypeID const & getTypeIDForPutTokenIndex(EDPutToken::value_type index) const
std::vector< BasicHandle > BasicHandleVec