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 
130  } // namespace principal_get_adapter_detail
132  public:
133  PrincipalGetAdapter(Principal const& pcpl, ModuleDescription const& md, bool isComplete);
134 
136 
137  PrincipalGetAdapter(PrincipalGetAdapter const&) = delete; // Disallow copying and moving
138  PrincipalGetAdapter& operator=(PrincipalGetAdapter const&) = delete; // Disallow copying and moving
139 
140  //size_t size() const;
141 
142  void setConsumer(EDConsumerBase const* iConsumer) { consumer_ = iConsumer; }
143  EDConsumerBase const* getConsumer() const { return consumer_; }
144 
147 
148  void setProducer(ProducerBase const* iProd) { prodBase_ = iProd; }
149 
150  size_t numberOfProductsConsumed() const;
151 
152  bool isComplete() const { return isComplete_; }
153 
154  template <typename PROD>
155  bool checkIfComplete() const;
156 
157  Transition transition() const;
158 
159  ProcessHistory const& processHistory() const;
160 
161  Principal const& principal() const { return principal_; }
162 
163  BranchDescription const& getBranchDescription(TypeID const& type, std::string const& productInstanceName) const;
164 
165  EDPutToken::value_type getPutTokenIndex(TypeID const& type, std::string const& productInstanceName) const;
166 
169  typedef std::vector<BasicHandle> BasicHandleVec;
170 
171  BranchDescription const& getBranchDescription(unsigned int iPutTokenIndex) const;
172  ProductID const& getProductID(unsigned int iPutTokenIndex) const;
173  ModuleDescription const& moduleDescription() const { return md_; }
174 
175  std::vector<edm::ProductResolverIndex> const& putTokenIndexToProductResolverIndex() const;
176 
177  //uses the EDPutToken index
178  std::vector<bool> const& recordProvenanceList() const;
179  //------------------------------------------------------------
180  // Protected functions.
181  //
182 
183  // The following 'get' functions serve to isolate the PrincipalGetAdapter class
184  // from the Principal class.
185 
186  BasicHandle getByLabel_(TypeID const& tid, InputTag const& tag, ModuleCallingContext const* mcc) const;
187 
188  BasicHandle getByLabel_(TypeID const& tid,
189  std::string const& label,
190  std::string const& instance,
191  std::string const& process,
192  ModuleCallingContext const* mcc) const;
193 
194  BasicHandle getByToken_(TypeID const& id,
195  KindOfType kindOfType,
197  ModuleCallingContext const* mcc) const;
198 
200  InputTag const& tag,
201  ModuleCallingContext const* mcc) const;
202 
204  std::string const& label,
205  std::string const& instance,
206  std::string const& process,
207  ModuleCallingContext const* mcc) const;
208 
209  // Also isolates the PrincipalGetAdapter class
210  // from the Principal class.
211  EDProductGetter const* prodGetter() const;
212 
213  void labelsForToken(EDGetToken const& iToken, ProductLabels& oLabels) const;
214 
215  unsigned int processBlockIndex(std::string const& processName) const;
216 
217  private:
218  // Is this an Event, a LuminosityBlock, or a Run.
219  BranchType const& branchType() const;
220 
222 
223  void throwAmbiguousException(TypeID const& productType, EDGetToken token) const;
224 
226 
227  private:
228  //------------------------------------------------------------
229  // Data members
230  //
231 
232  // Each PrincipalGetAdapter must have an associated Principal, used as the
233  // source of all 'gets' and the target of 'puts'.
235 
236  // Each PrincipalGetAdapter must have a description of the module executing the
237  // "transaction" which the PrincipalGetAdapter represents.
239 
241  SharedResourcesAcquirer* resourcesAcquirer_; // We do not use propagate_const because the acquirer is itself mutable.
242  ProducerBase const* prodBase_ = nullptr;
244  };
245 
246  template <typename PROD>
247  inline std::ostream& operator<<(std::ostream& os, Handle<PROD> const& h) {
248  os << h.product() << " " << h.provenance() << " " << h.id();
249  return os;
250  }
251 
252  //------------------------------------------------------------
253  // Metafunction support for compile-time selection of code used in
254  // PrincipalGetAdapter::put member template.
255  //
256 
257  // has_postinsert is a metafunction of one argument, the type T. As
258  // with many metafunctions, it is implemented as a class with a data
259  // member 'value', which contains the value 'returned' by the
260  // metafunction.
261  //
262  // has_postinsert<T>::value is 'true' if T has the post_insert
263  // member function (with the right signature), and 'false' if T has
264  // no such member function.
265 
266  namespace detail {
267  using no_tag = std::false_type; // type indicating FALSE
268  using yes_tag = std::true_type; // type indicating TRUE
269 
270  // Definitions forthe following struct and function templates are
271  // not needed; we only require the declarations.
272  template <typename T, void (T::*)()>
274  template <typename T>
276  template <typename T>
278 
279  template <typename T>
280  struct has_postinsert {
281  static constexpr bool value = std::is_same<decltype(has_postinsert_helper<T>(nullptr)), yes_tag>::value &&
283  };
284 
285  } // namespace detail
286 
287  //------------------------------------------------------------
288 
289  // The following function objects are used by Event::put, under the
290  // control of a metafunction if, to either call the given object's
291  // post_insert function (if it has one), or to do nothing (if it
292  // does not have a post_insert function).
293  template <typename T>
294  struct DoPostInsert {
295  void operator()(T* p) const { p->post_insert(); }
296  };
297 
298  template <typename T>
300  void operator()(T*) const {}
301  };
302 
303  // Implementation of PrincipalGetAdapter member templates. See PrincipalGetAdapter.cc for the
304  // implementation of non-template members.
305  //
306 
307  template <typename PROD>
310  }
311 
312 } // namespace edm
313 #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