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
|
/*
File: SyncList.java
Originally written by Doug Lea and released into the public domain.
This may be used for any purposes whatsoever without acknowledgment.
Thanks for the assistance and support of Sun Microsystems Labs,
and everyone contributing, testing, and using this code.
History:
Date Who What
1Aug1998 dl Create public version
*/
package EDU.oswego.cs.dl.util.concurrent;
import java.util.*;
/**
* SyncLists wrap Sync-based control around java.util.Lists.
* They support the following additional reader operations over
* SyncCollection: hashCode, equals, get, indexOf, lastIndexOf,
* subList. They support additional writer operations remove(int),
* set(int), add(int), addAll(int). The corresponding listIterators
* and are similarly extended.
* <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
* @see SyncCollection
**/
public class SyncList extends SyncCollection implements List {
/**
* Create a new SyncList protecting the given collection,
* and using the given sync to control both reader and writer methods.
* Common, reasonable choices for the sync argument include
* Mutex, ReentrantLock, and Semaphores initialized to 1.
**/
public SyncList(List list, Sync sync) {
super (list, sync);
}
/**
* Create a new SyncList protecting the given list,
* and using the given ReadWriteLock to control reader and writer methods.
**/
public SyncList(List list, ReadWriteLock rwl) {
super (list, rwl.readLock(), rwl.writeLock());
}
/**
* Create a new SyncList protecting the given list,
* and using the given pair of locks to control reader and writer methods.
**/
public SyncList(List list, Sync readLock, Sync writeLock) {
super(list, readLock, writeLock);
}
protected List baseList() {
return (List)c_;
}
public int hashCode() {
boolean wasInterrupted = beforeRead();
try {
return c_.hashCode();
}
finally {
afterRead(wasInterrupted);
}
}
public boolean equals(Object o) {
boolean wasInterrupted = beforeRead();
try {
return c_.equals(o);
}
finally {
afterRead(wasInterrupted);
}
}
public Object get(int index) {
boolean wasInterrupted = beforeRead();
try {
return baseList().get(index);
}
finally {
afterRead(wasInterrupted);
}
}
public int indexOf(Object o) {
boolean wasInterrupted = beforeRead();
try {
return baseList().indexOf(o);
}
finally {
afterRead(wasInterrupted);
}
}
public int lastIndexOf(Object o) {
boolean wasInterrupted = beforeRead();
try {
return baseList().lastIndexOf(o);
}
finally {
afterRead(wasInterrupted);
}
}
public List subList(int fromIndex, int toIndex) {
boolean wasInterrupted = beforeRead();
try {
return new SyncList(baseList().subList(fromIndex, toIndex), rd_, wr_);
}
finally {
afterRead(wasInterrupted);
}
}
public Object set(int index, Object o) {
try {
wr_.acquire();
try {
return baseList().set(index, o);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
public Object remove(int index) {
try {
wr_.acquire();
try {
return baseList().remove(index);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
public void add(int index, Object o) {
try {
wr_.acquire();
try {
baseList().add(index, o);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
public boolean addAll(int index, Collection coll) {
try {
wr_.acquire();
try {
return baseList().addAll(index, coll);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
public ListIterator unprotectedListIterator() {
boolean wasInterrupted = beforeRead();
try {
return baseList().listIterator();
}
finally {
afterRead(wasInterrupted);
}
}
public ListIterator listIterator() {
boolean wasInterrupted = beforeRead();
try {
return new SyncCollectionListIterator(baseList().listIterator());
}
finally {
afterRead(wasInterrupted);
}
}
public ListIterator unprotectedListIterator(int index) {
boolean wasInterrupted = beforeRead();
try {
return baseList().listIterator(index);
}
finally {
afterRead(wasInterrupted);
}
}
public ListIterator listIterator(int index) {
boolean wasInterrupted = beforeRead();
try {
return new SyncCollectionListIterator(baseList().listIterator(index));
}
finally {
afterRead(wasInterrupted);
}
}
public class SyncCollectionListIterator extends SyncCollectionIterator implements ListIterator {
SyncCollectionListIterator(Iterator baseIterator) {
super(baseIterator);
}
protected ListIterator baseListIterator() {
return (ListIterator)(baseIterator_);
}
public boolean hasPrevious() {
boolean wasInterrupted = beforeRead();
try {
return baseListIterator().hasPrevious();
}
finally {
afterRead(wasInterrupted);
}
}
public Object previous() {
boolean wasInterrupted = beforeRead();
try {
return baseListIterator().previous();
}
finally {
afterRead(wasInterrupted);
}
}
public int nextIndex() {
boolean wasInterrupted = beforeRead();
try {
return baseListIterator().nextIndex();
}
finally {
afterRead(wasInterrupted);
}
}
public int previousIndex() {
boolean wasInterrupted = beforeRead();
try {
return baseListIterator().previousIndex();
}
finally {
afterRead(wasInterrupted);
}
}
public void set(Object o) {
try {
wr_.acquire();
try {
baseListIterator().set(o);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
public void add(Object o) {
try {
wr_.acquire();
try {
baseListIterator().add(o);
}
finally {
wr_.release();
}
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new UnsupportedOperationException();
}
}
}
}
|