00001
00002
00003
00004
00005
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
00019
00020
00021
00022
00023 class COH_EXPORT IdentityHashMap
00024 : public cloneable_spec<IdentityHashMap,
00025 extends<SafeHashMap> >
00026 {
00027 friend class factory<IdentityHashMap>;
00028
00029
00030
00031 protected:
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 IdentityHashMap(size32_t cInitialBuckets = 17,
00047 float32_t flLoadFactor = 1.0F,
00048 float32_t flGrowthRate = 3.0F);
00049
00050
00051
00052
00053 IdentityHashMap(const IdentityHashMap& that);
00054
00055
00056
00057
00058 protected:
00059
00060
00061
00062 virtual SafeHashMap::Entry::Handle instantiateEntry(Object::View vKey,
00063 Object::Holder ohValue, size32_t nHash);
00064
00065
00066
00067
00068 virtual SafeHashMap::Entry::Handle instantiateEntry(
00069 SafeHashMap::Entry::View vEntry);
00070
00071
00072
00073
00074 virtual size32_t getHashCode(Object::View vKey) const;
00075
00076
00077
00078 protected:
00079
00080
00081
00082 class COH_EXPORT Entry
00083 : public cloneable_spec<Entry,
00084 extends<SafeHashMap::Entry> >
00085 {
00086 friend class factory<Entry>;
00087
00088
00089
00090 protected:
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 Entry(Object::View vKey, Object::Holder ohValue,
00101 size32_t nHash);
00102
00103
00104
00105
00106 Entry(const Entry& that);
00107
00108
00109
00110
00111
00112
00113 Entry(Entry::View vThat);
00114
00115
00116
00117 protected:
00118
00119
00120
00121 virtual bool isKeyEqual(Object::View vKey) const;
00122 };
00123 };
00124
00125 COH_CLOSE_NAMESPACE2
00126
00127 #endif // COH_IDENTITY_HASH_MAP_HPP