#include <GaudiKernel/IDataManagerSvc.h>
Inheritance diagram for IDataManagerSvc:
Public Types | |
| SUCCESS = 1 | |
| Normal successful completion. | |
| NO_INTERFACE | |
| Requested interface is not available. | |
| VERSMISMATCH | |
| Requested interface version is incompatible. | |
| LAST_ERROR | |
| Last error. | |
| enum | Status { SUCCESS = 1, NO_INTERFACE, VERSMISMATCH, LAST_ERROR } |
| Return status. More... | |
Public Member Functions | |
| virtual CLID | rootCLID () const =0 |
| Get class ID of root Event. | |
| virtual std::string | rootName () const =0 |
| Get Name of root Event. | |
| virtual StatusCode | setDataLoader (IConversionSvc *svc)=0 |
| Pass a default data loader to the service. | |
| virtual StatusCode | objectParent (const DataObject *pObject, IRegistry *&refpParent)=0 |
| IDataManagerSvc: Explore the object store: retrieve the object's parent. | |
| virtual StatusCode | objectParent (const IRegistry *pRegistry, IRegistry *&refpParent)=0 |
| IDataManagerSvc: Explore the object store: retrieve the object's parent. | |
| virtual StatusCode | objectLeaves (const DataObject *pObject, std::vector< IRegistry * > &refLeaves)=0 |
| Explore the object store: retrieve all leaves attached to the object The object is identified by its pointer. | |
| virtual StatusCode | objectLeaves (const IRegistry *pRegistry, std::vector< IRegistry * > &refLeaves)=0 |
| Explore the object store: retrieve all leaves attached to the object The object is identified by the pointer to the registry entry. | |
| virtual StatusCode | clearSubTree (const std::string &sub_path)=0 |
| Remove all data objects below the sub tree identified by its full path name. | |
| virtual StatusCode | clearSubTree (DataObject *pObject)=0 |
| Remove all data objects below the sub tree identified by the object. | |
| virtual StatusCode | clearStore ()=0 |
| Remove all data objects in the data store. | |
| virtual StatusCode | traverseSubTree (const std::string &sub_path, IDataStoreAgent *pAgent)=0 |
| Analyse by traversing all data objects below the sub tree identified by its full path name. | |
| virtual StatusCode | traverseSubTree (DataObject *pObject, IDataStoreAgent *pAgent)=0 |
| Analyse by traversing all data objects below the sub tree identified by the object. | |
| virtual StatusCode | traverseTree (IDataStoreAgent *pAgent)=0 |
| Analyse by traversing all data objects in the data store. | |
| virtual StatusCode | setRoot (const std::string &root_name, DataObject *pObject)=0 |
| Initialize data store for new event by giving new event path. | |
| virtual StatusCode | setRoot (const std::string &root_path, IOpaqueAddress *pRootAddr)=0 |
| Initialize data store for new event by giving new event path. | |
| virtual StatusCode | registerAddress (const std::string &fullPath, IOpaqueAddress *pAddress)=0 |
| Register object address with the data store. | |
| virtual StatusCode | registerAddress (DataObject *parentObj, const std::string &objectPath, IOpaqueAddress *pAddress)=0 |
| Register object address with the data store. | |
| virtual StatusCode | registerAddress (IRegistry *parentObj, const std::string &objectPath, IOpaqueAddress *pAddress)=0 |
| Register object address with the data store. | |
| virtual StatusCode | unregisterAddress (const std::string &fullPath)=0 |
| Unregister object address from the data store. | |
| virtual StatusCode | unregisterAddress (DataObject *pParent, const std::string &objPath)=0 |
| Unregister object address from the data store. | |
| virtual StatusCode | unregisterAddress (IRegistry *pParent, const std::string &objPath)=0 |
| Unregister object address from the data store. | |
| virtual StatusCode | queryInterface (const InterfaceID &riid, void **ppvInterface)=0 |
| Query interfaces of Interface. | |
| virtual unsigned long | addRef ()=0 |
| Increment the reference count of Interface instance. | |
| virtual unsigned long | release ()=0 |
| Release Interface instance. | |
Static Public Member Functions | |
| static const InterfaceID & | interfaceID () |
| Retrieve interface ID. | |
Definition at line 49 of file IDataManagerSvc.h.
enum IInterface::Status [inherited] |
Return status.
| SUCCESS | Normal successful completion. |
| NO_INTERFACE | Requested interface is not available. |
| VERSMISMATCH | Requested interface version is incompatible. |
| LAST_ERROR | Last error. |
Reimplemented in IConversionSvc, IConverter, and IDataProviderSvc.
Definition at line 113 of file IInterface.h.
00113 { 00115 SUCCESS = 1, 00117 NO_INTERFACE, 00119 VERSMISMATCH, 00121 LAST_ERROR 00122 };
| static const InterfaceID& IDataManagerSvc::interfaceID | ( | ) | [inline, static] |
Retrieve interface ID.
Reimplemented from IInterface.
Definition at line 52 of file IDataManagerSvc.h.
00052 { return IID_IDataManagerSvc; }
| virtual CLID IDataManagerSvc::rootCLID | ( | ) | const [pure virtual] |
| virtual std::string IDataManagerSvc::rootName | ( | ) | const [pure virtual] |
| virtual StatusCode IDataManagerSvc::setDataLoader | ( | IConversionSvc * | svc | ) | [pure virtual] |
Pass a default data loader to the service.
This service will be asked to load non existant data items.
| svc | [IN] Pointer to persistency service instance |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::objectParent | ( | const DataObject * | pObject, | |
| IRegistry *& | refpParent | |||
| ) | [pure virtual] |
IDataManagerSvc: Explore the object store: retrieve the object's parent.
The object is identified by its pointer.
| pObject | [IN] Pointer to the object. | |
| refpParent | [OUT] Reference to store the parent's registry entry. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::objectParent | ( | const IRegistry * | pRegistry, | |
| IRegistry *& | refpParent | |||
| ) | [pure virtual] |
IDataManagerSvc: Explore the object store: retrieve the object's parent.
The object is identified by the pointer to the registry entry.
| pRegistry | [IN] Pointer to the object. | |
| refpParent | [OUT] Reference to store the parent's registry entry. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::objectLeaves | ( | const DataObject * | pObject, | |
| std::vector< IRegistry * > & | refLeaves | |||
| ) | [pure virtual] |
Explore the object store: retrieve all leaves attached to the object The object is identified by its pointer.
Allow to access and browse the leaf objects of the identified object.
| pObject | [IN] Pointer to the object. | |
| refLeaves | [OUT] Reference to storage location, where the objects leaves should be stored. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::objectLeaves | ( | const IRegistry * | pRegistry, | |
| std::vector< IRegistry * > & | refLeaves | |||
| ) | [pure virtual] |
Explore the object store: retrieve all leaves attached to the object The object is identified by the pointer to the registry entry.
Allow to access and browse the leaf objects of the identified object.
| pRegistry | [IN] Pointer to the registry of the obejct. | |
| refLeaves | [OUT] Reference to storage location, where the objects leaves should be stored. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::clearSubTree | ( | const std::string & | sub_path | ) | [pure virtual] |
Remove all data objects below the sub tree identified by its full path name.
| sub_path | [IN] Path to sub-tree node. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::clearSubTree | ( | DataObject * | pObject | ) | [pure virtual] |
Remove all data objects below the sub tree identified by the object.
The object itself is removed as well.
| pObject | [IN] Pointer to object |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::clearStore | ( | ) | [pure virtual] |
Remove all data objects in the data store.
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::traverseSubTree | ( | const std::string & | sub_path, | |
| IDataStoreAgent * | pAgent | |||
| ) | [pure virtual] |
Analyse by traversing all data objects below the sub tree identified by its full path name.
| sub_path | [IN] Path to sub-tree node. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::traverseSubTree | ( | DataObject * | pObject, | |
| IDataStoreAgent * | pAgent | |||
| ) | [pure virtual] |
Analyse by traversing all data objects below the sub tree identified by the object.
The object itself is removed as well.
| pObject | [IN] Pointer to object | |
| pAgent | [IN] Pointer to the datastore agent traversing the store |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::traverseTree | ( | IDataStoreAgent * | pAgent | ) | [pure virtual] |
Analyse by traversing all data objects in the data store.
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::setRoot | ( | const std::string & | root_name, | |
| DataObject * | pObject | |||
| ) | [pure virtual] |
Initialize data store for new event by giving new event path.
Implicitly this clears the entire data store.
| root_name | [IN] String containing root path name | |
| pObject | [IN] Pointer to root node object |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::setRoot | ( | const std::string & | root_path, | |
| IOpaqueAddress * | pRootAddr | |||
| ) | [pure virtual] |
Initialize data store for new event by giving new event path.
Implicitly this clears the entire data store.
| root_name | [IN] String containing root path name | |
| pRootAddr | [IN] Pointer to opaque root node address |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::registerAddress | ( | const std::string & | fullPath, | |
| IOpaqueAddress * | pAddress | |||
| ) | [pure virtual] |
Register object address with the data store.
Connect the object identified by its pointer to the node object identified by its path.
| fullPath | [IN] Path to parent node of the object. | |
| pAddress | [IN] Pointer to the object to be registered. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::registerAddress | ( | DataObject * | parentObj, | |
| const std::string & | objectPath, | |||
| IOpaqueAddress * | pAddress | |||
| ) | [pure virtual] |
Register object address with the data store.
Connect the object identified by its pointer to the parent object and the relative path of the object with respect to the parent.
| parentObj | [IN] Pointer to parent object. | |
| objectPath | [IN] Path of the object relative to the parent node | |
| pAddress | [IN] Pointer to the object to be connected. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::registerAddress | ( | IRegistry * | parentObj, | |
| const std::string & | objectPath, | |||
| IOpaqueAddress * | pAddress | |||
| ) | [pure virtual] |
Register object address with the data store.
Connect the object identified by its pointer to the parent object and the relative path of the object with respect to the parent.
| parentObj | [IN] Pointer to parent object. | |
| objectPath | [IN] Path of the object relative to the parent node | |
| pAddress | [IN] Pointer to the object to be connected. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::unregisterAddress | ( | const std::string & | fullPath | ) | [pure virtual] |
Unregister object address from the data store.
The object is identified by full path name.
| fullPath | [IN] Path name of the object. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::unregisterAddress | ( | DataObject * | pParent, | |
| const std::string & | objPath | |||
| ) | [pure virtual] |
Unregister object address from the data store.
The object is identified by parent object and the path of the object relative to the parent.
| pParent | [IN] Pointer to parent object. | |
| objPath | [IN] Path name of the object relative to the parent. |
Implemented in DataSvc.
| virtual StatusCode IDataManagerSvc::unregisterAddress | ( | IRegistry * | pParent, | |
| const std::string & | objPath | |||
| ) | [pure virtual] |
Unregister object address from the data store.
The object is identified by parent object and the path of the object relative to the parent.
| pParent | [IN] Pointer to parent object. | |
| objPath | [IN] Path name of the object relative to the parent. |
Implemented in DataSvc.
| virtual StatusCode IInterface::queryInterface | ( | const InterfaceID & | riid, | |
| void ** | ppvInterface | |||
| ) | [pure virtual, inherited] |
Query interfaces of Interface.
| riid | ID of Interface to be retrieved | |
| ppvInterface | Pointer to Location for interface pointer |
Implemented in Algorithm, AlgTool, Auditor, ConversionSvc, Converter, DataSvc, EventSelectorDataStream, MinimalEventLoopMgr, PropertyMgr, SelectStatement, and Service.
| virtual unsigned long IInterface::addRef | ( | ) | [pure virtual, inherited] |
Increment the reference count of Interface instance.
Implemented in Algorithm, AlgTool, Auditor, Converter, EventSelectorDataStream, IFactory, PropertyMgr, SelectStatement, and Service.
| virtual unsigned long IInterface::release | ( | ) | [pure virtual, inherited] |
Release Interface instance.
Implemented in Algorithm, AlgTool, Auditor, Converter, EventSelectorDataStream, IFactory, PropertyMgr, SelectStatement, and Service.
1.4.7