RecordDataSvc.h
Go to the documentation of this file.
1 #ifndef DATASVC_RECORDDATASVC_H
2 #define DATASVC_RECORDDATASVC_H
3 
4 #include "GaudiKernel/DataSvc.h"
7 
8 
25 class RecordDataSvc : public extends<DataSvc,
26  IIncidentListener> {
27  public:
28  StatusCode initialize() override;
29  StatusCode finalize() override;
30 
32  void handle(const Incident& incident) override;
33 
36 
38  ~RecordDataSvc() override = default;
39 
40  protected:
42  void registerRecord(const std::string& data, IOpaqueAddress* pAddr);
43 
45  void loadRecords(IRegistry* pReg);
46 
47  protected:
49  bool m_autoLoad;
60 };
61 #endif // DATASVC_RECORDDATASVC_H
StatusCode finalize() override
Service finalization.
std::string m_persSvcName
Property: name of the persistency service.
Definition: RecordDataSvc.h:55
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
std::string m_incidentName
Property: name of incident to be fired if new record arrives.
Definition: RecordDataSvc.h:51
bool m_autoLoad
Property: autoload of records (default: true)
Definition: RecordDataSvc.h:49
A RecordDataSvc is the base class for event services.
Definition: RecordDataSvc.h:25
STL class.
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:319
std::string m_saveIncidentName
Property: name of the "save" incident.
Definition: RecordDataSvc.h:53
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
std::vector< std::string > m_incidents
Pending new file incidents.
Definition: RecordDataSvc.h:57
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Base class for all Incidents (computing events).
Definition: Incident.h:17
RecordDataSvc(const std::string &name, ISvcLocator *svc)
Standard Constructor.
void handle(const Incident &incident) override
IIncidentListener override: Inform that a new incident has occured.
StatusCode initialize() override
Service initialisation.
void registerRecord(const std::string &data, IOpaqueAddress *pAddr)
Load new record into the data store if necessary.
Opaque address interface definition.
SmartIF< IConversionSvc > m_cnvSvc
Reference to the main data conversion service.
Definition: RecordDataSvc.h:59
~RecordDataSvc() override=default
Standard Destructor.
void loadRecords(IRegistry *pReg)
Load dependent records into memory.