Gaudi Framework, version v23r0

Home   Generated: Mon Jan 30 2012
Public Member Functions

ISvcLocator Class Reference

The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to locate services in the framework. More...

#include <GaudiKernel/ISvcLocator.h>

Inheritance diagram for ISvcLocator:
Inheritance graph
[legend]
Collaboration diagram for ISvcLocator:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 DeclareInterfaceID (ISvcLocator, 3, 0)
 InterfaceID.
virtual StatusCode getService (const Gaudi::Utils::TypeNameString &typeName, IService *&svc, const bool createIf=true)
 Get a reference to the service given a service name.
virtual StatusCode getService (const Gaudi::Utils::TypeNameString &typeName, const InterfaceID &iid, IInterface *&pinterface)
 Get a specific interface pointer given a service name and interface id.
virtual const std::list
< IService * > & 
getServices () const =0
 Get a reference to a service and create it if it does not exists.
virtual bool existsService (const std::string &name) const =0
 Check the existence of a service given a service name.
template<class T >
StatusCode service (const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
 Templated method to access a service by name.
template<class T >
StatusCode service (const std::string &type, const std::string &name, T *&svc, bool createIf=true)
 Templated method to access a service by type and name.
virtual SmartIF< IService > & service (const Gaudi::Utils::TypeNameString &typeName, const bool createIf=true)=0
 Returns a smart pointer to a service.
template<typename T >
SmartIF< T > service (const Gaudi::Utils::TypeNameString &typeName, const bool createIf=true)
 Returns a smart pointer to the requested interface of a service.

Detailed Description

The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to locate services in the framework.

Clients use this interface to locate references to interfaces of services existing in the application. This operation needs to be done before the service can be used by the client. Typically "locating the services" is done at the initialization phase of the clients.

Author:
Pere Mato

Definition at line 26 of file ISvcLocator.h.


Member Function Documentation

ISvcLocator::DeclareInterfaceID ( ISvcLocator  ,
,
 
)
virtual bool ISvcLocator::existsService ( const std::string name ) const [pure virtual]

Check the existence of a service given a service name.

Implemented in Gaudi::BootSvcLocator.

virtual StatusCode ISvcLocator::getService ( const Gaudi::Utils::TypeNameString &  typeName,
IService *&  svc,
const bool  createIf = true 
) [inline, virtual]

Get a reference to the service given a service name.

Parameters:
nameService name
svcReturned service pointer

Reimplemented in Gaudi::BootSvcLocator.

Definition at line 36 of file ISvcLocator.h.

                                                                              {
    SmartIF<IService> &s = service(typeName, createIf);
    svc = s.get();
    if (svc) {
      svc->addRef(); // Needed to maintain the correct reference counting.
      return StatusCode::SUCCESS;
    }
    return StatusCode::FAILURE;
  }
virtual StatusCode ISvcLocator::getService ( const Gaudi::Utils::TypeNameString &  typeName,
const InterfaceID iid,
IInterface *&  pinterface 
) [inline, virtual]

Get a specific interface pointer given a service name and interface id.

Parameters:
nameService name
iidInterface ID
pinterfaceReturned pointer to the requested interface

Reimplemented in Gaudi::BootSvcLocator.

Definition at line 52 of file ISvcLocator.h.

                                                           {
    SmartIF<IService> svc = service(typeName, false);
    if (svc.isValid()) {
      // Service found. So now get the right interface
      return svc->queryInterface(iid, (void**)&pinterface);
    }
    return StatusCode::FAILURE;
  }
virtual const std::list<IService*>& ISvcLocator::getServices (  ) const [pure virtual]

Get a reference to a service and create it if it does not exists.

Parameters:
nameService name
svcReturned service pointer
createIfflag to control the creation Return the list of Services

Implemented in Gaudi::BootSvcLocator.

template<typename T >
SmartIF<T> ISvcLocator::service ( const Gaudi::Utils::TypeNameString &  typeName,
const bool  createIf = true 
) [inline]

Returns a smart pointer to the requested interface of a service.

Reimplemented in Gaudi::BootSvcLocator.

Definition at line 104 of file ISvcLocator.h.

                                                                                                  {
    return SmartIF<T>(service(typeName, createIf));
  }
virtual SmartIF<IService>& ISvcLocator::service ( const Gaudi::Utils::TypeNameString &  typeName,
const bool  createIf = true 
) [pure virtual]

Returns a smart pointer to a service.

Implemented in Gaudi::BootSvcLocator.

template<class T >
StatusCode ISvcLocator::service ( const std::string type,
const std::string name,
T *&  svc,
bool  createIf = true 
) [inline]

Templated method to access a service by type and name.

Definition at line 93 of file ISvcLocator.h.

                                                      {
    return service(type + "/" + name, svc, createIf);
  }
template<class T >
StatusCode ISvcLocator::service ( const Gaudi::Utils::TypeNameString &  name,
T *&  svc,
bool  createIf = true 
) [inline]

Templated method to access a service by name.

Definition at line 82 of file ISvcLocator.h.

                                                                                            {
    if( createIf ) {
      IService* s;
      StatusCode sc = getService( name, s, true);
      if ( !sc.isSuccess() ) return sc;  // Must check if initialization was OK!
    }
    return getService( name, T::interfaceID(), (IInterface*&)svc );
  }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Mon Jan 30 2012 13:53:17 for Gaudi Framework, version v23r0 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004