#include <Map_T.h>
Inheritance diagram for ACE_Map_Manager_Adapter< KEY, VALUE, KEY_GENERATOR >:


Public Types | |
| typedef ACE_Map_Manager_Iterator_Adapter< ACE_Reference_Pair< const KEY, VALUE >, KEY, VALUE > | iterator_impl |
| typedef ACE_Map_Manager_Reverse_Iterator_Adapter< ACE_Reference_Pair< const KEY, VALUE >, KEY, VALUE > | reverse_iterator_impl |
| typedef ACE_Map_Manager< KEY, VALUE, ACE_Null_Mutex > | implementation |
Public Member Functions | |
| ACE_Map_Manager_Adapter (ACE_Allocator *alloc=0) | |
| Initialize with the <ACE_DEFAULT_MAP_SIZE>. | |
| ACE_Map_Manager_Adapter (size_t size, ACE_Allocator *alloc=0) | |
| virtual | ~ACE_Map_Manager_Adapter (void) |
| Close down and release dynamically allocated resources. | |
| virtual int | open (size_t length=ACE_DEFAULT_MAP_SIZE, ACE_Allocator *alloc=0) |
| Initialize a <Map> with size <length>. | |
| virtual int | close (void) |
| Close down a <Map> and release dynamically allocated resources. | |
| virtual int | bind (const KEY &key, const VALUE &value) |
| virtual int | bind_modify_key (const VALUE &value, KEY &key) |
| virtual int | create_key (KEY &key) |
| virtual int | bind_create_key (const VALUE &value, KEY &key) |
| virtual int | bind_create_key (const VALUE &value) |
| virtual int | recover_key (const KEY &modified_key, KEY &original_key) |
| virtual int | rebind (const KEY &key, const VALUE &value) |
| virtual int | rebind (const KEY &key, const VALUE &value, VALUE &old_value) |
| virtual int | rebind (const KEY &key, const VALUE &value, KEY &old_key, VALUE &old_value) |
| virtual int | trybind (const KEY &key, VALUE &value) |
| virtual int | find (const KEY &key, VALUE &value) |
| Locate | |
| virtual int | find (const KEY &key) |
| Is <key> in the map? | |
| virtual int | unbind (const KEY &key) |
| Remove <key> from the map. | |
| virtual int | unbind (const KEY &key, VALUE &value) |
| virtual size_t | current_size (void) const |
| Return the current size of the map. | |
| virtual size_t | total_size (void) const |
| Return the total size of the map. | |
| virtual void | dump (void) const |
| Dump the state of an object. | |
| ACE_Map_Manager< KEY, VALUE, ACE_Null_Mutex > & | impl (void) |
| Accessor to implementation object. | |
| KEY_GENERATOR & | key_generator (void) |
| Accessor to key generator. | |
Protected Member Functions | |
| virtual ACE_Iterator_Impl< ACE_Reference_Pair< const KEY, VALUE > > * | begin_impl (void) |
| Return forward iterator. | |
| virtual ACE_Iterator_Impl< ACE_Reference_Pair< const KEY, VALUE > > * | end_impl (void) |
| virtual ACE_Reverse_Iterator_Impl< ACE_Reference_Pair< const KEY, VALUE > > * | rbegin_impl (void) |
| Return reverse iterator. | |
| virtual ACE_Reverse_Iterator_Impl< ACE_Reference_Pair< const KEY, VALUE > > * | rend_impl (void) |
Protected Attributes | |
| ACE_Map_Manager< KEY, VALUE, ACE_Null_Mutex > | implementation_ |
| All implementation details are forwarded to this class. | |
| KEY_GENERATOR | key_generator_ |
| Functor class used for generating key. | |
Private Member Functions | |
| void | operator= (const ACE_Map_Manager_Adapter< KEY, VALUE, KEY_GENERATOR > &) |
| ACE_Map_Manager_Adapter (const ACE_Map_Manager_Adapter< KEY, VALUE, KEY_GENERATOR > &) | |
Implementation to be provided by <ACE_Map_Manager>.
|
|||||
|
|
|
|||||
|
|
|
|||||
|
|
|
||||||||||
|
Initialize with the <ACE_DEFAULT_MAP_SIZE>.
|
|
||||||||||||||||
|
Initialize with <size> entries. The <size> parameter is ignored by maps for which an initialize size does not make sense. |
|
||||||||||
|
Close down and release dynamically allocated resources.
|
|
||||||||||
|
|
|
||||||||||
|
Return forward iterator.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Add <key>/ pair to the map. If <key> is already in the map then no changes are made and 1 is returned. Returns 0 on a successful addition. This function fails for maps that do not allow user specified keys. <key> is an "in" parameter. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Add to the map. The user does not care about the corresponding key produced by the Map. For maps that do not naturally produce keys, the map adapters will use the <KEY_GENERATOR> class to produce a key. However, the users are responsible for not jeopardizing this key production scheme by using user specified keys with keys produced by the key generator. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Add to the map, and the corresponding key produced by the Map is returned through <key> which is an "out" parameter. For maps that do not naturally produce keys, the map adapters will use the <KEY_GENERATOR> class to produce a key. However, the users are responsible for not jeopardizing this key production scheme by using user specified keys with keys produced by the key generator. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Add <key>/ pair to the map. <key> is an "inout" parameter and maybe modified/extended by the map to add additional information. To recover original key, call the <recover_key> method. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Close down a <Map> and release dynamically allocated resources.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Produce a key and return it through <key> which is an "out" parameter. For maps that do not naturally produce keys, the map adapters will use the <KEY_GENERATOR> class to produce a key. However, the users are responsible for not jeopardizing this key production scheme by using user specified keys with keys produced by the key generator. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Return the current size of the map.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Dump the state of an object.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Is <key> in the map?
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Locate associated with <key>.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Accessor to implementation object.
|
|
||||||||||
|
Accessor to key generator.
|
|
||||||||||||||||
|
Initialize a <Map> with size <length>.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
|
|
||||||||||
|
Return reverse iterator.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||||||||||
|
Reassociate <key> with , storing the old key and value into the "out" parameters <old_key> and <old_value>. The function fails if <key> is not in the map for maps that do not allow user specified keys. However, for maps that allow user specified keys, if the key is not in the map, a new <key>/ association is created. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||||||
|
Reassociate <key> with , storing the old value into the "out" parameter <old_value>. The function fails if <key> is not in the map for maps that do not allow user specified keys. However, for maps that allow user specified keys, if the key is not in the map, a new <key>/ association is created. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Reassociate <key> with . The function fails if <key> is not in the map for maps that do not allow user specified keys. However, for maps that allow user specified keys, if the key is not in the map, a new <key>/ association is created. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Recovers the original key potentially modified by the map during <bind_modify_key>. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Return the total size of the map.
Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Associate <key> with if and only if <key> is not in the map. If <key> is already in the map, then the parameter is overwritten with the existing value in the map. Returns 0 if a new <key>/ association is created. Returns 1 if an attempt is made to bind an existing entry. This function fails for maps that do not allow user specified keys. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||||||||
|
Remove <key> from the map, and return the associated with <key>. Implements ACE_Map< KEY, VALUE >. |
|
||||||||||
|
Remove <key> from the map.
Implements ACE_Map< KEY, VALUE >. |
|
|||||
|
All implementation details are forwarded to this class.
|
|
|||||
|
Functor class used for generating key.
|
1.4.5