The Gaudi Framework  v30r3 (a5ef0a68)
ServiceHandle< T > Class Template Reference

Handle to be used in lieu of naked pointers to services. More...

#include <GaudiKernel/ServiceHandle.h>

Inheritance diagram for ServiceHandle< T >:
Collaboration diagram for ServiceHandle< T >:

Public Member Functions

 ServiceHandle (const std::string &serviceName, const std::string &theParentName)
 Create a handle ('smart pointer') to a service. More...
 
template<typename CT = T, typename NCT = typename std::remove_const<T>::type>
 ServiceHandle (const ServiceHandle< NCT > &other, typename std::enable_if< std::is_const< CT >::value &&!std::is_same< CT, NCT >::value >::type *=nullptr)
 Copy constructor from a non const T to const T service handle. More...
 
template<class OWNER , typename = typename std::enable_if<std::is_base_of<IProperty, OWNER>::value>::type>
 ServiceHandle (OWNER *owner, std::string PropName, std::string svcName, std::string doc="")
 Autodeclaring constructor with property name, service type/name and documentation. More...
 
StatusCode initialize (const std::string &serviceName, const std::string &theParentName)
 
StatusCode retrieve () const
 Retrieve the Service. More...
 
T * get () const
 Release the Service. More...
 
T * operator-> () const
 Allow non const access to the service, even from a const handle... More...
 
T & operator* () const
 
- Public Member Functions inherited from GaudiHandle< T >
template<typename CT = T, typename NCT = typename std::remove_const<T>::type>
 GaudiHandle (const GaudiHandle< NCT > &other, typename std::enable_if< std::is_const< CT >::value &&!std::is_same< CT, NCT >::value >::type *=nullptr)
 Copy constructor needed for correct ref-counting. More...
 
 GaudiHandle (const GaudiHandle &other)
 Copy constructor needed for correct ref-counting. More...
 
template<typename CT = T, typename NCT = typename std::remove_const<T>::type>
std::enable_if< std::is_const< CT >::value &&!std::is_same< CT, NCT >::value, GaudiHandle & >::type operator= (const GaudiHandle< NCT > &other)
 Assignment operator for correct ref-counting. More...
 
GaudiHandleoperator= (const GaudiHandle &other)
 Assignment operator for correct ref-counting. More...
 
StatusCode retrieve () const
 Retrieve the component. More...
 
StatusCode release () const
 Release the component. More...
 
bool isValid () const
 Check if the handle is valid (try to retrive the object is not done yet). More...
 
 operator bool () const
 For testing if handle has component. More...
 
T * get ()
 Return the wrapped pointer, not calling retrieve() if null. More...
 
std::add_const< T >::typeget () const
 Return the wrapped pointer, not calling retrieve() if null. More...
 
bool isSet () const
 True if the wrapped pointer is not null. More...
 
T & operator* ()
 
T * operator-> ()
 
std::add_const< T >::typeoperator* () const
 
std::add_const< T >::typeoperator-> () const
 
std::string getDefaultType ()
 Helper function to get default type string from the class type. More...
 
std::string getDefaultName ()
 
- Public Member Functions inherited from GaudiHandleBase
std::string typeAndName () const
 The full type and name: "type/name". More...
 
std::string type () const
 The concrete component class name: the part before the '/'. More...
 
std::string name () const
 The instance name: the part after the '/'. More...
 
bool empty () const
 Check if the handle has been set to empty string (i.e. More...
 
void setTypeAndName (std::string myTypeAndName)
 The component "type/name" string. More...
 
void setName (const std::string &myName)
 Set the instance name (part after the '/') without changing the class type. More...
 
std::string pythonPropertyClassName () const override
 Name of the componentType with "Handle" appended. More...
 
std::string messageName () const
 name used for printing messages More...
 
std::string pythonRepr () const override
 Python representation of handle, i.e. More...
 
- Public Member Functions inherited from GaudiHandleInfo
virtual ~GaudiHandleInfo ()=default
 virtual destructor so that derived class destructor is called. More...
 
const std::stringcomponentType () const
 
const std::stringpropertyName () const
 name as used in declareProperty(name,gaudiHandle) More...
 
void setPropertyName (std::string propName)
 set name as used in declareProperty(name,gaudiHandle). More...
 
const std::stringparentName () const
 The name of the parent. More...
 

Protected Member Functions

StatusCode retrieve (T *&service) const override
 Do the real retrieval of the Service. More...
 
- Protected Member Functions inherited from GaudiHandle< T >
 GaudiHandle (std::string myTypeAndName, std::string myComponentType, std::string myParentName)
 
virtual StatusCode release (T *comp) const
 Release the component. More...
 
- Protected Member Functions inherited from GaudiHandleBase
 GaudiHandleBase (std::string myTypeAndName, std::string myComponentType, std::string myParentName)
 Create a handle ('smart pointer') to a gaudi component. More...
 
- Protected Member Functions inherited from GaudiHandleInfo
 GaudiHandleInfo (std::string myComponentType, std::string myParentName)
 Some basic information and helper functions shared between various handles/arrays. More...
 
void setComponentType (const std::string &componentType)
 The component type. More...
 
void setParentName (const std::string &parent)
 The name of the parent. More...
 

Private Member Functions

SmartIF< ISvcLocator > & serviceLocator () const
 Do the real release of the Service. More...
 
SmartIF< IMessageSvc > & messageSvc () const
 

Private Attributes

SmartIF< ISvcLocatorm_pSvcLocator
 
SmartIF< IMessageSvcm_pMessageSvc
 

Additional Inherited Members

- Public Types inherited from GaudiHandleBase
using PropertyType = GaudiHandleProperty
 

Detailed Description

template<class T>
class ServiceHandle< T >

Handle to be used in lieu of naked pointers to services.

This allows better control through the framework of service loading and usage.

Author
Marti.nosp@m.n.Wo.nosp@m.udstr.nosp@m.a@ce.nosp@m.rn.ch

Definition at line 31 of file ServiceHandle.h.

Constructor & Destructor Documentation

template<class T>
ServiceHandle< T >::ServiceHandle ( const std::string serviceName,
const std::string theParentName 
)
inline

Create a handle ('smart pointer') to a service.

The arguments are passed on to ServiceSvc, and have the same meaning:

Parameters
serviceNamename of the service
parentNamename of the parent Algorithm, AlgTool or Service. It is used for log printout at retrieve(), and for retrieving a thread-dependent service (if applicable)

Definition at line 44 of file ServiceHandle.h.

45  : GaudiHandle<T>( serviceName, "Service", theParentName )
46  {
47  }
Handle to be used in lieu of naked pointers to gaudis.
Definition: GaudiHandle.h:170
template<class T>
template<typename CT = T, typename NCT = typename std::remove_const<T>::type>
ServiceHandle< T >::ServiceHandle ( const ServiceHandle< NCT > &  other,
typename std::enable_if< std::is_const< CT >::value &&!std::is_same< CT, NCT >::value >::type = nullptr 
)
inline

Copy constructor from a non const T to const T service handle.

Definition at line 51 of file ServiceHandle.h.

53  : GaudiHandle<CT>( other )
54  {
55  }
Handle to be used in lieu of naked pointers to gaudis.
Definition: GaudiHandle.h:170
template<class T>
template<class OWNER , typename = typename std::enable_if<std::is_base_of<IProperty, OWNER>::value>::type>
ServiceHandle< T >::ServiceHandle ( OWNER *  owner,
std::string  PropName,
std::string  svcName,
std::string  doc = "" 
)
inline

Autodeclaring constructor with property name, service type/name and documentation.

Note
the use std::enable_if is required to avoid ambiguities

Definition at line 60 of file ServiceHandle.h.

61  : ServiceHandle( svcName, owner->name() )
62  {
63  auto p = owner->OWNER::PropertyHolderImpl::declareProperty( std::move( PropName ), *this, std::move( doc ) );
64  p->template setOwnerType<OWNER>();
65  }
T move(T...args)
ServiceHandle(const std::string &serviceName, const std::string &theParentName)
Create a handle (&#39;smart pointer&#39;) to a service.
Definition: ServiceHandle.h:44

Member Function Documentation

template<class T>
T* ServiceHandle< T >::get ( ) const
inline

Release the Service.

Function must be repeated here to avoid hiding the function release( T*& ) Allow non const access to the service, even from a const handle...

Definition at line 90 of file ServiceHandle.h.

Handle to be used in lieu of naked pointers to gaudis.
Definition: GaudiHandle.h:170
std::remove_const_t< T > * nonConst(T *p)
Cast a pointer to a non const type.
Definition: GaudiHandle.h:21
template<class T>
StatusCode ServiceHandle< T >::initialize ( const std::string serviceName,
const std::string theParentName 
)
inline

Definition at line 67 of file ServiceHandle.h.

68  {
69 
70  GaudiHandleBase::setTypeAndName( serviceName );
71  GaudiHandleBase::setParentName( theParentName );
72 
73  return StatusCode::SUCCESS;
74  }
void setTypeAndName(std::string myTypeAndName)
The component "type/name" string.
Definition: GaudiHandle.cpp:9
void setParentName(const std::string &parent)
The name of the parent.
Definition: GaudiHandle.h:76
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
template<class T>
SmartIF<IMessageSvc>& ServiceHandle< T >::messageSvc ( ) const
inlineprivate

Definition at line 124 of file ServiceHandle.h.

125  { // not really const, because it may change m_pMessageSvc
126  if ( !m_pMessageSvc ) {
127  m_pMessageSvc = serviceLocator(); // default message service
128  if ( !m_pMessageSvc ) {
129  throw GaudiException( "Service [MessageSvc] not found", this->parentName(), StatusCode::FAILURE );
130  }
131  }
132  return m_pMessageSvc;
133  }
constexpr static const auto FAILURE
Definition: StatusCode.h:88
Define general base for Gaudi exception.
SmartIF< IMessageSvc > m_pMessageSvc
const std::string & parentName() const
The name of the parent.
Definition: GaudiHandle.h:58
SmartIF< ISvcLocator > & serviceLocator() const
Do the real release of the Service.
template<class T>
T& ServiceHandle< T >::operator* ( ) const
inline

Definition at line 94 of file ServiceHandle.h.

Handle to be used in lieu of naked pointers to gaudis.
Definition: GaudiHandle.h:170
std::remove_const_t< T > * nonConst(T *p)
Cast a pointer to a non const type.
Definition: GaudiHandle.h:21
template<class T>
T* ServiceHandle< T >::operator-> ( ) const
inline

Allow non const access to the service, even from a const handle...

Definition at line 93 of file ServiceHandle.h.

Handle to be used in lieu of naked pointers to gaudis.
Definition: GaudiHandle.h:170
std::remove_const_t< T > * nonConst(T *p)
Cast a pointer to a non const type.
Definition: GaudiHandle.h:21
template<class T>
StatusCode ServiceHandle< T >::retrieve ( ) const
inline

Retrieve the Service.

Release existing Service if needed. Function must be repeated here to avoid hiding the function retrieve( T*& )

Definition at line 78 of file ServiceHandle.h.

79  { // not really const, because it updates m_pObject
80  return GaudiHandle<T>::retrieve();
81  }
StatusCode retrieve() const
Retrieve the component.
Definition: GaudiHandle.h:226
template<class T>
StatusCode ServiceHandle< T >::retrieve ( T *&  service) const
inlineoverrideprotectedvirtual

Do the real retrieval of the Service.

Implements GaudiHandle< T >.

Definition at line 98 of file ServiceHandle.h.

99  {
101  return helper.getService( GaudiHandleBase::typeAndName(), true, T::interfaceID(), (void**)&service );
102  }
an helper to share the implementation of service() among the various kernel base classes ...
std::string messageName() const
name used for printing messages
Definition: GaudiHandle.cpp:44
const std::string & parentName() const
The name of the parent.
Definition: GaudiHandle.h:58
SmartIF< ISvcLocator > & serviceLocator() const
Do the real release of the Service.
std::string typeAndName() const
The full type and name: "type/name".
Definition: GaudiHandle.h:122
template<class T>
SmartIF<ISvcLocator>& ServiceHandle< T >::serviceLocator ( ) const
inlineprivate

Do the real release of the Service.

Definition at line 113 of file ServiceHandle.h.

114  { // not really const, because it may change m_pSvcLocator
115  if ( !m_pSvcLocator ) {
117  if ( !m_pSvcLocator ) {
118  throw GaudiException( "SvcLocator not found", "Core component not found", StatusCode::FAILURE );
119  }
120  }
121  return m_pSvcLocator;
122  }
SmartIF< ISvcLocator > m_pSvcLocator
constexpr static const auto FAILURE
Definition: StatusCode.h:88
Define general base for Gaudi exception.
GAUDI_API ISvcLocator * svcLocator()

Member Data Documentation

template<class T>
SmartIF<IMessageSvc> ServiceHandle< T >::m_pMessageSvc
mutableprivate

Definition at line 138 of file ServiceHandle.h.

template<class T>
SmartIF<ISvcLocator> ServiceHandle< T >::m_pSvcLocator
mutableprivate

Definition at line 137 of file ServiceHandle.h.


The documentation for this class was generated from the following file: