The Gaudi Framework  master (37c0b60a)
IDataProviderSvc Class Referenceabstract

#include <GaudiKernel/IDataProviderSvc.h>

Inheritance diagram for IDataProviderSvc:
Collaboration diagram for IDataProviderSvc:

Public Types

enum  { SEPARATOR = '/' }
 
enum  Status : StatusCode::code_t {
  Status::IDataProviderSvc_NO_ERROR = 1, Status::DOUBL_OBJ_PATH, Status::INVALID_OBJ_PATH, Status::INVALID_ROOT,
  Status::INVALID_OBJECT, Status::INVALID_PARENT, Status::OBJ_NOT_LOADED, Status::NO_DATA_LOADER,
  Status::INVALID_OBJ_ADDR, Status::DIR_NOT_EMPTY, Status::NO_MORE_LEVELS, Status::NO_ACCESS,
  Status::LAST
}
 Status code definitions. More...
 
- 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...
 

Public Member Functions

 DeclareInterfaceID (IDataProviderSvc, 4, 0)
 InterfaceID. More...
 
StatusCode registerObject (std::string_view fullPath, DataObject *pObject)
 Register object with the data store. More...
 
virtual StatusCode registerObject (std::string_view parentPath, std::string_view objectPath, DataObject *pObject)=0
 Register object with the data store. More...
 
StatusCode registerObject (std::string_view parentPath, int item, DataObject *pObject)
 Register object with the data store. More...
 
virtual StatusCode registerObject (DataObject *parentObj, std::string_view objectPath, DataObject *pObject)=0
 Register object with the data store. More...
 
StatusCode registerObject (DataObject *parentObj, int item, DataObject *pObject)
 Register object with the data store. More...
 
virtual StatusCode unregisterObject (std::string_view fullPath)=0
 Unregister object from the data store. More...
 
StatusCode unregisterObject (std::string_view parentPath, std::string_view objPath)
 Unregister object from the data store. More...
 
StatusCode unregisterObject (std::string_view parentPath, int item)
 Unregister object from the data store. More...
 
virtual StatusCode unregisterObject (DataObject *pObject)=0
 Unregister object from the data store. More...
 
virtual StatusCode unregisterObject (DataObject *pParent, std::string_view objPath)=0
 Unregister object from the data store. More...
 
StatusCode unregisterObject (DataObject *pParent, int item)
 Unregister object from the data store. More...
 
virtual StatusCode retrieveObject (IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
 Retrieve object identified by its directory entry. More...
 
StatusCode retrieveObject (std::string_view fullPath, DataObject *&pObject)
 Retrieve object identified by its full path from the data store. More...
 
StatusCode retrieveObject (std::string_view parentPath, std::string_view objectPath, DataObject *&pObject)
 Retrieve object from data store. More...
 
StatusCode retrieveObject (std::string_view parentPath, int item, DataObject *&pObject)
 Retrieve object from data store. More...
 
StatusCode retrieveObject (DataObject *parentObj, std::string_view objectPath, DataObject *&pObject)
 Retrieve object from data store. More...
 
StatusCode retrieveObject (DataObject *parentObj, int item, DataObject *&pObject)
 Retrieve object from data store. More...
 
virtual StatusCode findObject (IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
 Find object identified by its directory entry. More...
 
virtual StatusCode findObject (std::string_view fullPath, DataObject *&pObject)=0
 Find object identified by its full path in the data store. More...
 
StatusCode findObject (std::string_view parentPath, std::string_view objectPath, DataObject *&pObject)
 Find object identified by its parent object and the path to the object relative to the parent. More...
 
StatusCode findObject (std::string_view parentPath, int item, DataObject *&pObject)
 Find object identified by its parent object and an integer identifier in the data store. More...
 
StatusCode findObject (DataObject *parentObj, std::string_view objectPath, DataObject *&pObject)
 Find object identified by its parent object and the path to the object relative to the parent. More...
 
StatusCode findObject (DataObject *parentObj, int item, DataObject *&pObject)
 Find object identified by its parent object and an integer identifier in the data store. More...
 
virtual StatusCode updateObject (IRegistry *pDirectory)=0
 Update object identified by its directory entry. More...
 
StatusCode updateObject (std::string_view fullPath)
 Update object identified by its full path in the data store. More...
 
virtual StatusCode updateObject (DataObject *toUpdate)=0
 Update object identified by its pointer. More...
 
StatusCode updateObject (std::string_view parentPath, std::string_view updatePath)
 Update object identified by its parent's path and the path relative to the parent. More...
 
StatusCode updateObject (DataObject *pParent, std::string_view updatePath)
 Update object identified by its parent's pointer and the path relative to the parent. More...
 
virtual StatusCode addPreLoadItem (const DataStoreItem &item)=0
 Add an item to the preload list. More...
 
StatusCode addPreLoadItem (std::string itemPath)
 Add an item to the preload list. More...
 
virtual StatusCode removePreLoadItem (const DataStoreItem &item)=0
 Remove an item from the preload list. More...
 
StatusCode removePreLoadItem (std::string itemPath)
 Remove an item from the preload list. More...
 
virtual StatusCode resetPreLoad ()=0
 Clear the preload list. More...
 
virtual StatusCode preLoad ()=0
 Load all preload items of the list. More...
 
virtual StatusCode linkObject (IRegistry *from, std::string_view objPath, DataObject *toObj)=0
 Add a link to another object. More...
 
StatusCode linkObject (std::string_view fromPath, std::string_view objPath, DataObject *toObj)
 Add a link to another object. More...
 
StatusCode linkObject (DataObject *fromObj, std::string_view objPath, DataObject *toObj)
 Add a link to another object. More...
 
virtual StatusCode linkObject (std::string_view fullPath, DataObject *toObj)=0
 Add a link to another object. More...
 
virtual StatusCode unlinkObject (IRegistry *from, std::string_view objPath)=0
 Remove a link to another object. More...
 
StatusCode unlinkObject (std::string_view fromPath, std::string_view objPath)
 Remove a link to another object. More...
 
virtual StatusCode unlinkObject (DataObject *fromObj, std::string_view objPath)=0
 Remove a link to another object. More...
 
virtual StatusCode unlinkObject (std::string_view fullPath)=0
 Remove a link to another object. More...
 
- Public Member Functions inherited from IInterface
virtual void * i_cast (const InterfaceID &) const =0
 main cast function More...
 
virtual std::vector< std::stringgetInterfaceNames () 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...
 

Static Private Member Functions

static std::string itemToPath (int item)
 Helper function to convert item numbers to path strings. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from IInterface
static const InterfaceIDinterfaceID ()
 Return an instance of InterfaceID identifying the interface. More...
 

Detailed Description

Data provider interface definition. The data provider interface allows to:

  • Define lists of items to be loaded automatically when a new root node is assigned to the data store.
  • Register objects from the data store. Once objects are registered with the data store the client gives up ownership.
  • Unregister objects from the data store. Unregistering an object means to actually delete all entries hanging below, not the object itself - since the client claims back ownership. Note that this is a very delicate operation - any reference to the object will be invalid. Even worse: invalid references cannot be detected.
  • Retrieve objects to the data store. Depending on the availibility of the requested object in the data store the represented object will be loaded if possible.
  • Find objects beeing present in the store without actually creating the representation if the object is not present.
  • Create 'soft' links between objects in the transient store.
  • Request object updates.
Author
Markus Frank
Sebastien Ponce

Definition at line 53 of file IDataProviderSvc.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
SEPARATOR 

Definition at line 63 of file IDataProviderSvc.h.

63 { SEPARATOR = '/' };

◆ Status

Status code definitions.

Enumerator
IDataProviderSvc_NO_ERROR 

Success.

DOUBL_OBJ_PATH 

The path for this objects is already in use.

INVALID_OBJ_PATH 

Invalid path from root to object request failed.

INVALID_ROOT 

Invalid root path object cannot be retrieved or stored.

INVALID_OBJECT 

Object pointer is invalid.

INVALID_PARENT 

Pointer to parent object is not valid.

OBJ_NOT_LOADED 

Sorry, the requested object is not loaded.

NO_DATA_LOADER 

No data loader available.

INVALID_OBJ_ADDR 

Invalid object address.

DIR_NOT_EMPTY 

Directory entry is NOT empty.

NO_MORE_LEVELS 

Automatic data loading had to stop: maximum depth.

NO_ACCESS 

Access to the requested leaf is inhibited.

LAST 

Terminator.

Definition at line 558 of file IDataProviderSvc.h.

560  IDataProviderSvc_NO_ERROR = 1,
562  DOUBL_OBJ_PATH,
564  INVALID_OBJ_PATH,
566  INVALID_ROOT,
568  INVALID_OBJECT,
570  INVALID_PARENT,
572  OBJ_NOT_LOADED,
574  NO_DATA_LOADER,
576  INVALID_OBJ_ADDR,
578  DIR_NOT_EMPTY,
580  NO_MORE_LEVELS,
582  NO_ACCESS,
584  LAST
585  };

Member Function Documentation

◆ addPreLoadItem() [1/2]

virtual StatusCode IDataProviderSvc::addPreLoadItem ( const DataStoreItem item)
pure virtual

Add an item to the preload list.

Parameters
itemSpecs of item to be preloaded
Returns
Status code indicating success or failure.

◆ addPreLoadItem() [2/2]

StatusCode IDataProviderSvc::addPreLoadItem ( std::string  itemPath)
inline

Add an item to the preload list.

The item is identified by the path to the object.

Parameters
itemPathPath to the item to be preloaded.
Returns
Status code indicating success or failure.

Definition at line 443 of file IDataProviderSvc.h.

443  {
444  return addPreLoadItem( DataStoreItem( std::move( itemPath ), 1 ) );
445  }

◆ DeclareInterfaceID()

IDataProviderSvc::DeclareInterfaceID ( IDataProviderSvc  ,
,
 
)

◆ findObject() [1/6]

StatusCode IDataProviderSvc::findObject ( DataObject parentObj,
int  item,
DataObject *&  pObject 
)
inline

Find object identified by its parent object and an integer identifier in the data store.

In case the object is not present the pointer will be set to NULL.

Parameters
parentObjPointer to parent node of the object.
itemItem identifier.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 373 of file IDataProviderSvc.h.

373  {
374  return findObject( parentObj, itemToPath( item ), pObject );
375  }

◆ findObject() [2/6]

StatusCode IDataProviderSvc::findObject ( DataObject parentObj,
std::string_view  objectPath,
DataObject *&  pObject 
)
inline

Find object identified by its parent object and the path to the object relative to the parent.

The result will be returned in the second argument. In case the object is not present the pointer will be set to NULL.

Parameters
parentObjPointer to parent node of the object.
objectPathRelative path name of the object.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 361 of file IDataProviderSvc.h.

361  {
362  return findObject( parentObj ? parentObj->registry() : nullptr, objectPath, pObject );
363  }

◆ findObject() [3/6]

virtual StatusCode IDataProviderSvc::findObject ( IRegistry pDirectory,
std::string_view  path,
DataObject *&  pObject 
)
pure virtual

Find object identified by its directory entry.

The result will be returned in the second argument. In case the object is not present the pointer will be set to NULL. ** FASTEST ACCESS TO THE DATA STORE **

Parameters
pDirectoryPointer to the object.
pathString with relative path to directory. Ideally ""!
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

◆ findObject() [4/6]

virtual StatusCode IDataProviderSvc::findObject ( std::string_view  fullPath,
DataObject *&  pObject 
)
pure virtual

Find object identified by its full path in the data store.

The result will be returned in the second argument. In case the object is not present the pointer will be set to NULL.

Parameters
fullPathPath name of the object.
pObjectPointer to the object to be connected.
Returns
Status code indicating success or failure.

◆ findObject() [5/6]

StatusCode IDataProviderSvc::findObject ( std::string_view  parentPath,
int  item,
DataObject *&  pObject 
)
inline

Find object identified by its parent object and an integer identifier in the data store.

In case the object is not present the pointer will be set to NULL.

Parameters
parentPathPath to parent node of the object.
itemItem identifier.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 348 of file IDataProviderSvc.h.

348  {
349  return findObject( parentPath, itemToPath( item ), pObject );
350  }

◆ findObject() [6/6]

StatusCode IDataProviderSvc::findObject ( std::string_view  parentPath,
std::string_view  objectPath,
DataObject *&  pObject 
)
inline

Find object identified by its parent object and the path to the object relative to the parent.

The result will be returned in the second argument. In case the object is not present the pointer will be set to NULL.

Parameters
parentPathPath to parent node of the object.
objectPathRelative path name of the object.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 334 of file IDataProviderSvc.h.

334  {
335  DataObject* parent = nullptr;
336  StatusCode status = findObject( parentPath, parent );
337  return status.isSuccess() ? findObject( parent, objectPath, pObject ) : status;
338  }

◆ itemToPath()

static std::string IDataProviderSvc::itemToPath ( int  item)
inlinestaticprivate

Helper function to convert item numbers to path strings.

Definition at line 57 of file IDataProviderSvc.h.

57 { return '/' + std::to_string( item ); }

◆ linkObject() [1/4]

StatusCode IDataProviderSvc::linkObject ( DataObject fromObj,
std::string_view  objPath,
DataObject toObj 
)
inline

Add a link to another object.

Both objects must already be registered with the data store. Once linked, the object can only be unregistered after unlinking.

Parameters
fromObjPointer to the object the link originates.
objPathPath of the entry to be linked relative to from.
toObjPointer to the object the link points to.
Returns
Status code indicating success or failure.

Definition at line 590 of file IDataProviderSvc.h.

590  {
591  if ( fromObj ) {
592  IRegistry* from_entry = fromObj->registry();
593  if ( from_entry ) return linkObject( from_entry, objPath, toObj );
594  }
595  return Status::INVALID_PARENT;
596 }

◆ linkObject() [2/4]

virtual StatusCode IDataProviderSvc::linkObject ( IRegistry from,
std::string_view  objPath,
DataObject toObj 
)
pure virtual

Add a link to another object.

Both objects must already be registered with the data store. Once linked, the object can only be unregistered after unlinking.

Parameters
fromPointer to data directory the link originates.
objPathPath of the entry to be linked relative to from.
toObjPointer to the object the link points to.
Returns
Status code indicating success or failure.

◆ linkObject() [3/4]

StatusCode IDataProviderSvc::linkObject ( std::string_view  fromPath,
std::string_view  objPath,
DataObject toObj 
)
inline

Add a link to another object.

Both objects must already be registered with the data store. Once linked, the object can only be unregistered after unlinking.

Parameters
fromPathPath to the object the link originates.
objPathPath of the entry to be linked relative to from.
toObjPointer to the object the link points to.
Returns
Status code indicating success or failure.

Definition at line 489 of file IDataProviderSvc.h.

489  {
490  DataObject* pO = nullptr;
491  StatusCode status = retrieveObject( fromPath, pO );
492  return status.isSuccess() ? linkObject( pO->registry(), objPath, toObj ) : status;
493  }

◆ linkObject() [4/4]

virtual StatusCode IDataProviderSvc::linkObject ( std::string_view  fullPath,
DataObject toObj 
)
pure virtual

Add a link to another object.

Both objects must already be registered with the data store. Once linked, the object can only be unregistered after unlinking.

Parameters
fullPathFull path of the entry to be linked.
toObjPointer to the object the link points to.
Returns
Status code indicating success or failure.

◆ preLoad()

virtual StatusCode IDataProviderSvc::preLoad ( )
pure virtual

Load all preload items of the list.

Returns
Status code indicating success or failure.

◆ registerObject() [1/5]

StatusCode IDataProviderSvc::registerObject ( DataObject parentObj,
int  item,
DataObject pObject 
)
inline

Register object with the data store.

Connect the object identified by its pointer to the node object identified by its pointer.

Parameters
parentObjPointer to parent object.
itemitem number of the object linked to the parent
pObjectPointer to the object to be connected.
Returns
Status code indicating success or failure.

Definition at line 117 of file IDataProviderSvc.h.

117  {
118  return registerObject( parentObj, itemToPath( item ), pObject );
119  }

◆ registerObject() [2/5]

virtual StatusCode IDataProviderSvc::registerObject ( DataObject parentObj,
std::string_view  objectPath,
DataObject pObject 
)
pure virtual

Register object 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.

Parameters
parentObjPointer to parent object.
objectPathPath of the object relative to the parent node
pObjectPointer to the object to be connected.
Returns
Status code indicating success or failure.

◆ registerObject() [3/5]

StatusCode IDataProviderSvc::registerObject ( std::string_view  fullPath,
DataObject pObject 
)
inline

Register object with the data store.

Connect the object identified by its pointer to the node object identified by its path.

Parameters
fullPathPath to parent node of the object.
pObjectPointer to the object to be registered.
Returns
Status code indicating success or failure.

Definition at line 72 of file IDataProviderSvc.h.

72  {
73  return registerObject( nullptr, fullPath, pObject );
74  }

◆ registerObject() [4/5]

StatusCode IDataProviderSvc::registerObject ( std::string_view  parentPath,
int  item,
DataObject pObject 
)
inline

Register object with the data store.

Connect the object identified by its pointer to the parent object and an integer identifier.

Parameters
parentPathPath to parent node of the object.
itemitem number of the object linked to the parent
pObjectPointer to the object to be registered.
Returns
Status code indicating success or failure.

Definition at line 95 of file IDataProviderSvc.h.

95  {
96  return registerObject( parentPath, itemToPath( item ), pObject );
97  }

◆ registerObject() [5/5]

virtual StatusCode IDataProviderSvc::registerObject ( std::string_view  parentPath,
std::string_view  objectPath,
DataObject pObject 
)
pure virtual

Register object with the data store.

Connect the object identified by the path to the parent object and the path of the object itself relative to the specified parent.

Parameters
parentPathPath to parent node of the object.
objectPathPath of the object relative to the parent node
pObjectPointer to the object to be registered.
Returns
Status code indicating success or failure.

◆ removePreLoadItem() [1/2]

virtual StatusCode IDataProviderSvc::removePreLoadItem ( const DataStoreItem item)
pure virtual

Remove an item from the preload list.

Parameters
itemSpecs of item to be removed from the preload list
Returns
Status code indicating success or failure.

◆ removePreLoadItem() [2/2]

StatusCode IDataProviderSvc::removePreLoadItem ( std::string  itemPath)
inline

Remove an item from the preload list.

Parameters
itemPathPath to the item to be preloaded.
Returns
Status code indicating success or failure.

Definition at line 457 of file IDataProviderSvc.h.

457  {
458  return removePreLoadItem( DataStoreItem( std::move( itemPath ), 1 ) );
459  }

◆ resetPreLoad()

virtual StatusCode IDataProviderSvc::resetPreLoad ( )
pure virtual

Clear the preload list.

Returns
Status code indicating success or failure.

◆ retrieveObject() [1/6]

StatusCode IDataProviderSvc::retrieveObject ( DataObject parentObj,
int  item,
DataObject *&  pObject 
)
inline

Retrieve object from data store.

The object to be retrieved is identified by the pointer to the parent object and an integer identifier. In case the object is not present it will be loaded and converted if possible.

Parameters
parentObjPointer to parent node of the object.
itemItem identifier.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 301 of file IDataProviderSvc.h.

301  {
302  return retrieveObject( parentObj, itemToPath( item ), pObject );
303  }

◆ retrieveObject() [2/6]

StatusCode IDataProviderSvc::retrieveObject ( DataObject parentObj,
std::string_view  objectPath,
DataObject *&  pObject 
)
inline

Retrieve object from data store.

The object to be retrieved is identified by the pointer to the parent object and the relative path with respect to the node. In case the object is not present it will be loaded and converted if possible.

Parameters
parentObjPointer to parent node of the object.
objectPathPath of the object relative to the parent.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 287 of file IDataProviderSvc.h.

287  {
288  return retrieveObject( parentObj ? parentObj->registry() : nullptr, objectPath, pObject );
289  }

◆ retrieveObject() [3/6]

virtual StatusCode IDataProviderSvc::retrieveObject ( IRegistry pDirectory,
std::string_view  path,
DataObject *&  pObject 
)
pure virtual

Retrieve object identified by its directory entry.

The result will be returned in the second argument. In case the object is not present it will be loaded and converted if possible. ** FASTEST ACCESS TO THE DATA STORE **

Parameters
pDirectoryPointer to the object.
pathString with relative path to directory. Ideally ""!
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

◆ retrieveObject() [4/6]

StatusCode IDataProviderSvc::retrieveObject ( std::string_view  fullPath,
DataObject *&  pObject 
)
inline

Retrieve object identified by its full path from the data store.

The result will be returned in the second argument. In case the object is not present it will be loaded and converted if possible.

Parameters
fullPathPath name of the object.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 243 of file IDataProviderSvc.h.

243  {
244  return retrieveObject( static_cast<IRegistry*>( nullptr ), fullPath, pObject );
245  }

◆ retrieveObject() [5/6]

StatusCode IDataProviderSvc::retrieveObject ( std::string_view  parentPath,
int  item,
DataObject *&  pObject 
)
inline

Retrieve object from data store.

The object to be retrieved is identified by the path to the parent object and an integer identifier. In case the object is not present it will be loaded and converted if possible.

Parameters
parentPathPath to parent node of the object.
itemItem identifier.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 273 of file IDataProviderSvc.h.

273  {
274  return retrieveObject( parentPath, itemToPath( item ), pObject );
275  }

◆ retrieveObject() [6/6]

StatusCode IDataProviderSvc::retrieveObject ( std::string_view  parentPath,
std::string_view  objectPath,
DataObject *&  pObject 
)
inline

Retrieve object from data store.

The object to be retrieved is identified by the path of the parent object and the relative path with respect to the node. In case the object is not present it will be loaded and converted if possible.

Parameters
parentPathPath to parent node of the object.
objectPathPath of the object relative to the parent.
pObjectReference to the pointer of the object to be returned.
Returns
Status code indicating success or failure.

Definition at line 257 of file IDataProviderSvc.h.

257  {
258  DataObject* parent = nullptr;
259  StatusCode status = retrieveObject( parentPath, parent );
260  return status.isSuccess() ? retrieveObject( parent, objectPath, pObject ) : status;
261  }

◆ unlinkObject() [1/4]

virtual StatusCode IDataProviderSvc::unlinkObject ( DataObject fromObj,
std::string_view  objPath 
)
pure virtual

Remove a link to another object.

Both objects must be registered with the data store. This entry point can be used to unlink objects e.g. in order to unregister them.

Parameters
fromObjPointer to the object the link originates.
objPathPath of the entry to be linked relative to from.
Returns
Status code indicating success or failure.

◆ unlinkObject() [2/4]

virtual StatusCode IDataProviderSvc::unlinkObject ( IRegistry from,
std::string_view  objPath 
)
pure virtual

Remove a link to another object.

Both objects must be registered with the data store. This entry point can be used to unlink objects e.g. in order to unregister them.

Parameters
fromPointer to data directory the link originates.
objPathPath of the entry to be linked relative to from.
Returns
Status code indicating success or failure.

◆ unlinkObject() [3/4]

StatusCode IDataProviderSvc::unlinkObject ( std::string_view  fromPath,
std::string_view  objPath 
)
inline

Remove a link to another object.

Both objects must be registered with the data store. This entry point can be used to unlink objects e.g. in order to unregister them.

Parameters
fromPathPath to the object the link originates.
objPathPath of the entry to be linked relative to from.
Returns
Status code indicating success or failure.

Definition at line 532 of file IDataProviderSvc.h.

532  {
533  DataObject* pObject = nullptr;
534  StatusCode status = findObject( fromPath, pObject );
535  return status.isSuccess() ? unlinkObject( pObject->registry(), objPath ) : status;
536  }

◆ unlinkObject() [4/4]

virtual StatusCode IDataProviderSvc::unlinkObject ( std::string_view  fullPath)
pure virtual

Remove a link to another object.

Both objects must be registered with the data store. This entry point can be used to unlink objects e.g. in order to unregister them.

Parameters
fullPathFull path of the entry to be linked.
Returns
Status code indicating success or failure.

◆ unregisterObject() [1/6]

virtual StatusCode IDataProviderSvc::unregisterObject ( DataObject pObject)
pure virtual

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by its pointer. The object must previously have been registered with the data store.

Parameters
pObjectPointer to the object.
Returns
Status code indicating success or failure.

◆ unregisterObject() [2/6]

StatusCode IDataProviderSvc::unregisterObject ( DataObject pParent,
int  item 
)
inline

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by parent object and an integer identifier of the object itself.

Parameters
pParentPointer to parent object.
itemInteger identifier of the object item.
Returns
Status code indicating success or failure.

Definition at line 219 of file IDataProviderSvc.h.

219  {
220  return unregisterObject( pParent, itemToPath( item ) );
221  }

◆ unregisterObject() [3/6]

virtual StatusCode IDataProviderSvc::unregisterObject ( DataObject pParent,
std::string_view  objPath 
)
pure virtual

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by parent object and the path of the object relative to the parent.

Parameters
pParentPointer to parent object.
objPathPath name of the object relative to the parent.
Returns
Status code indicating success or failure.

◆ unregisterObject() [4/6]

virtual StatusCode IDataProviderSvc::unregisterObject ( std::string_view  fullPath)
pure virtual

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by full path name.

Parameters
fullPathPath name of the object.
Returns
Status code indicating success or failure.

◆ unregisterObject() [5/6]

StatusCode IDataProviderSvc::unregisterObject ( std::string_view  parentPath,
int  item 
)
inline

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by parent path name and an integer identifier of the object itself.

Parameters
parentPathPath name of the parent object.
itemInteger identifier of the object item.
Returns
Status code indicating success or failure.

Definition at line 170 of file IDataProviderSvc.h.

170  {
171  return unregisterObject( parentPath, itemToPath( item ) );
172  }

◆ unregisterObject() [6/6]

StatusCode IDataProviderSvc::unregisterObject ( std::string_view  parentPath,
std::string_view  objPath 
)
inline

Unregister object from the data store.

On registration the client gives up ownership of the object and may no longer delete the object. unregistering the object is the opposite: ownership is claimed back by the user. But note:

  • All depending objects will be deleted, ie. all leaves "below" the entry in question; NOT the object itself, the object itself must be destroyed by the user.

The object is identified by parent path name and the path of the object relative to the parent.

Parameters
parentPathPath name of the parent object.
objPathPath name of the object relative to the parent.
Returns
Status code indicating success or failure.

Definition at line 150 of file IDataProviderSvc.h.

150  {
151  DataObject* pO = nullptr;
152  StatusCode status = findObject( parentPath, pO );
153  return status.isSuccess() ? unregisterObject( pO, objPath ) : status;
154  }

◆ updateObject() [1/5]

StatusCode IDataProviderSvc::updateObject ( DataObject pParent,
std::string_view  updatePath 
)
inline

Update object identified by its parent's pointer and the path relative to the parent.

If found, the object update will be initiated. In case the object is not present the entry point returns an error.

Parameters
pParentPointer to the parent object.
updatePathPath to the object relative to the parent.
Returns
Status code indicating success or failure.

Definition at line 426 of file IDataProviderSvc.h.

426  {
427  DataObject* pObject = nullptr;
428  StatusCode status = findObject( pParent, updatePath, pObject );
429  return status.isSuccess() ? updateObject( pObject ) : status;
430  }

◆ updateObject() [2/5]

virtual StatusCode IDataProviderSvc::updateObject ( DataObject toUpdate)
pure virtual

Update object identified by its pointer.

If found, the object update will be initiated. In case the object is not present the entry point returns an error.

Parameters
toUpdatePointer to the object.
Returns
Status code indicating success or failure.

◆ updateObject() [3/5]

virtual StatusCode IDataProviderSvc::updateObject ( IRegistry pDirectory)
pure virtual

Update object identified by its directory entry.

** FASTEST ACCESS TO THE DATA STORE **

Parameters
pDirectoryPointer to the directory entry.
Returns
Status code indicating success or failure.

◆ updateObject() [4/5]

StatusCode IDataProviderSvc::updateObject ( std::string_view  fullPath)
inline

Update object identified by its full path in the data store.

If found, the object update will be initiated. In case the object is not present the entry point returns an error.

Parameters
fullPathPath name of the object.
Returns
Status code indicating success or failure.

Definition at line 390 of file IDataProviderSvc.h.

390  {
391  DataObject* pO = nullptr;
392  StatusCode status = findObject( fullPath, pO );
393  return status.isSuccess() ? updateObject( pO ) : retrieveObject( fullPath, pO );
394  }

◆ updateObject() [5/5]

StatusCode IDataProviderSvc::updateObject ( std::string_view  parentPath,
std::string_view  updatePath 
)
inline

Update object identified by its parent's path and the path relative to the parent.

If found, the object update will be initiated. In case the object is not present the entry point returns an error.

Parameters
parentPathPath name of the parent object.
updatePathPath to the object relative to the parent.
Returns
Status code indicating success or failure.

Definition at line 412 of file IDataProviderSvc.h.

412  {
413  DataObject* pParent = nullptr;
414  StatusCode status = findObject( parentPath, pParent );
415  return status.isSuccess() ? updateObject( pParent, updatePath ) : status;
416  }

The documentation for this class was generated from the following file:
IDataProviderSvc::unregisterObject
virtual StatusCode unregisterObject(std::string_view fullPath)=0
Unregister object from the data store.
IDataProviderSvc::removePreLoadItem
virtual StatusCode removePreLoadItem(const DataStoreItem &item)=0
Remove an item from the preload list.
IDataProviderSvc::unlinkObject
virtual StatusCode unlinkObject(IRegistry *from, std::string_view objPath)=0
Remove a link to another object.
std::move
T move(T... args)
StatusCode::isSuccess
bool isSuccess() const
Definition: StatusCode.h:314
IDataProviderSvc::Status::INVALID_PARENT
@ INVALID_PARENT
Pointer to parent object is not valid.
IRegistry
Definition: IRegistry.h:32
StatusCode::code_t
unsigned long code_t
type of StatusCode value
Definition: StatusCode.h:67
IDataProviderSvc::SEPARATOR
@ SEPARATOR
Definition: IDataProviderSvc.h:63
IDataProviderSvc::itemToPath
static std::string itemToPath(int item)
Helper function to convert item numbers to path strings.
Definition: IDataProviderSvc.h:57
IDataProviderSvc::addPreLoadItem
virtual StatusCode addPreLoadItem(const DataStoreItem &item)=0
Add an item to the preload list.
IDataProviderSvc::registerObject
StatusCode registerObject(std::string_view fullPath, DataObject *pObject)
Register object with the data store.
Definition: IDataProviderSvc.h:72
IDataProviderSvc::linkObject
virtual StatusCode linkObject(IRegistry *from, std::string_view objPath, DataObject *toObj)=0
Add a link to another object.
StatusCode
Definition: StatusCode.h:65
DataStoreItem
Definition: DataStoreItem.h:27
IDataProviderSvc::retrieveObject
virtual StatusCode retrieveObject(IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
Retrieve object identified by its directory entry.
std::to_string
T to_string(T... args)
DataObject
Definition: DataObject.h:36
DataObject::registry
IRegistry * registry() const
Get pointer to Registry.
Definition: DataObject.h:78
IDataProviderSvc::updateObject
virtual StatusCode updateObject(IRegistry *pDirectory)=0
Update object identified by its directory entry.
IDataProviderSvc::findObject
virtual StatusCode findObject(IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
Find object identified by its directory entry.