The Gaudi Framework  master (37c0b60a)
IPrecedenceSvc.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2024 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 #ifndef GAUDIHIVE_IPRECEDENCESVC_H_
12 #define GAUDIHIVE_IPRECEDENCESVC_H_
13 
14 #include <GaudiKernel/IInterface.h>
15 
16 #include <string>
17 
18 struct EventSlot;
19 struct Cause;
20 
21 //-----------------------------------------------------------------------------
22 
31 //-----------------------------------------------------------------------------
32 
33 class GAUDI_API IPrecedenceSvc : virtual public IInterface {
34 
35 public:
38 
40  virtual StatusCode iterate( EventSlot&, const Cause& ) = 0;
41 
43  virtual StatusCode simulate( EventSlot& ) const = 0;
44 
46  virtual bool CFRulesResolved( EventSlot& ) const = 0;
47 
49  virtual uint getPriority( const std::string& ) const = 0;
50 
52  virtual bool isAsynchronous( const std::string& ) const = 0;
53 
55  virtual void dumpControlFlow() const = 0;
56  virtual void dumpDataFlow() const = 0;
57  virtual const std::string printState( EventSlot& ) const = 0;
58 
60  virtual void dumpPrecedenceRules( const EventSlot& ) = 0;
62  virtual void dumpPrecedenceTrace( const EventSlot& ) = 0;
63 };
64 
65 #endif /* GAUDIHIVE_IPRECEDENCESVC_H_ */
std::string
STL class.
IPrecedenceSvc::printState
virtual const std::string printState(EventSlot &) const =0
IPrecedenceSvc::iterate
virtual StatusCode iterate(EventSlot &, const Cause &)=0
Infer the precedence effect caused by an execution flow event.
EventSlot
Class representing an event slot.
Definition: EventSlot.h:24
IPrecedenceSvc::simulate
virtual StatusCode simulate(EventSlot &) const =0
Simulate execution flow.
IPrecedenceSvc::CFRulesResolved
virtual bool CFRulesResolved(EventSlot &) const =0
Check if control flow rules are resolved.
StatusCode
Definition: StatusCode.h:65
IInterface.h
IPrecedenceSvc
Abstract interface for a service that manages tasks' precedence.
Definition: IPrecedenceSvc.h:33
IPrecedenceSvc::dumpDataFlow
virtual void dumpDataFlow() const =0
IPrecedenceSvc::dumpPrecedenceRules
virtual void dumpPrecedenceRules(const EventSlot &)=0
Dump precedence rules.
IPrecedenceSvc::DeclareInterfaceID
DeclareInterfaceID(IPrecedenceSvc, 1, 0)
InterfaceID.
IPrecedenceSvc::isAsynchronous
virtual bool isAsynchronous(const std::string &) const =0
Check if a task is asynchronous.
IInterface
Definition: IInterface.h:239
IPrecedenceSvc::dumpPrecedenceTrace
virtual void dumpPrecedenceTrace(const EventSlot &)=0
Dump precedence trace.
Cause
Definition: PrecedenceRulesGraph.h:396
IPrecedenceSvc::getPriority
virtual uint getPriority(const std::string &) const =0
Get task priority.
IPrecedenceSvc::dumpControlFlow
virtual void dumpControlFlow() const =0
Dump precedence rules.
GAUDI_API
#define GAUDI_API
Definition: Kernel.h:81