/* -*- C++ -*- */ // $Id$ // ============================================================================ // // = LIBRARY // ace // // = FILENAME // Map_Manager.h // // = AUTHOR // Doug Schmidt // // ============================================================================ #if !defined (ACE_MAP_MANAGER_H) #define ACE_MAP_MANAGER_H #include "ace/ACE.h" // Forward declaration. class ACE_Allocator; template class ACE_Map_Entry { // = TITLE // An entry in the Map. public: EXT_ID ext_id_; // Key used to look up an entry. INT_ID int_id_; // The contents of the entry itself. int is_free_; // Keeps track whether entry is free or not. # if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) ~ACE_Map_Entry (void); // We need this destructor to keep some compilers from complaining. // It's just a no-op, however. # endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ void dump (void) const; // Dump the state of an object. ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. }; // Forward decl. template class ACE_Map_Iterator_Base; // Forward decl. template class ACE_Map_Iterator; // Forward decl. template class ACE_Map_Reverse_Iterator; template class ACE_Map_Manager { // = TITLE // Define a map abstraction that associates s with // s. // // = DESCRIPTION // The must support . This constraint can // be alleviated via template specialization, as shown in the // $ACE_ROOT/tests/Conn_Test.cpp test. // // This class uses an to allocate memory. The // user can make this a persistant class by providing an // with a persistable memory pool. // // This implementation of a map uses an array, which is searched // linearly. For more efficient searching you should use the // . public: friend class ACE_Map_Iterator_Base; friend class ACE_Map_Iterator; friend class ACE_Map_Reverse_Iterator; // = Traits. typedef EXT_ID KEY; typedef INT_ID VALUE; typedef ACE_Map_Entry ENTRY; typedef ACE_Map_Iterator ITERATOR; typedef ACE_Map_Reverse_Iterator REVERSE_ITERATOR; typedef ACE_Map_Iterator iterator; typedef ACE_Map_Reverse_Iterator reverse_iterator; // = Initialization and termination methods. ACE_Map_Manager (ACE_Allocator *alloc = 0); // Initialize a with the . ACE_Map_Manager (size_t size, ACE_Allocator *alloc = 0); // Initialize a with entries. int open (size_t length = ACE_DEFAULT_MAP_SIZE, ACE_Allocator *alloc = 0); // Initialize a with size . int close (void); // Close down a and release dynamically allocated // resources. ~ACE_Map_Manager (void); // Close down a and release dynamically allocated // resources. int trybind (const EXT_ID &ext_id, INT_ID &int_id); // Associate with if and only if is not // in the map. If is already in the map then the // parameter is overwritten with the existing value in the map // Returns 0 if a new entry is bound successfully, returns 1 if an // attempt is made to bind an existing entry, and returns -1 if // failures occur. int bind (const EXT_ID &ext_id, const INT_ID &int_id); // Associate with . If is already in the // map then the is not changed. Returns 0 if a new // entry is bound successfully, returns 1 if an attempt is made to // bind an existing entry, and returns -1 if failures occur. int rebind (const EXT_ID &ext_id, const INT_ID &int_id, EXT_ID &old_ext_id, INT_ID &old_int_id); // Associate with . If is not in the // map then behaves just like . Otherwise, store the old // values of and into the "out" parameters and // rebind the new parameters. This is very useful if you need to // have an atomic way of updating and you also need // full control over memory allocation. Returns 0 if a new entry is // bound successfully, returns 1 if an existing entry was rebound, // and returns -1 if failures occur. int find (const EXT_ID &ext_id, INT_ID &int_id); // Locate and pass out parameter via . If found, // returns and non-negative integer; returns -1 if not found. int find (const EXT_ID &ext_id); // Returns a non-negative integer if the is in the mapping, otherwise -1. int unbind (const EXT_ID &ext_id); // Unbind (remove) the from the map. Don't return the // to the caller (this is useful for collections where the // s are *not* dynamically allocated...) Returns 0 if // successful, else -1. int unbind (const EXT_ID &ext_id, INT_ID &int_id); // Break any association of . Returns the value of // in case the caller needs to deallocate memory. Returns 0 if // successful, else -1. size_t current_size (void); // Return the current size of the map. size_t total_size (void); // Return the total size of the map. void dump (void) const; // Dump the state of an object. // = STL styled iterator factory functions. ACE_Map_Iterator begin (void); ACE_Map_Iterator end (void); // Return forward iterator. ACE_Map_Reverse_Iterator rbegin (void); ACE_Map_Reverse_Iterator rend (void); // Return reverse iterator. ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. protected: void free_search_structure (void); // Explicitly call the destructors and free up the search_structure_. ACE_Map_Entry *search_structure_; // Implementation of the Map (should use hashing instead of // array...). // = The following methods do the actual work. // These methods assume that the locks are held by the private // methods. int bind_i (const EXT_ID &ext_id, const INT_ID &int_id); // Performs the binding of to . Must be // called with locks held. int rebind_i (const EXT_ID &ext_id, const INT_ID &int_id, EXT_ID &old_ext_id, INT_ID &old_int_id); // Performs a rebinding of to . Must be called // with locks held. int find_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs a find of using as the key. Must be // called with locks held. int find_i (const EXT_ID &ext_id); // Performs a find using as the key. Must be called with // locks held. int unbind_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs an unbind of using as the key. Must // be called with locks held. int unbind_i (const EXT_ID &ext_id); // Performs an unbind using as the key. Must be called // with locks held. int trybind_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs a conditional bind of using as the // key. Must be called with locks held. int resize_i (size_t size); // Resize the map. Must be called with locks held. int close_i (void); // Close down a . Must be called with // locks held. ACE_Allocator *allocator_; // Pointer to a memory allocator. ACE_LOCK lock_; // Synchronization variable for the MT_SAFE . int equal (const EXT_ID &id1, const EXT_ID &id2); // Returns 1 if == , else 0. This is defined as a // separate method to facilitate template specialization. private: int shared_find (const EXT_ID &ext_id, int &first_free); // Locate an entry, keeping track of the first free slot. Must be // called with locks held. int shared_find (const EXT_ID &ext_id); // Locate an entry. Must be called with locks held. int shared_bind (const EXT_ID &ext_id, const INT_ID &int_id, int first_free); // Bind an entry. Must be called with locks held. int shared_unbind (const EXT_ID &ext_id); // Unbind (remove) the from the map. Keeps track of where // the was found so that this->unbind (, ) // can return it to the caller. Must be called with locks held. size_t total_size_; // Total number of elements in this->search_structure_. size_t cur_size_; // Index of highest active elementin this->search_structure_. // = Disallow these operations. ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Map_Manager &)) ACE_UNIMPLEMENTED_FUNC (ACE_Map_Manager (const ACE_Map_Manager &)) }; template class ACE_Map_Iterator_Base { // = TITLE // Iterator for the ACE_Map_Manager. public: // = Initialization method. ACE_Map_Iterator_Base (ACE_Map_Manager &mm, int head); // Contructor. If head != 0, the iterator constructed is positioned // at the head of the map, it is positioned at the end otherwise. // = Iteration methods. int next (ACE_Map_Entry *&next_entry); // Pass back the next that hasn't been seen in the Set. // Returns 0 when all items have been seen, else 1. int done (void) const; // Returns 1 when all items have been seen, else 0. ACE_Map_Entry& operator* (void); // Returns a reference to the interal element is pointing to. ACE_Map_Manager& map (void); // Returns reference the Map_Manager that is being iterated // over. int operator== (const ACE_Map_Iterator_Base &) const; int operator!= (const ACE_Map_Iterator_Base &) const; // Check if two iterators point to the same position ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. protected: int forward_i (void); // 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. int reverse_i (void); // 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. void dump_i (void) const; // Dump the state of an object. ACE_Map_Manager *map_man_; // Map we are iterating over. ssize_t next_; // Keeps track of how far we've advanced... }; template class ACE_Map_Iterator : public ACE_Map_Iterator_Base { // = TITLE // Iterator for the ACE_Map_Manager. public: // = Initialization method. ACE_Map_Iterator (ACE_Map_Manager &mm, int tail = 0); // = Iteration methods. int advance (void); // Move forward by one element in the set. Returns 0 when all the // items in the set have been seen, else 1. void dump (void) const; // Dump the state of an object. // = STL styled iteration, compare, and reference functions. ACE_Map_Iterator operator++ (void); // Postfix advance. ACE_Map_Iterator& operator++ (int); // Prefix advance. ACE_Map_Iterator operator-- (void); // Postfix advance. ACE_Map_Iterator& operator-- (int); // Prefix advance. ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. }; template class ACE_Map_Reverse_Iterator : public ACE_Map_Iterator_Base { // = TITLE // Reverse Iterator for the ACE_Map_Manager. public: // = Initialization method. ACE_Map_Reverse_Iterator (ACE_Map_Manager &mm, int head = 0); // = Iteration methods. int advance (void); // Move forward by one element in the set. Returns 0 when all the // items in the set have been seen, else 1. void dump (void) const; // Dump the state of an object. // = STL styled iteration, compare, and reference functions. ACE_Map_Reverse_Iterator operator++ (void); // Postfix advance. ACE_Map_Reverse_Iterator& operator++ (int); // Prefix advance. ACE_Map_Reverse_Iterator operator-- (void); // Postfix advance. ACE_Map_Reverse_Iterator& operator-- (int); // Prefix advance. ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. }; #if defined (__ACE_INLINE__) #include "ace/Map_Manager.i" #endif /* __ACE_INLINE__ */ #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) #include "ace/Map_Manager.cpp" #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ #if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) #pragma implementation ("Map_Manager.cpp") #endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ #endif /* ACE_MAP_MANAGER_H */