The Gaudi Framework  v30r3 (a5ef0a68)
KeyedContainer< DATATYPE, MAPPING > Class Template Reference

template class KeyedContainer, KeyedContainer.h More...

#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) const override
 ObjectContainerBase overload: Retrieve the object by reference given the long integer representation of the object's key. 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 () 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...
 

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
 

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 65 of file KeyedContainer.h.

Member Typedef Documentation

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 94 of file KeyedContainer.h.

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 90 of file KeyedContainer.h.

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 100 of file KeyedContainer.h.

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

Definition of the contained object type.

Definition at line 71 of file KeyedContainer.h.

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

Definition of the implementing container type.

Definition at line 73 of file KeyedContainer.h.

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 92 of file KeyedContainer.h.

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 84 of file KeyedContainer.h.

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 88 of file KeyedContainer.h.

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 96 of file KeyedContainer.h.

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 82 of file KeyedContainer.h.

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 106 of file KeyedContainer.h.

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 86 of file KeyedContainer.h.

Constructor & Destructor Documentation

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

Standard Constructor.

Definition at line 184 of file KeyedContainer.h.

185  {
186  // avoid problems with strict-aliasing rules
187  seq_type** rptr = &m_random;
188  seq_type* sptr = &m_sequential;
189  m_cont.setup( (void*)sptr, (void**)rptr );
190  }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
std::vector< contained_type * > seq_type
General container specific type definitions.
container_type m_cont
Map container to facilitate object access by key.
seq_type * m_random
Array to allow random access to objects (not exposed)
template<class DATATYPE, class MAPPING = Containers::HashMap>
KeyedContainer< DATATYPE, MAPPING >::KeyedContainer ( KeyedContainer< DATATYPE, MAPPING > &&  other)
inline

Definition at line 191 of file KeyedContainer.h.

192  : ObjectContainerBase( std::move( other ) )
193  , m_cont( std::move( other.m_cont ) )
194  , m_sequential( std::move( other.m_sequential ) )
195  {
196  m_cont.setup( (void*)&m_sequential, (void**)&m_random );
197  std::for_each( begin(), end(), [this]( ContainedObject* obj ) { obj->setParent( this ); } );
198 
199  other.m_cont.setup( (void*)&other.m_sequential, (void**)&other.m_random );
200  }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
iterator begin()
Retrieve start iterator.
T move(T...args)
container_type m_cont
Map container to facilitate object access by key.
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
iterator end()
Retrieve terminating iterator.
void setParent(ObjectContainerBase *value)
Update parent member.
T for_each(T...args)
seq_type * m_random
Array to allow random access to objects (not exposed)
ObjectContainerBase()=default
Constructor.
template<class DATATYPE, class MAPPING = Containers::HashMap>
KeyedContainer< DATATYPE, MAPPING >::KeyedContainer ( const KeyedContainer< DATATYPE, MAPPING > &  )
delete
template<class DATATYPE , class MAPPING >
KeyedContainer< DATATYPE, MAPPING >::~KeyedContainer ( )
inlineoverride

Destructor.

Inline code for keyed container class.

Definition at line 502 of file KeyedContainer.h.

503 {
504  clear();
505  m_cont.clear();
506 }
container_type m_cont
Map container to facilitate object access by key.
void clear()
Clear the entire content and erase the objects from the container.

Member Function Documentation

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 612 of file KeyedContainer.h.

613 {
614  return traits::identifier( insert( dynamic_cast<typename seq_type::value_type>( pObject ) ) );
615 }
const key_type & insert(const value_type val, const key_type &kval)
Insert entry to the container with a valid key.
static long identifier(const key_type &k)
Full unhashed key identifier.
Definition: KeyedTraits.h:83
template<class DATATYPE, class MAPPING = Containers::HashMap>
iterator KeyedContainer< DATATYPE, MAPPING >::begin ( )
inline

Retrieve start iterator.

Definition at line 322 of file KeyedContainer.h.

322 { return m_sequential.begin(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T begin(T...args)
template<class DATATYPE, class MAPPING = Containers::HashMap>
const_iterator KeyedContainer< DATATYPE, MAPPING >::begin ( ) const
inline

Retrieve start const iterator.

Definition at line 324 of file KeyedContainer.h.

324 { return m_sequential.begin(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T begin(T...args)
template<class DATATYPE, class MAPPING = Containers::HashMap>
static const CLID& KeyedContainer< DATATYPE, MAPPING >::classID ( )
inlinestatic

Retrieve class ID.

Definition at line 214 of file KeyedContainer.h.

215  {
216  static CLID clid = contained_type::classID() + container_type::classID();
217  return clid;
218  }
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
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 294 of file KeyedContainer.h.

294 { erase( begin(), end() ); }
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
iterator begin()
Retrieve start iterator.
iterator end()
Retrieve terminating iterator.
template<class DATATYPE, class MAPPING = Containers::HashMap>
const CLID& KeyedContainer< DATATYPE, MAPPING >::clID ( ) const
inlineoverridevirtual

Retrieve class ID.

Reimplemented from DataObject.

Definition at line 212 of file KeyedContainer.h.

212 { return this->classID(); }
static const CLID & classID()
Retrieve class ID.
template<class DATATYPE, class MAPPING = Containers::HashMap>
ContainedObject* KeyedContainer< DATATYPE, MAPPING >::containedObject ( long  key_value) const
inlineoverridevirtual

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

Implements ObjectContainerBase.

Definition at line 269 of file KeyedContainer.h.

269 { return i_object( traits::makeKey( key_value ) ); }
static key_type makeKey(long k)
Create key from its full integer representation.
Definition: KeyedTraits.h:80
FORCE_INLINE value_type i_object(const key_type &k) const
Internal function to access objects within the container.
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 597 of file KeyedContainer.h.

598 {
599  typename seq_type::const_iterator i = m_sequential.begin();
600  typename seq_type::const_iterator s = m_sequential.end();
601  vec.clear();
602  vec.reserve( size() );
603  for ( ; i != s; i++ ) {
604  ContainedObject* p = const_cast<typename seq_type::value_type>( *i );
605  vec.push_back( p );
606  }
607  return vec.size();
608 }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T end(T...args)
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
size_type size() const
Number of objects in the container.
T begin(T...args)
string s
Definition: gaudirun.py:253
template<class DATATYPE , class MAPPING >
const std::vector< const ContainedObject * > * KeyedContainer< DATATYPE, MAPPING >::containedObjects ( ) const
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 538 of file KeyedContainer.h.

539 {
540  return (const std::vector<const ContainedObject*>*)( ( 0 == m_cont.isDirect() ) ? m_random : &m_sequential );
541 }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
container_type m_cont
Map container to facilitate object access by key.
STL class.
seq_type * m_random
Array to allow random access to objects (not exposed)
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 290 of file KeyedContainer.h.

290 { return m_sequential.empty(); }
T empty(T...args)
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
template<class DATATYPE, class MAPPING = Containers::HashMap>
iterator KeyedContainer< DATATYPE, MAPPING >::end ( )
inline

Retrieve terminating iterator.

Definition at line 326 of file KeyedContainer.h.

326 { return m_sequential.end(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T end(T...args)
template<class DATATYPE, class MAPPING = Containers::HashMap>
const_iterator KeyedContainer< DATATYPE, MAPPING >::end ( ) const
inline

Retrieve terminating const iterator.

Definition at line 328 of file KeyedContainer.h.

328 { return m_sequential.end(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T end(T...args)
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 392 of file KeyedContainer.h.

392 { return i_erase( 0, kval ); }
long i_erase(const_reference v, const key_type &k)
Internal function to erase an object from the container.
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 414 of file KeyedContainer.h.

414 { return ( val ) ? i_erase( val, val->key() ) : (long)Containers::OBJ_NOT_FOUND; }
Object not present in the container.
Definition: KeyedTraits.h:24
Containers namespace.
long i_erase(const_reference v, const key_type &k)
Internal function to erase an object from the container.
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 436 of file KeyedContainer.h.

436 { return erase( *pos ); }
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
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 641 of file KeyedContainer.h.

642 {
643  bool is_start = start_pos == m_sequential.begin();
644  bool is_stop = stop_pos == m_sequential.end();
645  if ( is_start && is_stop ) {
646  // Nothing special. Taken care of by Keyed object manager
647  } else if ( is_start || is_stop || use_tmp ) {
648  std::vector<DATATYPE*> tmp( m_sequential.begin(), start_pos );
649  tmp.insert( tmp.end(), stop_pos, m_sequential.end() );
650  std::for_each( tmp.begin(), tmp.end(), traits::addRef );
651  this->erase( m_sequential.begin(), m_sequential.end() );
652  std::for_each( tmp.begin(), tmp.end(), _InsertRelease( this ) );
653  return;
654  }
655  std::for_each( start_pos, stop_pos, _RemoveRelease( this ) );
656  seq_type* sptr = &m_sequential; // avoid problems with strict-aliasing rules
660  m_cont.erase( i1, i2 );
661 }
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:104
T distance(T...args)
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
std::vector< contained_type * > seq_type
General container specific type definitions.
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
T end(T...args)
container_type m_cont
Map container to facilitate object access by key.
T insert(T...args)
STL class.
T begin(T...args)
T for_each(T...args)
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 142 of file KeyedContainer.h.

143  {
144  value_type p = value_type( m_cont.erase( traits::hash( k ), v ) );
145  if ( p ) {
146  if ( p->parent() == this ) {
147  p->setParent( 0 );
148  }
149  }
150  return traits::release( p ) <= 0 ? (long)Containers::OBJ_ERASED : (long)Containers::OBJ_DELETED;
151  }
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:85
seq_type::value_type value_type
Sequential access: definition of type stored in sequential container.
Object was removed, but not deleted.
Definition: KeyedTraits.h:26
container_type m_cont
Map container to facilitate object access by key.
static long release(obj_type *v)
Release reference to object.
Definition: KeyedTraits.h:106
Object was removed from the container and deleted.
Definition: KeyedTraits.h:25
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 135 of file KeyedContainer.h.

136  {
137  return 0 == m_cont.isDirect() ? value_type( *( m_random->begin() + traits::hash( k ) ) )
138  : value_type( m_cont.object( traits::hash( k ) ) );
139  }
value_type object(const key_type &kval) const
Object access by key.
Containers::traits< container_type, contained_type > traits
Traits class definition.
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:85
seq_type::value_type value_type
Sequential access: definition of type stored in sequential container.
container_type m_cont
Map container to facilitate object access by key.
T begin(T...args)
seq_type * m_random
Array to allow random access to objects (not exposed)
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 587 of file KeyedContainer.h.

588 {
589  const contained_type* ptr = dynamic_cast<const contained_type*>( p );
590  if ( ptr ) return traits::identifier( ptr->key() );
591  return -1;
592 }
DATATYPE contained_type
Definition of the contained object type.
static long identifier(const key_type &k)
Full unhashed key identifier.
Definition: KeyedTraits.h:83
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 545 of file KeyedContainer.h.

546 {
547  if ( val ) {
548  long k0 = traits::hash( kval );
549  if ( !val->hasKey() || ( traits::hash( val->key() ) == k0 ) ) {
550  if ( m_cont.insert( this, val, val, k0 ) == Containers::OBJ_INSERTED ) {
551  if ( !val->hasKey() ) traits::setKey( val, kval );
552  traits::addRef( val );
553  return val->key();
554  }
555  }
556  }
557  // Cannot insert object...indicate bad object insertion...
559  return val->key();
560 }
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:104
Object was inserted into the container.
Definition: KeyedTraits.h:27
GAUDI_API void cannotInsertToContainer()
Function to be called to indicate that an object cannot be inserted to the container.
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:85
container_type m_cont
Map container to facilitate object access by key.
static void setKey(obj_type *v, const key_type &k)
Set object key when inserted into the container.
Definition: KeyedTraits.h:87
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 565 of file KeyedContainer.h.

566 {
567  if ( 0 != val ) {
568  if ( val->hasKey() ) {
569  if ( m_cont.insert( this, val, val, traits::hash( val->key() ) ) == Containers::OBJ_INSERTED ) {
570  traits::addRef( val );
571  return val->key();
572  }
573  }
574  long k0;
575  if ( m_cont.insert( this, val, val, &k0 ) == Containers::OBJ_INSERTED ) {
576  traits::setKey( val, traits::makeKey( k0 ) );
577  traits::addRef( val );
578  return val->key();
579  }
580  }
581  // Cannot insert object...indicate bad object insertion...
583  return val->key();
584 }
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:104
static key_type makeKey(long k)
Create key from its full integer representation.
Definition: KeyedTraits.h:80
Object was inserted into the container.
Definition: KeyedTraits.h:27
GAUDI_API void cannotInsertToContainer()
Function to be called to indicate that an object cannot be inserted to the container.
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:85
container_type m_cont
Map container to facilitate object access by key.
static void setKey(obj_type *v, const key_type &k)
Set object key when inserted into the container.
Definition: KeyedTraits.h:87
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 238 of file KeyedContainer.h.

238 { return m_sequential.size(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T size(T...args)
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 356 of file KeyedContainer.h.

356 { return i_object( kval ); }
FORCE_INLINE value_type i_object(const key_type &k) const
Internal function to access objects within the container.
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 367 of file KeyedContainer.h.

367 { return i_object( kval ); }
FORCE_INLINE value_type i_object(const key_type &k) const
Internal function to access objects within the container.
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 330 of file KeyedContainer.h.

330 { return m_sequential.rbegin(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T rbegin(T...args)
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 332 of file KeyedContainer.h.

332 { return m_sequential.rbegin(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T rbegin(T...args)
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 619 of file KeyedContainer.h.

620 {
621  contained_type* p1 = dynamic_cast<contained_type*>( p );
622  if ( p1 ) { // Normal case; object still fully intact
623  return this->erase( p1 );
624  } else if ( p ) {
625  const ObjectContainerBase* par = p->parent();
626  // The following should never occur: object is in a funny state,
627  // Because the parent was explicitly set to NULL in the
628  // KeyeObject destructor.
629  // - It cannot be a KeyedObject: It would not have a parent
630  // - Still the parent is present: We are not in the destructor
631  // of KeyedObject
632  if ( par ) {
634  }
635  return m_cont.erase( 0, p ) == 0 ? (long)Containers::OBJ_ERASED : (long)Containers::OBJ_NOT_FOUND;
636  }
637  return (long)Containers::OBJ_NOT_FOUND;
638 }
Object not present in the container.
Definition: KeyedTraits.h:24
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
DATATYPE contained_type
Definition of the contained object type.
GAUDI_API void invalidContainerOperation()
Function to be called to indicate that an operation should be performed on the container or it&#39;s cont...
Object was removed, but not deleted.
Definition: KeyedTraits.h:26
container_type m_cont
Map container to facilitate object access by key.
ObjectContainerBase is the base class for Gaudi container classes.
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 334 of file KeyedContainer.h.

334 { return m_sequential.rend(); }
T rend(T...args)
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
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 336 of file KeyedContainer.h.

336 { return m_sequential.rend(); }
T rend(T...args)
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
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 292 of file KeyedContainer.h.

292 { m_cont.reserve( value ); }
container_type m_cont
Map container to facilitate object access by key.
template<class DATATYPE, class MAPPING = Containers::HashMap>
size_type KeyedContainer< DATATYPE, MAPPING >::size ( ) const
inline

Number of objects in the container.

Definition at line 288 of file KeyedContainer.h.

288 { return m_sequential.size(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T size(T...args)
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 510 of file KeyedContainer.h.

511 {
512  int count = 0;
513  m_cont.clearDirect();
514  typename seq_type::iterator i = m_sequential.begin();
515  typename seq_type::iterator s = m_sequential.end();
516  for ( ; i != s; i++ ) {
517  typename seq_type::value_type v = *i;
518  if ( v ) {
519  if ( !v->hasKey() ) {
520  traits::setKey( v, v->key() );
521  traits::addRef( v );
522  }
523  long k0 = traits::hash( v->key() );
524  if ( m_cont.insertDirect( this, v, v, k0 ) == Containers::OBJ_INSERTED ) {
525  }
526  } else {
527  ++count;
528  }
529  }
530  if ( count > 0 ) {
532  }
533  return StatusCode::SUCCESS;
534 }
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:104
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
T end(T...args)
Object was inserted into the container.
Definition: KeyedTraits.h:27
GAUDI_API void cannotInsertToContainer()
Function to be called to indicate that an object cannot be inserted to the container.
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:85
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
container_type m_cont
Map container to facilitate object access by key.
T count(T...args)
T begin(T...args)
string s
Definition: gaudirun.py:253
static void setKey(obj_type *v, const key_type &k)
Set object key when inserted into the container.
Definition: KeyedTraits.h:87

Friends And Related Function Documentation

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

Definition at line 67 of file KeyedContainer.h.

Member Data Documentation

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 112 of file KeyedContainer.h.

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 116 of file KeyedContainer.h.

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 114 of file KeyedContainer.h.


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