The Gaudi Framework  v33r1 (b1225454)
HiveSlimEventLoopMgr.cpp
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 // Local includes
13 #include "HistogramAgent.h"
14 
15 // Framework includes
17 #include "GaudiKernel/DataObject.h"
18 #include "GaudiKernel/DataSvc.h"
20 #include "GaudiKernel/Incident.h"
21 
22 // External libraries
23 #include <chrono>
24 
25 // Instantiation of a static factory class used by clients to create instances of this service
27 
28 #define ON_DEBUG if ( msgLevel( MSG::DEBUG ) )
29 #define DEBUG_MSG ON_DEBUG debug()
30 
31 #define ON_VERBOSE if ( msgLevel( MSG::VERBOSE ) )
32 #define VERBOSE_MSG ON_VERBOSE verbose()
33 
34 //--------------------------------------------------------------------------------------------
35 // Standard Destructor
36 //--------------------------------------------------------------------------------------------
38 
39 //--------------------------------------------------------------------------------------------
40 // implementation of IAppMgrUI::initialize
41 //--------------------------------------------------------------------------------------------
44  if ( !sc.isSuccess() ) {
45  error() << "Failed to initialize Service Base class." << endmsg;
46  return StatusCode::FAILURE;
47  }
48 
49  // Get the references to the services that are needed by the ApplicationMgr itself
50  m_incidentSvc = serviceLocator()->service( "IncidentSvc" );
51  if ( !m_incidentSvc ) {
52  fatal() << "Error retrieving IncidentSvc." << endmsg;
53  return StatusCode::FAILURE;
54  }
55 
56  // Setup access to event data services
57  m_evtDataMgrSvc = serviceLocator()->service( "EventDataSvc" );
58  if ( !m_evtDataMgrSvc ) {
59  fatal() << "Error retrieving EventDataSvc interface IDataManagerSvc." << endmsg;
60  return StatusCode::FAILURE;
61  }
62  m_whiteboard = serviceLocator()->service( "EventDataSvc" );
63  if ( !m_whiteboard ) {
64  fatal() << "Error retrieving EventDataSvc interface IHiveWhiteBoard." << endmsg;
65  return StatusCode::FAILURE;
66  }
68  if ( !m_schedulerSvc ) {
69  fatal() << "Error retrieving SchedulerSvc interface IScheduler." << endmsg;
70  return StatusCode::FAILURE;
71  }
72  // Obtain the IProperty of the ApplicationMgr
74  if ( !m_appMgrProperty ) {
75  fatal() << "IProperty interface not found in ApplicationMgr." << endmsg;
76  return StatusCode::FAILURE;
77  }
78 
79  // We do not expect a Event Selector necessarily being declared
80  setProperty( m_appMgrProperty->getProperty( "EvtSel" ) ).ignore();
81 
82  if ( m_evtsel != "NONE" || m_evtsel.length() == 0 ) {
83  m_evtSelector = serviceLocator()->service( "EventSelector" );
84  if ( m_evtSelector ) {
85  // Setup Event Selector
87  if ( !sc.isSuccess() ) {
88  fatal() << "Can not create the event selector Context." << endmsg;
89  return sc;
90  }
91  } else {
92  fatal() << "EventSelector not found." << endmsg;
93  return sc;
94  }
95  } else {
96  m_evtSelector = 0;
97  m_evtContext = 0;
98  if ( m_warnings ) {
99  warning() << "Unable to locate service \"EventSelector\" " << endmsg;
100  warning() << "No events will be processed from external input." << endmsg;
101  }
102  }
103 
104  // Setup access to histogramming services
105  m_histoDataMgrSvc = serviceLocator()->service( "HistogramDataSvc" );
106  if ( !m_histoDataMgrSvc ) {
107  fatal() << "Error retrieving HistogramDataSvc." << endmsg;
108  return sc;
109  }
110  // Setup histogram persistency
111  m_histoPersSvc = serviceLocator()->service( "HistogramPersistencySvc" );
112  if ( !m_histoPersSvc ) {
113  warning() << "Histograms cannot not be saved - though required." << endmsg;
114  return sc;
115  }
116 
117  // Setup algorithm resource pool
118  m_algResourcePool = serviceLocator()->service( "AlgResourcePool" );
119  if ( !m_algResourcePool ) {
120  fatal() << "Error retrieving AlgResourcePool" << endmsg;
121  return StatusCode::FAILURE;
122  }
123 
124  m_algExecStateSvc = serviceLocator()->service( "AlgExecStateSvc" );
125  if ( !m_algExecStateSvc ) {
126  fatal() << "Error retrieving AlgExecStateSvc" << endmsg;
127  return StatusCode::FAILURE;
128  }
129 
131  info() << "Found " << m_eventNumberBlacklist.size() << " events in black list" << endmsg;
132 
133  return StatusCode::SUCCESS;
134 }
135 //--------------------------------------------------------------------------------------------
136 // implementation of IService::reinitialize
137 //--------------------------------------------------------------------------------------------
139 
140  // Check to see whether a new Event Selector has been specified
141  setProperty( m_appMgrProperty->getProperty( "EvtSel" ) ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
142  if ( m_evtsel != "NONE" || m_evtsel.empty() ) {
143  auto theSvc = serviceLocator()->service( "EventSelector" );
144  auto theEvtSel = theSvc.as<IEvtSelector>();
145  StatusCode sc;
146  if ( theEvtSel && ( theEvtSel.get() != m_evtSelector.get() ) ) {
147  // Setup Event Selector
148  if ( m_evtSelector.get() && m_evtContext ) {
149  // Need to release context before switching to new event selector
150  m_evtSelector->releaseContext( m_evtContext ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
151  m_evtContext = nullptr;
152  }
153  m_evtSelector = theEvtSel;
154  if ( theSvc->FSMState() == Gaudi::StateMachine::INITIALIZED ) {
155  sc = theSvc->reinitialize();
156  if ( !sc.isSuccess() ) {
157  error() << "Failure Reinitializing EventSelector " << theSvc->name() << endmsg;
158  return sc;
159  }
160  } else {
161  sc = theSvc->sysInitialize();
162  if ( !sc.isSuccess() ) {
163  error() << "Failure Initializing EventSelector " << theSvc->name() << endmsg;
164  return sc;
165  }
166  }
168  if ( !sc.isSuccess() ) {
169  error() << "Can not create Context " << theSvc->name() << endmsg;
170  return sc;
171  }
172 
173  } else if ( m_evtSelector ) {
174  if ( m_evtContext ) {
175  m_evtSelector->releaseContext( m_evtContext ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
176  m_evtContext = nullptr;
177  }
179  if ( !sc.isSuccess() ) {
180  error() << "Can not create Context " << theSvc->name() << endmsg;
181  return sc;
182  }
183  }
184  } else if ( m_evtSelector && m_evtContext ) {
185  m_evtSelector->releaseContext( m_evtContext ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
186  m_evtSelector = nullptr;
187  m_evtContext = nullptr;
188  }
189  return StatusCode::SUCCESS;
190 }
191 
192 //--------------------------------------------------------------------------------------------
193 // implementation of IService::stop
194 //--------------------------------------------------------------------------------------------
195 // Removed call to MinimalEventLoopMgr!
197  if ( !m_endEventFired ) {
198  // Fire pending EndEvent incident
199  m_incidentSvc->fireIncident( Incident( name(), IncidentType::EndEvent ) );
200  m_endEventFired = true;
201  }
202  return StatusCode::SUCCESS;
203 }
204 
205 //--------------------------------------------------------------------------------------------
206 // implementation of IAppMgrUI::finalize
207 //--------------------------------------------------------------------------------------------
208 // Removed call to MinimalEventLoopMgr!
210 
211  StatusCode scRet;
213 
214  if ( sc.isFailure() ) {
215  scRet = StatusCode::FAILURE;
216  error() << "Problems finalizing Service base class" << endmsg;
217  }
218 
219  // Save Histograms Now
220  if ( m_histoPersSvc ) {
221  HistogramAgent agent;
222  sc = m_histoDataMgrSvc->traverseTree( &agent );
223  if ( sc.isSuccess() ) {
224  const IDataSelector& objects = agent.selectedObjects();
225  // skip /stat entry!
226  sc = std::accumulate( begin( objects ), end( objects ), sc, [&]( StatusCode s, const auto& i ) {
227  IOpaqueAddress* pAddr = nullptr;
228  StatusCode iret = m_histoPersSvc->createRep( i, pAddr );
229  if ( iret.isSuccess() ) i->registry()->setAddress( pAddr );
230  return s.isFailure() ? s : iret;
231  } );
232  sc = std::accumulate( begin( objects ), end( objects ), sc, [&]( StatusCode s, const auto& i ) {
233  IRegistry* reg = i->registry();
234  StatusCode iret = m_histoPersSvc->fillRepRefs( reg->address(), i );
235  return s.isFailure() ? s : iret;
236  } );
237  if ( sc.isSuccess() ) {
238  info() << "Histograms converted successfully according to request." << endmsg;
239  } else {
240  error() << "Error while saving Histograms." << endmsg;
241  }
242  } else {
243  error() << "Error while traversing Histogram data store" << endmsg;
244  }
245  }
246 
247  scRet = sc;
248 
249  // Release event selector context
250  if ( m_evtSelector && m_evtContext ) {
252  m_evtContext = nullptr;
253  }
254 
256 
257  // Release all interfaces...
260 
264 
265  return scRet;
266 }
267 
268 //--------------------------------------------------------------------------------------------
269 // implementation of executeEvent(void* par)
270 //--------------------------------------------------------------------------------------------
272 
274 
275  // Check if event number is in blacklist
276  if ( LIKELY( m_blackListBS != nullptr ) ) { // we are processing a finite number of events, use bitset blacklist
277  if ( m_blackListBS->test( ctx.evt() ) ) {
278  VERBOSE_MSG << "Event " << ctx.evt() << " on black list" << endmsg;
279  m_whiteboard->freeStore( ctx.slot() ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
281  }
282  } else if ( std::binary_search( m_eventNumberBlacklist.begin(), m_eventNumberBlacklist.end(), ctx.evt() ) ) {
283  VERBOSE_MSG << "Event " << ctx.evt() << " on black list" << endmsg;
284  m_whiteboard->freeStore( ctx.slot() ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
286  }
287 
288  VERBOSE_MSG << "Beginning to process event " << ctx.evt() << endmsg;
289 
290  // An incident may schedule a stop, in which case is better to exit before the actual execution.
291  // DP have to find out who shoots this
292  /* if ( m_scheduledStop ) {
293  always() << "Terminating event processing loop due to a stop scheduled by an incident listener" << endmsg;
294  return StatusCode::SUCCESS;
295  }*/
296 
297  // Fire BeginEvent "Incident"
298  m_incidentSvc->fireIncident( std::make_unique<Incident>( name(), IncidentType::BeginEvent, ctx ) );
299 
300  // Now add event to the scheduler
301  VERBOSE_MSG << "Adding event " << ctx.evt() << ", slot " << ctx.slot() << " to the scheduler" << endmsg;
302 
303  m_incidentSvc->fireIncident( std::make_unique<Incident>( name(), IncidentType::BeginProcessing, ctx ) );
304 
305  StatusCode addEventStatus = m_schedulerSvc->pushNewEvent( new EventContext{std::move( ctx )} );
306 
307  // If this fails, we need to wait for something to complete
308  if ( !addEventStatus.isSuccess() ) {
309  fatal() << "An event processing slot should be now free in the scheduler, but it appears not to be the case."
310  << endmsg;
311  }
312 
313  return StatusCode::SUCCESS;
314 }
315 
316 //--------------------------------------------------------------------------------------------
317 // implementation of IEventProcessing::executeRun
318 //--------------------------------------------------------------------------------------------
320  StatusCode sc;
321  bool eventfailed = false;
322 
323  if ( maxevt > 0 ) { // finite number of events to process
324  const unsigned int umaxevt = static_cast<unsigned int>( maxevt );
325  m_blackListBS = std::make_unique<boost::dynamic_bitset<>>( maxevt ); // all initialized to zero
326  for ( unsigned int i = 0; i < m_eventNumberBlacklist.size() && m_eventNumberBlacklist[i] <= umaxevt;
327  ++i ) { // black list is sorted in init
328  m_blackListBS->set( m_eventNumberBlacklist[i], true );
329  }
330  }
331 
332  // Call now the nextEvent(...)
333  sc = nextEvent( maxevt );
334  if ( sc.isFailure() ) eventfailed = true;
335 
336  m_blackListBS.reset( nullptr );
337 
338  return eventfailed ? StatusCode::FAILURE : StatusCode::SUCCESS;
339 }
340 
341 //--------------------------------------------------------------------------------------------
342 // Implementation of IEventProcessor::stopRun()
343 //--------------------------------------------------------------------------------------------
345  // Set the application return code
346  auto appmgr = serviceLocator()->as<IProperty>();
348  error() << "Could not set return code of the application (" << Gaudi::ReturnCode::ScheduledStop << ")" << endmsg;
349  }
350  m_scheduledStop = true;
351  return StatusCode::SUCCESS;
352 }
353 
354 //--------------------------------------------------------------------------------------------
355 // implementation of IAppMgrUI::nextEvent
356 //--------------------------------------------------------------------------------------------
357 // Here the loop on the events takes place.
358 // This is also the natural place to put the preparation of the algorithms
359 // contexts, which contain the event specific data.
360 #include "GaudiKernel/Memory.h"
362 
363  // Calculate runtime
365 
366  // Reset the application return code.
368 
369  int finishedEvts = 0;
370  int createdEvts = 0;
371  int skippedEvts = 0;
372  info() << "Starting loop on events" << endmsg;
373  // Loop until the finished events did not reach the maxevt number
374  bool loop_ended = false;
375  // Run the first event before spilling more than one
376  bool newEvtAllowed = false;
377 
378  constexpr double oneOver1024 = 1. / 1024.;
379 
380  uint iteration = 0;
381  auto start_time = Clock::now();
382  while ( !loop_ended && ( maxevt < 0 || ( finishedEvts + skippedEvts ) < maxevt ) ) {
383  DEBUG_MSG << "work loop iteration " << iteration++ << endmsg;
384  // if the created events did not reach maxevt, create an event
385  if ( ( newEvtAllowed || createdEvts == 0 ) && // Launch the first event alone
386  createdEvts >= 0 && // The events are not finished with an unlimited number of events
387  ( createdEvts < maxevt || maxevt < 0 ) && // The events are not finished with a limited number of events
388  m_schedulerSvc->freeSlots() > 0 && // There are still free slots in the scheduler
389  m_whiteboard->freeSlots() > 0 ) { // There are still free slots in the whiteboard
390 
391  if ( 1 == createdEvts ) // reset counter to count from event 1
392  start_time = Clock::now();
393 
394  DEBUG_MSG << "createdEvts: " << createdEvts << ", freeslots: " << m_schedulerSvc->freeSlots() << endmsg;
395  // DP remove to remove the syscalls...
396  // if (0!=createdEvts){
397  // info() << "Event Number = " << createdEvts
398  // << " WSS (MB) = " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1024
399  // << " Time (s) = " << secsFromStart(start_time) << endmsg;
400  // }
401 
402  // TODO can we adapt the interface of executeEvent for a nicer solution?
404  while ( !sc.isSuccess() // we haven't created an event yet
405  && ( createdEvts < maxevt || maxevt < 0 ) ) { // redunant check for maxEvts, can we do better?
406  {
407  auto ctx = createEventContext();
408  if ( !ctx.valid() ) {
409  createdEvts = -1;
410  break; // invalid context means end of loop
411  }
412  sc = executeEvent( std::move( ctx ) );
413  }
414  if ( sc.isRecoverable() ) { // we skipped an event
415  ++skippedEvts;
416  } else if ( sc.isFailure() ) { // exit immediatly
417  return sc;
418  } // else we have an success --> exit loop
419  ++createdEvts;
420  }
421 
422  } // end if condition createdEvts < maxevt
423  else {
424  // all the events were created but not all finished or the slots were
425  // all busy: the scheduler should finish its job
426 
427  DEBUG_MSG << "Draining the scheduler" << endmsg;
428 
429  // Pull out of the scheduler the finished events
430  if ( drainScheduler( finishedEvts ).isFailure() ) loop_ended = true;
431  newEvtAllowed = true;
432  }
433  } // end main loop on finished events
434  auto end_time = Clock::now();
435 
436  info() << "---> Loop Finished (skipping 1st evt) - "
437  << " WSS " << System::mappedMemory( System::MemoryUnit::kByte ) * oneOver1024 << " total time "
438  << std::chrono::duration_cast<std::chrono::nanoseconds>( end_time - start_time ).count() << endmsg;
439  info() << skippedEvts << " events were SKIPed" << endmsg;
440 
441  return StatusCode::SUCCESS;
442 }
443 
444 //---------------------------------------------------------------------------
445 
448  refpAddr = nullptr;
450  if ( sc.isFailure() ) return sc;
451  // Create root address and assign address to data service
452  sc = m_evtSelector->createAddress( *m_evtContext, refpAddr );
453  if ( sc.isSuccess() ) return sc;
454  sc = m_evtSelector->next( *m_evtContext );
455  if ( sc.isFailure() ) return sc;
456  sc = m_evtSelector->createAddress( *m_evtContext, refpAddr );
457  if ( !sc.isSuccess() ) warning() << "Error creating IOpaqueAddress." << endmsg;
458  return sc;
459 }
460 
461 //---------------------------------------------------------------------------
462 
464  StatusCode sc;
465  if ( m_evtContext ) {
466  //---This is the "event iterator" context from EventSelector
467  IOpaqueAddress* pAddr = nullptr;
468  sc = getEventRoot( pAddr );
469  if ( !sc.isSuccess() ) {
470  info() << "No more events in event selection " << endmsg;
471  return StatusCode::FAILURE;
472  }
473  sc = m_evtDataMgrSvc->setRoot( "/Event", pAddr );
474  if ( !sc.isSuccess() ) { warning() << "Error declaring event root address." << endmsg; }
475  } else {
476  //---In case of no event selector----------------
477  sc = m_evtDataMgrSvc->setRoot( "/Event", new DataObject() );
478  if ( !sc.isSuccess() ) { warning() << "Error declaring event root DataObject" << endmsg; }
479  }
480  return StatusCode::SUCCESS;
481 }
482 
483 //---------------------------------------------------------------------------
484 
487  ++m_nevt;
488 
489  StatusCode sc = m_whiteboard->selectStore( ctx.slot() );
490  if ( sc.isFailure() ) {
491  throw GaudiException( "Slot " + std::to_string( ctx.slot() ) + " could not be selected for the WhiteBoard", name(),
492  sc );
493  }
494  if ( declareEventRootAddress().isFailure() ) { // We ran out of events!
495  // invalid context terminates the loop
496  return EventContext{};
497  }
498  return ctx;
499 }
500 
501 //---------------------------------------------------------------------------
502 
504 
506 
507  // maybe we can do better
508  std::vector<EventContext*> finishedEvtContexts;
509 
510  EventContext* finishedEvtContext( nullptr );
511 
512  // Here we wait not to loose cpu resources
513  DEBUG_MSG << "Waiting for a context" << endmsg;
514  sc = m_schedulerSvc->popFinishedEvent( finishedEvtContext );
515 
516  // We got past it: cache the pointer
517  DEBUG_MSG << "Context " << ( sc.isSuccess() ? "obtained" : "not obtained: a problem in the scheduling?" ) << endmsg;
518  finishedEvtContexts.push_back( finishedEvtContext );
519 
520  // Let's see if we can pop other event contexts
521  while ( m_schedulerSvc->tryPopFinishedEvent( finishedEvtContext ).isSuccess() ) {
522  finishedEvtContexts.push_back( finishedEvtContext );
523  }
524 
525  // Now we flush them
526  StatusCode finalSC;
527  for ( auto& thisFinishedEvtContext : finishedEvtContexts ) {
528  if ( !thisFinishedEvtContext ) {
529  error() << "Detected nullptr ctxt before clearing WB!" << endmsg;
530  finalSC = StatusCode::FAILURE;
531  continue;
532  }
533  if ( m_algExecStateSvc->eventStatus( *thisFinishedEvtContext ) != EventStatus::Success ) {
534  ( m_abortOnFailure ? fatal() : error() ) << "Failed event detected on " << thisFinishedEvtContext << endmsg;
535  if ( m_abortOnFailure ) finalSC = StatusCode::FAILURE;
536  }
537  // shouldn't these incidents move to the forward scheduler?
538  // If we want to consume incidents with an algorithm at the end of the graph
539  // we need to add this to forward scheduler lambda action,
540  // otherwise we have to do this serially on this thread!
541  m_incidentSvc->fireIncident( Incident( name(), IncidentType::EndProcessing, *thisFinishedEvtContext ) );
542  m_incidentSvc->fireIncident( Incident( name(), IncidentType::EndEvent, *thisFinishedEvtContext ) );
543 
544  DEBUG_MSG << "Clearing slot " << thisFinishedEvtContext->slot() << " (event " << thisFinishedEvtContext->evt()
545  << ") of the whiteboard" << endmsg;
546 
547  StatusCode sc = clearWBSlot( thisFinishedEvtContext->slot() );
548  if ( !sc.isSuccess() )
549  error() << "Whiteboard slot " << thisFinishedEvtContext->slot() << " could not be properly cleared";
550 
551  delete thisFinishedEvtContext;
552 
553  ++finishedEvts;
554  }
555  return finalSC;
556 }
557 
558 //---------------------------------------------------------------------------
559 
561  StatusCode sc = m_whiteboard->clearStore( evtSlot );
562  if ( !sc.isSuccess() ) warning() << "Clear of Event data store failed" << endmsg;
563  return m_whiteboard->freeStore( evtSlot );
564 }
565 //---------------------------------------------------------------------------
virtual StatusCode traverseTree(IDataStoreAgent *pAgent)=0
Analyse by traversing all data objects in the data store.
#define DEBUG_MSG
StatusCode clearWBSlot(int evtSlot)
Clear a slot in the WB.
StatusCode initialize() override
Definition: Service.cpp:70
Gaudi::Property< std::string > m_evtsel
SmartIF< IIncidentSvc > m_incidentSvc
Reference to the incident service.
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator.
Definition: Service.cpp:287
std::unique_ptr< boost::dynamic_bitset<> > m_blackListBS
SmartIF< IDataManagerSvc > m_evtDataMgrSvc
Reference to the Event Data Service's IDataManagerSvc interface.
Define general base for Gaudi exception.
StatusCode declareEventRootAddress()
Declare the root address of the event.
Gaudi::Property< bool > m_abortOnFailure
EventContext createEventContext() override
implementation of IEventProcessor::createEventContext()
StatusCode finalize() override
Definition: Service.cpp:174
StatusCode setProperty(const Gaudi::Details::PropertyBase &p) override
set the property form another property
MsgStream & warning() const
shortcut for the method msgStream(MSG::WARNING)
virtual const EventStatus::Status & eventStatus(const EventContext &ctx) const =0
StatusCode drainScheduler(int &finishedEvents)
Drain the scheduler from all actions that may be queued.
The Event Selector Interface.
Definition: IEvtSelector.h:28
HistogramAgent base in charge of collecting all the references to DataObjects in a transient store th...
SmartIF< IHiveWhiteBoard > m_whiteboard
Reference to the Whiteboard.
virtual StatusCode setRoot(std::string root_name, DataObject *pObject)=0
Initialize data store for new event by giving new event path.
SmartIF< IScheduler > m_schedulerSvc
A shortcut for the scheduler.
constexpr static const auto RECOVERABLE
Definition: StatusCode.h:102
T to_string(T... args)
bool m_scheduledStop
Scheduled stop of event processing.
T binary_search(T... args)
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
Gaudi::Property< std::vector< unsigned int > > m_eventNumberBlacklist
virtual StatusCode createRep(DataObject *pObject, IOpaqueAddress *&refpAddress)=0
Convert the transient object to the requested representation.
virtual size_t freeSlots()=0
Get free slots number.
SmartIF< IFace > as()
Definition: ISvcLocator.h:113
MsgStream & info() const
shortcut for the method msgStream(MSG::INFO)
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:86
This class represents an entry point to all the event specific data.
Definition: EventContext.h:34
SmartIF< IProperty > m_appMgrProperty
Property interface of ApplicationMgr.
constexpr int ScheduledStop
Definition: AppReturnCode.h:35
#define DECLARE_COMPONENT(type)
Gaudi::Property< bool > m_warnings
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:86
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:284
T push_back(T... args)
StatusCode finalize() override
implementation of IService::finalize
StatusCode stopRun() override
implementation of IEventProcessor::stopRun()
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
virtual StatusCode selectStore(size_t partitionIndex)=0
Activate an given 'slot' for all subsequent calls within the same thread id.
virtual void fireIncident(const Incident &incident)=0
Fire an Incident.
virtual StatusCode clearStore(size_t partitionIndex)=0
Clear an given 'slot'.
#define VERBOSE_MSG
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:61
virtual StatusCode next(Context &c) const =0
Fetch the next event or the first event if it will be use soon after the creation of the context.
StatusCode executeRun(int maxevt) override
implementation of IEventProcessor::executeRun()
virtual StatusCode createContext(Context *&c) const =0
Create and return a context object that will keep track of the state of selection.
virtual StatusCode getProperty(Gaudi::Details::PropertyBase *p) const =0
Get the property by property.
virtual StatusCode releaseContext(Context *&) const =0
Release the Context object.
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:32
T reset(T... args)
def end
Definition: IOTest.py:123
virtual StatusCode pushNewEvent(EventContext *eventContext)=0
Make an event available to the scheduler.
StatusCode getEventRoot(IOpaqueAddress *&refpAddr)
Create event address using event selector.
bool isSuccess() const
Definition: StatusCode.h:365
StatusCode setAppReturnCode(SmartIF< IProperty > &appmgr, int value, bool force=false)
Set the application return code.
Definition: AppReturnCode.h:59
virtual IOpaqueAddress * address() const =0
Retrieve opaque storage address.
T move(T... args)
#define LIKELY(x)
Definition: Kernel.h:105
virtual void reset(const EventContext &ctx)=0
GAUDI_API long mappedMemory(MemoryUnit unit=kByte, InfoType fetch=Memory, long pid=-1)
Basic Process Information: priority boost.
Definition: Memory.cpp:197
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:168
StatusCode initialize() override
implementation of IService::initialize
SmartIF< IAlgExecStateSvc > m_algExecStateSvc
Reference to the AlgExecStateSvc.
SmartIF< IConversionSvc > m_histoPersSvc
Reference to the Histogram Persistency Service.
virtual size_t allocateStore(int evtnumber)=0
Allocate a store partition for new event.
Gaudi::Property< std::string > m_schedulerName
virtual StatusCode tryPopFinishedEvent(EventContext *&eventContext)=0
Try to retrieve a finished event from the scheduler.
Base class for all Incidents (computing events).
Definition: Incident.h:27
SmartIF< IDataManagerSvc > m_histoDataMgrSvc
Reference to the Histogram Data Service.
SmartIF< IEvtSelector > m_evtSelector
Reference to the Event Selector.
string s
Definition: gaudirun.py:328
virtual StatusCode freeStore(size_t partitionIndex)=0
Free a store partition.
bool isRecoverable() const
Definition: StatusCode.h:370
constexpr static const auto FAILURE
Definition: StatusCode.h:101
StatusCode executeEvent(EventContext &&ctx) override
implementation of IEventProcessor::executeEvent(EventContext&&)
StatusCode reinitialize() override
implementation of IService::reinitialize
T sort(T... args)
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:96
bool isFailure() const
Definition: StatusCode.h:145
AttribStringParser::Iterator begin(const AttribStringParser &parser)
T accumulate(T... args)
Opaque address interface definition.
int maxevt
Definition: Bootstrap.cpp:270
constexpr int Success
Definition: AppReturnCode.h:26
The IProperty is the basic interface for all components which have properties that can be set or get.
Definition: IProperty.h:30
SmartIF< IAlgResourcePool > m_algResourcePool
Reference to the Algorithm resource pool.
virtual StatusCode createAddress(const Context &c, IOpaqueAddress *&iop) const =0
Create an IOpaqueAddress object from the event fetched.
virtual StatusCode fillRepRefs(IOpaqueAddress *pAddress, DataObject *pObject)=0
Resolve the references of the converted object.
StatusCode nextEvent(int maxevt) override
implementation of IService::nextEvent
virtual unsigned int freeSlots()=0
Get the free event processing slots.
MsgStream & fatal() const
shortcut for the method msgStream(MSG::FATAL)
virtual StatusCode popFinishedEvent(EventContext *&eventContext)=0
Retrieve a finished event from the scheduler.
const IDataSelector & selectedObjects() const
Return the set of selected DataObjects.
bool m_endEventFired
Flag to avoid to fire the EnvEvent incident twice in a row (and also not before the first event)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:202
StatusCode stop() override
implementation of IService::stop
EventContext::ContextEvt_t m_nevt
IEvtSelector::Context * m_evtContext
Event Iterator.