![]() |
The Gaudi Framework
master (ff829712)
|
A small class used to access easily (and efficiently) data items residing in data stores. More...
#include <GaudiKernel/SmartDataObjectPtr.h>
Classes | |
class | ObjectFinder |
Helper class to configure smart pointer functionality. More... | |
class | ObjectLoader |
Helper class to configure smart pointer functionality. More... | |
Public Types | |
using | AccessFunction = DataObject* (*)( SmartDataObjectPtr* ptr ) |
Public Member Functions | |
SmartDataObjectPtr (AccessFunction access, IDataProviderSvc *pService, IRegistry *pDir, std::string path) | |
Standard constructor: Construct an SmartDataObjectPtr instance. | |
SmartDataObjectPtr (const SmartDataObjectPtr &)=default | |
Copy constructor: Construct an copy of a SmartDataStorePtr instance. | |
virtual | ~SmartDataObjectPtr ()=default |
Standard Destructor. | |
virtual SmartDataObjectPtr & | operator= (const SmartDataObjectPtr &)=default |
Assignment operator. | |
operator IRegistry * () | |
Automatic conversion to data directory. | |
const std::string & | path () const |
Path name. | |
IRegistry * | directory () |
Access to data directory. | |
void | setService (IDataProviderSvc *svc) |
Assign data service. | |
IDataProviderSvc * | service () |
Retrieve data service. | |
const StatusCode & | getLastError () const |
Access to potential errors during data accesses. | |
DataObject * | accessData () |
Static Object retrieval method: must call specific function. | |
DataObject * | retrieveObject () |
Object retrieve method. | |
DataObject * | findObject () |
Object find method. | |
DataObject * | updateObject () |
Object update method. | |
Static Public Member Functions | |
static DataObject * | retrieve (SmartDataObjectPtr *ptr) |
Static Object retrieval method. | |
static DataObject * | find (SmartDataObjectPtr *ptr) |
Static Object find method. | |
static DataObject * | update (SmartDataObjectPtr *ptr) |
Static Object update method. | |
Protected Member Functions | |
StatusCode | find (IRegistry *pDirectory, std::string_view path, DataObject *&refpObject) |
Find the specified object from the data store. | |
StatusCode | find (std::string_view fullPath, DataObject *&refpObject) |
Find the specified object from the data store. | |
StatusCode | retrieve (IRegistry *pDirectory, std::string_view path, DataObject *&refpObject) |
Retrieve the specified object from the data store. | |
StatusCode | retrieve (std::string_view fullPath, DataObject *&refpObject) |
Retrieve the specified object from the data store. | |
StatusCode | update (IRegistry *pDirectory) |
Update the specified object from the data store. | |
StatusCode | update (std::string_view fullPath) |
Update the specified object from the data store. | |
Protected Attributes | |
IDataProviderSvc * | m_dataProvider = nullptr |
Pointer to contained object. | |
IRegistry * | m_pRegistry = nullptr |
Pointer to the data registry containing the object. | |
StatusCode | m_status = StatusCode::SUCCESS |
Keep track of the last error. | |
std::string | m_path |
Path to object. | |
AccessFunction | m_accessFunc = nullptr |
Data access function. | |
A small class used to access easily (and efficiently) data items residing in data stores.
The class is meant as configurable base class for real Smart pointer instances. Here mainly the access of the data store is handled. It is important to keep as less functions as possible NON-VIRTUAL in particular those, which handle the data access - they might be called very often and hence the compiler must be able to inline them.
Definition at line 37 of file SmartDataObjectPtr.h.
using SmartDataObjectPtr::AccessFunction = DataObject* (*)( SmartDataObjectPtr* ptr ) |
Definition at line 39 of file SmartDataObjectPtr.h.
|
inline |
Standard constructor: Construct an SmartDataObjectPtr instance.
svc | Pointer to the data service interface used to interact with the store. |
pDir | Pointer to data directory |
path | path to object relative to data directory |
Definition at line 59 of file SmartDataObjectPtr.h.
|
default |
Copy constructor: Construct an copy of a SmartDataStorePtr instance.
copy | Copy of Smart Pointer to object. |
|
virtualdefault |
Standard Destructor.
|
inline |
Static Object retrieval method: must call specific function.
Definition at line 91 of file SmartDataObjectPtr.h.
|
inline |
|
protected |
Find the specified object from the data store.
Retrieve the object from the data store.
pDirectory | Pointer to the directory entry holding the object. |
refpObject | Reference to the pointer finally holding the object |
Definition at line 31 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
Static Object find method.
Definition at line 97 of file SmartDataObjectPtr.h.
|
protected |
Find the specified object from the data store.
Retrieve the object from the data store.
fullPath | String containing the full path necessary to locate the object. |
refpObject | Reference to the pointer finally holding the object |
Definition at line 38 of file SmartDataObjectPtr.cpp.
DataObject * SmartDataObjectPtr::findObject | ( | ) |
Object find method.
If the object is not known to the local object, it is requested from the data service either using the full path if there is no directory information present.
Definition at line 72 of file SmartDataObjectPtr.cpp.
|
inline |
Access to potential errors during data accesses.
Definition at line 88 of file SmartDataObjectPtr.h.
|
inline |
|
virtualdefault |
Assignment operator.
Reimplemented in SmartDataStorePtr< TYPE, LOADER >, and SmartDataStorePtr< TYPE, SmartDataObjectPtr::ObjectLoader >.
|
inline |
|
protected |
Retrieve the specified object from the data store.
Retrieve the object from the data store.
pDirectory | Pointer to the directory entry holding the object. |
refpObject | Reference to the pointer finally holding the object |
Definition at line 20 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
Static Object retrieval method.
Definition at line 94 of file SmartDataObjectPtr.h.
|
protected |
Retrieve the specified object from the data store.
Retrieve the object from the data store.
fullPath | String containing the full path necessary to locate the object. |
refpObject | Reference to the pointer finally holding the object |
Definition at line 26 of file SmartDataObjectPtr.cpp.
DataObject * SmartDataObjectPtr::retrieveObject | ( | ) |
Object retrieve method.
Object retrieval method.
If the object is not known to the local object, it is requested from the data service either using the full path if there is no directory information present.
Definition at line 57 of file SmartDataObjectPtr.cpp.
|
inline |
|
inline |
Assign data service.
Definition at line 82 of file SmartDataObjectPtr.h.
|
protected |
Update the specified object from the data store.
update the object from the data store.
pDirectory | Pointer to the directory entry holding the object. |
Definition at line 43 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
Static Object update method.
Definition at line 100 of file SmartDataObjectPtr.h.
|
protected |
Update the specified object from the data store.
update the object from the data store.
fullPath | String containing the full path necessary to locate the object. |
Definition at line 48 of file SmartDataObjectPtr.cpp.
DataObject * SmartDataObjectPtr::updateObject | ( | ) |
Object update method.
If the object is not known to the local object, it is requested from the data service either using the full path if there is no directory information present. Needs to be virtual to to implicit object access.
If the object is not known to the local object, it is requested from the data service either using the full path if there is no directory information present.
Definition at line 87 of file SmartDataObjectPtr.cpp.
|
protected |
Data access function.
Definition at line 173 of file SmartDataObjectPtr.h.
|
mutableprotected |
Pointer to contained object.
Definition at line 165 of file SmartDataObjectPtr.h.
|
protected |
Path to object.
Definition at line 171 of file SmartDataObjectPtr.h.
|
mutableprotected |
Pointer to the data registry containing the object.
Definition at line 167 of file SmartDataObjectPtr.h.
|
mutableprotected |
Keep track of the last error.
Definition at line 169 of file SmartDataObjectPtr.h.