|
org.codehaus.gpars | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractMap groovyx.gpars.extra166y.CustomConcurrentHashMap
public class CustomConcurrentHashMap extends java.util.AbstractMap
A java.util.ConcurrentMap
supporting user-defined
equivalence comparisons, soft, weak, or strong keys and values, and
user-supplied computational methods for setting and updating
values. In particular:
MappingFunctions
that may be
used in method CustomConcurrentHashMap#computeIfAbsent#computeIfAbsent to atomically
establish a computed value, along with
RemappingFunctions
that can be used in method
CustomConcurrentHashMap#compute#compute to atomically
replace values.
int
keys and/or values, that may be more space-efficient
identityMap = new CustomConcurrentHashMap<Person,Salary>
(STRONG, IDENTITY, STRONG, EQUALS, 0);
weakKeyMap = new CustomConcurrentHashMap<Person,Salary>
(WEAK, IDENTITY, STRONG, EQUALS, 0);
.weakKeys());
byNameMap = new CustomConcurrentHashMap<Person,Salary>
(STRONG,
new Equivalence<Person>() {
public boolean equal(Person k, Object x) {
return x instanceof Person && k.name.equals(((Person)x).name);
public int hash(Object x) {
return (x instanceof Person) ? ((Person)x).name.hashCode() : 0;
}
},
STRONG, EQUALS, 0);
}
The first usage above provides a replacement for java.util.IdentityHashMap, and the second a replacement for java.util.WeakHashMap, adding concurrency, asynchronous cleanup,
and identity-based equality for keys. The third usage
illustrates a map with a custom Equivalence that looks only at the
name field of a (fictional) Person class.
This class also includes nested class KeySet
that provides space-efficient Set views of maps, also supporting
method intern
, which may be of use in canonicalizing
elements.
When used with (Weak or Soft) Reference keys and/or values,
elements that have asynchronously become null
are
treated as absent from the map and (eventually) removed from maps
via a background thread common across all maps. Because of the
potential for asynchronous clearing of References, methods such as
containsValue
have weaker guarantees than you might
expect even in the absence of other explicitly concurrent
operations. For example containsValue(value)
may
return true even if value
is no longer available upon
return from the method.
When Equivalences other than equality are used, the returned
collections may violate the specifications of Map
and/or
Set
interfaces, which mandate the use of the
equals
method when comparing objects. The methods of this
class otherwise have properties similar to those of java.util.ConcurrentHashMap
under its default settings. To
adaptively maintain semantics and performance under varying
conditions, this class does not support load factor or
concurrency level parameters. This class does not permit null keys
or values. This class is serializable; however, serializing a map
that uses soft or weak references can give unpredictable results.
This class supports all optional operations of the ConcurrentMap
interface. It supports have weakly consistent
iteration: an iterator over one of the map's view collections
may reflect some, all or none of the changes made to the collection
after the iterator was created.
This class is a member of the Java Collections Framework.
- the type of keys maintained by this map
- the type of mapped valuesField Summary | |
---|---|
static CustomConcurrentHashMap.Equivalence |
EQUALS
An Equivalence object performing java.lang.Object#equals based comparisons and using java.lang.Object#hashCode hashing |
static CustomConcurrentHashMap.Equivalence |
IDENTITY
An Equivalence object performing identity-based comparisons and using java.lang.System#identityHashCode for hashing |
private static java.lang.String |
INT_STRING
Config string for int maps |
static int |
MAX_SEGMENT_CAPACITY
|
static int |
MIN_SEGMENT_CAPACITY
|
static int |
NSEGMENTS
|
static int |
SEGMENT_BITS
|
static int |
SEGMENT_MASK
|
static int |
SEGMENT_SHIFT
|
private static java.lang.String |
SELF_STRING
Config string for self-map (Set view) refs |
static CustomConcurrentHashMap.Strength |
SOFT
The strength of soft references |
static CustomConcurrentHashMap.Strength |
STRONG
The strength of ordinary references |
static sun.misc.Unsafe |
UNSAFE
|
static CustomConcurrentHashMap.Strength |
WEAK
The strength of weak references |
java.util.Set |
entrySet
|
CustomConcurrentHashMap.NodeFactory |
factory
|
int |
initialSegmentCapacity
|
CustomConcurrentHashMap.Equivalence |
keyEquivalence
|
java.util.Set |
keySet
|
static java.lang.ref.ReferenceQueue |
refQueue
|
CustomConcurrentHashMap.Segment[] |
segments
The segments, each of which acts as a hash table |
static long |
segmentsBase
|
static int |
segmentsShift
|
private static long |
serialVersionUID
|
static long |
tableBase
|
static int |
tableShift
|
CustomConcurrentHashMap.Equivalence |
valueEquivalence
|
java.util.Collection |
values
|
Constructor Summary | |
CustomConcurrentHashMap()
|
Method Summary | |
---|---|
java.lang.Object
|
CustomConcurrentHashMap(java.lang.String ks, CustomConcurrentHashMap.Equivalence keq, java.lang.String vs, CustomConcurrentHashMap.Equivalence veq, int expectedSize)
|
java.lang.Object
|
CustomConcurrentHashMap(CustomConcurrentHashMap.Strength keyStrength, CustomConcurrentHashMap.Equivalence keyEquivalence, CustomConcurrentHashMap.Strength valueStrength, CustomConcurrentHashMap.Equivalence valueEquivalence, int expectedSize)
Creates a new CustomConcurrentHashMap with the given parameters. |
java.lang.Object
|
CustomConcurrentHashMap()
|
void
|
clear()
Removes all of the mappings from this map. |
java.lang.Object
|
compute(java.lang.Object key, CustomConcurrentHashMap.RemappingFunction remappingFunction)
Updates the mapping for the given key with the result of the given remappingFunction. |
java.lang.Object
|
computeIfAbsent(java.lang.Object key, CustomConcurrentHashMap.MappingFunction mappingFunction)
|
boolean
|
containsKey(java.lang.Object key)
Returns |
boolean
|
containsValue(java.lang.Object value)
|
java.lang.Object
|
doPut(java.lang.Object key, java.lang.Object value, boolean onlyIfNull)
|
java.util.Set
|
entrySet()
Compares the specified object with this map for equality. |
boolean
|
equals(java.lang.Object o)
|
CustomConcurrentHashMap.Node
|
findNode(java.lang.Object key, int hash, CustomConcurrentHashMap.Segment seg)
Returns node for key, or null if none. |
java.lang.Object
|
get(java.lang.Object key)
|
static java.lang.ref.ReferenceQueue
|
getReclamationQueue()
|
CustomConcurrentHashMap.Segment
|
getSegmentForAdd(int hash)
|
CustomConcurrentHashMap.Segment
|
getSegmentForTraversal(int hash)
Returns the segment for possibly inserting into the table associated with given hash, constructing it if necessary. |
private static sun.misc.Unsafe
|
getUnsafe()
|
int
|
hashCode()
Returns the sum of the hash codes of each entry in this map's
|
boolean
|
isEmpty()
Returns |
CustomConcurrentHashMap.KeyIterator
|
keyIterator()
|
java.util.Set
|
keySet()
Returns a java.util.Collection view of the values contained in this map. |
static CustomConcurrentHashMap
|
newIntKeyIntValueMap(int expectedSize)
|
static CustomConcurrentHashMap
|
newIntKeyMap(CustomConcurrentHashMap.Strength valueStrength, CustomConcurrentHashMap.Equivalence valueEquivalence, int expectedSize)
|
static CustomConcurrentHashMap
|
newIntValueMap(CustomConcurrentHashMap.Strength keyStrength, CustomConcurrentHashMap.Equivalence keyEquivalence, int expectedSize)
|
java.lang.Object
|
put(java.lang.Object key, java.lang.Object value)
Maps the specified key to the specified value in this map. |
void
|
putAll(java.util.Map m)
{@inheritDoc} |
java.lang.Object
|
putIfAbsent(java.lang.Object key, java.lang.Object value)
Copies all of the mappings from the specified map to this one. |
private void
|
readObject(java.io.ObjectInputStream s)
A hash-based set with properties identical to those of
|
java.lang.Object
|
remove(java.lang.Object key)
Removes the mapping for the specified key. |
boolean
|
remove(java.lang.Object key, java.lang.Object value)
{@inheritDoc} |
void
|
removeIfReclaimed(CustomConcurrentHashMap.Node r)
Removes node if its key or value are null. |
java.lang.Object
|
replace(java.lang.Object key, java.lang.Object value)
|
boolean
|
replace(java.lang.Object key, java.lang.Object oldValue, java.lang.Object newValue)
{@inheritDoc} |
int
|
size()
|
static int
|
spreadHash(int h)
|
static java.lang.ref.ReferenceQueue
|
startReclamation()
|
static void
|
storeNode(CustomConcurrentHashMap.Node[] table, int i, CustomConcurrentHashMap.Node r)
|
static void
|
storeSegment(CustomConcurrentHashMap.Segment[] segs, int i, CustomConcurrentHashMap.Segment s)
|
CustomConcurrentHashMap
|
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
CustomConcurrentHashMap[]
|
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
java.util.Collection
|
values()
Returns a java.util.Set view of the mappings contained in this map. |
private void
|
writeObject(java.io.ObjectOutputStream s)
Reconstitutes the instance from a stream (that is, deserializes it). |
Methods inherited from class java.util.AbstractMap | |
---|---|
java.util.AbstractMap#get(java.lang.Object), java.util.AbstractMap#put(java.lang.Object, java.lang.Object), java.util.AbstractMap#equals(java.lang.Object), java.util.AbstractMap#toString(), java.util.AbstractMap#values(), java.util.AbstractMap#hashCode(), java.util.AbstractMap#clear(), java.util.AbstractMap#entrySet(), java.util.AbstractMap#putAll(java.util.Map), java.util.AbstractMap#remove(java.lang.Object), java.util.AbstractMap#containsValue(java.lang.Object), java.util.AbstractMap#keySet(), java.util.AbstractMap#containsKey(java.lang.Object), java.util.AbstractMap#isEmpty(), java.util.AbstractMap#size(), java.util.AbstractMap#wait(long, int), java.util.AbstractMap#wait(long), java.util.AbstractMap#wait(), java.util.AbstractMap#getClass(), java.util.AbstractMap#notify(), java.util.AbstractMap#notifyAll() |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Field Detail |
---|
public static final CustomConcurrentHashMap.Equivalence EQUALS
public static final CustomConcurrentHashMap.Equivalence IDENTITY
private static final java.lang.String INT_STRING
static final int MAX_SEGMENT_CAPACITY
static final int MIN_SEGMENT_CAPACITY
static final int NSEGMENTS
static final int SEGMENT_BITS
static final int SEGMENT_MASK
static final int SEGMENT_SHIFT
private static final java.lang.String SELF_STRING
public static final CustomConcurrentHashMap.Strength SOFT
public static final CustomConcurrentHashMap.Strength STRONG
static final sun.misc.Unsafe UNSAFE
public static final CustomConcurrentHashMap.Strength WEAK
java.util.Set entrySet
final CustomConcurrentHashMap.NodeFactory factory
final int initialSegmentCapacity
final CustomConcurrentHashMap.Equivalence keyEquivalence
java.util.Set keySet
static java.lang.ref.ReferenceQueue refQueue
CustomConcurrentHashMap.Segment[] segments
static final long segmentsBase
static final int segmentsShift
private static final long serialVersionUID
static final long tableBase
static final int tableShift
final CustomConcurrentHashMap.Equivalence valueEquivalence
java.util.Collection values
Constructor Detail |
---|
CustomConcurrentHashMap()
Method Detail |
---|
java.lang.Object CustomConcurrentHashMap(java.lang.String ks, CustomConcurrentHashMap.Equivalence keq, java.lang.String vs, CustomConcurrentHashMap.Equivalence veq, int expectedSize)
public java.lang.Object CustomConcurrentHashMap(CustomConcurrentHashMap.Strength keyStrength, CustomConcurrentHashMap.Equivalence keyEquivalence, CustomConcurrentHashMap.Strength valueStrength, CustomConcurrentHashMap.Equivalence valueEquivalence, int expectedSize)
keyStrength
- the strength for keyskeyEquivalence
- the Equivalence to use for keysvalueStrength
- the strength for valuesvalueEquivalence
- the Equivalence to use for valuesexpectedSize
- an estimate of the number of elements
that will be held in the map. If no estimate is known,
zero is an acceptable value.
public java.lang.Object CustomConcurrentHashMap()
public final void clear()
public java.lang.Object compute(java.lang.Object key, CustomConcurrentHashMap.RemappingFunction remappingFunction)
value = remappingFunction.remap(key, get(key)); if (value != null) return put(key, value): else return remove(key);except that the action is performed atomically. Some attempted operations on this map by other threads may be blocked while computation is in progress.
Sample Usage. A remapping function can be used to perform frequency counting of words using code such as:
map.compute(word, new RemappingFunction<String,Integer>() { public Integer remap(String k, Integer v) { return (v == null) ? 1 : v + 1; }});
key
- key with which the specified value is to be associatedremappingFunction
- the function to compute a valuenull
if the computation returned null
public java.lang.Object computeIfAbsent(java.lang.Object key, CustomConcurrentHashMap.MappingFunction mappingFunction)
public boolean containsKey(java.lang.Object key)
true
if this map contains a key equivalent to
the given key with respect to this map's key Equivalence.key
- possible keytrue
if this map contains the specified key
public final boolean containsValue(java.lang.Object value)
final java.lang.Object doPut(java.lang.Object key, java.lang.Object value, boolean onlyIfNull)
public java.util.Set entrySet()
true
if the given object is also a map of the
same size, holding keys that are equal using this Map's key
Equivalence, and which map to values that are equal according
to this Map's value equivalence.
o
- object to be compared for equality with this maptrue
if the specified object is equal to this map
public boolean equals(java.lang.Object o)
final CustomConcurrentHashMap.Node findNode(java.lang.Object key, int hash, CustomConcurrentHashMap.Segment seg)
public java.lang.Object get(java.lang.Object key)
static java.lang.ref.ReferenceQueue getReclamationQueue()
final CustomConcurrentHashMap.Segment getSegmentForAdd(int hash)
final CustomConcurrentHashMap.Segment getSegmentForTraversal(int hash)
hash
- the hash code for the key
private static sun.misc.Unsafe getUnsafe()
public int hashCode()
entrySet()
view, which in turn are the hash codes
computed using key and value Equivalences for this Map.
public final boolean isEmpty()
true
if this map contains no key-value mappings.
true
if this map contains no key-value mappings
final CustomConcurrentHashMap.KeyIterator keyIterator()
public java.util.Set keySet()
Iterator.remove
,
Collection.remove
, removeAll
,
retainAll
, and clear
operations. It does not
support the add
or addAll
operations.
The view's iterator
is a "weakly consistent" iterator
that will never throw java.util.ConcurrentModificationException,
and guarantees to traverse elements as they existed upon
construction of the iterator, and may (but is not guaranteed to)
reflect any modifications subsequent to construction.
public static CustomConcurrentHashMap newIntKeyIntValueMap(int expectedSize)
public static CustomConcurrentHashMap newIntKeyMap(CustomConcurrentHashMap.Strength valueStrength, CustomConcurrentHashMap.Equivalence valueEquivalence, int expectedSize)
public static CustomConcurrentHashMap newIntValueMap(CustomConcurrentHashMap.Strength keyStrength, CustomConcurrentHashMap.Equivalence keyEquivalence, int expectedSize)
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keykey
, or
null
if there was no mapping for key
public void putAll(java.util.Map m)
public java.lang.Object putIfAbsent(java.lang.Object key, java.lang.Object value)
m
- mappings to be stored in this map
private void readObject(java.io.ObjectInputStream s)
Collections.newSetFromMap
applied to a
CustomConcurrentHashMap
, but possibly more
space-efficient. The set does not permit null elements. The
set is serializable; however, serializing a set that uses soft
or weak references can give unpredictable results.
public java.lang.Object remove(java.lang.Object key)
key
- the key to removekey
, or
null
if there was no mapping for key
public boolean remove(java.lang.Object key, java.lang.Object value)
final void removeIfReclaimed(CustomConcurrentHashMap.Node r)
public java.lang.Object replace(java.lang.Object key, java.lang.Object value)
public boolean replace(java.lang.Object key, java.lang.Object oldValue, java.lang.Object newValue)
null
if there was no mapping for the key
public final int size()
static int spreadHash(int h)
static java.lang.ref.ReferenceQueue startReclamation()
static final void storeNode(CustomConcurrentHashMap.Node[] table, int i, CustomConcurrentHashMap.Node r)
static final void storeSegment(CustomConcurrentHashMap.Segment[] segs, int i, CustomConcurrentHashMap.Segment s)
CustomConcurrentHashMap valueOf(java.lang.String name)
CustomConcurrentHashMap[] values()
public java.util.Collection values()
Iterator.remove
, Set.remove
,
removeAll
, retainAll
, and clear
operations. It does not support the add
or
addAll
operations.
The view's iterator
is a "weakly consistent" iterator
that will never throw java.util.ConcurrentModificationException,
and guarantees to traverse elements as they existed upon
construction of the iterator, and may (but is not guaranteed to)
reflect any modifications subsequent to construction.
private void writeObject(java.io.ObjectOutputStream s)
s
- the stream
Copyright © 2008–2013 Václav Pech. All Rights Reserved.