The Gaudi Framework  master (37c0b60a)
KeyedContainer< DATATYPE, MAPPING > Class Template Reference

template class KeyedContainer, KeyedContainer.h More...

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/KeyedContainer.h>

Inheritance diagram for KeyedContainer< DATATYPE, MAPPING >:
Collaboration diagram for KeyedContainer< DATATYPE, MAPPING >:

Classes

struct  _InsertRelease
 Internal functor for insertion of objects. More...
 
struct  _RemoveRelease
 Internal functor for insertion of objects. More...
 

Public Types

typedef DATATYPE contained_type
 Definition of the contained object type. More...
 
typedef MAPPING container_type
 Definition of the implementing container type. More...
 
typedef std::vector< contained_type * > seq_type
 General container specific type definitions. More...
 
typedef contained_type::key_type key_type
 Definition of the key type: re-use definition of contained type. More...
 
typedef seq_type::value_type value_type
 Sequential access: definition of type stored in sequential container. More...
 
typedef seq_type::reference reference
 Sequential access: reference type used in sequential container. More...
 
typedef seq_type::const_reference const_reference
 Sequential access: const reference type used in sequential container. More...
 
typedef seq_type::iterator iterator
 Sequential access: iterator type used in sequential container. More...
 
typedef seq_type::const_iterator const_iterator
 Sequential access: const iterator type used in sequential container. More...
 
typedef seq_type::reverse_iterator reverse_iterator
 Sequential access: reverse iterator type used in sequential container. More...
 
typedef seq_type::const_reverse_iterator const_reverse_iterator
 Sequential access: const reverse iterator type used in sequential container. More...
 
- Public Types inherited from ObjectContainerBase
typedef size_t size_type
 size_type, to conform the STL container interface More...
 

Public Member Functions

Constructors/Destructors
 KeyedContainer (void)
 Standard Constructor. More...
 
 KeyedContainer (KeyedContainer &&other)
 
 KeyedContainer (const KeyedContainer &)=delete
 
 ~KeyedContainer () override
 Destructor. More...
 
NOT FOR GENERAL USE ObjectContainerBase function overloads.

The implementation of these methods ensure the behaviour of the class as a type of class ObjectContainerBase.

This base class and its behaviour are only used by "generic" object handlers. These classes collaborate with several classes such as the

  • SmartRef classes.
  • Generic converters.
  • Interfaces for interactivity (e.g. Python)

For this reason, the entry points in this section are reserved for "generic" object handling and should NOT be used in public.

size_type numberOfObjects () const override
 ObjectContainerBase overload: Number of objects in the container. More...
 
long add (ContainedObject *pObject) override
 ObjectContainerBase overload: Add an object to the container. More...
 
long remove (ContainedObject *pObject) override
 ObjectContainerBase overload: Remove an object from the container. More...
 
ContainedObjectcontainedObject (long key_value) override
 ObjectContainerBase overload: Retrieve the object by reference given the long integer representation of the object's key. More...
 
ContainedObject const * containedObject (long key_value) const override
 Pointer to an object of a given distance. More...
 
long index (const ContainedObject *p) const override
 ObjectContainerBase overload: Retrieve the full long integer representation of the object's key from the object base class pointer. More...
 
virtual size_type containedObjects (std::vector< ContainedObject * > &v) const
 Retrieve the full content of the object container. More...
 
Container related implementation.

These methods allow to manipulate the container as a whole and to retrieve information about the internal behaviour of the container.

size_type size () const
 Number of objects in the container. More...
 
bool empty () const
 For consistency with STL: check if container is empty. More...
 
void reserve (size_type value)
 Reserve place for "value" objects in the container. More...
 
void clear ()
 Clear the entire content and erase the objects from the container. More...
 
virtual const std::vector< const ContainedObject * > * containedObjects () const
 Retrieve the full content of the object container by reference. More...
 
StatusCode update () override
 Reconfigure direct access to elements (Needed by POOL data loading) This function reuses the "update" callback of the generic DataObject base class. More...
 
Sequential array access to objects using iterators.

Sequential object access using iterators is much faster then object access by key.

In case all objects of the container should be addressed, use iterators rather than direct object access.

  • If the container is accessed through the iterators defined below, the elements may be sorted according to the user needs.
  • The container can be accesses in both const and non-const mode.
  • Iterations are supported in both directions: From the beginning to the end and the reverse.
iterator begin ()
 Retrieve start iterator. More...
 
const_iterator begin () const
 Retrieve start const iterator. More...
 
iterator end ()
 Retrieve terminating iterator. More...
 
const_iterator end () const
 Retrieve terminating const iterator. More...
 
reverse_iterator rbegin ()
 reverse_iterator returns the beginning of the reversed container More...
 
const_reverse_iterator rbegin () const
 const reverse_iterator returns the beginning of the reversed container More...
 
reverse_iterator rend ()
 reverse_iterator pointing to the end of the reversed container More...
 
const_reverse_iterator rend () const
 const reverse_iterator pointing to the end of the reversed container More...
 
Random access to objects in the container.

Access to objects is given by Key.

Please note, that random object access is nearly in all cases significantly slower than sequential access. If all objects in the contaienr should be addresses sequentially, use iterators rather than direct access. Direct access should only be used for selective retrieval of objects.

value_type object (const key_type &kval) const
 Object access by key. More...
 
value_type operator() (const key_type &kval) const
 STL algorithms support for object access. More...
 
Insert/Remove objects from the container.

Objects generally are identified by key.

Since keys are stored with the objects, insertions and removals are possible by key or by reference.

long erase (const key_type &kval)
 Remove/erase object (identified by key) from the container. More...
 
long erase (const value_type val)
 Remove/erase object (identified by pointer value) from the container. More...
 
long erase (iterator pos)
 Remove/erase object (identified by iterator) from the container. More...
 
void erase (iterator pos_start, iterator pos_stop, bool use_temp=false)
 Remove/erase objects by iterator range. More...
 
const key_typeinsert (const value_type val, const key_type &kval)
 Insert entry to the container with a valid key. More...
 
const key_typeinsert (const value_type val)
 Insert entry to the container with automatic key assignment. 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...
 
void setRegistry (IRegistry *pRegistry)
 Set pointer to Registry. More...
 
IRegistryregistry () const
 Get pointer to Registry. More...
 
LinkManagerlinkMgr ()
 Retrieve Link manager. More...
 
const LinkManagerlinkMgr () const
 
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...
 

Private Types

typedef Containers::traits< container_type, contained_typetraits
 Traits class definition. More...
 

Friends

struct GaudiDict::KeyedContainerDict< DATATYPE >
 

Implementation helpers.

container_type m_cont
 Map container to facilitate object access by key. More...
 
seq_type m_sequential
 Array to allow sequential access to the object (can be ordered). More...
 
seq_typem_random
 Array to allow random access to objects (not exposed) More...
 
FORCE_INLINE value_type i_object (const key_type &k) const
 Internal function to access objects within the container. More...
 
long i_erase (const_reference v, const key_type &k)
 Internal function to erase an object from the container. More...
 

DataObject virtual function overloads.

The implementation of these methods is required by the DataObject base class and determines the persistent run-time-type information.

const CLIDclID () const override
 Retrieve class ID. More...
 
static const CLIDclassID ()
 Retrieve class ID. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from DataObject
static const CLIDclassID ()
 Retrieve reference to class definition structure (static access) More...
 
- Protected Member Functions inherited from ObjectContainerBase
 ObjectContainerBase ()=default
 Constructor. More...
 
 ObjectContainerBase (ObjectContainerBase &&)=default
 
ObjectContainerBaseoperator= (ObjectContainerBase &&)=default
 
 ~ObjectContainerBase () override=default
 

Detailed Description

template<class DATATYPE, class MAPPING = Containers::HashMap>
class KeyedContainer< DATATYPE, MAPPING >

template class KeyedContainer, KeyedContainer.h

This class represents a container, where the contained objects are accessed by a key. Such a key can be any class, which is able to convert to and from a 32-bit (long) integer.

To insert objects into the container, this implementation determines the key in the following way:

  • If the object is already keyed, the object's key is kept and cannot be modified.
  • If the object is NOT keyed, and a key is supplied, this key is used to register the object in the map and the same key is given to the object.
  • If the object is NOT keyed, and NO key is supplied, a key is generated by the map implementation and this key is given to the object.
  • It is not possible to insert two objects with the same key into the same container. This causes an exception.

Access to objects is given two-fold:

  • Using iterators. This access is very efficient. The container however, may not be manipulated: No objects may not be inserted or removed using iterators.
  • Using object keys: This access patterns provides random access to objects.

The KeyedContainer class uses for further specialization a traits class. By specializing these traits extra behaviour can be forced on request for special containers or special keys.

Author
M.Frank CERN/LHCb
Version
1.0

Definition at line 74 of file KeyedContainer.h.

Member Typedef Documentation

◆ const_iterator

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::const_iterator KeyedContainer< DATATYPE, MAPPING >::const_iterator

Sequential access: const iterator type used in sequential container.

Definition at line 102 of file KeyedContainer.h.

◆ const_reference

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::const_reference KeyedContainer< DATATYPE, MAPPING >::const_reference

Sequential access: const reference type used in sequential container.

Definition at line 98 of file KeyedContainer.h.

◆ const_reverse_iterator

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::const_reverse_iterator KeyedContainer< DATATYPE, MAPPING >::const_reverse_iterator

Sequential access: const reverse iterator type used in sequential container.

Definition at line 108 of file KeyedContainer.h.

◆ contained_type

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef DATATYPE KeyedContainer< DATATYPE, MAPPING >::contained_type

Definition of the contained object type.

Definition at line 79 of file KeyedContainer.h.

◆ container_type

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef MAPPING KeyedContainer< DATATYPE, MAPPING >::container_type

Definition of the implementing container type.

Definition at line 81 of file KeyedContainer.h.

◆ iterator

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::iterator KeyedContainer< DATATYPE, MAPPING >::iterator

Sequential access: iterator type used in sequential container.

Definition at line 100 of file KeyedContainer.h.

◆ key_type

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef contained_type::key_type KeyedContainer< DATATYPE, MAPPING >::key_type

Definition of the key type: re-use definition of contained type.

Definition at line 92 of file KeyedContainer.h.

◆ reference

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::reference KeyedContainer< DATATYPE, MAPPING >::reference

Sequential access: reference type used in sequential container.

Definition at line 96 of file KeyedContainer.h.

◆ reverse_iterator

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::reverse_iterator KeyedContainer< DATATYPE, MAPPING >::reverse_iterator

Sequential access: reverse iterator type used in sequential container.

Definition at line 104 of file KeyedContainer.h.

◆ seq_type

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef std::vector<contained_type*> KeyedContainer< DATATYPE, MAPPING >::seq_type

General container specific type definitions.

The following type definitions are generic to most STL containers and are also presented by the KeyedContainer class. These forward declarations typically are used by STL algorithms. Definition of the STL sequential access type

Definition at line 90 of file KeyedContainer.h.

◆ traits

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef Containers::traits<container_type, contained_type> KeyedContainer< DATATYPE, MAPPING >::traits
private

Traits class definition.

Specializing traits allows to specialize the container implementation for special needs.

Definition at line 114 of file KeyedContainer.h.

◆ value_type

template<class DATATYPE , class MAPPING = Containers::HashMap>
typedef seq_type::value_type KeyedContainer< DATATYPE, MAPPING >::value_type

Sequential access: definition of type stored in sequential container.

Definition at line 94 of file KeyedContainer.h.

Constructor & Destructor Documentation

◆ KeyedContainer() [1/3]

template<class DATATYPE , class MAPPING = Containers::HashMap>
KeyedContainer< DATATYPE, MAPPING >::KeyedContainer ( void  )
inline

Standard Constructor.

Definition at line 181 of file KeyedContainer.h.

181  {
182  // avoid problems with strict-aliasing rules
183  seq_type** rptr = &m_random;
184  seq_type* sptr = &m_sequential;
185  m_cont.setup( (void*)sptr, (void**)rptr );
186  }

◆ KeyedContainer() [2/3]

template<class DATATYPE , class MAPPING = Containers::HashMap>
KeyedContainer< DATATYPE, MAPPING >::KeyedContainer ( KeyedContainer< DATATYPE, MAPPING > &&  other)
inline

Definition at line 187 of file KeyedContainer.h.

188  : ObjectContainerBase( std::move( other ) )
189  , m_cont( std::move( other.m_cont ) )
190  , m_sequential( std::move( other.m_sequential ) ) {
191  m_cont.setup( (void*)&m_sequential, (void**)&m_random );
192  std::for_each( begin(), end(), [this]( ContainedObject* obj ) { obj->setParent( this ); } );
193 
194  other.m_cont.setup( (void*)&other.m_sequential, (void**)&other.m_random );
195  }

◆ KeyedContainer() [3/3]

template<class DATATYPE , class MAPPING = Containers::HashMap>
KeyedContainer< DATATYPE, MAPPING >::KeyedContainer ( const KeyedContainer< DATATYPE, MAPPING > &  )
delete

◆ ~KeyedContainer()

template<class DATATYPE , class MAPPING >
KeyedContainer< DATATYPE, MAPPING >::~KeyedContainer
inlineoverride

Destructor.

Inline code for keyed container class.

Definition at line 499 of file KeyedContainer.h.

499  {
500  clear();
501  m_cont.clear();
502 }

Member Function Documentation

◆ add()

template<class DATATYPE , class MAPPING >
long KeyedContainer< DATATYPE, MAPPING >::add ( ContainedObject pObject)
inlineoverridevirtual

ObjectContainerBase overload: Add an object to the container.

Plese see the documentation of the member function

const key_type& insert(DATATYPE* pObject)

for further details.

Parameters
pObjectPointer to the object to be inserted into the container.
Returns
long integer representation of the key value.

Implements ObjectContainerBase.

Definition at line 594 of file KeyedContainer.h.

594  {
595  return traits::identifier( insert( dynamic_cast<typename seq_type::value_type>( pObject ) ) );
596 }

◆ begin() [1/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
iterator KeyedContainer< DATATYPE, MAPPING >::begin ( )
inline

Retrieve start iterator.

Definition at line 319 of file KeyedContainer.h.

319 { return m_sequential.begin(); }

◆ begin() [2/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
const_iterator KeyedContainer< DATATYPE, MAPPING >::begin ( ) const
inline

Retrieve start const iterator.

Definition at line 321 of file KeyedContainer.h.

321 { return m_sequential.begin(); }

◆ classID()

template<class DATATYPE , class MAPPING = Containers::HashMap>
static const CLID& KeyedContainer< DATATYPE, MAPPING >::classID ( )
inlinestatic

Retrieve class ID.

Definition at line 209 of file KeyedContainer.h.

209  {
210  static CLID clid = contained_type::classID() + container_type::classID();
211  return clid;
212  }

◆ clear()

template<class DATATYPE , class MAPPING = Containers::HashMap>
void KeyedContainer< DATATYPE, MAPPING >::clear ( )
inline

Clear the entire content and erase the objects from the container.

Definition at line 291 of file KeyedContainer.h.

291 { erase( begin(), end() ); }

◆ clID()

template<class DATATYPE , class MAPPING = Containers::HashMap>
const CLID& KeyedContainer< DATATYPE, MAPPING >::clID ( ) const
inlineoverridevirtual

Retrieve class ID.

Reimplemented from DataObject.

Definition at line 207 of file KeyedContainer.h.

207 { return this->classID(); }

◆ containedObject() [1/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
ContainedObject const* KeyedContainer< DATATYPE, MAPPING >::containedObject ( long  dist) const
inlineoverridevirtual

Pointer to an object of a given distance.

Implements ObjectContainerBase.

Definition at line 264 of file KeyedContainer.h.

264  {
265  return i_object( traits::makeKey( key_value ) );
266  }

◆ containedObject() [2/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
ContainedObject* KeyedContainer< DATATYPE, MAPPING >::containedObject ( long  key_value)
inlineoverridevirtual

ObjectContainerBase overload: Retrieve the object by reference given the long integer representation of the object's key.

Implements ObjectContainerBase.

Definition at line 263 of file KeyedContainer.h.

263 { return i_object( traits::makeKey( key_value ) ); }

◆ containedObjects() [1/2]

template<class DATATYPE , class MAPPING >
const std::vector< const ContainedObject * > * KeyedContainer< DATATYPE, MAPPING >::containedObjects
inlinevirtual

Retrieve the full content of the object container by reference.

Returned is the random access container if in sequntial direct access mode. Otherwise the sequential access container is returned

Returns
Reference to sequencal access container.

Definition at line 527 of file KeyedContainer.h.

527  {
528  return (const std::vector<const ContainedObject*>*)( ( 0 == m_cont.isDirect() ) ? m_random : &m_sequential );
529 }

◆ containedObjects() [2/2]

template<class DATATYPE , class MAPPING >
KeyedContainer< DATATYPE, MAPPING >::size_type KeyedContainer< DATATYPE, MAPPING >::containedObjects ( std::vector< ContainedObject * > &  v) const
inlinevirtual

Retrieve the full content of the object container.

Parameters
vVector of contained objects, which will host all objects contained in this container.
Returns
Number of objects returned in v.

Definition at line 582 of file KeyedContainer.h.

582  {
583  vec.clear();
584  vec.reserve( size() );
585  for ( typename seq_type::value_type v : m_sequential ) {
586  ContainedObject* p = const_cast<typename seq_type::value_type>( v );
587  vec.push_back( p );
588  }
589  return vec.size();
590 }

◆ empty()

template<class DATATYPE , class MAPPING = Containers::HashMap>
bool KeyedContainer< DATATYPE, MAPPING >::empty ( ) const
inline

For consistency with STL: check if container is empty.

Definition at line 287 of file KeyedContainer.h.

287 { return m_sequential.empty(); }

◆ end() [1/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
iterator KeyedContainer< DATATYPE, MAPPING >::end ( )
inline

Retrieve terminating iterator.

Definition at line 323 of file KeyedContainer.h.

323 { return m_sequential.end(); }

◆ end() [2/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
const_iterator KeyedContainer< DATATYPE, MAPPING >::end ( ) const
inline

Retrieve terminating const iterator.

Definition at line 325 of file KeyedContainer.h.

325 { return m_sequential.end(); }

◆ erase() [1/4]

template<class DATATYPE , class MAPPING = Containers::HashMap>
long KeyedContainer< DATATYPE, MAPPING >::erase ( const key_type kval)
inline

Remove/erase object (identified by key) from the container.

Parameters
kvalKey to identify the object within the container.
Returns
Enumeration value from the Containers namespace:
  • OBJ_NOT_FOUND: The indicated object was not found in the container
  • OBJ_ERASED: The indicated object was found and removed from the container. The object was not yet deleted, because its reference count was non zero.
  • OBJ_DELETED The indicated object was found and removed from the container. The object was deleted, because its reference count was zero.

Definition at line 389 of file KeyedContainer.h.

389 { return i_erase( 0, kval ); }

◆ erase() [2/4]

template<class DATATYPE , class MAPPING = Containers::HashMap>
long KeyedContainer< DATATYPE, MAPPING >::erase ( const value_type  val)
inline

Remove/erase object (identified by pointer value) from the container.

This member function removes an object, which is identified by its reference from the container. No key value is supplied. To identify the object within the container, the key of the object is used as it can be retrieved using the KeyedObject::key() method.

Parameters
valReference to object to be removed from the container.
Returns
Enumeration value from the Containers namespace:
  • OBJ_NOT_FOUND: The indicated object was not found in the container
  • OBJ_ERASED: The indicated object was found and removed from the container. The object was not yet deleted, because its reference count was non zero.
  • OBJ_DELETED The indicated object was found and removed from the container. The object was deleted, because its reference count was zero.

Definition at line 411 of file KeyedContainer.h.

411 { return ( val ) ? i_erase( val, val->key() ) : (long)Containers::OBJ_NOT_FOUND; }

◆ erase() [3/4]

template<class DATATYPE , class MAPPING = Containers::HashMap>
long KeyedContainer< DATATYPE, MAPPING >::erase ( iterator  pos)
inline

Remove/erase object (identified by iterator) from the container.

This member function removes an object, which is identified by its reference from the container. No key value is supplied. To identify the object within the container, the key of the object is used as it can be retrieved using the KeyedObject::key() method.

Parameters
valReference to object to be removed from the container.
Returns
Enumeration value from the Containers namespace:
  • OBJ_NOT_FOUND: The indicated object was not found in the container
  • OBJ_ERASED: The indicated object was found and removed from the container. The object was not yet deleted, because its reference count was non zero.
  • OBJ_DELETED The indicated object was found and removed from the container. The object was deleted, because its reference count was zero.

Definition at line 433 of file KeyedContainer.h.

433 { return erase( *pos ); }

◆ erase() [4/4]

template<class DATATYPE , class MAPPING >
void KeyedContainer< DATATYPE, MAPPING >::erase ( iterator  pos_start,
iterator  pos_stop,
bool  use_temp = false 
)
inline

Remove/erase objects by iterator range.

This member function removes all objects, which are within the sequential iterator range [pos_start, pos_stop[.

Parameters
pos_startStarting iterator of the range to be removed.
pos_stopStarting iterator of the range to be removed.
use_tempFlag to indicate that a temporary arry should be used.

Definition at line 619 of file KeyedContainer.h.

619  {
620  bool is_start = start_pos == m_sequential.begin();
621  bool is_stop = stop_pos == m_sequential.end();
622  if ( is_start && is_stop ) {
623  // Nothing special. Taken care of by Keyed object manager
624  } else if ( is_start || is_stop || use_tmp ) {
625  std::vector<DATATYPE*> tmp( m_sequential.begin(), start_pos );
626  tmp.insert( tmp.end(), stop_pos, m_sequential.end() );
627  std::for_each( tmp.begin(), tmp.end(), traits::addRef );
628  this->erase( m_sequential.begin(), m_sequential.end() );
629  std::for_each( tmp.begin(), tmp.end(), _InsertRelease( this ) );
630  return;
631  }
632  std::for_each( start_pos, stop_pos, _RemoveRelease( this ) );
633  seq_type* sptr = &m_sequential; // avoid problems with strict-aliasing rules
635  std::vector<void*>::iterator i1 = v->begin() + std::distance( m_sequential.begin(), start_pos );
636  std::vector<void*>::iterator i2 = v->begin() + std::distance( m_sequential.begin(), stop_pos );
637  m_cont.erase( i1, i2 ); // cppcheck-suppress iterators1
638 }

◆ i_erase()

template<class DATATYPE , class MAPPING = Containers::HashMap>
long KeyedContainer< DATATYPE, MAPPING >::i_erase ( const_reference  v,
const key_type k 
)
inlineprivate

Internal function to erase an object from the container.

Definition at line 146 of file KeyedContainer.h.

146  {
147  value_type p = value_type( m_cont.erase( traits::hash( k ), v ) );
148  if ( p ) {
149  if ( p->parent() == this ) { p->setParent( 0 ); }
150  }
151  return traits::release( p ) <= 0 ? (long)Containers::OBJ_ERASED : (long)Containers::OBJ_DELETED;
152  }

◆ i_object()

template<class DATATYPE , class MAPPING = Containers::HashMap>
FORCE_INLINE value_type KeyedContainer< DATATYPE, MAPPING >::i_object ( const key_type k) const
inlineprivate

Internal function to access objects within the container.

Definition at line 140 of file KeyedContainer.h.

140  {
141  return 0 == m_cont.isDirect() ? value_type( *( m_random->begin() + traits::hash( k ) ) )
142  : value_type( m_cont.object( traits::hash( k ) ) );
143  }

◆ index()

template<class DATATYPE , class MAPPING >
long KeyedContainer< DATATYPE, MAPPING >::index ( const ContainedObject p) const
inlineoverridevirtual

ObjectContainerBase overload: Retrieve the full long integer representation of the object's key from the object base class pointer.

Implements ObjectContainerBase.

Definition at line 573 of file KeyedContainer.h.

573  {
574  const contained_type* ptr = dynamic_cast<const contained_type*>( p );
575  if ( ptr ) return traits::identifier( ptr->key() );
576  return -1;
577 }

◆ insert() [1/2]

template<class DATATYPE , class MAPPING >
const KeyedContainer< DATATYPE, MAPPING >::key_type & KeyedContainer< DATATYPE, MAPPING >::insert ( const value_type  val)

Insert entry to the container with automatic key assignment.

This member function inserts an element, which is identified by its reference to the container. No key value is supplied. The key used to insert the object is retrieved from the element itself. In the event the object already has a key, the assigned key of the object is used. If no key was assigned to the object, (i.e. the object's key is equal to the invalid key), a key is generated according to the number of objects present in the container.

The object will not be inserted and an exception will be raised under the following conditions:

  • A key was already assigned to the object, but another object with the same key is already present in the container.
Parameters
valReference to object to be inserted into the container.
Returns
Key, which was used to index the object within the container. If the operation is not successful, an exception is thrown.

Definition at line 552 of file KeyedContainer.h.

552  {
553  if ( 0 != val ) {
554  if ( val->hasKey() ) {
555  if ( m_cont.insert( this, val, val, traits::hash( val->key() ) ) == Containers::OBJ_INSERTED ) {
556  traits::addRef( val );
557  return val->key();
558  }
559  }
560  long k0;
561  if ( m_cont.insert( this, val, val, &k0 ) == Containers::OBJ_INSERTED ) {
562  traits::setKey( val, traits::makeKey( k0 ) );
563  traits::addRef( val );
564  return val->key();
565  }
566  }
567  // Cannot insert object...indicate bad object insertion...
569  return val->key();
570 }

◆ insert() [2/2]

template<class DATATYPE , class MAPPING >
const KeyedContainer< DATATYPE, MAPPING >::key_type & KeyedContainer< DATATYPE, MAPPING >::insert ( const value_type  val,
const key_type kval 
)
inline

Insert entry to the container with a valid key.

This member function inserts an element, which is identified by its reference to the container. The element will be inserted using the specified key. If the object is already keyed, the long representations of the supplied key and the object's key must agree.

The object will not be inserted and an exception will be raised under the following conditions:

  • The supplied key does not agree with the object's key.
  • An object with the supplied key is already present in the container.
Parameters
valReference to object to be inserted into the container. The object reference may NOT be NULL.
kvalKey to identify the object within the container.
Returns
Key, which was used to index the object within the container. If the operation is not successful, an exception is thrown.

Definition at line 533 of file KeyedContainer.h.

533  {
534  if ( val ) {
535  long k0 = traits::hash( kval );
536  if ( !val->hasKey() || ( traits::hash( val->key() ) == k0 ) ) {
537  if ( m_cont.insert( this, val, val, k0 ) == Containers::OBJ_INSERTED ) {
538  if ( !val->hasKey() ) traits::setKey( val, kval );
539  traits::addRef( val );
540  return val->key();
541  }
542  }
543  }
544  // Cannot insert object...indicate bad object insertion...
546  return val->key();
547 }

◆ numberOfObjects()

template<class DATATYPE , class MAPPING = Containers::HashMap>
size_type KeyedContainer< DATATYPE, MAPPING >::numberOfObjects ( ) const
inlineoverridevirtual

ObjectContainerBase overload: Number of objects in the container.

Implements ObjectContainerBase.

Definition at line 232 of file KeyedContainer.h.

232 { return m_sequential.size(); }

◆ object()

template<class DATATYPE , class MAPPING = Containers::HashMap>
value_type KeyedContainer< DATATYPE, MAPPING >::object ( const key_type kval) const
inline

Object access by key.

Access contained objects by key.

Parameters
kvalKey of the object to be returned.
Returns
Valid reference to the requested object. If the key of the requested object cannot be found in the container a null reference is returned.

Definition at line 353 of file KeyedContainer.h.

353 { return i_object( kval ); }

◆ operator()()

template<class DATATYPE , class MAPPING = Containers::HashMap>
value_type KeyedContainer< DATATYPE, MAPPING >::operator() ( const key_type kval) const
inline

STL algorithms support for object access.

Access contained objects by key using the operator(), which is demanded by STL algorithms.

Parameters
kvalKey of the object to be returned.
Returns
Valid reference to the requested object. If the key of the requested object cannot be found in the container a null reference is returned.

Definition at line 364 of file KeyedContainer.h.

364 { return i_object( kval ); }

◆ rbegin() [1/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
reverse_iterator KeyedContainer< DATATYPE, MAPPING >::rbegin ( )
inline

reverse_iterator returns the beginning of the reversed container

Definition at line 327 of file KeyedContainer.h.

327 { return m_sequential.rbegin(); }

◆ rbegin() [2/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
const_reverse_iterator KeyedContainer< DATATYPE, MAPPING >::rbegin ( ) const
inline

const reverse_iterator returns the beginning of the reversed container

Definition at line 329 of file KeyedContainer.h.

329 { return m_sequential.rbegin(); }

◆ remove()

template<class DATATYPE , class MAPPING >
long KeyedContainer< DATATYPE, MAPPING >::remove ( ContainedObject pObject)
inlineoverridevirtual

ObjectContainerBase overload: Remove an object from the container.

Because this function is also called from the destructor of The ContainedObject class, it is no longer possible to deduce the key from the object itself. It is hence necessary to relay on the NON-EXISTENCE of virtual inheritance, ie. (void*)pObject = (void*)(contained_object). If the virtual object table is still intact, the normal erase is called.

Parameters
pObjectPointer to the object to be removed from the container.

Implements ObjectContainerBase.

Definition at line 600 of file KeyedContainer.h.

600  {
601  contained_type* p1 = dynamic_cast<contained_type*>( p );
602  if ( p1 ) { // Normal case; object still fully intact
603  return this->erase( p1 );
604  } else if ( p ) {
605  const ObjectContainerBase* par = p->parent();
606  // The following should never occur: object is in a funny state,
607  // Because the parent was explicitly set to NULL in the
608  // KeyeObject destructor.
609  // - It cannot be a KeyedObject: It would not have a parent
610  // - Still the parent is present: We are not in the destructor
611  // of KeyedObject
613  return m_cont.erase( 0, p ) == 0 ? (long)Containers::OBJ_ERASED : (long)Containers::OBJ_NOT_FOUND;
614  }
615  return (long)Containers::OBJ_NOT_FOUND;
616 }

◆ rend() [1/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
reverse_iterator KeyedContainer< DATATYPE, MAPPING >::rend ( )
inline

reverse_iterator pointing to the end of the reversed container

Definition at line 331 of file KeyedContainer.h.

331 { return m_sequential.rend(); }

◆ rend() [2/2]

template<class DATATYPE , class MAPPING = Containers::HashMap>
const_reverse_iterator KeyedContainer< DATATYPE, MAPPING >::rend ( ) const
inline

const reverse_iterator pointing to the end of the reversed container

Definition at line 333 of file KeyedContainer.h.

333 { return m_sequential.rend(); }

◆ reserve()

template<class DATATYPE , class MAPPING = Containers::HashMap>
void KeyedContainer< DATATYPE, MAPPING >::reserve ( size_type  value)
inline

Reserve place for "value" objects in the container.

Definition at line 289 of file KeyedContainer.h.

289 { m_cont.reserve( value ); }

◆ size()

template<class DATATYPE , class MAPPING = Containers::HashMap>
size_type KeyedContainer< DATATYPE, MAPPING >::size ( ) const
inline

Number of objects in the container.

Definition at line 285 of file KeyedContainer.h.

285 { return m_sequential.size(); }

◆ update()

template<class DATATYPE , class MAPPING >
StatusCode KeyedContainer< DATATYPE, MAPPING >::update
inlineoverridevirtual

Reconfigure direct access to elements (Needed by POOL data loading) This function reuses the "update" callback of the generic DataObject base class.

Reimplemented from DataObject.

Definition at line 506 of file KeyedContainer.h.

506  {
507  int count = 0;
508  m_cont.clearDirect();
509  for ( typename seq_type::value_type v : m_sequential ) {
510  if ( v ) {
511  if ( !v->hasKey() ) {
512  traits::setKey( v, v->key() );
513  traits::addRef( v );
514  }
515  long k0 = traits::hash( v->key() );
516  if ( m_cont.insertDirect( this, v, v, k0 ) == Containers::OBJ_INSERTED ) {}
517  } else {
518  ++count;
519  }
520  }
521  if ( count > 0 ) { Containers::cannotInsertToContainer(); }
522  return StatusCode::SUCCESS;
523 }

Friends And Related Function Documentation

◆ GaudiDict::KeyedContainerDict< DATATYPE >

template<class DATATYPE , class MAPPING = Containers::HashMap>
friend struct GaudiDict::KeyedContainerDict< DATATYPE >
friend

Definition at line 619 of file KeyedContainer.h.

Member Data Documentation

◆ m_cont

template<class DATATYPE , class MAPPING = Containers::HashMap>
container_type KeyedContainer< DATATYPE, MAPPING >::m_cont
private

Map container to facilitate object access by key.

Definition at line 120 of file KeyedContainer.h.

◆ m_random

template<class DATATYPE , class MAPPING = Containers::HashMap>
seq_type* KeyedContainer< DATATYPE, MAPPING >::m_random
private

Array to allow random access to objects (not exposed)

Definition at line 124 of file KeyedContainer.h.

◆ m_sequential

template<class DATATYPE , class MAPPING = Containers::HashMap>
seq_type KeyedContainer< DATATYPE, MAPPING >::m_sequential
private

Array to allow sequential access to the object (can be ordered).

Definition at line 122 of file KeyedContainer.h.


The documentation for this class was generated from the following file:
KeyedContainer::erase
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
Definition: KeyedContainer.h:389
Containers::OBJ_ERASED
@ OBJ_ERASED
Object was removed, but not deleted
Definition: KeyedTraits.h:35
KeyedContainer::end
iterator end()
Retrieve terminating iterator.
Definition: KeyedContainer.h:323
Containers::cannotInsertToContainer
GAUDI_API void cannotInsertToContainer()
Function to be called to indicate that an object cannot be inserted to the container.
Definition: KeyedObjectManager.cpp:83
std::for_each
T for_each(T... args)
Containers::OBJ_INSERTED
@ OBJ_INSERTED
Object was inserted into the container.
Definition: KeyedTraits.h:36
KeyedContainer::m_cont
container_type m_cont
Map container to facilitate object access by key.
Definition: KeyedContainer.h:120
KeyedContainer::begin
iterator begin()
Retrieve start iterator.
Definition: KeyedContainer.h:319
std::move
T move(T... args)
KeyedContainer::m_random
seq_type * m_random
Array to allow random access to objects (not exposed)
Definition: KeyedContainer.h:124
std::vector
STL class.
std::vector::size
T size(T... args)
std::distance
T distance(T... args)
conf.release
string release
Definition: conf.py:27
Containers
Containers namespace.
Definition: KeyedObjectManager.h:28
KeyedContainer::value_type
seq_type::value_type value_type
Sequential access: definition of type stored in sequential container.
Definition: KeyedContainer.h:94
Containers::invalidContainerOperation
GAUDI_API void invalidContainerOperation()
Function to be called to indicate that an operation should be performed on the container or it's cont...
Definition: KeyedObjectManager.cpp:92
KeyedContainer::clear
void clear()
Clear the entire content and erase the objects from the container.
Definition: KeyedContainer.h:291
compareOutputFiles.par
par
Definition: compareOutputFiles.py:477
KeyedContainer::object
value_type object(const key_type &kval) const
Object access by key.
Definition: KeyedContainer.h:353
KeyedContainer::size
size_type size() const
Number of objects in the container.
Definition: KeyedContainer.h:285
ObjectContainerBase::ObjectContainerBase
ObjectContainerBase()=default
Constructor.
KeyedContainer::contained_type
DATATYPE contained_type
Definition of the contained object type.
Definition: KeyedContainer.h:79
Containers::OBJ_DELETED
@ OBJ_DELETED
Object was removed from the container and deleted.
Definition: KeyedTraits.h:34
AlgSequencer.p1
p1
Definition: AlgSequencer.py:29
Containers::OBJ_NOT_FOUND
@ OBJ_NOT_FOUND
Object not present in the container.
Definition: KeyedTraits.h:33
CLID
unsigned int CLID
Class ID definition.
Definition: ClassID.h:18
KeyedContainer::insert
const key_type & insert(const value_type val, const key_type &kval)
Insert entry to the container with a valid key.
Definition: KeyedContainer.h:533
std::vector::rend
T rend(T... args)
KeyedContainer::classID
static const CLID & classID()
Retrieve class ID.
Definition: KeyedContainer.h:209
KeyedContainer::i_erase
long i_erase(const_reference v, const key_type &k)
Internal function to erase an object from the container.
Definition: KeyedContainer.h:146
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
ContainedObject::setParent
void setParent(ObjectContainerBase *value)
Update parent member.
Definition: ContainedObject.h:65
ObjectContainerBase
Definition: ObjectContainerBase.h:29
std::vector::begin
T begin(T... args)
std::count
T count(T... args)
KeyedContainer::i_object
FORCE_INLINE value_type i_object(const key_type &k) const
Internal function to access objects within the container.
Definition: KeyedContainer.h:140
KeyedContainer::m_sequential
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
Definition: KeyedContainer.h:122
std::vector::empty
T empty(T... args)
Properties.v
v
Definition: Properties.py:122
KeyedContainer::traits
Containers::traits< container_type, contained_type > traits
Traits class definition.
Definition: KeyedContainer.h:114
std::vector::end
T end(T... args)
ContainedObject
Definition: ContainedObject.h:41
std::vector::rbegin
T rbegin(T... args)
KeyedContainer::seq_type
std::vector< contained_type * > seq_type
General container specific type definitions.
Definition: KeyedContainer.h:90