All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ajjpj.abase.collection.mutable.ASoftlyLimitedBlockingQueue Maven / Gradle / Ivy

Go to download

a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations

There is a newer version: 1.0-pre11
Show newest version
package com.ajjpj.abase.collection.mutable;

import java.util.Collection;
import java.util.Iterator;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;

/**
 * This is a wrapper around a Queue. It limits the queue's size by discarding elements when adding a new
 *  element would exceed the queue's maximum size. Oldest elements are discarded first, i.e. when an element is
 *  added to the queue's tail, element(s) are discarded from the queue's head.

* * It is possible to register a callback that is triggered whenever an element is discarded. This is intended for * logging / warning behavior, not for actually handling that element.

* * This is a non-blocking implementation, trading atomic behavior for performance. Its implementation first discards * elements until there is room for a new element, then adds the new element. Since that is done without locking, * concurrent writes can occur in such a way that the 'maximum' size is temporarily exceeded. It is however limited * to ('max' + numWriters). * * @author arno */ public class ASoftlyLimitedBlockingQueue implements BlockingQueue { private final int maxSize; private final BlockingQueue inner; private final Runnable onDiscarded; private static final Runnable NO_CALLBACK = new Runnable() { @Override public void run() { } }; public ASoftlyLimitedBlockingQueue(int maxSize) { this(maxSize, new LinkedBlockingQueue()); } public ASoftlyLimitedBlockingQueue(int maxSize, Runnable onDiscarded) { this(maxSize, new LinkedBlockingQueue(), onDiscarded); } public ASoftlyLimitedBlockingQueue(int maxSize, BlockingQueue inner) { this(maxSize, inner, NO_CALLBACK); } public ASoftlyLimitedBlockingQueue(int maxSize, BlockingQueue inner, Runnable onDiscarded) { this.maxSize = maxSize; this.inner = inner; this.onDiscarded = onDiscarded; } private void ensureCapacity() { while(size() >= maxSize) { onDiscarded.run(); inner.poll(); } } @Override public boolean add(T t) { ensureCapacity(); return inner.add(t); } @Override public boolean offer(T t) { ensureCapacity(); return inner.offer(t); } @Override public T remove() { return inner.remove(); } @Override public T poll() { return inner.poll(); } @Override public T element() { return inner.element(); } @Override public T peek() { return inner.peek(); } @Override public int size() { return inner.size(); } @Override public boolean isEmpty() { return inner.isEmpty(); } @Override public boolean contains(Object o) { return inner.contains(o); } @Override public Iterator iterator() { return inner.iterator(); } @Override public Object[] toArray() { return inner.toArray(); } @Override public T1[] toArray(T1[] a) { return inner.toArray(a); } @Override public boolean remove(Object o) { return inner.remove(o); } @Override public boolean containsAll(Collection c) { return inner.containsAll(c); } @Override public boolean addAll(Collection c) { boolean result = false; for(T el: c) { result = result || add(el); } return result; } @Override public boolean removeAll(Collection c) { return inner.removeAll(c); } @Override public boolean retainAll(Collection c) { return inner.retainAll(c); } @Override public void clear() { inner.clear(); } @Override public boolean equals(Object o) { return inner.equals(o); } @Override public int hashCode() { return inner.hashCode(); } @Override public void put(T t) throws InterruptedException { ensureCapacity(); inner.put(t); } @Override public boolean offer(T t, long timeout, TimeUnit unit) throws InterruptedException { ensureCapacity(); return inner.offer(t, timeout, unit); } @Override public T take() throws InterruptedException { return inner.take(); } @Override public T poll(long timeout, TimeUnit unit) throws InterruptedException { return inner.poll(timeout, unit); } @Override public int remainingCapacity() { return inner.remainingCapacity(); } @Override public int drainTo(Collection c) { return inner.drainTo(c); } @Override public int drainTo(Collection c, int maxElements) { return inner.drainTo(c, maxElements); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy