Gaudi Framework, version v24r2

Home   Generated: Wed Dec 4 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | List of all members
RefTable1toN< FROM, TO > Class Template Reference

#include <RefTable.h>

Inheritance diagram for RefTable1toN< FROM, TO >:
Inheritance graph
[legend]
Collaboration diagram for RefTable1toN< FROM, TO >:
Collaboration graph
[legend]

Public Member Functions

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

Additional Inherited Members

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

Detailed Description

template<class FROM, class TO>
class RefTable1toN< FROM, TO >

Definition at line 209 of file RefTable.h.

Constructor & Destructor Documentation

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

Standard Constructor.

Definition at line 213 of file RefTable.h.

template<class FROM , class TO >
virtual RefTable1toN< FROM, TO >::~RefTable1toN ( )
inlinevirtual

Standard Destructor.

Definition at line 217 of file RefTable.h.

{
}

Member Function Documentation

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

Retrieve reference to class definition structure.

Reimplemented from DataObject.

Definition at line 220 of file RefTable.h.

{
return m_clid;
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::insert ( const FROM *  from,
TO *  to 
)
inline

Insert new Entry into Reference container.

Definition at line 224 of file RefTable.h.

{
EntryType* entry = i_reference(from);
if ( 0 == entry ) {
bool result = insertMapElement(from, EntryType());
EntryType* newEntry = i_reference(from);
if ( !( 0 == newEntry) ) {
newEntry->push_back( SmartRef<TO>(to) );
return true;
}
return false;
}
entry->push_back( SmartRef<TO>(to) );
return true;
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::insert ( const FROM *  from,
const SmartRef< TO > &  to 
)
inline

Insert new Entry into Reference container.

Definition at line 239 of file RefTable.h.

{
EntryType* entry = i_reference(from);
if ( 0 == entry ) {
bool result = insertMapElement(from, EntryType());
EntryType* newEntry = i_reference(from);
if ( !(0 == newEntry) ) {
newEntry->push_back( to );
return true;
}
return false;
}
entry->push_back( to );
return true;
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::insert ( const FROM *  from,
const EntryType to 
)
inline

Insert new Entry into Reference container.

Definition at line 254 of file RefTable.h.

{
return insertMapElement(from, const_cast<EntryType&>(to));
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::isReferenced ( const FROM *  from,
const EntryType to 
)
inline

Check if two entries are Referenced to each other.

Definition at line 270 of file RefTable.h.

{
const EntryType* e = i_reference(from);
return (0 == e) ? false : (*e == to);
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::isReferenced ( const FROM *  from,
const TO *  to 
)
inline

Check if two entries are Referenced to each other.

Definition at line 275 of file RefTable.h.

{
return isReferenced(from, SmartRef<TO>(to));
}
template<class FROM , class TO >
bool RefTable1toN< FROM, TO >::isReferenced ( const FROM *  from,
const SmartRef< TO > &  to 
)
inline

Check if two entries are Referenced to each other.

Definition at line 279 of file RefTable.h.

{
const EntryType* e = i_reference(from);
if ( 0 != assoc ) {
SmartRefVector<TO>::const_iterator i = std::find(e->begin(), e->end(), to);
return (i == e->end()) ? false : true;
}
return false;
}
template<class FROM , class TO >
EntryType& RefTable1toN< FROM, TO >::reference ( const FROM *  from)
inline

Find Reference from it's source entry.

Definition at line 258 of file RefTable.h.

{
static EntryType empty;
EntryType* e = i_reference(from);
return (0 == e) ? empty : *e;
}
template<class FROM , class TO >
const EntryType& RefTable1toN< FROM, TO >::reference ( const FROM *  from) const
inline

Find Reference from it's source entry (CONST)

Definition at line 264 of file RefTable.h.

{
static EntryType empty;
EntryType* e = i_reference(from);
return (0 == e) ? empty : (*e);
}

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

Generated at Wed Dec 4 2013 14:33:18 for Gaudi Framework, version v24r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004