The Gaudi Framework
master (37c0b60a)
|
#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. More... | |
SmartDataObjectPtr (const SmartDataObjectPtr &)=default | |
Copy constructor: Construct an copy of a SmartDataStorePtr instance. More... | |
virtual | ~SmartDataObjectPtr ()=default |
Standard Destructor. More... | |
virtual SmartDataObjectPtr & | operator= (const SmartDataObjectPtr &)=default |
Assignment operator. More... | |
operator IRegistry * () | |
Automatic conversion to data directory. More... | |
const std::string & | path () const |
Path name. More... | |
IRegistry * | directory () |
Access to data directory. More... | |
void | setService (IDataProviderSvc *svc) |
Assign data service. More... | |
IDataProviderSvc * | service () |
Retrieve data service. More... | |
const StatusCode & | getLastError () const |
Access to potential errors during data accesses. More... | |
DataObject * | accessData () |
Static Object retrieval method: must call specific function. More... | |
DataObject * | retrieveObject () |
Object retrieve method. More... | |
DataObject * | findObject () |
Object find method. More... | |
DataObject * | updateObject () |
Object update method. More... | |
Static Public Member Functions | |
static DataObject * | retrieve (SmartDataObjectPtr *ptr) |
Static Object retrieval method. More... | |
static DataObject * | find (SmartDataObjectPtr *ptr) |
Static Object find method. More... | |
static DataObject * | update (SmartDataObjectPtr *ptr) |
Static Object update method. More... | |
Protected Member Functions | |
StatusCode | find (IRegistry *pDirectory, std::string_view path, DataObject *&refpObject) |
Find the specified object from the data store. More... | |
StatusCode | find (std::string_view fullPath, DataObject *&refpObject) |
Find the specified object from the data store. More... | |
StatusCode | retrieve (IRegistry *pDirectory, std::string_view path, DataObject *&refpObject) |
Retrieve the specified object from the data store. More... | |
StatusCode | retrieve (std::string_view fullPath, DataObject *&refpObject) |
Retrieve the specified object from the data store. More... | |
StatusCode | update (IRegistry *pDirectory) |
Update the specified object from the data store. More... | |
StatusCode | update (std::string_view fullPath) |
Update the specified object from the data store. More... | |
Protected Attributes | |
IDataProviderSvc * | m_dataProvider = nullptr |
Pointer to contained object. More... | |
IRegistry * | m_pRegistry = nullptr |
Pointer to the data registry containing the object. More... | |
StatusCode | m_status = StatusCode::SUCCESS |
Keep track of the last error. More... | |
std::string | m_path |
Path to object. More... | |
AccessFunction | m_accessFunc = nullptr |
Data access function. More... | |
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 42 of file SmartDataObjectPtr.h.
using SmartDataObjectPtr::AccessFunction = DataObject* (*)( SmartDataObjectPtr* ptr ) |
Definition at line 44 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 64 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 96 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 43 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
|
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 50 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 84 of file SmartDataObjectPtr.cpp.
|
inline |
Access to potential errors during data accesses.
Definition at line 93 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 32 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
|
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 38 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 69 of file SmartDataObjectPtr.cpp.
|
inline |
|
inline |
|
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 55 of file SmartDataObjectPtr.cpp.
|
inlinestatic |
|
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 60 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 99 of file SmartDataObjectPtr.cpp.
|
protected |
Data access function.
Definition at line 178 of file SmartDataObjectPtr.h.
|
mutableprotected |
Pointer to contained object.
Definition at line 170 of file SmartDataObjectPtr.h.
|
protected |
Path to object.
Definition at line 176 of file SmartDataObjectPtr.h.
|
mutableprotected |
Pointer to the data registry containing the object.
Definition at line 172 of file SmartDataObjectPtr.h.
|
mutableprotected |
Keep track of the last error.
Definition at line 174 of file SmartDataObjectPtr.h.