The Gaudi Framework  v30r3 (a5ef0a68)
SmartDataPtr.h
Go to the documentation of this file.
1 // ====================================================================
2 // SmartDataPtr.h
3 // --------------------------------------------------------------------
4 //
5 // Package : GaudiKernel ( The LHCb Offline System)
6 //
7 // Description: Implementation of a smart pointer class to access
8 // easily (and efficiently) data stores.
9 //
10 // Author : M.Frank
11 // ====================================================================
12 #ifndef GAUDIKERNEL_SMARTDATAPTR_H
13 #define GAUDIKERNEL_SMARTDATAPTR_H 1
14 
15 // Framework include files
16 #include "GaudiKernel/DataObject.h"
18 
46 template <class TYPE>
47 class SmartDataPtr : public SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>
48 {
49 public:
51 #if !defined( __ICC ) && !defined( __COVERITY__ )
52  // icc and Coverity do not like this line, they fail with
53  // SmartDataPtr.h(147): internal error: assertion failed: add_symbol_to_overload_list:
54  // symbol not in symbol header list (shared/edgcpfe/symbol_tbl.c, line 4804)
56 #endif
57 
65  SmartDataPtr( IDataProviderSvc* pService, const std::string& fullPath )
66  : SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>( pService, nullptr, fullPath )
67  {
68  }
69 
78  SmartDataPtr( IDataProviderSvc* pService, IRegistry* pDirectory )
79  : SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>( pService, pDirectory, "" )
80  {
81  }
82 
94  SmartDataPtr( IDataProviderSvc* pService, DataObject* pObject, const std::string& path )
95  : SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>( pService, nullptr, path )
96  {
97  if ( pObject ) this->m_pRegistry = pObject->registry();
98  }
99 
109  SmartDataPtr( SmartDataObjectPtr& refObject, IRegistry* pDirectory )
110  : SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>( refObject.service(), pDirectory, "" )
111  {
112  }
113 
124  : SmartDataStorePtr<TYPE, SmartDataObjectPtr::ObjectLoader>( refObject.service(), refObject.directory(), path )
125  {
126  }
127 
132 
135  virtual ~SmartDataPtr() = default;
136 
138  template <class OTHER>
139  SmartDataPtr& operator=( OTHER* pObj )
140  {
141  this->m_pObject = dynamic_cast<TYPE*>( pObj );
142  return *this;
143  }
144 
146  template <class OTHER>
147  SmartDataPtr& operator=( const OTHER* pObj )
148  {
149  this->m_pObject = dynamic_cast<TYPE*>( const_cast<OTHER*>( pObj ) );
150  return *this;
151  }
152 };
153 
154 #endif // GAUDIKERNEL_SMARTDATAPTR_H
SmartDataPtr(SmartDataObjectPtr &refObject, const std::string &path)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
Definition: SmartDataPtr.h:123
SmartDataPtr & operator=(const OTHER *pObj)
Automatic conversion to data type.
Definition: SmartDataPtr.h:147
Data provider interface definition.
IRegistry * registry() const
Get pointer to Registry.
Definition: DataObject.h:73
IDataProviderSvc * service()
Retrieve data service.
STL class.
virtual ~SmartDataPtr()=default
Standard destructor.
Helper class to configure smart pointer functionality.
const std::string & path() const
Path name.
SmartDataPtr(const SmartDataObjectPtr &copy)
Copy constructor: Construct an copy of a SmartDataPtr instance.
Definition: SmartDataPtr.h:131
SmartDataPtr(IDataProviderSvc *pService, const std::string &fullPath)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
Definition: SmartDataPtr.h:65
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
SmartDataPtr(IDataProviderSvc *pService, IRegistry *pDirectory)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
Definition: SmartDataPtr.h:78
SmartDataPtr & operator=(OTHER *pObj)
Automatic conversion to data type.
Definition: SmartDataPtr.h:139
A small class used to access easily (and efficiently) data items residing in data stores...
A small class used to access easily (and efficiently) data items residing in data stores...
SmartDataPtr(SmartDataObjectPtr &refObject, IRegistry *pDirectory)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
Definition: SmartDataPtr.h:109
A small class used to access easily (and efficiently) data items residing in data stores...
Definition: SmartDataPtr.h:47
IRegistry * directory()
Access to data directory.
SmartDataPtr(IDataProviderSvc *pService, DataObject *pObject, const std::string &path)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
Definition: SmartDataPtr.h:94
IRegistry * m_pRegistry
Pointer to the data registry containing the object.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30