linkedblockingdeque.java
来自「SRI international 发布的OAA框架软件」· Java 代码 · 共 772 行 · 第 1/2 页
JAVA
772 行
} finally {
lock.unlock();
}
}
public Object pollFirst(long timeout, TimeUnit unit)
throws InterruptedException {
lock.lockInterruptibly();
try {
long nanos = unit.toNanos(timeout);
long deadline = Utils.nanoTime() + nanos;
for (;;) {
Object x = unlinkFirst();
if (x != null)
return x;
if (nanos <= 0)
return null;
notEmpty.await(nanos, TimeUnit.NANOSECONDS);
nanos = deadline - Utils.nanoTime();
}
} finally {
lock.unlock();
}
}
public Object pollLast(long timeout, TimeUnit unit)
throws InterruptedException {
lock.lockInterruptibly();
try {
long nanos = unit.toNanos(timeout);
long deadline = Utils.nanoTime() + nanos;
for (;;) {
Object x = unlinkLast();
if (x != null)
return x;
if (nanos <= 0)
return null;
notEmpty.await(nanos, TimeUnit.NANOSECONDS);
nanos = deadline - Utils.nanoTime();
}
} finally {
lock.unlock();
}
}
// Queue and stack methods
public boolean offer(Object e) { return offerLast(e); }
public boolean add(Object e) { addLast(e); return true; }
public void push(Object e) { addFirst(e); }
public Object poll() { return pollFirst(); }
public Object remove() { return removeFirst(); }
public Object pop() { return removeFirst(); }
public Object peek() { return peekFirst(); }
public Object element() { return getFirst(); }
public boolean remove(Object o) { return removeFirstOccurrence(o); }
// BlockingQueue methods
public void put(Object o) throws InterruptedException { putLast(o); }
public Object take() throws InterruptedException { return takeFirst(); }
public boolean offer(Object o, long timeout, TimeUnit unit)
throws InterruptedException { return offerLast(o, timeout, unit); }
public Object poll(long timeout, TimeUnit unit)
throws InterruptedException { return pollFirst(timeout, unit); }
/**
* Returns the number of elements in this deque.
*
* @return the number of elements in this deque.
*/
public int size() {
lock.lock();
try {
return count;
} finally {
lock.unlock();
}
}
/**
* Returns the number of elements that this deque can ideally (in
* the absence of memory or resource constraints) accept without
* blocking. This is always equal to the initial capacity of this deque
* less the current <tt>size</tt> of this deque.
* <p>Note that you <em>cannot</em> always tell if
* an attempt to <tt>add</tt> an element will succeed by
* inspecting <tt>remainingCapacity</tt> because it may be the
* case that a waiting consumer is ready to <tt>take</tt> an
* element out of an otherwise full deque.
*/
public int remainingCapacity() {
lock.lock();
try {
return capacity - count;
} finally {
lock.unlock();
}
}
public boolean contains(Object o) {
if (o == null) return false;
lock.lock();
try {
for (Node p = first; p != null; p = p.next)
if (o.equals(p.item))
return true;
return false;
} finally {
lock.unlock();
}
}
public boolean removeFirstOccurrence(Object e) {
if (e == null) throw new NullPointerException();
lock.lock();
try {
for (Node p = first; p != null; p = p.next) {
if (e.equals(p.item)) {
unlink(p);
return true;
}
}
return false;
} finally {
lock.unlock();
}
}
public boolean removeLastOccurrence(Object e) {
if (e == null) throw new NullPointerException();
lock.lock();
try {
for (Node p = last; p != null; p = p.prev) {
if (e.equals(p.item)) {
unlink(p);
return true;
}
}
return false;
} finally {
lock.unlock();
}
}
/**
* Variant of removeFirstOccurrence needed by iterator.remove.
* Searches for the node, not its contents.
*/
boolean removeNode(Node e) {
lock.lock();
try {
for (Node p = first; p != null; p = p.next) {
if (p == e) {
unlink(p);
return true;
}
}
return false;
} finally {
lock.unlock();
}
}
public Object[] toArray() {
lock.lock();
try {
Object[] a = new Object[count];
int k = 0;
for (Node p = first; p != null; p = p.next)
a[k++] = p.item;
return a;
} finally {
lock.unlock();
}
}
public Object[] toArray(Object[] a) {
lock.lock();
try {
if (a.length < count)
a = (Object[])java.lang.reflect.Array.newInstance(
a.getClass().getComponentType(),
count
);
int k = 0;
for (Node p = first; p != null; p = p.next)
a[k++] = (Object)p.item;
if (a.length > k)
a[k] = null;
return a;
} finally {
lock.unlock();
}
}
public String toString() {
lock.lock();
try {
return super.toString();
} finally {
lock.unlock();
}
}
/**
* Atomically removes all of the elements from this deque.
* The deque will be empty after this call returns.
*/
public void clear() {
lock.lock();
try {
first = last = null;
count = 0;
notFull.signalAll();
} finally {
lock.unlock();
}
}
public int drainTo(Collection c) {
if (c == null)
throw new NullPointerException();
if (c == this)
throw new IllegalArgumentException();
lock.lock();
try {
for (Node p = first; p != null; p = p.next)
c.add(p.item);
int n = count;
count = 0;
first = last = null;
notFull.signalAll();
return n;
} finally {
lock.unlock();
}
}
public int drainTo(Collection c, int maxElements) {
if (c == null)
throw new NullPointerException();
if (c == this)
throw new IllegalArgumentException();
lock.lock();
try {
int n = 0;
while (n < maxElements && first != null) {
c.add(first.item);
first.prev = null;
first = first.next;
--count;
++n;
}
if (first == null)
last = null;
notFull.signalAll();
return n;
} finally {
lock.unlock();
}
}
/**
* Returns an iterator over the elements in this deque in proper sequence.
* The returned <tt>Iterator</tt> is a "weakly consistent" iterator that
* will never throw {@link java.util.ConcurrentModificationException},
* and guarantees to traverse elements as they existed upon
* construction of the iterator, and may (but is not guaranteed to)
* reflect any modifications subsequent to construction.
*
* @return an iterator over the elements in this deque in proper sequence.
*/
public Iterator iterator() {
return new Itr();
}
/**
* Iterator for LinkedBlockingDeque
*/
private class Itr implements Iterator {
private Node next;
/**
* nextItem holds on to item fields because once we claim that
* an element exists in hasNext(), we must return item read
* under lock (in advance()) even if it was in the process of
* being removed when hasNext() was called.
**/
private Object nextItem;
/**
* Node returned by most recent call to next. Needed by remove.
* Reset to null if this element is deleted by a call to remove.
*/
private Node last;
Itr() {
advance();
}
/**
* Advance next, or if not yet initialized, set to first node.
*/
private void advance() {
final ReentrantLock lock = LinkedBlockingDeque.this.lock;
lock.lock();
try {
next = (next == null)? first : next.next;
nextItem = (next == null)? null : next.item;
} finally {
lock.unlock();
}
}
public boolean hasNext() {
return next != null;
}
public Object next() {
if (next == null)
throw new NoSuchElementException();
last = next;
Object x = nextItem;
advance();
return x;
}
public void remove() {
Node n = last;
if (n == null)
throw new IllegalStateException();
last = null;
// Note: removeNode rescans looking for this node to make
// sure it was not already removed. Otherwwise, trying to
// re-remove could corrupt list.
removeNode(n);
}
}
/**
* Save the state to a stream (that is, serialize it).
*
* @serialData The capacity (int), followed by elements (each an
* <tt>Object</tt>) in the proper order, followed by a null
* @param s the stream
*/
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException {
lock.lock();
try {
// Write out capacity and any hidden stuff
s.defaultWriteObject();
// Write out all elements in the proper order.
for (Node p = first; p != null; p = p.next)
s.writeObject(p.item);
// Use trailing null as sentinel
s.writeObject(null);
} finally {
lock.unlock();
}
}
/**
* Reconstitute this deque instance from a stream (that is,
* deserialize it).
* @param s the stream
*/
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException, ClassNotFoundException {
s.defaultReadObject();
count = 0;
first = null;
last = null;
// Read in all elements and place in queue
for (;;) {
Object item = (Object)s.readObject();
if (item == null)
break;
add(item);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?