Forward const iterator for the ACE_Map_Manager. More...
#include <Map_Manager.h>


Public Member Functions | |
| ACE_Map_Const_Iterator (const ACE_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > &mm, int pass_end=0) | |
| int | advance (void) |
| void | dump (void) const |
| Dump the state of an object. | |
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > & | operator++ (void) |
| Prefix advance. | |
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > | operator++ (int) |
| Postfix advance. | |
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > & | operator-- (void) |
| Prefix reverse. | |
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > | operator-- (int) |
| Postfix reverse. | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
Forward const iterator for the ACE_Map_Manager.
This class does not perform any internal locking of the ACE_Map_Manager it is iterating upon since locking is inherently inefficient and/or error-prone within an STL-style iterator. If you require locking, you can explicitly use an ACE_Guard or ACE_Read_Guard on the ACE_Map_Manager's internal lock, which is accessible via its <mutex> method.
Definition at line 623 of file Map_Manager.h.
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::ACE_Map_Const_Iterator | ( | const ACE_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > & | mm, | |
| int | pass_end = 0 | |||
| ) | [inline] |
Definition at line 574 of file Map_Manager.inl.
: ACE_Map_Const_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> (mm) { if (!pass_end) { #if defined (ACE_HAS_LAZY_MAP_MANAGER) // Start here. this->next_ = this->map_man_->occupied_list_.next (); while (1) { // Stop if we reach the end. if (this->done ()) break; // Break if we find a non-free slot. if (!this->map_man_->search_structure_[this->next_].free_) { break; } // Go to the next item in the list. this->next_ = this->map_man_->search_structure_[this->next_].next (); } #else this->next_ = this->map_man_->occupied_list_.next (); #endif /* ACE_HAS_LAZY_MAP_MANAGER */ } }
| int ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::advance | ( | void | ) | [inline] |
Move forward by one element in the set. Returns 0 when all the items in the set have been seen, else 1.
Definition at line 612 of file Map_Manager.inl.
{
return this->forward_i ();
}
| void ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::dump | ( | void | ) | const |
Dump the state of an object.
Definition at line 684 of file Map_Manager.cpp.
{
#if defined (ACE_HAS_DUMP)
this->dump_i ();
#endif /* ACE_HAS_DUMP */
}
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator++ | ( | int | ) | [inline] |
Postfix advance.
Definition at line 627 of file Map_Manager.inl.
{
ACE_Map_Const_Iterator<EXT_ID, INT_ID, ACE_LOCK> retv (*this);
++*this;
return retv;
}
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > & ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator++ | ( | void | ) | [inline] |
Prefix advance.
Definition at line 619 of file Map_Manager.inl.
{
this->forward_i ();
return *this;
}
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator-- | ( | int | ) | [inline] |
Postfix reverse.
Definition at line 644 of file Map_Manager.inl.
{
ACE_Map_Const_Iterator<EXT_ID, INT_ID, ACE_LOCK> retv (*this);
--*this;
return retv;
}
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > & ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator-- | ( | void | ) | [inline] |
Prefix reverse.
Definition at line 636 of file Map_Manager.inl.
{
this->reverse_i ();
return *this;
}
| ACE_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK >::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
Reimplemented from ACE_Map_Const_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >.
Definition at line 654 of file Map_Manager.h.
1.7.0