Compare commits

...

3 Commits

1 changed files with 16 additions and 18 deletions

View File

@ -2,6 +2,7 @@ package pp;
public class ThreadsafeSimplifiedList<T> implements SimplifiedList<T> {
private Node<T> first;
private final Object headLock = new Object();
private static class Node<U> {
U element;
@ -22,16 +23,16 @@ public class ThreadsafeSimplifiedList<T> implements SimplifiedList<T> {
@Override
public boolean add(T element) {
synchronized (this) {
Node<T> curr;
synchronized (headLock) {
if (first == null) {
first = new Node<>(element, null, null);
return true;
}
curr = first;
}
Node<T> curr;
synchronized (first.lock) {
curr = first;
while (true) {
Node<T> next;
synchronized (curr.lock) {
@ -41,17 +42,14 @@ public class ThreadsafeSimplifiedList<T> implements SimplifiedList<T> {
return true;
}
}
synchronized (next.lock) {
curr = next;
}
}
}
}
@Override
public T get(int index) {
Node<T> curr;
synchronized (this) {
synchronized (headLock) {
if (first == null) throw new IndexOutOfBoundsException();
curr = first;
}
@ -71,7 +69,7 @@ public class ThreadsafeSimplifiedList<T> implements SimplifiedList<T> {
@Override
public T set(int index, T element) {
Node<T> curr;
synchronized (this) {
synchronized (headLock) {
if (first == null) throw new IndexOutOfBoundsException();
curr = first;
}
@ -92,7 +90,7 @@ public class ThreadsafeSimplifiedList<T> implements SimplifiedList<T> {
@Override
public boolean isEmpty() {
synchronized (this) {
synchronized (headLock) {
return first == null;
}
}