The Gaudi Framework
v30r3 (a5ef0a68)
|
Interface class to the Update Manager service. More...
#include <GaudiKernel/IUpdateManagerSvc.h>
Classes | |
class | PtrSetter |
Templated specialization of BasePtrSetter. More... | |
class | PythonHelper |
Helper class implemented in the python dictionary to allow access from python to template member functions. More... | |
Public Member Functions | |
DeclareInterfaceID (IUpdateManagerSvc, 2, 0) | |
InterfaceID. More... | |
virtual IDataProviderSvc * | dataProvider () const =0 |
Give access to the data provider. More... | |
virtual IDetDataSvc * | detDataSvc () const =0 |
Give access to the detector data service interface (usualy of the data provider itself). More... | |
template<class CallerClass > | |
void | registerCondition (CallerClass *instance, const std::string &condition="", typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr) |
Register an object (algorithm instance) to the service. More... | |
template<class CallerClass , class CondType > | |
void | registerCondition (CallerClass *instance, const std::string &condition, typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf, CondType *&condPtrDest) |
template<class CallerClass > | |
void | registerCondition (CallerClass *instance, const char *condition, typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr) |
See above. Needed to avoid conflicts with the next one. More... | |
template<class CallerClass , class ObjectClass > | |
void | registerCondition (CallerClass *instance, ObjectClass *obj, typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr) |
Like the first version of registerCondition, but instead declaring the dependency on a condition of the service privider, it uses an already registered object. More... | |
template<class CallerClass > | |
void | unregister (CallerClass *instance) |
Generic objects can be unregistered from the UpdateManagerSvc. More... | |
template<class CallerClass > | |
void | invalidate (CallerClass *instance) |
Invalidate the given object in the dependency network. More... | |
virtual bool | getValidity (const std::string path, Gaudi::Time &since, Gaudi::Time &until, bool path_to_db=false)=0 |
Retrieve the interval of validity (in the UpdateManagerSvc) of the given item. More... | |
virtual void | setValidity (const std::string path, const Gaudi::Time &since, const Gaudi::Time &until, bool path_to_db=false)=0 |
Change the interval of validity of the given item to the specified values, updating parents if needed. More... | |
virtual StatusCode | newEvent ()=0 |
Start an update loop using the event time given by the detector data service. More... | |
virtual StatusCode | newEvent (const Gaudi::Time &)=0 |
Start an update loop using the give event time. More... | |
template<class CallerClass > | |
StatusCode | update (CallerClass *instance) |
Update the given instance. More... | |
virtual void | dump ()=0 |
Debug method: it dumps the dependency network through the message service (not very readable, for experts only). More... | |
virtual void | acquireLock ()=0 |
Force the update manager service to wait before entering the newEvent loop. More... | |
virtual void | releaseLock ()=0 |
Let the update manager service enter the newEvent loop. More... | |
virtual void | purge ()=0 |
Remove all the items referring to objects present in the transient store. More... | |
Public Member Functions inherited from IInterface | |
virtual void * | i_cast (const InterfaceID &) const =0 |
main cast function More... | |
virtual std::vector< std::string > | getInterfaceNames () const =0 |
Returns a vector of strings containing the names of all the implemented interfaces. More... | |
virtual unsigned long | addRef ()=0 |
Increment the reference count of Interface instance. More... | |
virtual unsigned long | release ()=0 |
Release Interface instance. More... | |
virtual unsigned long | refCount () const =0 |
Current reference count. More... | |
virtual StatusCode | queryInterface (const InterfaceID &ti, void **pp)=0 |
Set the void** to the pointer to the requested interface of the instance. More... | |
virtual | ~IInterface ()=default |
Virtual destructor. More... | |
Protected Member Functions | |
virtual void | i_registerCondition (const std::string &condition, BaseObjectMemberFunction *mf, BasePtrSetter *ptr_dest=nullptr)=0 |
virtual void | i_registerCondition (void *obj, BaseObjectMemberFunction *mf)=0 |
virtual StatusCode | i_update (void *instance)=0 |
virtual void | i_unregister (void *instance)=0 |
virtual void | i_invalidate (void *instance)=0 |
Friends | |
class | PythonHelper |
Additional Inherited Members | |
Public Types inherited from IInterface | |
enum | Status : StatusCode::code_t { Status::FAILURE = 0, Status::SUCCESS = 1, Status::NO_INTERFACE, Status::VERSMISMATCH, Status::LAST_ERROR } |
Return status. More... | |
using | iid = Gaudi::InterfaceId< IInterface, 0, 0 > |
Interface ID. More... | |
using | ext_iids = Gaudi::interface_list< iid > |
Extra interfaces. More... | |
Static Public Member Functions inherited from IInterface | |
static const InterfaceID & | interfaceID () |
Return an instance of InterfaceID identifying the interface. More... | |
Interface class to the Update Manager service.
Users should only use this interface.
Definition at line 141 of file IUpdateManagerSvc.h.
|
pure virtual |
Force the update manager service to wait before entering the newEvent loop.
|
pure virtual |
Give access to the data provider.
IUpdateManagerSvc::DeclareInterfaceID | ( | IUpdateManagerSvc | , |
2 | , | ||
0 | |||
) |
|
pure virtual |
Give access to the detector data service interface (usualy of the data provider itself).
|
pure virtual |
Debug method: it dumps the dependency network through the message service (not very readable, for experts only).
|
pure virtual |
Retrieve the interval of validity (in the UpdateManagerSvc) of the given item.
|
protectedpure virtual |
|
protectedpure virtual |
|
protectedpure virtual |
|
protectedpure virtual |
|
protectedpure virtual |
|
inline |
Invalidate the given object in the dependency network.
It means that all the objects depending on that one will be updated before the next event.
Definition at line 224 of file IUpdateManagerSvc.h.
|
pure virtual |
Start an update loop using the event time given by the detector data service.
|
pure virtual |
Start an update loop using the give event time.
NOTE: the given event time is only used to check if updates are needed, the real update is done using the detector data service event time. (may change in future)
|
pure virtual |
Remove all the items referring to objects present in the transient store.
This is needed when the Detector Transient Store is purged, otherwise we will keep pointers to not existing objects.
|
inline |
Register an object (algorithm instance) to the service.
The object should provide a method to be called in case of an update of the needed condition. An object can register multiple conditions using the same method: it will be called if at least one of the specified conditions is updated, but only when all of them are up to date.
Definition at line 179 of file IUpdateManagerSvc.h.
|
inline |
Definition at line 186 of file IUpdateManagerSvc.h.
|
inline |
See above. Needed to avoid conflicts with the next one.
Definition at line 196 of file IUpdateManagerSvc.h.
|
inline |
Like the first version of registerCondition, but instead declaring the dependency on a condition of the service privider, it uses an already registered object.
It means that a generic object can depend on another generic object that depends on a ValidDataObject. The dependency network is kept consistent by the UpdateManagerSvc.
Definition at line 206 of file IUpdateManagerSvc.h.
|
pure virtual |
Let the update manager service enter the newEvent loop.
|
pure virtual |
Change the interval of validity of the given item to the specified values, updating parents if needed.
The change can only restrict the current IOV, If you want to expand the validity you should act on the transient data store and the change will be reflected at the next update.
|
inline |
Generic objects can be unregistered from the UpdateManagerSvc.
The dependency network is always consistent, but internal IOVs are not modified.
Definition at line 216 of file IUpdateManagerSvc.h.
|
inline |
Update the given instance.
This method should be called by the object after registration to ensure that the needed operations is done immediately and not before the next event.
Definition at line 251 of file IUpdateManagerSvc.h.
|
friend |
Definition at line 284 of file IUpdateManagerSvc.h.