CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::UnscheduledProductResolver Class Reference

#include <ProductResolvers.h>

Inheritance diagram for edm::UnscheduledProductResolver:
edm::ProducedProductResolver edm::DataManagingProductResolver edm::ProductResolverBase

Public Member Functions

void setupUnscheduled (UnscheduledConfigurator const &) final
 
 UnscheduledProductResolver (std::shared_ptr< BranchDescription const > bd)
 
- Public Member Functions inherited from edm::ProducedProductResolver
 ProducedProductResolver (std::shared_ptr< BranchDescription const > bd, ProductStatus iDefaultStatus)
 
- Public Member Functions inherited from edm::DataManagingProductResolver
void connectTo (ProductResolverBase const &, Principal const *) final
 
 DataManagingProductResolver (std::shared_ptr< BranchDescription const > bd, ProductStatus iDefaultStatus)
 
void resetStatus ()
 
template<bool callResolver, typename FUNC >
ProductResolverBase::Resolution resolveProductImpl (FUNC resolver) const
 
- Public Member Functions inherited from edm::ProductResolverBase
BranchDescription const & branchDescription () const
 
std::string const & moduleLabel () const
 
ProductResolverBaseoperator= (ProductResolverBase const &)=delete
 
void prefetchAsync (WaitingTask *waitTask, Principal const &principal, bool skipCurrentProcess, ServiceToken const &token, SharedResourcesAcquirer *sra, ModuleCallingContext const *mcc) const
 
std::string const & processName () const
 
ProductID const & productID () const
 
std::string const & productInstanceName () const
 
ProductProvenance const * productProvenancePtr () const
 
bool productResolved () const
 
 ProductResolverBase ()
 
 ProductResolverBase (ProductResolverBase const &)=delete
 
TypeID productType () const
 
bool productUnavailable () const
 
bool productWasDeleted () const
 
bool productWasFetchedAndIsValid (bool iSkipCurrentProcess) const
 
Provenance const * provenance () const
 
bool provenanceAvailable () const
 
void putOrMergeProduct (std::unique_ptr< WrapperBase > edp) const
 
void putProduct (std::unique_ptr< WrapperBase > edp) const
 
void resetBranchDescription (std::shared_ptr< BranchDescription const > bd)
 
void resetProductData ()
 
std::string const & resolvedModuleLabel () const
 
Resolution resolveProduct (Principal const &principal, bool skipCurrentProcess, SharedResourcesAcquirer *sra, ModuleCallingContext const *mcc) const
 
void retrieveAndMerge (Principal const &principal) const
 
void setProcessHistory (ProcessHistory const &ph)
 
void setProvenance (ProductProvenanceRetriever const *provRetriever, ProcessHistory const &ph, ProductID const &pid)
 
bool singleProduct () const
 
StableProvenance const * stableProvenance () const
 
void unsafe_deleteProduct () const
 
bool unscheduledWasNotRun () const
 
void write (std::ostream &os) const
 
virtual ~ProductResolverBase ()
 

Private Member Functions

void prefetchAsync_ (WaitingTask *waitTask, Principal const &principal, bool skipCurrentProcess, ServiceToken const &token, SharedResourcesAcquirer *sra, ModuleCallingContext const *mcc) const override
 
void resetProductData_ (bool deleteEarly) override
 
Resolution resolveProduct_ (Principal const &principal, bool skipCurrentProcess, SharedResourcesAcquirer *sra, ModuleCallingContext const *mcc) const override
 
bool unscheduledWasNotRun_ () const override
 

Private Attributes

UnscheduledAuxiliary const * aux_
 
std::atomic< bool > prefetchRequested_
 
WaitingTaskList waitingTasks_
 
Workerworker_
 

Additional Inherited Members

- Public Types inherited from edm::DataManagingProductResolver
enum  ProductStatus {
  ProductStatus::ProductSet, ProductStatus::NotPut, ProductStatus::ResolveFailed, ProductStatus::ResolveNotRun,
  ProductStatus::ProductDeleted
}
 
- Protected Member Functions inherited from edm::ProducedProductResolver
void putProduct_ (std::unique_ptr< WrapperBase > edp) const override
 
- Protected Member Functions inherited from edm::DataManagingProductResolver
ProductStatus defaultStatus () const
 
template<bool callResolver, typename FUNC >
Resolution resolveProductImpl (FUNC resolver) const
 
void setFailedStatus () const
 
void setProduct (std::unique_ptr< WrapperBase > edp) const
 
ProductStatus status () const
 

Detailed Description

Definition at line 173 of file ProductResolvers.h.

Constructor & Destructor Documentation

edm::UnscheduledProductResolver::UnscheduledProductResolver ( std::shared_ptr< BranchDescription const >  bd)
inlineexplicit

Member Function Documentation

void edm::UnscheduledProductResolver::prefetchAsync_ ( WaitingTask waitTask,
Principal const &  principal,
bool  skipCurrentProcess,
ServiceToken const &  token,
SharedResourcesAcquirer sra,
ModuleCallingContext const *  mcc 
) const
overrideprivatevirtual

Implements edm::ProductResolverBase.

Definition at line 365 of file ProductResolvers.cc.

References event(), edm::ModuleCallingContext::getStreamContext(), edm::make_waiting_task(), cmsRelvalreport::principal(), and lumiQTWidget::t.

371  {
372  if(skipCurrentProcess) { return; }
373  waitingTasks_.add(waitTask);
374  bool expected = false;
375  if(prefetchRequested_.compare_exchange_strong(expected, true)) {
376 
377  //Have to create a new task which will make sure the state for UnscheduledProductResolver
378  // is properly set after the module has run
379  auto t = make_waiting_task(tbb::task::allocate_root(),
380  [this](std::exception_ptr const* iPtr)
381  {
382  //The exception is being rethrown because resolveProductImpl sets the ProductResolver to a failed
383  // state for the case where an exception occurs during the call to the function.
384  try {
385  resolveProductImpl<true>([iPtr]() {
386  if ( iPtr) {
387  std::rethrow_exception(*iPtr);
388  }
389  });
390  } catch(...) {
391  waitingTasks_.doneWaiting(std::current_exception());
392  return;
393  }
394  waitingTasks_.doneWaiting(nullptr);
395  } );
396  auto const& event = static_cast<EventPrincipal const&>(principal);
397  ParentContext parentContext(mcc);
398 
399  worker_->doWorkAsync<OccurrenceTraits<EventPrincipal, BranchActionStreamBegin> >(t,
400  event,
401  *(aux_->eventSetup()),
402  token,
403  event.streamID(),
404  parentContext,
405  mcc->getStreamContext());
406  }
407  }
void add(WaitingTask *)
Adds task to the waiting list.
EventSetup const * eventSetup() const
UnscheduledAuxiliary const * aux_
void doneWaiting(std::exception_ptr iPtr)
Signals that the resource is now available and tasks should be spawned.
def principal(options)
std::atomic< bool > prefetchRequested_
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
FunctorWaitingTask< F > * make_waiting_task(ALLOC &&iAlloc, F f)
Definition: WaitingTask.h:92
void doWorkAsync(WaitingTask *task, typename T::MyPrincipal const &, EventSetup const &c, ServiceToken const &token, StreamID stream, ParentContext const &parentContext, typename T::Context const *context)
Definition: Worker.h:852
void edm::UnscheduledProductResolver::resetProductData_ ( bool  deleteEarly)
overrideprivatevirtual

Reimplemented from edm::DataManagingProductResolver.

Definition at line 410 of file ProductResolvers.cc.

References edm::DataManagingProductResolver::resetProductData_().

410  {
411  prefetchRequested_ = false;
414  }
void resetProductData_(bool deleteEarly) override
void reset()
Resets access to the resource so that added tasks will wait.
std::atomic< bool > prefetchRequested_
ProductResolverBase::Resolution edm::UnscheduledProductResolver::resolveProduct_ ( Principal const &  principal,
bool  skipCurrentProcess,
SharedResourcesAcquirer sra,
ModuleCallingContext const *  mcc 
) const
overrideprivatevirtual

Implements edm::ProductResolverBase.

Definition at line 321 of file ProductResolvers.cc.

References cms::Exception::addContext(), event(), edm::ModuleCallingContext::getStreamContext(), edm::make_sentry(), cmsRelvalreport::principal(), and Resolution.

324  {
325  if (!skipCurrentProcess and worker_) {
326  return resolveProductImpl<true>(
327  [&principal,this,sra,mcc]() {
328  try {
329  auto const& event = static_cast<EventPrincipal const&>(principal);
330  ParentContext parentContext(mcc);
331  aux_->preModuleDelayedGetSignal_.emit(*(mcc->getStreamContext()),*mcc);
332 
333  auto workCall = [this,&event,&parentContext,mcc] () {
334  auto sentry( make_sentry(mcc,[this](ModuleCallingContext const* iContext){aux_->postModuleDelayedGetSignal_.emit(*(iContext->getStreamContext()), *iContext); }));
335 
336  worker_->doWork<OccurrenceTraits<EventPrincipal, BranchActionStreamBegin> >(
337  event,
338  *(aux_->eventSetup()),
339  event.streamID(),
340  parentContext,
341  mcc->getStreamContext());
342  };
343 
344  if (sra) {
345  assert(false);
346  } else {
347  workCall();
348  }
349 
350  }
351  catch (cms::Exception & ex) {
352  std::ostringstream ost;
353  ost << "Calling produce method for unscheduled module "
354  << worker_->description().moduleName() << "/'"
355  << worker_->description().moduleLabel() << "'";
356  ex.addContext(ost.str());
357  throw;
358  }
359  });
360  }
361  return Resolution(nullptr);
362  }
std::unique_ptr< T, F > make_sentry(T *iObject, F iFunc)
NOTE: if iObject is null, then iFunc will not be called.
Definition: make_sentry.h:29
EventSetup const * eventSetup() const
UnscheduledAuxiliary const * aux_
def principal(options)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void addContext(std::string const &context)
Definition: Exception.cc:227
signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)> preModuleDelayedGetSignal_
signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)> postModuleDelayedGetSignal_
void emit(Args &&...args) const
Definition: Signal.h:48
void edm::UnscheduledProductResolver::setupUnscheduled ( UnscheduledConfigurator const &  iConfigure)
finalvirtual

Reimplemented from edm::ProductResolverBase.

Definition at line 313 of file ProductResolvers.cc.

References edm::UnscheduledConfigurator::auxiliary(), edm::ProductResolverBase::branchDescription(), edm::UnscheduledConfigurator::findWorker(), and edm::ProductResolverBase::moduleLabel().

313  {
314  aux_ = iConfigure.auxiliary();
315  worker_ = iConfigure.findWorker(branchDescription().moduleLabel());
316  assert(worker_ != nullptr);
317 
318  }
UnscheduledAuxiliary const * aux_
BranchDescription const & branchDescription() const
std::string const & moduleLabel() const
bool edm::UnscheduledProductResolver::unscheduledWasNotRun_ ( ) const
inlineoverrideprivatevirtual

Member Data Documentation

UnscheduledAuxiliary const* edm::UnscheduledProductResolver::aux_
private

Definition at line 198 of file ProductResolvers.h.

std::atomic<bool> edm::UnscheduledProductResolver::prefetchRequested_
mutableprivate

Definition at line 200 of file ProductResolvers.h.

WaitingTaskList edm::UnscheduledProductResolver::waitingTasks_
mutableprivate

Definition at line 197 of file ProductResolvers.h.

Worker* edm::UnscheduledProductResolver::worker_
private

Definition at line 199 of file ProductResolvers.h.