1 #ifndef FWCore_Framework_GlobalSchedule_h 2 #define FWCore_Framework_GlobalSchedule_h 31 #include "boost/range/adaptor/reversed.hpp" 38 class GlobalScheduleSignalSentry {
40 GlobalScheduleSignalSentry(
ActivityRegistry*
a,
typename T::Context
const* context) :
41 a_(a), context_(context),
43 if (a_) T::preScheduleSignal(a_, context_);
47 if (a_) T::postScheduleSignal(a_, context_);
49 if(allowThrow_) {
throw;}
60 typename T::Context
const* context_;
67 class ExceptionCollector;
69 class PreallocationConfiguration;
71 class TriggerResultInserter;
72 class PathStatusInserter;
73 class EndPathStatusInserter;
84 std::vector<
edm::propagate_const<std::shared_ptr<EndPathStatusInserter>>>& endPathStatusInserters,
85 std::shared_ptr<ModuleRegistry> modReg,
86 std::vector<std::string>
const& modulesToUse,
91 std::shared_ptr<ActivityRegistry> areg,
92 std::shared_ptr<ProcessConfiguration> processConfiguration,
101 bool cleaningUpAfterException =
false);
112 std::vector<ModuleDescription const*> getAllModuleDescriptions()
const;
119 bool terminate()
const;
126 return workerManagers_[0].allWorkers();
154 return workerManagers_[0].actionTable();
164 template <
typename T>
167 typename T::MyPrincipal& ep,
170 bool cleaningUpAfterException) {
173 auto globalContext = std::make_shared<GlobalContext>(T::makeGlobalContext(ep, processContext_));
178 T::preScheduleSignal(actReg_.get(), globalContext.get());
182 [
this,iHolder, cleaningUpAfterException, globalContext, token](std::exception_ptr
const* iPtr)
mutable 184 std::exception_ptr excpt;
190 std::rethrow_exception(excpt);
194 std::ostringstream ost;
196 ost<<
"Processing "<<T::transitionName()<<
" ";
200 excpt = std::current_exception();
210 T::postScheduleSignal(actReg_.get(), globalContext.get());
213 excpt = std::current_exception();
220 workerManagers_[ep.index()].resetAll();
225 workerManagers_[ep.index()].setupOnDemandSystem(ep,es);
229 auto&
aw = workerManagers_[ep.index()].allWorkers();
std::vector< std::string > vstring
std::vector< WorkerManager > workerManagers_
roAction_t actions[nactions]
std::vector< Worker * > AllWorkers
void addContextAndPrintException(char const *context, cms::Exception &ex, bool disablePrint)
edm::ActivityRegistry * reg_
static StreamID invalidStreamID()
void doneWaiting(std::exception_ptr iExcept)
std::vector< Worker * > Workers
AllWorkers const & allWorkers() const
returns the collection of pointers to workers
std::list< std::string > const & context() const
std::shared_ptr< Worker > WorkerPtr
std::shared_ptr< ActivityRegistry > actReg_
~SendTerminationSignalIfException()
void processOneGlobalAsync(WaitingTaskHolder holder, typename T::MyPrincipal &principal, EventSetup const &eventSetup, ServiceToken const &token, bool cleaningUpAfterException=false)
FunctorWaitingTask< F > * make_waiting_task(ALLOC &&iAlloc, F f)
SendTerminationSignalIfException(edm::ActivityRegistry *iReg, edm::GlobalContext const *iContext)
ExceptionToActionTable const & actionTable() const
returns the action table
GlobalContext const * context_
auto wrap(F iFunc) -> decltype(iFunc())
ProcessContext const * processContext_
void completedSuccessfully()
std::vector< edm::propagate_const< WorkerPtr > > extraWorkers_