#include <Active_Map_Manager.h>
Collaboration diagram for ACE_Active_Map_Manager_Key:

| Public Member Functions | |
| ACE_Active_Map_Manager_Key (void) | |
| Default constructor. | |
| ACE_Active_Map_Manager_Key (ACE_UINT32 slot_index, ACE_UINT32 slot_generation) | |
| ACE_UINT32 | slot_index (void) const | 
| Get the slot_index. | |
| void | slot_index (ACE_UINT32 i) | 
| Set the slot_index. | |
| ACE_UINT32 | slot_generation (void) const | 
| Get the slot_generation number. | |
| void | slot_generation (ACE_UINT32 g) | 
| Set the slot_generation number. | |
| void | decode (const void *data) | 
| void | encode (void *data) const | 
| bool | operator== (const ACE_Active_Map_Manager_Key &rhs) const | 
| Compare keys. | |
| bool | operator!= (const ACE_Active_Map_Manager_Key &rhs) const | 
| void | increment_slot_generation_count (void) | 
| Increment the  number. | |
| Static Public Member Functions | |
| size_t | size (void) | 
| Size required to store information about active key. | |
| Private Attributes | |
| key_data | key_data_ | 
| Data for the Active Object Map Key. | |
This key keeps information of the index and the generation count of the slot it represents. Since the index information is part of the key, lookups are super fast and predictable,
Definition at line 37 of file Active_Map_Manager.h.
| 
 | 
| Default constructor. 
 Definition at line 10 of file Active_Map_Manager.inl. References key_data_, ACE_Active_Map_Manager_Key::key_data::slot_generation_, and ACE_Active_Map_Manager_Key::key_data::slot_index_. 
 00011 {
00012   // If you change ~0, please change ACE_Map_Manager::free_list_id()
00013   // accordingly.
00014   this->key_data_.slot_index_ = (ACE_UINT32) ~0;
00015   this->key_data_.slot_generation_ = 0;
00016 }
 | 
| 
 | ||||||||||||
| Constructor given the slot_index and slot_generation number. This is useful once the user has somehow recovered the slot_index and slot_generation number from the client. Definition at line 19 of file Active_Map_Manager.inl. References key_data_, ACE_Active_Map_Manager_Key::key_data::slot_generation_, and ACE_Active_Map_Manager_Key::key_data::slot_index_. 
 00021 {
00022   this->key_data_.slot_index_ = slot_index;
00023   this->key_data_.slot_generation_ = slot_generation;
00024 }
 | 
| 
 | 
| Recover state of active key from data. User must make sure that data encoded using the encode() method. Definition at line 78 of file Active_Map_Manager.inl. References ACE_OS::memcpy(). 
 00079 {
00080   // Copy the information from the user buffer into the key.
00081   ACE_OS::memcpy (&this->key_data_,
00082                   data,
00083                   sizeof this->key_data_);
00084 }
 | 
| 
 | 
| Encode state of the active key into data. data must be as big as the value returned from . Definition at line 87 of file Active_Map_Manager.inl. References ACE_OS::memcpy(). 
 00088 {
00089   // Copy the key data to the user buffer.
00090   ACE_OS::memcpy (data,
00091                   &this->key_data_,
00092                   sizeof this->key_data_);
00093 }
 | 
| 
 | 
| Increment the number. 
 Definition at line 65 of file Active_Map_Manager.inl. References key_data_, and ACE_Active_Map_Manager_Key::key_data::slot_generation_. Referenced by ACE_Active_Map_Manager< T >::bind(). 
 00066 {
00067   ++this->key_data_.slot_generation_;
00068 }
 | 
| 
 | 
| 
 Definition at line 47 of file Active_Map_Manager.inl. References operator==(). 
 00048 {
00049   return !this->operator== (rhs);
00050 }
 | 
| 
 | 
| Compare keys. 
 Definition at line 39 of file Active_Map_Manager.inl. References key_data_, ACE_Active_Map_Manager_Key::key_data::slot_generation_, and ACE_Active_Map_Manager_Key::key_data::slot_index_. Referenced by operator!=(). 
 00040 {
00041   return
00042     this->key_data_.slot_index_ == rhs.key_data_.slot_index_ &&
00043     this->key_data_.slot_generation_ == rhs.key_data_.slot_generation_;
00044 }
 | 
| 
 | 
| Size required to store information about active key. 
 Definition at line 72 of file Active_Map_Manager.inl. 
 00073 {
00074   return sizeof (ACE_UINT32) + sizeof (ACE_UINT32);
00075 }
 | 
| 
 | 
| Set the slot_generation number. 
 Definition at line 59 of file Active_Map_Manager.inl. References key_data_, and ACE_Active_Map_Manager_Key::key_data::slot_generation_. 
 00060 {
00061   this->key_data_.slot_generation_ = g;
00062 }
 | 
| 
 | 
| Get the slot_generation number. 
 Definition at line 33 of file Active_Map_Manager.inl. References key_data_, and ACE_Active_Map_Manager_Key::key_data::slot_generation_. Referenced by ACE_Active_Map_Manager< T >::find(). 
 00034 {
00035   return this->key_data_.slot_generation_;
00036 }
 | 
| 
 | 
| Set the slot_index. 
 Definition at line 53 of file Active_Map_Manager.inl. References key_data_, and ACE_Active_Map_Manager_Key::key_data::slot_index_. 
 00054 {
00055   this->key_data_.slot_index_ = i;
00056 }
 | 
| 
 | 
| Get the slot_index. 
 Definition at line 27 of file Active_Map_Manager.inl. References key_data_, and ACE_Active_Map_Manager_Key::key_data::slot_index_. Referenced by ACE_Active_Map_Manager< T >::bind(), ACE_Active_Map_Manager< T >::find(), ACE_Active_Map_Manager< T >::rebind(), and ACE_Active_Map_Manager< T >::unbind(). 
 00028 {
00029   return this->key_data_.slot_index_;
00030 }
 | 
| 
 | 
| Data for the Active Object Map Key. 
 Definition at line 103 of file Active_Map_Manager.h. Referenced by ACE_Active_Map_Manager_Key(), increment_slot_generation_count(), operator==(), slot_generation(), and slot_index(). | 
 1.3.6
 
1.3.6