Gaudi Framework, version v22r4

Home   Generated: Fri Sep 2 2011
Public Member Functions | Private Attributes

SmartIF< TYPE > Class Template Reference

Small smart pointer class with automatic reference counting for IInterface. More...

#include <GaudiKernel/SmartIF.h>

Collaboration diagram for SmartIF< TYPE >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 SmartIF ()
 Default constructor.
 SmartIF (TYPE *ptr)
 Standard constructor from pointer.
template<class OTHER >
 SmartIF (OTHER *ptr)
 Standard constructor from any (IInterface-derived) pointer.
 SmartIF (const SmartIF &rhs)
 Copy constructor.
template<class T >
 SmartIF (const SmartIF< T > &rhs)
 Constructor from another SmartIF, with a different type.
 ~SmartIF ()
 Standard Destructor.
bool isValid () const
 Allow for check if smart pointer is valid.
 operator TYPE * () const
 Automatic conversion to pointer.
TYPEoperator-> () const
 Dereference operator.
TYPEoperator* () const
 Dereference operator.
TYPEget () const
 Get interface pointer.
TYPE *& pRef ()
 Get reference to the pointer.
void reset (TYPE *ptr=0)
 Set the internal pointer to the passed one disposing of the old one.
template<class OTHER >
void reset (OTHER *ptr)
 Set the internal pointer to the passed one disposing of the old one.
SmartIFoperator= (IInterface *ptr)
 Assignment operator from IInterface pointer.
SmartIFoperator= (const SmartIF &rhs)
 Assignment operator.
template<class T >
SmartIFoperator= (const SmartIF< T > &rhs)
 Assignment operator from a different SmartIF.

Private Attributes

TYPEm_interface
 Pointer to the instance.

Detailed Description

template<class TYPE>
class SmartIF< TYPE >

Small smart pointer class with automatic reference counting for IInterface.

SmartIF simplifies the interaction with components in Gaudi by implementing an automatic reference counting and the casting (via IInterface::queryInterface).

Author:
Markus Frank
Sebastien Ponce
Marco Clemencic

Definition at line 19 of file SmartIF.h.


Constructor & Destructor Documentation

template<class TYPE>
SmartIF< TYPE >::SmartIF (  ) [inline]

Default constructor.

Definition at line 26 of file SmartIF.h.

: m_interface(0) {}
template<class TYPE>
SmartIF< TYPE >::SmartIF ( TYPE ptr ) [inline]

Standard constructor from pointer.

Definition at line 28 of file SmartIF.h.

                           : m_interface(ptr) {
    if (m_interface) m_interface->addRef();
  }
template<class TYPE>
template<class OTHER >
SmartIF< TYPE >::SmartIF ( OTHER *  ptr ) [inline]

Standard constructor from any (IInterface-derived) pointer.

Definition at line 33 of file SmartIF.h.

                            : m_interface(0) {
    if (ptr) reset(ptr);
  }
template<class TYPE>
SmartIF< TYPE >::SmartIF ( const SmartIF< TYPE > &  rhs ) [inline]

Copy constructor.

Definition at line 37 of file SmartIF.h.

                                    : m_interface(rhs.get()) {
    if (m_interface) m_interface->addRef();
  }
template<class TYPE>
template<class T >
SmartIF< TYPE >::SmartIF ( const SmartIF< T > &  rhs ) [inline, explicit]

Constructor from another SmartIF, with a different type.

Note:
it cannot replace the copy constructor.

Definition at line 43 of file SmartIF.h.

                                                : m_interface(0) {
    reset(rhs.get());
  }
template<class TYPE>
SmartIF< TYPE >::~SmartIF (  ) [inline]

Standard Destructor.

Definition at line 47 of file SmartIF.h.

{ reset(); }

Member Function Documentation

template<class TYPE>
TYPE* SmartIF< TYPE >::get (  ) const [inline]

Get interface pointer.

Definition at line 62 of file SmartIF.h.

{ return m_interface; }
template<class TYPE>
bool SmartIF< TYPE >::isValid (  ) const [inline]

Allow for check if smart pointer is valid.

Definition at line 51 of file SmartIF.h.

{ return m_interface != 0; }
template<class TYPE>
SmartIF< TYPE >::operator TYPE * (  ) const [inline]

Automatic conversion to pointer.

It is also used by the compiler for automatic conversion to boolean.

Definition at line 56 of file SmartIF.h.

{ return m_interface; }
template<class TYPE>
TYPE& SmartIF< TYPE >::operator* (  ) const [inline]

Dereference operator.

Definition at line 60 of file SmartIF.h.

{ return *m_interface; }
template<class TYPE>
TYPE* SmartIF< TYPE >::operator-> (  ) const [inline]

Dereference operator.

Definition at line 58 of file SmartIF.h.

{ return m_interface; }
template<class TYPE>
SmartIF& SmartIF< TYPE >::operator= ( IInterface ptr ) [inline]

Assignment operator from IInterface pointer.

It allows things like SmartIF<T> x; x = 0;

Definition at line 104 of file SmartIF.h.

                                               {
    reset(ptr);
    return *this;
  }
template<class TYPE>
SmartIF& SmartIF< TYPE >::operator= ( const SmartIF< TYPE > &  rhs ) [inline]

Assignment operator.

Definition at line 109 of file SmartIF.h.

                                                  {
    reset(rhs.get());
    return *this;
  }
template<class TYPE>
template<class T >
SmartIF& SmartIF< TYPE >::operator= ( const SmartIF< T > &  rhs ) [inline]

Assignment operator from a different SmartIF.

Note:
it cannot replace the assignment operator.

Definition at line 116 of file SmartIF.h.

                                                     {
    reset(rhs.get());
    return *this;
  }
template<class TYPE>
TYPE*& SmartIF< TYPE >::pRef (  ) [inline]

Get reference to the pointer.

Definition at line 65 of file SmartIF.h.

                       {
    return m_interface;
  }
template<class TYPE>
void SmartIF< TYPE >::reset ( TYPE ptr = 0 ) [inline]

Set the internal pointer to the passed one disposing of the old one.

Version for pointers of the same type of the managed ones (no call to queryInterface needed).

Definition at line 74 of file SmartIF.h.

                                   {
    if (ptr == m_interface) return;
    if (m_interface) m_interface->release();
    if (ptr) {
      m_interface = ptr;
      m_interface->addRef();
    } else {
      m_interface = 0;
    }
  }
template<class TYPE>
template<class OTHER >
void SmartIF< TYPE >::reset ( OTHER *  ptr ) [inline]

Set the internal pointer to the passed one disposing of the old one.

Version for pointers of types inheriting from IInterface.

Definition at line 87 of file SmartIF.h.

                                {
    if (static_cast<IInterface*>(ptr) == static_cast<IInterface*>(m_interface)) return;
    if (m_interface) m_interface->release();
    if (ptr) {
      ptr->queryInterface(TYPE::interfaceID(), pp_cast<void>(&m_interface)).ignore();
    } else {
      m_interface = 0;
    }
  }

Member Data Documentation

template<class TYPE>
TYPE* SmartIF< TYPE >::m_interface [private]

Pointer to the instance.

Definition at line 22 of file SmartIF.h.


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 Fri Sep 2 2011 16:25:46 for Gaudi Framework, version v22r4 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004