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

F79659-03

coherence/util/IdentityHashMap.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_IDENTITY_HASH_MAP_HPP
00008 #define COH_IDENTITY_HASH_MAP_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/SafeHashMap.hpp"
00013 
00014 COH_OPEN_NAMESPACE2(coherence,util)
00015 
00016 
00017 /**
00018 * IdentityHashMap is a HashMap implementation where key equality is based
00019 * on reference rather then value equality.
00020 *
00021 * @author mf  2008.05.27
00022 */
00023 class COH_EXPORT IdentityHashMap
00024     : public cloneable_spec<IdentityHashMap,
00025         extends<SafeHashMap> >
00026     {
00027     friend class factory<IdentityHashMap>;
00028 
00029     // ----- constructors ---------------------------------------------------
00030 
00031     protected:
00032         /**
00033         * Construct a thread-safe weak hash map using the specified settings.
00034         *
00035         * @param cInitialBuckets  the initial number of hash buckets,
00036         *                         0 &lt; n
00037         * @param flLoadFactor     the acceptable load factor before resizing
00038         *                         occurs, 0 &lt; n, such that a load factor
00039         *                         of 1.0 causes resizing when the number of
00040         *                         entries exceeds the number of buckets
00041         * @param flGrowthRate     the rate of bucket growth when a resize
00042         *                         occurs, 0 &lt; n, such that a growth rate
00043         *                         of 1.0 will double the number of buckets:
00044         *                         bucketcount = bucketcount * (1 + growthrate)
00045         */
00046         IdentityHashMap(size32_t cInitialBuckets = 17,
00047                 float32_t flLoadFactor = 1.0F,
00048                 float32_t flGrowthRate = 3.0F);
00049 
00050         /**
00051         * Copy Constructor.
00052         */
00053         IdentityHashMap(const IdentityHashMap& that);
00054 
00055 
00056     // ----- SafeHashMap interface ------------------------------------------
00057 
00058     protected:
00059         /**
00060         * {@inheritDoc}
00061         */
00062         virtual SafeHashMap::Entry::Handle instantiateEntry(Object::View vKey,
00063                 Object::Holder ohValue, size32_t nHash);
00064 
00065         /**
00066         * {@inheritDoc}
00067         */
00068         virtual SafeHashMap::Entry::Handle instantiateEntry(
00069                 SafeHashMap::Entry::View vEntry);
00070 
00071         /**
00072         * {@inheritDoc}
00073         */
00074         virtual size32_t getHashCode(Object::View vKey) const;
00075 
00076     // ----- inner class: Entry ---------------------------------------------
00077 
00078     protected:
00079         /**
00080         * A Map::Entry where key equality is based on reference equality.
00081         */
00082         class COH_EXPORT Entry
00083             : public cloneable_spec<Entry,
00084                 extends<SafeHashMap::Entry> >
00085             {
00086             friend class factory<Entry>;
00087 
00088             // ----- constructors -------------------------------------
00089 
00090             protected:
00091                 /**
00092                 * Create a new Map::Entry.
00093                 *
00094                 * @param vKey     the associated key
00095                 * @param ohValue  the associated value
00096                 * @param hHash    the associated hash code
00097                 *
00098                 * @return a new Map::Entry
00099                 */
00100                 Entry(Object::View vKey, Object::Holder ohValue,
00101                         size32_t nHash);
00102 
00103                 /**
00104                 * Copy constructor
00105                 */
00106                 Entry(const Entry& that);
00107 
00108                 /**
00109                 * Copy an Entry.
00110                 *
00111                 * @param vThat  the entry to copy
00112                 */
00113                 Entry(Entry::View vThat);
00114 
00115             // ----- SafeHashMap::Entry interface -----------------------
00116 
00117             protected:
00118                 /**
00119                 * {@inheritDoc}
00120                 */
00121                 virtual bool isKeyEqual(Object::View vKey) const;
00122             };
00123     };
00124 
00125 COH_CLOSE_NAMESPACE2
00126 
00127 #endif // COH_IDENTITY_HASH_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.