CMS 3D CMS Logo

ModuleRegistry.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: FWCore/Framework
4 // Class : edm::ModuleRegistry
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Chris Jones
10 // Created: Fri, 23 Aug 2013 16:39:58 GMT
11 //
12 
13 // system include files
14 
15 // user include files
18 
19 namespace edm {
20  std::shared_ptr<maker::ModuleHolder> ModuleRegistry::getModule(
21  MakeModuleParams const& p,
22  std::string const& moduleLabel,
23  signalslot::Signal<void(ModuleDescription const&)>& iPre,
24  signalslot::Signal<void(ModuleDescription const&)>& iPost) {
25  auto modItr = labelToModule_.find(moduleLabel);
26  if (modItr == labelToModule_.end()) {
27  auto modPtr = Factory::get()->makeModule(p, typeResolverMaker_, iPre, iPost);
28 
29  // Transfer ownership of worker to the registry
30  labelToModule_[moduleLabel] = modPtr;
31  return modPtr;
32  }
33  return get_underlying_safe(modItr->second);
34  }
35 
37  edm::ParameterSet const& iPSet,
38  edm::PreallocationConfiguration const& iPrealloc) {
39  auto modItr = labelToModule_.find(iModuleLabel);
40  if (modItr == labelToModule_.end()) {
41  return nullptr;
42  }
43 
44  auto modPtr = Factory::get()->makeReplacementModule(iPSet);
45  modPtr->setModuleDescription(modItr->second->moduleDescription());
46  modPtr->preallocate(iPrealloc);
47 
48  // Transfer ownership of worker to the registry
49  modItr->second = modPtr;
50  return modItr->second.get();
51  }
52 
53  void ModuleRegistry::deleteModule(std::string const& iModuleLabel,
54  signalslot::Signal<void(ModuleDescription const&)>& iPre,
55  signalslot::Signal<void(ModuleDescription const&)>& iPost) {
56  auto modItr = labelToModule_.find(iModuleLabel);
57  if (modItr == labelToModule_.end()) {
58  throw cms::Exception("LogicError")
59  << "Trying to delete module " << iModuleLabel
60  << " but it does not exist in the ModuleRegistry. Please contact framework developers.";
61  }
62  // If iPost throws and exception, let it propagate
63  // If deletion throws an exception, capture it and call iPost before throwing an exception
64  // If iPost throws an exception, let it propagate
65  auto md = modItr->second->moduleDescription();
66  iPre(modItr->second->moduleDescription());
67  bool postCalled = false;
68  // exception is rethrown
69  CMS_SA_ALLOW try {
70  labelToModule_.erase(modItr);
71  // if exception then post will be called in the catch block
72  postCalled = true;
73  iPost(md);
74  } catch (...) {
75  if (not postCalled) {
76  // we're already handling exception, nothing we can do if iPost throws
77  CMS_SA_ALLOW try { iPost(md); } catch (...) {
78  }
79  }
80  throw;
81  }
82  }
83 } // namespace edm
ModuleTypeResolverMaker const * typeResolverMaker_
#define CMS_SA_ALLOW
std::shared_ptr< maker::ModuleHolder > getModule(MakeModuleParams const &p, std::string const &moduleLabel, signalslot::Signal< void(ModuleDescription const &)> &iPre, signalslot::Signal< void(ModuleDescription const &)> &iPost)
std::shared_ptr< maker::ModuleHolder > makeReplacementModule(const edm::ParameterSet &) const
Definition: Factory.cc:43
constexpr std::shared_ptr< T > & get_underlying_safe(propagate_const< std::shared_ptr< T >> &iP)
std::shared_ptr< maker::ModuleHolder > makeModule(const MakeModuleParams &, const ModuleTypeResolverMaker *, signalslot::Signal< void(const ModuleDescription &)> &pre, signalslot::Signal< void(const ModuleDescription &)> &post) const
Definition: Factory.cc:33
std::map< std::string, edm::propagate_const< std::shared_ptr< maker::ModuleHolder > > > labelToModule_
HLT enums.
static Factory const * get()
Definition: Factory.cc:21
maker::ModuleHolder * replaceModule(std::string const &iModuleLabel, edm::ParameterSet const &iPSet, edm::PreallocationConfiguration const &)
void deleteModule(std::string const &iModuleLabel, signalslot::Signal< void(ModuleDescription const &)> &iPre, signalslot::Signal< void(ModuleDescription const &)> &iPost)