23 void throwProducesWithoutAbility(
const char* runOrLumi,
std::string const& productTypeName) {
25 <<
"Module declares it can produce a product of type \'" << productTypeName <<
"\'\nin a " << runOrLumi
26 <<
", but does not have the ability to produce in " << runOrLumi <<
"s.\n" 27 <<
"You must add a template parameter of type Begin" << runOrLumi <<
"Producer\n" 28 <<
"or End" << runOrLumi <<
"Producer to the EDProducer or EDFilter base class\n" 29 <<
"of the module. Or you could remove the call to the function \'produces\'\n" 30 <<
"(Note legacy modules are not ever allowed to produce in Runs or Lumis)\n";
35 TypeLabelList::const_iterator
const& iEnd,
40 std::vector<std::string> missingDictionaries;
41 std::vector<std::string> producedTypes;
42 std::set<std::tuple<BranchType, std::type_index, std::string>> registeredProducts;
44 for (TypeLabelList::const_iterator
p = iBegin;
p != iEnd; ++
p) {
46 throwProducesWithoutAbility(
"BeginRun",
p->typeID_.userClassName());
48 throwProducesWithoutAbility(
"EndRun",
p->typeID_.userClassName());
50 throwProducesWithoutAbility(
"BeginLuminosityBlock",
p->typeID_.userClassName());
52 throwProducesWithoutAbility(
"EndLuminosityBlock",
p->typeID_.userClassName());
56 producedTypes.emplace_back(
p->typeID_.className());
61 std::tuple<BranchType, std::type_index, std::string>
entry{
62 branchType,
p->typeID_.typeInfo(),
p->productInstanceName_};
63 if (registeredProducts.end() != registeredProducts.find(
entry)) {
68 registeredProducts.insert(
entry);
76 p->typeID_.userClassName(),
77 p->typeID_.friendlyClassName(),
78 p->productInstanceName_,
85 if (
p->branchAlias_.empty()) {
87 <<
"Branch alias type has been set to SwitchAlias, but the alias content is empty.\n" 88 <<
"Please report this error to the FWCore developers";
90 pdesc.setSwitchAliasModuleLabel(
p->branchAlias_);
94 if (pdesc.transient()) {
95 if (!
checkDictionary(missingDictionaries, pdesc.wrappedName(), pdesc.wrappedType())) {
99 producedTypes.emplace_back(pdesc.className());
105 producedTypes.emplace_back(pdesc.className());
109 if (!
p->branchAlias_.empty())
110 pdesc.insertBranchAlias(
p->branchAlias_);
114 if (!missingDictionaries.empty()) {
115 std::string context(
"Calling ProductRegistryHelper::addToRegistry, checking dictionaries for produced types");
void throwMissingDictionariesException(std::vector< std::string > &missingDictionaries, std::string const &context)
std::string const & processName() const
TypeLabelList typeLabelList_
TypeLabelList const & typeLabelList() const
used by the fwk to register the list of products of this module
virtual bool hasAbilityToProduceInBeginLumis() const
std::string const & moduleName() const
virtual ~ProductRegistryHelper() noexcept(false)
static void addToRegistry(TypeLabelList::const_iterator const &iBegin, TypeLabelList::const_iterator const &iEnd, ModuleDescription const &iDesc, ProductRegistry &iReg, ProductRegistryHelper *iProd, bool iIsListener=false)
std::string const & moduleLabel() const
virtual bool hasAbilityToProduceInBeginRuns() const
constexpr bool isEndTransition(Transition iValue)
std::vector< TypeLabelItem > TypeLabelList
bool checkDictionary(std::vector< std::string > &missingDictionaries, TypeID const &typeID)
bool checkClassDictionaries(std::vector< std::string > &missingDictionaries, TypeID const &typeID)
virtual bool hasAbilityToProduceInEndLumis() const
ParameterSetID const & parameterSetID() const
bool checkDictionaryOfWrappedType(std::vector< std::string > &missingDictionaries, TypeID const &unwrappedTypeID)
void addProduct(BranchDescription const &productdesc, bool iFromListener=false)
void setIsMergeable(BranchDescription &)
constexpr BranchType convertToBranchType(Transition iValue)
virtual bool hasAbilityToProduceInEndRuns() const