1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
|
/*******************************************************************************
* Copyright (c) 2003, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.eventmgr;
import java.util.*;
/**
* A copy-on-write identity map. Write operations result in copying the underlying data so that
* simultaneous read operations are not affected.
* This allows for safe, unsynchronized traversal.
*
* <p>
* Note: This class uses identity for key and value comparison, not equals.
*
* @since 3.5
*/
public class CopyOnWriteIdentityMap<K, V> implements Map<K, V> {
/**
* The empty array singleton instance.
*/
@SuppressWarnings("rawtypes")
private static final Entry[] emptyArray = new Entry[0];
/**
* The array of entries. This field is volatile so it can be
* accessed from unsynchronized reader methods.
*/
private volatile Entry<K, V>[] entries;
/**
* Creates an empty map.
*
*/
public CopyOnWriteIdentityMap() {
entries = empty();
}
/**
* Copy constructor.
*
* @param source The CopyOnWriteMap to copy.
*/
public CopyOnWriteIdentityMap(CopyOnWriteIdentityMap<? extends K, ? extends V> source) {
@SuppressWarnings("unchecked")
Entry<K, V>[] toCopy = (Entry<K, V>[]) source.entries();
this.entries = toCopy;
}
/* These methods modify the map and are synchronized. */
/**
* Add a key, value pair to the map.
* If the key object is already in the map, then its value is replaced with the new value.
* Keys are compared using identity.
*
* @param key The key object to be added to the list.
* @param value The value object to be associated with the key.
* This may be null.
* @return <code>null</code> if the specified key was newly added to the map.
* Otherwise the previous value of the key.
* @throws IllegalArgumentException If key is null.
*/
public synchronized V put(K key, V value) {
if (key == null) {
throw new IllegalArgumentException();
}
int size = entries.length;
for (int i = 0; i < size; i++) {
if (entries[i].key == key) {
V v = entries[i].value;
if (v == value) {
return v;
}
@SuppressWarnings("unchecked")
Entry<K, V>[] newEntries = new Entry[size];
System.arraycopy(entries, 0, newEntries, 0, size);
newEntries[i] = new Entry<K, V>(key, value);
entries = newEntries;
return v;
}
}
@SuppressWarnings("unchecked")
Entry<K, V>[] newEntries = new Entry[size + 1];
if (size > 0) {
System.arraycopy(entries, 0, newEntries, 0, size);
}
newEntries[size] = new Entry<K, V>(key, value);
entries = newEntries;
return null;
}
/**
* Add all the entries from the specified map to this map.
*
* @param source The map whose entries are to be added to this map.
*/
public void putAll(Map<? extends K, ? extends V> source) {
int sourceSize = source.size();
if (sourceSize == 0) {
return;
}
if (source instanceof CopyOnWriteIdentityMap<?, ?>) {
putAll(((CopyOnWriteIdentityMap<? extends K, ? extends V>) source).entries());
return;
}
@SuppressWarnings("unchecked")
Entry<K, V>[] toCopy = new Entry[sourceSize];
Iterator<? extends Map.Entry<? extends K, ? extends V>> iter = source.entrySet().iterator();
for (int i = 0; i < sourceSize; i++) {
Map.Entry<? extends K, ? extends V> mapEntry = iter.next();
toCopy[i] = new Entry<K, V>(mapEntry.getKey(), mapEntry.getValue());
}
putAll(toCopy);
}
/**
* Add all the keys from the specified array to this map with the value
* <code>null</code>.
*
* @param keys The array of keys to be added to this map.
*/
public <L extends K> void putAll(L[] keys) {
int sourceSize = keys.length;
if (sourceSize == 0) {
return;
}
@SuppressWarnings("unchecked")
Entry<K, V>[] toCopy = new Entry[sourceSize];
for (int i = 0; i < sourceSize; i++) {
toCopy[i] = new Entry<K, V>(keys[i], null);
}
putAll(toCopy);
}
/**
* Add all the entries to this map.
*
* @param toCopy Array of entries to add to this map.
*/
private synchronized void putAll(Entry<? extends K, ? extends V>[] toCopy) {
int sourceSize = toCopy.length;
int size = entries.length;
@SuppressWarnings("unchecked")
Entry<K, V>[] newEntries = new Entry[size + sourceSize];
System.arraycopy(entries, 0, newEntries, 0, size);
copy: for (int n = 0; n < sourceSize; n++) {
@SuppressWarnings("unchecked")
Entry<K, V> copy = (Entry<K, V>) toCopy[n];
for (int i = 0; i < size; i++) {
if (newEntries[i].key == copy.key) {
newEntries[i] = copy;
continue copy;
}
}
newEntries[size] = copy;
size++;
}
if (size == newEntries.length) {
entries = newEntries;
return;
}
@SuppressWarnings("unchecked")
Entry<K, V>[] e = new Entry[size];
System.arraycopy(newEntries, 0, e, 0, size);
entries = e;
}
/**
* Remove a key from the map and returns the value associated with the key.
* Key objects are compared using identity.
*
* @param key The key object to be removed from the map.
* @return <code>null</code> if the key was not in the list.
* Otherwise, the value associated with the key.
* @throws IllegalArgumentException If key is null.
*/
public synchronized V remove(Object key) {
if (key == null) {
throw new IllegalArgumentException();
}
int size = entries.length;
for (int i = 0; i < size; i++) {
if (entries[i].key == key) {
V v = entries[i].value;
entries = removeEntry(entries, i);
return v;
}
}
return null;
}
/**
* Static method used to return an Entry array with the ith entry removed.
*/
static <K, V> Entry<K, V>[] removeEntry(final Entry<K, V>[] entries, final int i) {
int size = entries.length;
if (size == 1) {
return empty();
}
@SuppressWarnings("unchecked")
Entry<K, V>[] newEntries = new Entry[size - 1];
if (i > 0) {
System.arraycopy(entries, 0, newEntries, 0, i);
}
int next = size - 1 - i;
if (next > 0) {
System.arraycopy(entries, i + 1, newEntries, i, next);
}
return newEntries;
}
/**
* Remove all entries from the map.
*
*/
public synchronized void clear() {
entries = empty();
}
/* These methods only read the map and are not synchronized. */
/**
* Accessor for methods which only read the entries.
* @return The array of entries. Callers to this method MUST NOT
* modify the returned array.
*/
private Entry<K, V>[] entries() {
return entries;
}
/**
* Return the static empty array generically type safe.
* @return The empty array of entries.
*/
@SuppressWarnings("unchecked")
static <K, V> Entry<K, V>[] empty() {
return emptyArray;
}
/**
* Is the map empty?
*
* @return <code>true</code> if the list is empty.
*/
public boolean isEmpty() {
return size() == 0;
}
/**
* Return the number of entries in the map.
*
* @return The number of entries in the map.
*/
public int size() {
return entries().length;
}
/**
* Return the value object for the specified key.
* Keys are compared using identity.
*
* @param key The key object.
* @return The value object for the specified key.
* @throws IllegalArgumentException If key is null.
*/
public V get(Object key) {
if (key == null) {
throw new IllegalArgumentException();
}
Entry<K, V>[] e = entries();
for (int i = 0; i < e.length; i++) {
if (e[i].key == key) {
return e[i].value;
}
}
return null;
}
/**
* Check if the map contains the specified key.
* Keys are compared using identity.
*
* @param key The key object.
* @return <code>true</code> if the specified key is in the map.
* @throws IllegalArgumentException If key is null.
*/
public boolean containsKey(Object key) {
if (key == null) {
throw new IllegalArgumentException();
}
Entry<K, V>[] e = entries();
for (int i = 0; i < e.length; i++) {
if (e[i].key == key) {
return true;
}
}
return false;
}
/**
* Check if the map contains the specified value.
* Values are compared using identity.
*
* @param value The value object.
* @return <code>true</code> if the specified value is in the map.
*/
public boolean containsValue(Object value) {
Entry<K, V>[] e = entries();
for (int i = 0; i < e.length; i++) {
if (e[i].value == value) {
return true;
}
}
return false;
}
/**
* Returns a snapshot of the entries in this map.
* Changes to the returned set or this map will not affect each other.
*
* @return A Set of Map.Entry for each entry in this map.
* The entries returned by the set cannot be modified.
*/
public Set<Map.Entry<K, V>> entrySet() {
return new Snapshot<K, V>(entries()).entrySet();
}
/**
* Returns a snapshot of the keys in this map.
* Changes to the returned set or this map will not affect each other.
*
* @return A Set of the key objects in this map
*/
public Set<K> keySet() {
return new Snapshot<K, V>(entries()).keySet();
}
/**
* Returns a snapshot of the values in this map.
* Changes to the returned set or this map will not affect each other.
*
* @return A Collection of the value objects in this map.
*/
public Collection<V> values() {
return new Snapshot<K, V>(entries()).values();
}
/**
* This class represents the entry in this identity map.
* Entry is immutable.
*/
static private final class Entry<K, V> implements Map.Entry<K, V> {
/**
* Key object.
*/
final K key;
/**
* Value object.
*/
final V value;
/**
* Constructor for map entry.
* @param key Key object in entry. Used for uniqueness.
* @param value Value object stored with key object.
*/
Entry(final K key, final V value) {
this.key = key;
this.value = value;
}
public K getKey() {
return key;
}
public V getValue() {
return value;
}
public V setValue(V value) {
throw new UnsupportedOperationException(); // entries cannot be modified.
}
public String toString() {
return key + "=" + value; //$NON-NLS-1$
}
public int hashCode() {
return System.identityHashCode(key) ^ System.identityHashCode(value);
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof Map.Entry)) {
return false;
}
Map.Entry<?, ?> e = (Map.Entry<?, ?>) obj;
return (key == e.getKey()) && (value == e.getValue());
}
}
/**
* A snapshot of the entries in the map. This snapshot used by
* the map collection views. Changes made by the collection
* views only mutate the snapshot and not the map. The collection
* views only allow removal not addition.
*/
static private final class Snapshot<K, V> {
volatile Entry<K, V>[] entries;
Snapshot(Entry<K, V>[] e) {
entries = e;
}
Entry<K, V>[] entries() {
return entries;
}
synchronized void removeEntry(int i) {
entries = CopyOnWriteIdentityMap.removeEntry(entries, i);
}
synchronized void clearEntries() {
entries = CopyOnWriteIdentityMap.empty();
}
Set<Map.Entry<K, V>> entrySet() {
return new EntrySet();
}
Set<K> keySet() {
return new KeySet();
}
Collection<V> values() {
return new ValueCollection();
}
/**
* Entry set view over the snapshot.
*/
private final class EntrySet extends AbstractSet<Map.Entry<K, V>> {
EntrySet() {
super();
}
public Iterator<Map.Entry<K, V>> iterator() {
return new EntryIterator();
}
public int size() {
return entries().length;
}
public boolean remove(Object o) {
if (o == null) {
throw new IllegalArgumentException();
}
synchronized (Snapshot.this) {
int size = entries.length;
for (int i = 0; i < size; i++) {
if (entries[i].equals(o)) {
removeEntry(i);
return true;
}
}
}
return false;
}
public void clear() {
clearEntries();
}
}
/**
* Entry set iterator over the snapshot.
*/
private final class EntryIterator extends SnapshotIterator<Map.Entry<K, V>> {
EntryIterator() {
super();
}
public Map.Entry<K, V> next() {
return nextEntry();
}
}
/**
* Key set view over the snapshot.
*/
private final class KeySet extends AbstractSet<K> {
KeySet() {
super();
}
public Iterator<K> iterator() {
return new KeyIterator();
}
public int size() {
return entries().length;
}
public boolean remove(Object o) {
if (o == null) {
throw new IllegalArgumentException();
}
synchronized (Snapshot.this) {
int size = entries.length;
for (int i = 0; i < size; i++) {
if (entries[i].key == o) {
removeEntry(i);
return true;
}
}
}
return false;
}
public void clear() {
clearEntries();
}
}
/**
* Key set iterator over the snapshot.
*/
private final class KeyIterator extends SnapshotIterator<K> {
KeyIterator() {
super();
}
public K next() {
return nextEntry().key;
}
}
/**
* Value collection view over the snapshot.
*/
private final class ValueCollection extends AbstractCollection<V> {
ValueCollection() {
super();
}
public Iterator<V> iterator() {
return new ValueIterator();
}
public int size() {
return entries().length;
}
public boolean remove(Object o) {
if (o == null) {
throw new IllegalArgumentException();
}
synchronized (Snapshot.this) {
int size = entries.length;
for (int i = 0; i < size; i++) {
if (entries[i].value == o) {
removeEntry(i);
return true;
}
}
}
return false;
}
public void clear() {
clearEntries();
}
}
/**
* Value collection iterator over the snapshot.
*/
private final class ValueIterator extends SnapshotIterator<V> {
ValueIterator() {
super();
}
public V next() {
return nextEntry().value;
}
}
/**
* Base iterator class handling removal and concurrent modifications.
*/
private abstract class SnapshotIterator<E> implements Iterator<E> {
private int length;
private int cursor;
SnapshotIterator() {
length = entries().length;
cursor = 0;
}
public final boolean hasNext() {
return cursor < length;
}
protected final Entry<K, V> nextEntry() {
Entry<K, V>[] e = entries();
if (length != e.length) {
throw new ConcurrentModificationException();
}
if (cursor == length) {
throw new NoSuchElementException();
}
return e[cursor++];
}
public final void remove() {
if (length != entries().length) {
throw new ConcurrentModificationException();
}
if (cursor == 0) {
throw new IllegalStateException();
}
cursor--;
removeEntry(cursor);
length = entries().length;
}
}
}
}
|