public class SyncCollection extends Object implements Collection
The Collection interface is conceptually broken into two parts for purposes of synchronization control. The purely inspective reader operations are:
SyncCollections can be used with either Syncs or ReadWriteLocks. When used with single Syncs, the same lock is used as both the reader and writer lock. The SyncCollection class cannot itself guarantee that using a pair of read/write locks will always correctly protect objects, since Collection implementations are not precluded from internally performing hidden unprotected state changes within conceptually read-only operations. However, they do work with current java.util implementations. (Hopefully, implementations that do not provide this natural guarantee will be clearly documentented as such.)
This class provides a straight implementation of Collections interface. In order to conform to this interface, sync failures due to interruption do NOT result in InterruptedExceptions. Instead, upon detection of interruption,
synchronizationFailures()
.
Non-zero values may indicate serious program errors.
The iterator() method returns a SyncCollectionIterator with
properties and methods that are analogous to those of SyncCollection
itself: hasNext and next are read-only, and remove is mutative.
These methods allow fine-grained controlled access, but do NOT
preclude concurrent modifications from being interleaved with traversals,
which may lead to ConcurrentModificationExceptions.
However, the class also supports method unprotectedIterator
that can be used in conjunction with the readerSync
or
writerSync
methods to perform locked traversals. For example,
to protect a block of reads:
Sync lock = coll.readerSync(); try { lock.acquire(); try { Iterator it = coll.unprotectedIterator(); while (it.hasNext()) System.out.println(it.next()); } finally { lock.release(); } } catch (InterruptedException ex) { ... }If you need to protect blocks of writes, you must use some form of reentrant lock (for example
ReentrantLock
or ReentrantWriterPreferenceReadWriteLock
) as the Sync
for the collection in order to allow mutative methods to proceed
while the current thread holds the lock. For example, you might
need to hold a write lock during an initialization sequence:
Collection c = new SyncCollection(new ArrayList(), new ReentrantWriterPreferenceReadWriteLock()); // ... c.writeLock().acquire(); try { for (...) { Object x = someStream.readObject(); c.add(x); // would block if writeLock not reentrant } } catch (IOException iox) { ... } finally { c.writeLock().release(); } catch (InterruptedException ex) { ... }
(It would normally be better practice here to not make the collection accessible until initialization is complete.)
This class does not specifically support use of timed synchronization through the attempt method. However, you can obtain this effect via the TimeoutSync class. For example:
Mutex lock = new Mutex(); TimeoutSync timedLock = new TimeoutSync(lock, 1000); // 1 sec timeouts Collection c = new SyncCollection(new HashSet(), timedlock);
The same can be done with read-write locks:
ReadWriteLock rwl = new WriterPreferenceReadWriteLock(); Sync rlock = new TimeoutSync(rwl.readLock(), 100); Sync wlock = new TimeoutSync(rwl.writeLock(), 100); Collection c = new SyncCollection(new HashSet(), rlock, wlock);
In addition to synchronization control, SyncCollections may be useful in any context requiring before/after methods surrounding collections. For example, you can use ObservableSync to arrange notifications on method calls to collections, as in:
class X { Collection c; static class CollectionObserver implements ObservableSync.SyncObserver { public void onAcquire(Object arg) { Collection coll = (Collection) arg; System.out.println("Starting operation on" + coll); // Other plausible responses include performing integrity // checks on the collection, updating displays, etc } public void onRelease(Object arg) { Collection coll = (Collection) arg; System.out.println("Finished operation on" + coll); } } X() { ObservableSync s = new ObservableSync(); c = new SyncCollection(new HashSet(), s); s.setNotificationArgument(c); CollectionObserver obs = new CollectionObserver(); s.attach(obs); } ... }
LayeredSync
,
TimeoutSync
Modifier and Type | Class and Description |
---|---|
class |
SyncCollection.SyncCollectionIterator |
Modifier and Type | Field and Description |
---|---|
protected Collection |
c_ |
protected Sync |
rd_ |
protected long |
syncFailures_ |
protected Sync |
wr_ |
Constructor and Description |
---|
SyncCollection(Collection collection,
ReadWriteLock rwl)
Create a new SyncCollection protecting the given collection,
and using the given ReadWriteLock to control reader and writer methods.
|
SyncCollection(Collection collection,
Sync sync)
Create a new SyncCollection protecting the given collection,
and using the given sync to control both reader and writer methods.
|
SyncCollection(Collection collection,
Sync readLock,
Sync writeLock)
Create a new SyncCollection protecting the given collection,
and using the given pair of locks to control reader and writer methods.
|
Modifier and Type | Method and Description |
---|---|
boolean |
add(Object o) |
boolean |
addAll(Collection coll) |
protected void |
afterRead(boolean wasInterrupted)
Clean up after a reader operation
|
protected boolean |
beforeRead()
Try to acquire sync before a reader operation; record failure
|
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection coll) |
boolean |
isEmpty() |
Iterator |
iterator() |
Sync |
readerSync()
Return the Sync object managing read-only operations
|
boolean |
remove(Object o) |
boolean |
removeAll(Collection coll) |
boolean |
retainAll(Collection coll) |
int |
size() |
long |
syncFailures()
Return the number of synchronization failures for read-only operations
|
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
Iterator |
unprotectedIterator()
Return the base iterator of the underlying collection
|
Sync |
writerSync()
Return the Sync object managing mutative operations
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode
protected final Collection c_
protected final Sync rd_
protected final Sync wr_
protected long syncFailures_
public SyncCollection(Collection collection, Sync sync)
Sample Usage
Collection c = new SyncCollection(new ArrayList(), new Mutex());
public SyncCollection(Collection collection, ReadWriteLock rwl)
Sample Usage
Collection c = new SyncCollection(new HashSet(), new WriterPreferenceReadWriteLock());
public SyncCollection(Collection collection, Sync readLock, Sync writeLock)
public Sync readerSync()
public Sync writerSync()
public long syncFailures()
protected boolean beforeRead()
protected void afterRead(boolean wasInterrupted)
public int size()
size
in interface Collection
public boolean isEmpty()
isEmpty
in interface Collection
public boolean contains(Object o)
contains
in interface Collection
public Object[] toArray()
toArray
in interface Collection
public Object[] toArray(Object[] a)
toArray
in interface Collection
public boolean containsAll(Collection coll)
containsAll
in interface Collection
public boolean add(Object o)
add
in interface Collection
public boolean remove(Object o)
remove
in interface Collection
public boolean addAll(Collection coll)
addAll
in interface Collection
public boolean removeAll(Collection coll)
removeAll
in interface Collection
public boolean retainAll(Collection coll)
retainAll
in interface Collection
public void clear()
clear
in interface Collection
public Iterator unprotectedIterator()
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
Copyright © 2012-2013 Adele Team | LIG. All Rights Reserved.