#include <Map_Manager.h>
Inheritance diagram for ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >:

Public Member Functions | |
| ACE_Map_Iterator_Base (ACE_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > &mm) | |
| int | next (ACE_Map_Entry< EXT_ID, INT_ID > *&next_entry) const |
| int | done (void) const |
| Returns 1 when all items have been seen, else 0. | |
| ACE_Map_Entry< EXT_ID, INT_ID > & | operator * (void) const |
Returns a reference to the interal element this is pointing to. | |
| ACE_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > & | map (void) |
| bool | operator== (const ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK > &) const |
| Check if two iterators point to the same position. | |
| bool | operator!= (const ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK > &) const |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
Protected Member Functions | |
| int | forward_i (void) |
| int | reverse_i (void) |
| void | dump_i (void) const |
| Dump the state of an object. | |
Protected Attributes | |
| ACE_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > * | map_man_ |
| Map we are iterating over. | |
| ACE_UINT32 | next_ |
| Keeps track of how far we've advanced... | |
This class factors out common code from its templatized subclasses.
Definition at line 453 of file Map_Manager.h.
|
||||||||||
|
Contructor. If head != 0, the iterator constructed is positioned at the head of the map, it is positioned at the end otherwise. Definition at line 282 of file Map_Manager.inl.
|
|
||||||||||
|
Returns 1 when all items have been seen, else 0.
Definition at line 301 of file Map_Manager.inl. Referenced by ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >::ACE_Map_Iterator(), ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >::ACE_Map_Reverse_Iterator(), ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::forward_i(), and ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::reverse_i().
|
|
||||||||||
|
Dump the state of an object.
Definition at line 624 of file Map_Manager.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TEXT, and LM_DEBUG. Referenced by ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >::dump(), and ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >::dump().
|
|
||||||||||
|
Move forward by one element in the set. Returns 0 when there's no more item in the set after the current items, else 1. Definition at line 307 of file Map_Manager.inl. References ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::done(). Referenced by ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >::advance(), ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator++(), and ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator--().
00308 {
00309
00310 #if defined (ACE_HAS_LAZY_MAP_MANAGER)
00311
00312 while (1)
00313 {
00314 // Go to the next item in the list.
00315 this->next_ = this->map_man_->search_structure_[this->next_].next ();
00316
00317 // Stop if we reach the end.
00318 if (this->done ())
00319 break;
00320
00321 // Break if we find a non-free slot.
00322 if (!this->map_man_->search_structure_[this->next_].free_)
00323 {
00324 break;
00325 }
00326 }
00327
00328 #else
00329
00330 this->next_ = this->map_man_->search_structure_[this->next_].next ();
00331
00332 #endif /* ACE_HAS_LAZY_MAP_MANAGER */
00333
00334 return this->next_ != this->map_man_->occupied_list_id ();
00335 }
|
|
||||||||||
|
Returns reference the Map_Manager that is being iterated over. Definition at line 370 of file Map_Manager.inl.
00371 {
00372 return *this->map_man_;
00373 }
|
|
||||||||||
|
Pass back the next that hasn't been seen in the Set. Returns 0 when all items have been seen, else 1. Definition at line 289 of file Map_Manager.inl. Referenced by ACE_Based_Pointer_Repository::find(), ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::operator *(), and ACE_Based_Pointer_Repository::unbind().
|
|
||||||||||
|
Returns a reference to the interal element
Definition at line 645 of file Map_Manager.cpp. References ACE_ASSERT, and ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::next().
00646 {
00647 // @@ This function should be inlined. We moved it here to avoid a
00648 // compiler bug in SunCC 4.2. Once we know the correct patch to fix
00649 // the compiler problem, it should be moved back to .i file again.
00650 ACE_Map_Entry<EXT_ID, INT_ID> *retv = 0;
00651
00652 int result = this->next (retv);
00653 ACE_ASSERT (result != 0);
00654 ACE_UNUSED_ARG (result);
00655
00656 return *retv;
00657 }
|
|
||||||||||
|
Definition at line 383 of file Map_Manager.inl. References ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::operator==().
00384 {
00385 return !this->operator== (rhs);
00386 }
|
|
||||||||||
|
Check if two iterators point to the same position.
Definition at line 376 of file Map_Manager.inl. References ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::map_man_, and ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::next_. Referenced by ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::operator!=().
|
|
||||||||||
|
Move backware by one element in the set. Returns 0 when there's no more item in the set before the current item, else 1. Definition at line 338 of file Map_Manager.inl. References ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::done(). Referenced by ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >::advance(), ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator++(), and ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >::operator--().
00339 {
00340
00341 #if defined (ACE_HAS_LAZY_MAP_MANAGER)
00342
00343 while (1)
00344 {
00345 // Go to the prev item in the list.
00346 this->next_ = this->map_man_->search_structure_[this->next_].prev ();
00347
00348 // Stop if we reach the end.
00349 if (this->done ())
00350 break;
00351
00352 // Break if we find a non-free slot.
00353 if (!this->map_man_->search_structure_[this->next_].free_)
00354 {
00355 break;
00356 }
00357 }
00358
00359 #else
00360
00361 this->next_ = this->map_man_->search_structure_[this->next_].prev ();
00362
00363 #endif /* ACE_HAS_LAZY_MAP_MANAGER */
00364
00365 return this->next_ != this->map_man_->occupied_list_id ();
00366 }
|
|
|||||
|
Declare the dynamic allocation hooks.
Reimplemented in ACE_Map_Iterator< EXT_ID, INT_ID, ACE_LOCK >, ACE_Map_Reverse_Iterator< EXT_ID, INT_ID, ACE_LOCK >, ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex >, ACE_Map_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex >, ACE_Map_Reverse_Iterator< KEY, VALUE, ACE_Null_Mutex >, and ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex >. Definition at line 482 of file Map_Manager.h. |
|
|||||
|
Map we are iterating over.
Definition at line 497 of file Map_Manager.h. Referenced by ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::operator==(). |
|
|||||
|
Keeps track of how far we've advanced...
Definition at line 500 of file Map_Manager.h. Referenced by ACE_Map_Iterator_Base< EXT_ID, INT_ID, ACE_LOCK >::operator==(). |
1.3.6