class ConfigNodeIdMap

Class for storing the mapping between a ConfigNodeId node and the corresponding value. More...

 
LOGO
 Annotated List  Files  Globals  Hierarchy  Index  Top

Public Types

Public Methods


Detailed Description

Internally the class is implemented as a mapped linked list: - A linked list of pairs <ConfigNodeId, typename V> contains the ConfigNodeId nodes and the corresponding values. - An STL <map> stores the mapping between unique node IDs and the corresponding iterators in the above list.

The advantage of such implementation is that the time to insert and remove entries to/from the list is similar to the time to perform those operations on an STL map container.

typedef list<pair<ConfigNodeId, V> > ValuesList

ValuesList

typedef ValuesList::iterator iterator

iterator

typedef ValuesList::const_iterator const_iterator

const_iterator

 ConfigNodeIdMap ()

ConfigNodeIdMap

Default constructor

 ~ConfigNodeIdMap ()

~ConfigNodeIdMap

[virtual]

Destructor

typename ConfigNodeIdMap::iterator  begin ()

begin

Get the iterator to the first element.

Returns: the iterator to the first element.

typename ConfigNodeIdMap::const_iterator  begin ()

begin

[const]

Get the const iterator to the first element.

Returns: the const iterator to the first element.

typename ConfigNodeIdMap::iterator  end ()

end

Get the iterator to the last element.

Returns: the iterator to the last element.

typename ConfigNodeIdMap::const_iterator  end ()

end

[const]

Get the const iterator to the last element.

Returns: the const iterator to the last element.

inline typename ConfigNodeIdMap::iterator  find (const ConfigNodeId& node_id)

find

Find an element for a given node ID.

Parameters:

node_idthe node ID to search for.

Returns: the iterator to the element.

inline typename ConfigNodeIdMap::const_iterator  find (const ConfigNodeId& node_id)

find

[const]

Find an element for a given node ID.

Parameters:

node_idthe node ID to search for.

Returns: the const iterator to the element.

inline pair<iterator, bool>  insert (const ConfigNodeId& node_id, const V& v)

insert

Insert a new element.

Parameters:

node_idthe node ID of the element to insert.
vthe value of the element to insert.

Returns: true a pair of two values: iterator and a boolean flag. If the boolean flag is true, the element was inserted successfully, and the iterator points to the new element. If the boolean flag is false, then either there is an element with the same node ID, and the iterator points to that element, or the element could not be inserted because of invalid node ID and the iterator points to end() of the container.

inline pair<iterator, bool>  insert_out_of_order ( const ConfigNodeId& node_id, const V& v)

insert_out_of_order

Insert a new element that might be out-of-order.

Parameters:

node_idthe node ID of the element to insert.
vthe value of the element to insert.

Returns: true a pair of two values: iterator and a boolean flag. If the boolean flag is true, the element was inserted successfully, and the iterator points to the new element. If the boolean flag is false, then there is an element with the same node ID, and the iterator points to that element.

inline size_t  erase (const ConfigNodeId& node_id)

erase

Remove an existing element.

Parameters:

node_idthe node ID of the element to remove.

Returns: the number of removed elements.

inline void  erase (ConfigNodeIdMap::iterator iter)

erase

Remove an existing element.

Parameters:

iterthe iterator to the element to remove.
void  clear ()

clear

Remove all elements.

inline string  str ()

str

[const]

Convert this object from binary form to presentation format.

Returns: C++ string with the human-readable ASCII representation of the object.

size_t  size ()

size

[const]

Get the number of elements in the storage.

Returns: the number of elements in the storage.

bool  empty ()

empty

[const]

Test if the container is empty.

Returns: true if the container is empty, otherwise false.


Generated by: pavlin on possum.icir.org on Wed Aug 2 15:36:02 2006, using kdoc $.