|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.collections.StaticBucketMap
A StaticBucketMap is an efficient, thread-safe implementation of
java.util.Map
that performs well in in a highly
thread-contentious environment. The map supports very efficient
get
, put
,
remove
and containsKey
operations, assuming (approximate) uniform hashing and
that the number of entries does not exceed the number of buckets. If the
number of entries exceeds the number of buckets or if the hashcodes of the
objects are not uniformly distributed, these operations have a worst case
scenario that is proportional to the number of elements in the map
(O(n)).
Each bucket in the hash table has its own monitor, so two threads can
safely operate on the map at the same time, often without incurring any
monitor contention. This means that you don't have to wrap instances
of this class with Collections.synchronizedMap(Map)
;
instances are already thread-safe. Unfortunately, however, this means
that this map implementation behaves in ways you may find disconcerting.
Bulk operations, such as putAll
or the
retainAll
operation in collection
views, are not atomic. If two threads are simultaneously
executing
staticBucketMapInstance.putAll(map);and
staticBucketMapInstance.entrySet().removeAll(map.entrySet());then the results are generally random. Those two statement could cancel each other out, leaving
staticBucketMapInstance
essentially
unchanged, or they could leave some random subset of map
in
staticBucketMapInstance
.
Also, much like an encyclopedia, the results of size()
and
isEmpty()
are out-of-date as soon as they are produced.
The iterators returned by the collection views of this class are not
fail-fast. They will never raise a
ConcurrentModificationException
. Keys and values
added to the map after the iterator is created do not necessarily appear
during iteration. Similarly, the iterator does not necessarily fail to
return keys and values that were removed after the iterator was created.
Finally, unlike HashMap
-style implementations, this
class never rehashes the map. The number of buckets is fixed
at construction time and never altered. Performance may degrade if
you do not allocate enough buckets upfront.
The atomic(Runnable)
method is provided to allow atomic iterations
and bulk operations; however, overuse of atomic
will basically result in a map that's slower than an ordinary synchronized
HashMap
.
Use this class if you do not require reliable bulk operations and
iterations, or if you can make your own guarantees about how bulk
operations will affect the map.
Constructor Summary | |
StaticBucketMap()
Initializes the map with the default number of buckets (255). |
|
StaticBucketMap(int numBuckets)
Initializes the map with a specified number of buckets. |
Method Summary | |
void |
atomic(java.lang.Runnable r)
Prevents any operations from occuring on this map while the given Runnable executes. |
void |
clear()
Implements Map.clear() . |
boolean |
containsKey(java.lang.Object key)
Implements Map.containsKey(Object) . |
boolean |
containsValue(java.lang.Object value)
Implements Map.containsValue(Object) . |
java.util.Set |
entrySet()
Implements Map.entrySet() . |
boolean |
equals(java.lang.Object obj)
Implements Map.equals(Object) . |
java.lang.Object |
get(java.lang.Object key)
Implements Map.get(Object) . |
int |
hashCode()
Implements Map.hashCode() . |
boolean |
isEmpty()
Implements Map.isEmpty() . |
java.util.Set |
keySet()
Implements Map.keySet() . |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Implements Map.put(Object, Object) . |
void |
putAll(java.util.Map other)
Implements Map.putAll(Map) . |
java.lang.Object |
remove(java.lang.Object key)
Implements Map.remove(Object) . |
int |
size()
Implements Map.size() . |
java.util.Collection |
values()
Implements Map.values() . |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public StaticBucketMap()
public StaticBucketMap(int numBuckets)
numBuckets
- the number of buckets for this mapMethod Detail |
public java.util.Set keySet()
Map.keySet()
.
keySet
in interface java.util.Map
public int size()
Map.size()
.
size
in interface java.util.Map
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
Map.put(Object, Object)
.
put
in interface java.util.Map
public java.lang.Object get(java.lang.Object key)
Map.get(Object)
.
get
in interface java.util.Map
public boolean containsKey(java.lang.Object key)
Map.containsKey(Object)
.
containsKey
in interface java.util.Map
public boolean containsValue(java.lang.Object value)
Map.containsValue(Object)
.
containsValue
in interface java.util.Map
public java.util.Collection values()
Map.values()
.
values
in interface java.util.Map
public java.util.Set entrySet()
Map.entrySet()
.
entrySet
in interface java.util.Map
public void putAll(java.util.Map other)
Map.putAll(Map)
.
putAll
in interface java.util.Map
public java.lang.Object remove(java.lang.Object key)
Map.remove(Object)
.
remove
in interface java.util.Map
public final boolean isEmpty()
Map.isEmpty()
.
isEmpty
in interface java.util.Map
public final void clear()
Map.clear()
.
clear
in interface java.util.Map
public final boolean equals(java.lang.Object obj)
Map.equals(Object)
.
equals
in interface java.util.Map
equals
in class java.lang.Object
public final int hashCode()
Map.hashCode()
.
hashCode
in interface java.util.Map
hashCode
in class java.lang.Object
public void atomic(java.lang.Runnable r)
Runnable
executes. This method can be used, for
instance, to execute a bulk operation atomicly:
staticBucketMapInstance.atomic(new Runnable() { public void run() { staticBucketMapInstance.putAll(map); } });It can also be used if you need a reliable iterator:
staticBucketMapInstance.atomic(new Runnable() { public void run() { Iterator iterator = staticBucketMapInstance.iterator(); while (iterator.hasNext()) { foo(iterator.next(); } } });Implementation note: This method requires a lot of time and a ton of stack space. Essentially a recursive algorithm is used to enter each bucket's monitor. If you have twenty thousand buckets in your map, then the recursive method will be invoked twenty thousand times. You have been warned.
r
- the code to execute atomicly
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |