The Gaudi Framework  v29r0 (ff2e7097)
RefTable1to1< FROM, TO > Class Template Reference

#include <GaudiKernel/RefTable.h>

Inheritance diagram for RefTable1to1< FROM, TO >:
Collaboration diagram for RefTable1to1< FROM, TO >:

Public Member Functions

 RefTable1to1 (const CLID &clid, int len=16)
 Standard Constructor. More...
 
 ~RefTable1to1 () override=default
 Standard Destructor. More...
 
virtual const CLIDclID () const
 Retrieve reference to class definition structure. More...
 
bool insert (const FROM *from, TO *to)
 Insert new Entry into Reference container. More...
 
bool insert (const FROM *from, const EntryType &to)
 Insert new Entry into Reference container. More...
 
TO * reference (const FROM *from)
 Find Reference from it's source entry. More...
 
const TO * reference (const FROM *from) const
 Find Reference from it's source entry (CONST) More...
 
bool isReferenced (const FROM *from, const TO *to) const
 Check if two entries are associated to each other. More...
 
bool isReferenced (const FROM *from, const EntryType &to)
 Check if two entries are Referenced to each other. More...
 
- Public Member Functions inherited from RefTableBase< FROM, SmartRef< TO > >
 RefTableBase (const CLID &clid, int len)
 Constructors. More...
 
virtual ~RefTableBase ()=default
 Destructor. More...
 
virtual void clear ()
 Clear Reference map. More...
 
iterator begin ()
 Start of direct access iterator. More...
 
const_iterator begin () const
 Start of direct access iterator (CONST) More...
 
iterator end ()
 End of direct access iterator. More...
 
const_iterator end () const
 End of direct access iterator (CONST) More...
 
long size () const
 Size of References. More...
 
void reserve (int len)
 Size of References. More...
 
virtual StreamBufferserialize (StreamBuffer &s) const
 Serialize the object for writing. More...
 
virtual StreamBufferserialize (StreamBuffer &s)
 Serialize the object for reading. More...
 
- Public Member Functions inherited from DataObject
 DataObject ()
 Standard Constructor. More...
 
 DataObject (const DataObject &rhs)
 Copy Constructor. More...
 
DataObjectoperator= (const DataObject &rhs)
 Assignment Operator. More...
 
 DataObject (DataObject &&rhs)
 Move Constructor. More...
 
DataObjectoperator= (DataObject &&rhs)
 Move Assignment Operator. More...
 
virtual ~DataObject ()
 Standard Destructor. More...
 
virtual unsigned long addRef ()
 Add reference to object. More...
 
virtual unsigned long release ()
 release reference to object More...
 
const std::stringname () const
 Retreive DataObject name. It is the name when registered in the store. More...
 
virtual StatusCode update ()
 Provide empty placeholder for internal object reconfiguration callback. More...
 
void setRegistry (IRegistry *pRegistry)
 Set pointer to Registry. More...
 
IRegistryregistry () const
 Get pointer to Registry. More...
 
LinkManagerlinkMgr () const
 Retrieve Link manager. More...
 
unsigned char version () const
 Retrieve version number of this object representation. More...
 
void setVersion (unsigned char vsn)
 Set version number of this object representation. More...
 
unsigned long refCount () const
 Return the refcount. More...
 
virtual std::ostreamfillStream (std::ostream &s) const
 Fill the output stream (ASCII) More...
 

Additional Inherited Members

- Public Types inherited from RefTableBase< FROM, SmartRef< TO > >
typedef FROM KeyType
 
typedef SmartRef< TO > EntryType
 
typedef RefTableBase< FROM, EntryTypeBaseType
 
typedef GaudiUtils::HashMap< const void *, EntryTypeTableType
 Define Reference map. More...
 
typedef TableType::iterator iterator
 Definition of map iterator. More...
 
typedef TableType::const_iterator const_iterator
 Definition of map iterator (CONST) More...
 
- Static Public Member Functions inherited from DataObject
static const CLIDclassID ()
 Retrieve reference to class definition structure (static access) More...
 
- Public Attributes inherited from RefTableBase< FROM, SmartRef< TO > >
CLID m_clid
 Class id of the reference table. More...
 
- Protected Member Functions inherited from RefTableBase< FROM, SmartRef< TO > >
bool insertMapElement (const KeyType *from, EntryType &to)
 Insert new Entry into Reference container. More...
 
EntryTypei_reference (const KeyType *from)
 Find Reference from it's source entry. More...
 
const EntryTypei_reference (const KeyType *from) const
 Find Reference from it's source entry (CONST) More...
 

Detailed Description

template<class FROM, class TO>
class RefTable1to1< FROM, TO >

Definition at line 138 of file RefTable.h.

Constructor & Destructor Documentation

template<class FROM , class TO >
RefTable1to1< FROM, TO >::RefTable1to1 ( const CLID clid,
int  len = 16 
)
inline

Standard Constructor.

Definition at line 142 of file RefTable.h.

142 : RefTableBase<FROM, SmartRef<TO>>( clid, len ) {}
template <class FROM, class TO, class MAPENTRY> class RefTable
Definition: RefTable.h:44
template<class FROM , class TO >
RefTable1to1< FROM, TO >::~RefTable1to1 ( )
overridedefault

Standard Destructor.

Member Function Documentation

template<class FROM , class TO >
virtual const CLID& RefTable1to1< FROM, TO >::clID ( ) const
inlinevirtual

Retrieve reference to class definition structure.

Reimplemented from DataObject.

Definition at line 147 of file RefTable.h.

147 { return m_clid; }
CLID m_clid
Class id of the reference table.
Definition: RefTable.h:62
template<class FROM , class TO >
bool RefTable1to1< FROM, TO >::insert ( const FROM *  from,
TO *  to 
)
inline

Insert new Entry into Reference container.

Definition at line 149 of file RefTable.h.

149 { return insertMapElement( from, EntryType( to ) ); }
bool insertMapElement(const KeyType *from, EntryType &to)
Insert new Entry into Reference container.
Definition: RefTable.h:75
template<class FROM , class TO >
bool RefTable1to1< FROM, TO >::insert ( const FROM *  from,
const EntryType to 
)
inline

Insert new Entry into Reference container.

Definition at line 151 of file RefTable.h.

152  {
153  // We MUST check the environment of the smart pointer!
154  if ( 0 != to.data() || StreamBuffer::INVALID != to.hintID() ) {
155  return insertMapElement( from, EntryType( to ) );
156  }
157  return false;
158  }
bool insertMapElement(const KeyType *from, EntryType &to)
Insert new Entry into Reference container.
Definition: RefTable.h:75
template<class FROM , class TO >
bool RefTable1to1< FROM, TO >::isReferenced ( const FROM *  from,
const TO *  to 
) const
inline

Check if two entries are associated to each other.

Definition at line 174 of file RefTable.h.

175  {
176  auto e = i_reference( from );
177  return e && ( *e == to );
178  }
EntryType * i_reference(const KeyType *from)
Find Reference from it&#39;s source entry.
Definition: RefTable.h:77
template<class FROM , class TO >
bool RefTable1to1< FROM, TO >::isReferenced ( const FROM *  from,
const EntryType to 
)
inline

Check if two entries are Referenced to each other.

Definition at line 180 of file RefTable.h.

181  {
182  const EntryType* e = i_reference( from );
183  return assoc && ( *e != to ) && ( e->target() == to.target() );
184  }
EntryType * i_reference(const KeyType *from)
Find Reference from it&#39;s source entry.
Definition: RefTable.h:77
template<class FROM , class TO >
TO* RefTable1to1< FROM, TO >::reference ( const FROM *  from)
inline

Find Reference from it's source entry.

Definition at line 160 of file RefTable.h.

161  {
162  EntryType* e = i_reference( from );
163  return ( 0 == e ) ? 0 : ( *e );
164  }
EntryType * i_reference(const KeyType *from)
Find Reference from it&#39;s source entry.
Definition: RefTable.h:77
template<class FROM , class TO >
const TO* RefTable1to1< FROM, TO >::reference ( const FROM *  from) const
inline

Find Reference from it's source entry (CONST)

Definition at line 167 of file RefTable.h.

168  {
169  auto e = i_reference( from );
170  return e ? *e : nullptr;
171  }
EntryType * i_reference(const KeyType *from)
Find Reference from it&#39;s source entry.
Definition: RefTable.h:77

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