CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ProvenanceCheckerOutputModule.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Modules
4 // Class : ProvenanceCheckerOutputModule
5 //
6 // Implementation:
7 // Checks the consistency of provenance stored in the framework
8 //
9 // Original Author: Chris Jones
10 // Created: Thu Sep 11 19:24:13 EDT 2008
11 //
12 
13 // system include files
23 
24 // user include files
25 
26 namespace edm {
27 
28  class ModuleCallingContext;
29  class ParameterSet;
30 
32  public:
33  // We do not take ownership of passed stream.
36  static void fillDescriptions(ConfigurationDescriptions& descriptions);
37 
38  private:
39  virtual void write(EventPrincipal const& e, ModuleCallingContext const*) override;
40  virtual void writeLuminosityBlock(LuminosityBlockPrincipal const&, ModuleCallingContext const*) override {}
41  virtual void writeRun(RunPrincipal const&, ModuleCallingContext const*) override {}
42  };
43 
44 
45 //
46 // constants, enums and typedefs
47 //
48 
49 //
50 // static data member definitions
51 //
52 
53 //
54 // constructors and destructor
55 //
57  OutputModule(pset)
58  {
59  }
60 
61 // ProvenanceCheckerOutputModule::ProvenanceCheckerOutputModule(ProvenanceCheckerOutputModule const& rhs)
62 // {
63 // // do actual copying here;
64 // }
65 
67  {
68  }
69 
70 //
71 // assignment operators
72 //
73 // ProvenanceCheckerOutputModule const& ProvenanceCheckerOutputModule::operator=(ProvenanceCheckerOutputModule const& rhs)
74 // {
75 // //An exception safe implementation is
76 // ProvenanceCheckerOutputModule temp(rhs);
77 // swap(rhs);
78 //
79 // return *this;
80 // }
81 
82  namespace {
83  void markAncestors(ProductProvenance const& iInfo,
84  ProductProvenanceRetriever const& iMapper,
85  std::map<BranchID, bool>& oMap,
86  std::set<BranchID>& oMapperMissing) {
87  for(std::vector<BranchID>::const_iterator it = iInfo.parentage().parents().begin(),
88  itEnd = iInfo.parentage().parents().end();
89  it != itEnd;
90  ++it) {
91  //Don't look for parents if we've previously looked at the parents
92  if(oMap.find(*it) == oMap.end()) {
93  //use side effect of calling operator[] which is if the item isn't there it will add it as 'false'
94  oMap[*it];
95  ProductProvenance const* pInfo = iMapper.branchIDToProvenance(*it);
96  if(pInfo) {
97  markAncestors(*pInfo, iMapper, oMap, oMapperMissing);
98  } else {
99  oMapperMissing.insert(*it);
100  }
101  }
102  }
103  }
104  }
105 
106  void
108  //check ProductProvenance's parents to see if they are in the ProductProvenance list
109  auto mapperPtr = e.productProvenanceRetrieverPtr();
110 
111  std::map<BranchID, bool> seenParentInPrincipal;
112  std::set<BranchID> missingFromMapper;
113  std::set<BranchID> missingProductProvenance;
114 
115  std::map<BranchID, std::shared_ptr<ProductHolderBase const>> idToProductHolder;
116  for(auto const& product : e) {
117  if(product && product->singleProduct()) {
118  BranchID branchID = product->branchDescription().branchID();
119  idToProductHolder[branchID] = get_underlying_safe(product);
120  if(product->productUnavailable()) {
121  //This call seems to have a side effect of filling the 'ProductProvenance' in the ProductHolder
122  OutputHandle const oh = e.getForOutput(branchID, false, mcc);
123 
124  bool cannotFindProductProvenance=false;
125  if(!product->productProvenancePtr()) {
126  missingProductProvenance.insert(branchID);
127  cannotFindProductProvenance=true;
128  }
129  ProductProvenance const* pInfo = mapperPtr->branchIDToProvenance(branchID);
130  if(!pInfo) {
131  missingFromMapper.insert(branchID);
132  continue;
133  }
134  if(cannotFindProductProvenance) {
135  continue;
136  }
137  markAncestors(*(product->productProvenancePtr()), *mapperPtr, seenParentInPrincipal, missingFromMapper);
138  }
139  seenParentInPrincipal[branchID] = true;
140  }
141  }
142 
143  //Determine what BranchIDs are in the product registry
144  ProductRegistry const& reg = e.productRegistry();
145  ProductRegistry::ProductList const prodList = reg.productList();
146  std::set<BranchID> branchesInReg;
147  for(ProductRegistry::ProductList::const_iterator it = prodList.begin(), itEnd = prodList.end();
148  it != itEnd;
149  ++it) {
150  branchesInReg.insert(it->second.branchID());
151  }
152 
153  std::set<BranchID> missingFromPrincipal;
154  std::set<BranchID> missingFromReg;
155  for(std::map<BranchID, bool>::iterator it = seenParentInPrincipal.begin(), itEnd = seenParentInPrincipal.end();
156  it != itEnd;
157  ++it) {
158  if(!it->second) {
159  missingFromPrincipal.insert(it->first);
160  }
161  if(branchesInReg.find(it->first) == branchesInReg.end()) {
162  missingFromReg.insert(it->first);
163  }
164  }
165 
166  if(missingFromMapper.size()) {
167  LogError("ProvenanceChecker") << "Missing the following BranchIDs from ProductProvenanceRetriever\n";
168  for(std::set<BranchID>::iterator it = missingFromMapper.begin(), itEnd = missingFromMapper.end();
169  it != itEnd;
170  ++it) {
171  LogProblem("ProvenanceChecker") << *it<<" "<<idToProductHolder[*it]->branchDescription();
172  }
173  }
174  if(missingFromPrincipal.size()) {
175  LogError("ProvenanceChecker") << "Missing the following BranchIDs from EventPrincipal\n";
176  for(std::set<BranchID>::iterator it = missingFromPrincipal.begin(), itEnd = missingFromPrincipal.end();
177  it != itEnd;
178  ++it) {
179  LogProblem("ProvenanceChecker") << *it;
180  }
181  }
182 
183  if(missingProductProvenance.size()) {
184  LogError("ProvenanceChecker") << "The ProductHolders for the following BranchIDs have no ProductProvenance\n";
185  for(std::set<BranchID>::iterator it = missingProductProvenance.begin(), itEnd = missingProductProvenance.end();
186  it != itEnd;
187  ++it) {
188  LogProblem("ProvenanceChecker") << *it<<" "<<idToProductHolder[*it]->branchDescription();
189  }
190  }
191 
192  if(missingFromReg.size()) {
193  LogError("ProvenanceChecker") << "Missing the following BranchIDs from ProductRegistry\n";
194  for(std::set<BranchID>::iterator it = missingFromReg.begin(), itEnd = missingFromReg.end();
195  it != itEnd;
196  ++it) {
197  LogProblem("ProvenanceChecker") << *it;
198  }
199  }
200 
201  if(missingFromMapper.size() || missingFromPrincipal.size() || missingProductProvenance.size() || missingFromReg.size()) {
202  throw cms::Exception("ProvenanceError")
203  << (missingFromMapper.size() || missingFromPrincipal.size() ? "Having missing ancestors" : "")
204  << (missingFromMapper.size() ? " from ProductProvenanceRetriever" : "")
205  << (missingFromMapper.size() && missingFromPrincipal.size() ? " and" : "")
206  << (missingFromPrincipal.size() ? " from EventPrincipal" : "")
207  << (missingFromMapper.size() || missingFromPrincipal.size() ? ".\n" : "")
208  << (missingProductProvenance.size() ? " Have missing ProductProvenance's from ProductHolder in EventPrincipal.\n" : "")
209  << (missingFromReg.size() ? " Have missing info from ProductRegistry.\n" : "");
210  }
211  }
212 
213 //
214 // const member functions
215 //
216 
217 //
218 // static member functions
219 //
220  void
224  descriptions.add("provenanceChecker", desc);
225  }
226 }
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::map< BranchKey, BranchDescription > ProductList
virtual void write(EventPrincipal const &e, ModuleCallingContext const *) override
std::vector< BranchID > const & parents() const
Definition: Parentage.h:44
ProductList const & productList() const
std::shared_ptr< T > & get_underlying_safe(propagate_const< std::shared_ptr< T >> &iP)
ProductProvenanceRetriever const * productProvenanceRetrieverPtr() const
virtual void writeLuminosityBlock(LuminosityBlockPrincipal const &, ModuleCallingContext const *) override
virtual void writeRun(RunPrincipal const &, ModuleCallingContext const *) override
void add(std::string const &label, ParameterSetDescription const &psetDescription)
ProvenanceCheckerOutputModule(ParameterSet const &pset)
static void fillDescription(ParameterSetDescription &desc)
ProductProvenance const * branchIDToProvenance(BranchID const &bid) const
static void fillDescriptions(ConfigurationDescriptions &descriptions)
Parentage const & parentage() const