Gaudi Framework, version v21r8

Home   Generated: 17 Mar 2010

KeyedContainer< DATATYPE, MAPPING > Class Template Reference

template class KeyedContainer, KeyedContainer.h More...

#include <KeyedContainer.h>

Inheritance diagram for KeyedContainer< DATATYPE, MAPPING >:

Inheritance graph
[legend]
Collaboration diagram for KeyedContainer< DATATYPE, MAPPING >:

Collaboration graph
[legend]

List of all members.

Implementation helpers.

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

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.
static const CLIDclassID ()
 Retrieve class ID.

Public Types

typedef DATATYPE contained_type
 Definition of the contained object type.
typedef MAPPING container_type
 Definition of the implementing container type.
typedef std::vector
< contained_type * > 
seq_type
 General container specific type definitions.
typedef contained_type::key_type key_type
 Definition of the key type: re-use definition of contained type.
typedef seq_type::value_type value_type
 Sequential access: definition of type stored in sequential container.
typedef seq_type::reference reference
 Sequential access: reference type used in sequential container.
typedef seq_type::const_reference const_reference
 Sequential access: const reference type used in sequential container.
typedef seq_type::iterator iterator
 Sequential access: iterator type used in sequential container.
typedef seq_type::const_iterator const_iterator
 Sequential access: const iterator type used in sequential container.
typedef seq_type::reverse_iterator reverse_iterator
 Sequential access: reverse iterator type used in sequential container.
typedef
seq_type::const_reverse_iterator 
const_reverse_iterator
 Sequential access: const reverse iterator type used in sequential container.

Public Member Functions

Constructors/Destructors
 KeyedContainer (void)
 Standard Constructor.
virtual ~KeyedContainer ()
 Destructor.
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.
virtual long add (ContainedObject *pObject)
 ObjectContainerBase overload: Add an object to the container.
virtual long remove (ContainedObject *pObject)
 ObjectContainerBase overload: Remove an object from the container.
virtual ContainedObjectcontainedObject (long key_value) const
 ObjectContainerBase overload: Retrieve the object by reference given the long integer representation of the object's key.
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.
virtual size_type containedObjects (std::vector< ContainedObject * > &v) const
 Retrieve the full content of the object container.
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.
bool empty () const
 For consistency with STL: check if container is empty.
void reserve (size_type value)
 Reserve place for "value" objects in the container.
void clear ()
 Clear the entire content and erase the objects from the container.
virtual const std::vector
< const ContainedObject * > * 
containedObjects () const
 Retrieve the full content of the object container by reference.
virtual void configureDirectAccess ()
 Reconfigure direct access to elements (Needed by POOL data loading).
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.
const_iterator begin () const
 Retrieve start const iterator.
iterator end ()
 Retrieve terminating iterator.
const_iterator end () const
 Retrieve terminating const iterator.
reverse_iterator rbegin ()
 reverse_iterator returns the beginning of the reversed container
const_reverse_iterator rbegin () const
 const reverse_iterator returns the beginning of the reversed container
reverse_iterator rend ()
 reverse_iterator pointing to the end of the reversed container
const_reverse_iterator rend () const
 const reverse_iterator pointing to the end of the reversed container
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.
value_type operator() (const key_type &kval) const
 STL algorithms support for object access.
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.
long erase (const value_type val)
 Remove/erase object (identified by pointer value) from the container.
long erase (iterator pos)
 Remove/erase object (identified by iterator) from the container.
void erase (iterator pos_start, iterator pos_stop, bool use_temp=false)
 Remove/erase objects by iterator range.
const key_typeinsert (const value_type val, const key_type &kval)
 Insert entry to the container with a valid key.
const key_typeinsert (const value_type val)
 Insert entry to the container with automatic key assignment.

Private Types

typedef Containers::traits
< container_type,
contained_type
traits
 Traits class definition.

Friends

struct GaudiDict::KeyedContainerDict< DATATYPE >

Classes

struct  _InsertRelease
 Internal functor for insertion of objects. More...
struct  _RemoveRelease
 Internal functor for insertion of objects. 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:

Access to objects is given two-fold:

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 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 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 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::value_type KeyedContainer< DATATYPE, MAPPING >::value_type

Sequential access: definition of type stored in sequential container.

Definition at line 85 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::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::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 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::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 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 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.


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.

00181   {
00182     // avoid problems with strict-aliasing rules
00183     seq_type** rptr = &m_random;
00184     seq_type*  sptr = &m_sequential;
00185     m_cont.setup((void*)sptr,(void**)rptr);
00186   }

template<class DATATYPE, class MAPPING>
KeyedContainer< DATATYPE, MAPPING >::~KeyedContainer (  )  [inline, virtual]

Destructor.

Inline code for keyed container class.

Definition at line 488 of file KeyedContainer.h.

00489 {
00490   erase(begin(), end());
00491   m_cont.clear();
00492 }


Member Function Documentation

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

Internal function to access objects within the container.

Definition at line 133 of file KeyedContainer.h.

00133                                                              {
00134     return 0==m_cont.isDirect()
00135       ? value_type(*(m_random->begin()+traits::hash(k)))
00136       : value_type(m_cont.object(traits::hash(k)));
00137   }

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

Internal function to erase an object from the container.

Definition at line 140 of file KeyedContainer.h.

00140                                                        {
00141     value_type p = value_type(m_cont.erase(traits::hash(k), v));
00142     if ( p )    {
00143       if ( p->parent() == this )  {
00144         p->setParent(0);
00145       }
00146     }
00147     return traits::release(p) <= 0 ? (long) Containers::OBJ_ERASED
00148                                    : (long) Containers::OBJ_DELETED;
00149   }

template<class DATATYPE, class MAPPING = Containers::HashMap>
virtual const CLID& KeyedContainer< DATATYPE, MAPPING >::clID (  )  const [inline, virtual]

Retrieve class ID.

Reimplemented from DataObject.

Definition at line 197 of file KeyedContainer.h.

00197 {              return this->classID(); }

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

Retrieve class ID.

Reimplemented from DataObject.

Definition at line 199 of file KeyedContainer.h.

00199                                         {
00200     static CLID clid = contained_type::classID() + container_type::classID();
00201     return clid;
00202   }

template<class DATATYPE, class MAPPING = Containers::HashMap>
virtual size_type KeyedContainer< DATATYPE, MAPPING >::numberOfObjects (  )  const [inline, virtual]

ObjectContainerBase overload: Number of objects in the container.

Implements ObjectContainerBase.

Definition at line 222 of file KeyedContainer.h.

00222 {  return m_sequential.size();       }

template<class DATATYPE, class MAPPING>
long KeyedContainer< DATATYPE, MAPPING >::add ( ContainedObject pObject  )  [inline, virtual]

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:
pObject Pointer to the object to be inserted into the container.
Returns:
long integer representation of the key value.

Implements ObjectContainerBase.

Definition at line 602 of file KeyedContainer.h.

00603 {
00604   return traits::identifier(insert(dynamic_cast<typename seq_type::value_type>(pObject)));
00605 }

template<class DATATYPE, class MAPPING>
long KeyedContainer< DATATYPE, MAPPING >::remove ( ContainedObject pObject  )  [inline, virtual]

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:
pObject Pointer to the object to be removed from the container.

Implements ObjectContainerBase.

Definition at line 609 of file KeyedContainer.h.

00610 {
00611   contained_type* p1 = dynamic_cast<contained_type*>(p);
00612   if ( p1 )    {  // Normal case; object still fully intact
00613     return this->erase(p1);
00614   }
00615   else if ( p )   {
00616     const ObjectContainerBase* par = p->parent();
00617     // The following should never occur: object is in a funny state,
00618     // Because the parent was explicitly set to NULL in the
00619     // KeyeObject destructor.
00620     // - It cannot be a KeyedObject:  It would not have a parent
00621     // - Still the parent is present: We are not in the destructor
00622     //                                of KeyedObject
00623     if ( par )  {
00624       Containers::invalidContainerOperation();
00625     }
00626     return m_cont.erase(0, p)==0 ? (long) Containers::OBJ_ERASED
00627                                  : (long) Containers::OBJ_NOT_FOUND;
00628   }
00629   return (long) Containers::OBJ_NOT_FOUND;
00630 }

template<class DATATYPE, class MAPPING = Containers::HashMap>
virtual ContainedObject* KeyedContainer< DATATYPE, MAPPING >::containedObject ( long  key_value  )  const [inline, virtual]

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.

00253                                                                   {
00254     return i_object( traits::makeKey( key_value ) );
00255   }

template<class DATATYPE, class MAPPING>
long KeyedContainer< DATATYPE, MAPPING >::index ( const ContainedObject p  )  const [inline, virtual]

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

Implements ObjectContainerBase.

Definition at line 577 of file KeyedContainer.h.

00578 {
00579   const contained_type* ptr = dynamic_cast<const contained_type*>(p);
00580   if ( ptr ) return traits::identifier(ptr->key());
00581   return -1;
00582 }

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

Retrieve the full content of the object container.

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

Definition at line 587 of file KeyedContainer.h.

00588 {
00589   typename seq_type::const_iterator i = m_sequential.begin();
00590   typename seq_type::const_iterator s = m_sequential.end();
00591   vec.clear();
00592   vec.reserve(size());
00593   for ( ; i != s; i++ )  {
00594     ContainedObject* p = const_cast<typename seq_type::value_type>(*i);
00595     vec.push_back(p);
00596   }
00597   return vec.size();
00598 }

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

Number of objects in the container.

Definition at line 274 of file KeyedContainer.h.

00274 {      return m_sequential.size();    }

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

For consistency with STL: check if container is empty.

Definition at line 276 of file KeyedContainer.h.

00276 {      return m_sequential.empty();   }

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.

00278 {      m_cont.reserve(value);          }

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

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

Definition at line 280 of file KeyedContainer.h.

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

template<class DATATYPE, class MAPPING>
const std::vector< const ContainedObject * > * KeyedContainer< DATATYPE, MAPPING >::containedObjects (  )  const [inline, virtual]

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

00526                                                            {
00527   return (const std::vector<const ContainedObject*>*)
00528     ((0==m_cont.isDirect()) ? m_random : &m_sequential);
00529 }

template<class DATATYPE, class MAPPING>
void KeyedContainer< DATATYPE, MAPPING >::configureDirectAccess (  )  [inline, virtual]

Reconfigure direct access to elements (Needed by POOL data loading).

Definition at line 496 of file KeyedContainer.h.

00497 {
00498   int count = 0;
00499   m_cont.clearDirect();
00500   typename seq_type::iterator i = m_sequential.begin();
00501   typename seq_type::iterator s = m_sequential.end();
00502   for ( ; i != s; i++ )  {
00503     typename seq_type::value_type v = *i;
00504     if ( v )  {
00505       if ( !v->hasKey() ) {
00506         traits::setKey(v, v->key());
00507         traits::addRef(v);
00508       }
00509       long k0 = traits::hash(v->key());
00510       if(m_cont.insertDirect(this, v, v, k0) == Containers::OBJ_INSERTED)   {
00511       }
00512     }
00513     else  {
00514       ++count;
00515     }
00516   }
00517   if ( count > 0 )  {
00518     Containers::cannotInsertToContainer();
00519   }
00520 }

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

Retrieve start iterator.

Definition at line 305 of file KeyedContainer.h.

00305 {      return m_sequential.begin();   }

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

Retrieve start const iterator.

Definition at line 307 of file KeyedContainer.h.

00307 {      return m_sequential.begin();   }

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

Retrieve terminating iterator.

Definition at line 309 of file KeyedContainer.h.

00309 {      return m_sequential.end();     }

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

Retrieve terminating const iterator.

Definition at line 311 of file KeyedContainer.h.

00311 {      return m_sequential.end();     }

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

reverse_iterator returns the beginning of the reversed container

Definition at line 313 of file KeyedContainer.h.

00313 {      return m_sequential.rbegin();  }

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

const reverse_iterator returns the beginning of the reversed container

Definition at line 315 of file KeyedContainer.h.

00315 {      return m_sequential.rbegin();  }

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

reverse_iterator pointing to the end of the reversed container

Definition at line 317 of file KeyedContainer.h.

00317 {      return m_sequential.rend();    }

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

const reverse_iterator pointing to the end of the reversed container

Definition at line 319 of file KeyedContainer.h.

00319 {      return m_sequential.rend();    }

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:
kval Key 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 339 of file KeyedContainer.h.

00339 {  return i_object(kval);  }

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:
kval Key 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 350 of file KeyedContainer.h.

00350 {  return i_object(kval);  }

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:
kval Key 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 375 of file KeyedContainer.h.

00375 { return i_erase(0, kval);  }

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:
val Reference 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 397 of file KeyedContainer.h.

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

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:
val Reference 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 421 of file KeyedContainer.h.

00421 {                return erase(*pos);              }

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_start Starting iterator of the range to be removed.
pos_stop Starting iterator of the range to be removed.
use_temp Flag to indicate that a temporary arry should be used.

Definition at line 634 of file KeyedContainer.h.

00637 {
00638   bool is_start = start_pos == m_sequential.begin();
00639   bool is_stop  = stop_pos  == m_sequential.end();
00640   if ( is_start && is_stop )  {
00641     // Nothing special. Taken care of by Keyed object manager
00642   }
00643   else if ( is_start || is_stop || use_tmp )  {
00644     std::vector<DATATYPE*> tmp(m_sequential.begin(), start_pos);
00645     tmp.insert(tmp.end(), stop_pos, m_sequential.end());
00646     std::for_each(tmp.begin(), tmp.end(), traits::addRef);
00647     this->erase(m_sequential.begin(), m_sequential.end());
00648     std::for_each(tmp.begin(), tmp.end(), _InsertRelease(this));
00649     return;
00650   }
00651   std::for_each(start_pos, stop_pos, _RemoveRelease(this));
00652   seq_type *sptr = &m_sequential; // avoid problems with strict-aliasing rules
00653   std::vector<void*>* v = (std::vector<void*>*)sptr;
00654   std::vector<void*>::iterator i1 =
00655     v->begin() + std::distance(m_sequential.begin(), start_pos);
00656   std::vector<void*>::iterator i2 =
00657     v->begin() + std::distance(m_sequential.begin(), stop_pos);
00658   m_cont.erase(i1, i2);
00659 }

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:
val Reference to object to be inserted into the container. The object reference may NOT be NULL.
kval Key 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.

00535 {
00536   if ( val )    {
00537     long k0 = traits::hash(kval);
00538     if ( !val->hasKey() || (traits::hash(val->key()) == k0) )    {
00539       if(m_cont.insert(this,val,val,k0) == Containers::OBJ_INSERTED)   {
00540         if ( !val->hasKey() ) traits::setKey(val, kval);
00541         traits::addRef(val);
00542         return val->key();
00543       }
00544     }
00545   }
00546   // Cannot insert object...indicate bad object insertion...
00547   Containers::cannotInsertToContainer();
00548   return val->key();
00549 }

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

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:
val Reference 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 554 of file KeyedContainer.h.

00555 {
00556   if ( 0 != val )   {
00557     if ( val->hasKey() )   {
00558       if (m_cont.insert(this,val,val,traits::hash(val->key()))
00559           == Containers::OBJ_INSERTED)   {
00560         traits::addRef(val);
00561         return val->key();
00562       }
00563     }
00564     long k0;
00565     if ( m_cont.insert(this, val, val, &k0) == Containers::OBJ_INSERTED )   {
00566       traits::setKey(val, traits::makeKey(k0));
00567       traits::addRef(val);
00568       return val->key();
00569     }
00570   }
00571   // Cannot insert object...indicate bad object insertion...
00572   Containers::cannotInsertToContainer();
00573   return val->key();
00574 }


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_sequential [private]

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

Definition at line 113 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.


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

Generated at Wed Mar 17 18:18:30 2010 for Gaudi Framework, version v21r8 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004