All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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...
 
virtual ~KeyedContainer ()
 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.

virtual size_type numberOfObjects () const
 ObjectContainerBase overload: Number of objects in the container. More...
 
virtual long add (ContainedObject *pObject)
 ObjectContainerBase overload: Add an object to the container. More...
 
virtual long remove (ContainedObject *pObject)
 ObjectContainerBase overload: Remove an object from the container. More...
 
virtual ContainedObjectcontainedObject (long key_value) const
 ObjectContainerBase overload: Retrieve the object by reference given the long integer representation of the object's key. More...
 
virtual long index (const ContainedObject *p) const
 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...
 
virtual StatusCode update ()
 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 &)
 Copy Constructor. 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::string & name () 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::ostream & fillStream (std::ostream &s) const
 Fill the output stream (ASCII) More...
 

Private Types

typedef Containers::traits
< container_type,
contained_type
traits
 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.

virtual const CLIDclID () const
 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 ()
 Constructor. More...
 
virtual ~ObjectContainerBase ()
 Destructor. More...
 

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 64 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 93 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 89 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 99 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 70 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 72 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 91 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 83 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 87 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 95 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 81 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 105 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 85 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 180 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  }
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 >
KeyedContainer< DATATYPE, MAPPING >::~KeyedContainer ( )
inlinevirtual

Destructor.

Inline code for keyed container class.

Definition at line 491 of file KeyedContainer.h.

492 {
493  erase(begin(), end());
494  m_cont.clear();
495 }
long erase(const key_type &kval)
Remove/erase object (identified by key) from the container.
iterator begin()
Retrieve start iterator.
container_type m_cont
Map container to facilitate object access by key.
iterator end()
Retrieve terminating iterator.

Member Function Documentation

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

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

607 {
608  return traits::identifier(insert(dynamic_cast<typename seq_type::value_type>(pObject)));
609 }
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:76
template<class DATATYPE, class MAPPING = Containers::HashMap>
iterator KeyedContainer< DATATYPE, MAPPING >::begin ( )
inline

Retrieve start iterator.

Definition at line 308 of file KeyedContainer.h.

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

Retrieve start const iterator.

Definition at line 310 of file KeyedContainer.h.

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

Retrieve class ID.

Definition at line 199 of file KeyedContainer.h.

199  {
200  static CLID clid = contained_type::classID() + container_type::classID();
201  return clid;
202  }
unsigned int CLID
Class ID definition.
Definition: ClassID.h:9
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 280 of file KeyedContainer.h.

280 { 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>
virtual const CLID& KeyedContainer< DATATYPE, MAPPING >::clID ( ) const
inlinevirtual

Retrieve class ID.

Reimplemented from DataObject.

Definition at line 197 of file KeyedContainer.h.

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

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

Implements ObjectContainerBase.

Definition at line 253 of file KeyedContainer.h.

253  {
254  return i_object( traits::makeKey( key_value ) );
255  }
static key_type makeKey(long k)
Create key from its full integer representation.
Definition: KeyedTraits.h:73
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 591 of file KeyedContainer.h.

592 {
593  typename seq_type::const_iterator i = m_sequential.begin();
594  typename seq_type::const_iterator s = m_sequential.end();
595  vec.clear();
596  vec.reserve(size());
597  for ( ; i != s; i++ ) {
598  ContainedObject* p = const_cast<typename seq_type::value_type>(*i);
599  vec.push_back(p);
600  }
601  return vec.size();
602 }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
size_type size() const
Number of objects in the container.
string s
Definition: gaudirun.py:210
list i
Definition: ana.py:128
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 530 of file KeyedContainer.h.

530  {
531  return (const std::vector<const ContainedObject*>*)
532  ((0==m_cont.isDirect()) ? m_random : &m_sequential);
533 }
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.
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 276 of file KeyedContainer.h.

276 { return m_sequential.empty(); }
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 312 of file KeyedContainer.h.

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

Retrieve terminating const iterator.

Definition at line 314 of file KeyedContainer.h.

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

378 { 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 400 of file KeyedContainer.h.

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

424 { 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 638 of file KeyedContainer.h.

641 {
642  bool is_start = start_pos == m_sequential.begin();
643  bool is_stop = stop_pos == m_sequential.end();
644  if ( is_start && is_stop ) {
645  // Nothing special. Taken care of by Keyed object manager
646  }
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
657  std::vector<void*>* v = (std::vector<void*>*)sptr;
658  std::vector<void*>::iterator i1 =
659  v->begin() + std::distance(m_sequential.begin(), start_pos);
660  std::vector<void*>::iterator i2 =
661  v->begin() + std::distance(m_sequential.begin(), stop_pos);
662  m_cont.erase(i1, i2);
663 }
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:93
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.
container_type m_cont
Map container to facilitate object access by key.
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 140 of file KeyedContainer.h.

140  {
141  value_type p = value_type(m_cont.erase(traits::hash(k), v));
142  if ( p ) {
143  if ( p->parent() == this ) {
144  p->setParent(0);
145  }
146  }
147  return traits::release(p) <= 0 ? (long) Containers::OBJ_ERASED
148  : (long) Containers::OBJ_DELETED;
149  }
Object was removed from the container and deleted.
Definition: KeyedTraits.h:22
static long hash(const key_type &key_value)
Hash function for this key.
Definition: KeyedTraits.h:78
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.
Object was removed, but not deleted.
Definition: KeyedTraits.h:23
static long release(obj_type *v)
Release reference to object.
Definition: KeyedTraits.h:95
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 133 of file KeyedContainer.h.

133  {
134  return 0==m_cont.isDirect()
135  ? value_type(*(m_random->begin()+traits::hash(k)))
136  : value_type(m_cont.object(traits::hash(k)));
137  }
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:78
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.
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
inlinevirtual

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

Implements ObjectContainerBase.

Definition at line 581 of file KeyedContainer.h.

582 {
583  const contained_type* ptr = dynamic_cast<const contained_type*>(p);
584  if ( ptr ) return traits::identifier(ptr->key());
585  return -1;
586 }
DATATYPE contained_type
Definition of the contained object type.
static long identifier(const key_type &k)
Full unhashed key identifier.
Definition: KeyedTraits.h:76
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 537 of file KeyedContainer.h.

539 {
540  if ( val ) {
541  long k0 = traits::hash(kval);
542  if ( !val->hasKey() || (traits::hash(val->key()) == k0) ) {
543  if(m_cont.insert(this,val,val,k0) == Containers::OBJ_INSERTED) {
544  if ( !val->hasKey() ) traits::setKey(val, kval);
545  traits::addRef(val);
546  return val->key();
547  }
548  }
549  }
550  // Cannot insert object...indicate bad object insertion...
552  return val->key();
553 }
Object was inserted into the container.
Definition: KeyedTraits.h:24
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:93
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:78
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:80
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 558 of file KeyedContainer.h.

559 {
560  if ( 0 != val ) {
561  if ( val->hasKey() ) {
562  if (m_cont.insert(this,val,val,traits::hash(val->key()))
564  traits::addRef(val);
565  return val->key();
566  }
567  }
568  long k0;
569  if ( m_cont.insert(this, val, val, &k0) == Containers::OBJ_INSERTED ) {
571  traits::addRef(val);
572  return val->key();
573  }
574  }
575  // Cannot insert object...indicate bad object insertion...
577  return val->key();
578 }
Object was inserted into the container.
Definition: KeyedTraits.h:24
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:93
static key_type makeKey(long k)
Create key from its full integer representation.
Definition: KeyedTraits.h:73
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:78
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:80
template<class DATATYPE, class MAPPING = Containers::HashMap>
virtual size_type KeyedContainer< DATATYPE, MAPPING >::numberOfObjects ( ) const
inlinevirtual

ObjectContainerBase overload: Number of objects in the container.

Implements ObjectContainerBase.

Definition at line 222 of file KeyedContainer.h.

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

342 { 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 353 of file KeyedContainer.h.

353 { 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 316 of file KeyedContainer.h.

316 { return m_sequential.rbegin(); }
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 >::rbegin ( ) const
inline

const reverse_iterator returns the beginning of the reversed container

Definition at line 318 of file KeyedContainer.h.

318 { return m_sequential.rbegin(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
template<class DATATYPE , class MAPPING >
long KeyedContainer< DATATYPE, MAPPING >::remove ( ContainedObject pObject)
inlinevirtual

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

614 {
615  contained_type* p1 = dynamic_cast<contained_type*>(p);
616  if ( p1 ) { // Normal case; object still fully intact
617  return this->erase(p1);
618  }
619  else if ( p ) {
620  const ObjectContainerBase* par = p->parent();
621  // The following should never occur: object is in a funny state,
622  // Because the parent was explicitly set to NULL in the
623  // KeyeObject destructor.
624  // - It cannot be a KeyedObject: It would not have a parent
625  // - Still the parent is present: We are not in the destructor
626  // of KeyedObject
627  if ( par ) {
629  }
630  return m_cont.erase(0, p)==0 ? (long) Containers::OBJ_ERASED
631  : (long) Containers::OBJ_NOT_FOUND;
632  }
633  return (long) Containers::OBJ_NOT_FOUND;
634 }
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's cont...
container_type m_cont
Map container to facilitate object access by key.
Object was removed, but not deleted.
Definition: KeyedTraits.h:23
Object not present in the container.
Definition: KeyedTraits.h:21
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 320 of file KeyedContainer.h.

320 { return m_sequential.rend(); }
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 322 of file KeyedContainer.h.

322 { return m_sequential.rend(); }
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 278 of file KeyedContainer.h.

278 { 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 274 of file KeyedContainer.h.

274 { return m_sequential.size(); }
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
template<class DATATYPE , class MAPPING >
StatusCode KeyedContainer< DATATYPE, MAPPING >::update ( )
inlinevirtual

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

500 {
501  int count = 0;
502  m_cont.clearDirect();
503  typename seq_type::iterator i = m_sequential.begin();
504  typename seq_type::iterator s = m_sequential.end();
505  for ( ; i != s; i++ ) {
506  typename seq_type::value_type v = *i;
507  if ( v ) {
508  if ( !v->hasKey() ) {
509  traits::setKey(v, v->key());
510  traits::addRef(v);
511  }
512  long k0 = traits::hash(v->key());
513  if(m_cont.insertDirect(this, v, v, k0) == Containers::OBJ_INSERTED) {
514  }
515  }
516  else {
517  ++count;
518  }
519  }
520  if ( count > 0 ) {
522  }
523  return StatusCode::SUCCESS;
524 }
Object was inserted into the container.
Definition: KeyedTraits.h:24
static long addRef(obj_type *v)
Add reference counter to object when inserted into the container.
Definition: KeyedTraits.h:93
seq_type m_sequential
Array to allow sequential access to the object (can be ordered).
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:78
container_type m_cont
Map container to facilitate object access by key.
string s
Definition: gaudirun.py:210
list i
Definition: ana.py:128
static void setKey(obj_type *v, const key_type &k)
Set object key when inserted into the container.
Definition: KeyedTraits.h:80

Friends And Related Function Documentation

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

Definition at line 66 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 111 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 115 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 113 of file KeyedContainer.h.


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