C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/util/TreeMap.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_TREE_MAP_HPP
00008 #define COH_TREE_MAP_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/AbstractMap.hpp"
00013 #include "coherence/util/Comparator.hpp"
00014 #include "coherence/util/Map.hpp"
00015 #include "coherence/util/NavigableMap.hpp"
00016 #include "coherence/util/SortedMap.hpp"
00017 
00018 COH_OPEN_NAMESPACE2(coherence,util)
00019 
00020 
00021 /**
00022 * A tree map implementation. Stored as an AVL tree. Implementation is based on
00023 * the public domain implementation by Julienne Walker. This implementation is
00024 * not thread-safe.
00025 *
00026 * @see <a href="http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_avl.aspx">
00027 *      Implementation by Julienne Walker</a>
00028 *
00029 * @author tb  2009.02.22
00030 */
00031 class COH_EXPORT TreeMap
00032     : public cloneable_spec<TreeMap,
00033         extends<AbstractMap>,
00034         implements<NavigableMap> >
00035     {
00036     friend class factory<TreeMap>;
00037 
00038     // ----- constructors ---------------------------------------------------
00039 
00040     protected:
00041         /**
00042         * @internal
00043         */
00044         TreeMap();
00045 
00046         /**
00047         * @internal
00048         */
00049         TreeMap(Comparator::View vComparator);
00050 
00051         /**
00052         * @internal
00053         */
00054         TreeMap(const TreeMap& that);
00055 
00056         /**
00057         * @internal
00058         */
00059         virtual ~TreeMap();
00060 
00061 
00062     // ----- Map interface --------------------------------------------------
00063 
00064     public:
00065 
00066         /**
00067         * {@inheritDoc}
00068         */
00069         virtual size32_t size() const;
00070 
00071         /**
00072         * {@inheritDoc}
00073         */
00074         virtual bool isEmpty() const;
00075 
00076         /**
00077         * {@inheritDoc}
00078         */
00079         virtual bool containsKey(Object::View vKey) const;
00080 
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual Object::Holder get(Object::View vKey) const;
00085 
00086         /**
00087         * {@inheritDoc}
00088         */
00089         using Map::get;
00090 
00091         /**
00092         * {@inheritDoc}
00093         */
00094         virtual Object::Holder put(Object::View vKey, Object::Holder ohValue);
00095 
00096         /**
00097         * {@inheritDoc}
00098         */
00099         virtual Object::Holder remove(Object::View vKey);
00100         using Map::remove;
00101 
00102         /**
00103         * {@inheritDoc}
00104         */
00105         virtual void clear();
00106 
00107         /**
00108         * {@inheritDoc}
00109         */
00110         virtual Set::View entrySet() const;
00111 
00112         /**
00113         * {@inheritDoc}
00114         */
00115         virtual Set::Handle entrySet();
00116 
00117 
00118     // ----- SortedMap interface --------------------------------------------
00119 
00120     public:
00121         /**
00122         * {@inheritDoc}
00123         */
00124         virtual Comparator::View comparator() const;
00125 
00126         /**
00127         * {@inheritDoc}
00128         */
00129         virtual Object::View firstKey() const;
00130 
00131         /**
00132         * {@inheritDoc}
00133         */
00134         virtual Object::View lastKey() const;
00135 
00136         /**
00137         * {@inheritDoc}
00138         */
00139         virtual SortedMap::Handle headMap(Object::View vToKey);
00140 
00141         /**
00142         * {@inheritDoc}
00143         */
00144         virtual SortedMap::View headMap(Object::View vToKey) const;
00145 
00146         /**
00147         * {@inheritDoc}
00148         */
00149         virtual SortedMap::Handle subMap(Object::View vFromKey,
00150                 Object::View vToKey);
00151 
00152         /**
00153         * {@inheritDoc}
00154         */
00155         virtual SortedMap::View subMap(Object::View vFromKey,
00156                 Object::View vToKey) const;
00157 
00158         /**
00159         * {@inheritDoc}
00160         */
00161         virtual SortedMap::Handle tailMap(Object::View vFromKey);
00162 
00163         /**
00164         * {@inheritDoc}
00165         */
00166         virtual SortedMap::View tailMap(Object::View vFromKey) const;
00167 
00168 
00169     // ----- NavigableMap interface -----------------------------------------
00170 
00171     public:
00172         /**
00173         * {@inheritDoc}
00174         */
00175         virtual Object::View ceilingKey(Object::View vKey) const;
00176 
00177         /**
00178          * {@inheritDoc}
00179          */
00180         virtual Object::View floorKey(Object::View vKey) const;
00181 
00182         /**
00183         * {@inheritDoc}
00184         */
00185         virtual Object::View higherKey(Object::View vKey) const;
00186 
00187         /**
00188          * {@inheritDoc}
00189          */
00190         virtual Object::View lowerKey(Object::View vKey) const;
00191 
00192         /**
00193         * {@inheritDoc}
00194         */
00195         virtual Map::Entry::Holder pollFirstEntry();
00196 
00197         /**
00198         * {@inheritDoc}
00199         */
00200         virtual Map::Entry::Holder pollLastEntry();
00201 
00202         /**
00203         * {@inheritDoc}
00204         */
00205         virtual NavigableMap::Handle headMap(Object::View vToKey, bool toInclusive);
00206 
00207         /**
00208         * {@inheritDoc}
00209         */
00210         virtual NavigableMap::View headMap(Object::View vToKey, bool toInclusive) const;
00211 
00212         /**
00213         * {@inheritDoc}
00214         */
00215         virtual NavigableMap::Handle subMap(Object::View vFromKey, bool fromInclusive,
00216                 Object::View vToKey, bool toInclusive);
00217 
00218         /**
00219         * {@inheritDoc}
00220         */
00221         virtual NavigableMap::View subMap(Object::View vFromKey, bool fromInclusive,
00222                 Object::View vToKey, bool toInclusive) const;
00223 
00224         /**
00225         * {@inheritDoc}
00226         */
00227         virtual NavigableMap::Handle tailMap(Object::View vFromKey, bool fromInclusive);
00228 
00229         /**
00230         * {@inheritDoc}
00231         */
00232         virtual NavigableMap::View tailMap(Object::View vFromKey, bool fromInclusive) const;
00233 
00234 
00235         // ----- inner class: Node ----------------------------------------------
00236 
00237     public:
00238         /**
00239         * An AVL tree node. This class is used only within the
00240         * TreeMap class and its derivations.
00241         */
00242         class COH_EXPORT Node
00243             : public cloneable_spec<Node,
00244                 extends<Object>,
00245                 implements<Map::Entry> >
00246         {
00247         friend class factory<Node>;
00248 
00249         // ----- constructors -------------------------------------------
00250 
00251         protected:
00252             /**
00253             * @internal
00254             */
00255             Node(Object::View ovKey);
00256 
00257             /**
00258             * @internal
00259             */
00260             Node(const Node& that);
00261 
00262         // ----- Node interface -----------------------------------------
00263 
00264         protected:
00265             /**
00266             * Adopt a child node
00267             *
00268             * @param hChild  the child to adopt
00269             * @param fLeft   the position of the child
00270             */
00271             virtual void adopt(Node::Handle hChild, bool fLeft);
00272 
00273             /**
00274             * Get the value associated with the node.
00275             *
00276             * @return the value associated with the node.
00277             */
00278             virtual Object::Holder getValue() const;
00279 
00280             /**
00281             * Set the value associated with the node.
00282             *
00283             * @param ohValue the value assocaited with the node
00284             *
00285             * @return the old value associated with the node
00286             */
00287             virtual Object::Holder setValue(Object::Holder ohValue);
00288 
00289             /**
00290             * Determine if this node is a part of a 2-3-4 leaf node
00291             * (i.e. at least one NULL child).
00292             *
00293             * @return true if this node is a leaf
00294             */
00295             virtual bool isLeaf() const;
00296 
00297             /**
00298             * Unlink this element and all sub elements.
00299             */
00300             virtual void dissolve();
00301 
00302         // ----- Map::Entry interface -----------------------------------
00303 
00304         public:
00305             /**
00306             * Return the key corresponding to this entry.
00307             *
00308             * @return the key corresponding to this entry
00309             */
00310             virtual Object::View getKey() const;
00311 
00312             /**
00313             * Return the value corresponding to this entry.
00314             *
00315             * @return the value corresponding to this entry
00316             */
00317             virtual Object::Holder getValue();
00318 
00319         // ----- Object interface ---------------------------------------
00320 
00321         public:
00322             /**
00323             * {@inheritDoc}
00324             */
00325             virtual TypedHandle<const String> toString() const;
00326 
00327             /**
00328             * {@inheritDoc}
00329             */
00330             virtual void onInit();
00331 
00332         // ----- data members -------------------------------------------
00333 
00334         public:
00335             /**
00336             * The key of the node. The key, once set, is considered
00337             * immutable.
00338             */
00339             FinalView<Object> f_vKey;
00340 
00341             /**
00342             * The value of the node.
00343             */
00344             MemberHolder<Object>  m_ohValue;
00345 
00346             /**
00347             * The AVL balance factor of the sub-tree.
00348             */
00349             int32_t nBalance;
00350 
00351             /**
00352             * The parent of this node.
00353             */
00354             MemberHandle<Node> m_hParent;
00355 
00356             /**
00357             * The left child of this node.
00358             */
00359             MemberHandle<Node> m_hLeft;
00360 
00361             /**
00362             * The right child of this node.
00363             */
00364             MemberHandle<Node> m_hRight;
00365 
00366         // ----- friends --------------------------------------------
00367 
00368         friend class TreeMap;
00369         };
00370 
00371 
00372     // ----- helper methods -------------------------------------------------
00373 
00374     public:
00375         /**
00376         * Remove the specified node from the tree.
00377         *
00378         * The supplied node must be part of the tree.
00379         *
00380         * @param hNode  the node to remove
00381         */
00382         virtual void removeNode(Node::Handle hNode);
00383 
00384         /**
00385         * Determine if Node is the head of the tree.
00386         *
00387         * @param vNode  the node to compare to the head of the tree
00388         *
00389         * @return true if the passed in Node is the head of the tree
00390         */
00391         virtual bool isHead(Node::View vNode) const;
00392 
00393         /**
00394         * Return an Iterator over this tree map.
00395         *
00396         * @return an Iterator over this tree map
00397         */
00398         virtual Iterator::Handle iterator() const;
00399 
00400         /**
00401         * Return an Iterator over this tree map.
00402         *
00403         * @return an Iterator over this tree map
00404         */
00405         virtual Muterator::Handle iterator();
00406 
00407         /**
00408         * Compare two Objects. If both Objects are comparable with this tree
00409         * map's Comparator, return < 0, 0 or > 0 if the first Object is less
00410         * than, equal to, or greater than the second Object.
00411         *
00412         * @param v1  the first object to compare
00413         * @param v2  the second object to compare
00414         *
00415         * @return  < 0, 0 or > 0 if the first Object is less than,
00416         * equal to, or greater than the second Object
00417         */
00418         virtual int32_t compare(Object::View v1, Object::View v2) const;
00419 
00420         /**
00421         * Find the specified key and return its node.
00422         *
00423         * @param vKey  the key to look for
00424         *
00425         * @return the node containing the index or NULL if the index is not
00426         *         in the TreeMap
00427         */
00428         virtual Node::Handle find(Object::View vKey) const;
00429 
00430         /**
00431         * Get the head node.
00432         *
00433         * @return this tree map's head node
00434         */
00435         virtual Node::Handle getHeadNode() const;
00436 
00437     protected:
00438 
00439         /**
00440         * Replace one node with another.
00441         *
00442         * @param hNodeA  the node to be unlinked
00443         * @param hNodeB  the node to be linked in nodeA's place; may be NULL
00444         *
00445         * @return nodeB's new parent
00446         */
00447         virtual Node::Handle replace(Node::Handle hNodeA,
00448                 Node::Handle hNodeB);
00449         using Map::replace;
00450 
00451         /**
00452         * Rotate a node in a given direction.
00453         *
00454         * @param hNode  the node to rotate
00455         * @param fLeft  the rotation direction
00456         *
00457         * @return the node's new parent (former child)
00458         */
00459         virtual Node::Handle rotate(Node::Handle hNode, bool fLeft);
00460 
00461         /**
00462         * Double rotate a node in a given direction.
00463         *
00464         * @param hNode  the node to rotate
00465         * @param fLeft  the final rotation direction
00466         *
00467         * @return the node's new parent (former grand child)
00468         */
00469         virtual Node::Handle doubleRotate(Node::Handle hNode,
00470                 bool fLeft);
00471 
00472         /**
00473         * Adjust the balance factor of a node and its descendants prior to a
00474         * double rotation.
00475         *
00476         * @param hNode   the node which was rotated
00477         * @param hChild  the child to adjust
00478         * @param nBal    the balance adjustment
00479         */
00480         virtual void adjustDoubleBalance(Node::Handle hNode,
00481                 Node::Handle hChild, int32_t nBal);
00482 
00483         /**
00484         * Find the point at which a Node with the specified index would be
00485         * inserted.
00486         *
00487         * If the tree is empty then null is returned. If the index already
00488         * exists then the existing Node is returned, otherwise the Node which
00489         * will be the parent of the new Node is returned.
00490         *
00491         * @param ovKey  the key of the new node
00492         *
00493         * @return NULL, node, or parent
00494         */
00495         virtual Node::Handle findInsertionPoint(Object::View ovKey) const;
00496 
00497         /**
00498         * Insert a node into a tree and re-balance.
00499         *
00500         * @param hParent  the location at which to insert the node
00501         * @param hChild   the node to insert
00502         */
00503         virtual void balancedInsertion(Node::Handle hParent,
00504                 Node::Handle hChild);
00505 
00506         /**
00507         * Re-balance the tree following the removal of a node.
00508         *
00509         * @param hPruned      the node whose sub-tree shrunk
00510         * @param fPrunedLeft  the side on which the sub-tree shrunk
00511         */
00512         virtual void balancePostRemove(Node::Handle hPruned,
00513                 bool fPrunedLeft);
00514 
00515         /**
00516         * Create a new Node
00517         *
00518         * @param vKey     the key of the new Node
00519         * @param ohValue  the value of the new Node
00520         *
00521         * @return the newly instantiated Node
00522         */
00523         virtual Node::Handle instantiateNode(Object::View vKey,
00524                 Object::Holder ohValue);
00525 
00526 
00527     // ----- data members ---------------------------------------------------
00528 
00529     protected:
00530         /**
00531         * The number of nodes in the tree. This can be determined by
00532         * iterating through the tree, but by keeping the size cached, certain
00533         * operations that need the size of the tree up front are much more
00534         * efficient.
00535         */
00536         size32_t m_nSize;
00537 
00538         /**
00539         * The first node of the tree (or NULL if the tree is empty).  The
00540         * first node is referred to as the "head" or the "root" node.
00541         */
00542         mutable MemberHandle<Node> m_hHead;
00543 
00544         /**
00545         * The comparator used to maintain order in this tree map, or
00546         * NULL if it uses the natural ordering of its keys.
00547         */
00548         FinalView<Comparator> f_vComparator;
00549     };
00550 
00551 COH_CLOSE_NAMESPACE2
00552 
00553 #endif // COH_TREE_MAP_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.