org.jctools.queues.unpadded.ConcurrentCircularUnpaddedArrayQueue Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jctools.queues.unpadded;
import org.jctools.queues.IndexedQueueSizeUtil.IndexedQueue;
import org.jctools.util.Pow2;
import java.util.AbstractQueue;
import java.util.Iterator;
import java.util.NoSuchElementException;
import static org.jctools.util.UnsafeRefArrayAccess.*;
import org.jctools.queues.*;
/**
* NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator
* which can found in the jctools-build module. The original source file is ConcurrentCircularArrayQueue.java.
*/
abstract class ConcurrentCircularUnpaddedArrayQueueL0Pad extends AbstractQueue {
}
/**
* NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator
* which can found in the jctools-build module. The original source file is ConcurrentCircularArrayQueue.java.
*
* Common functionality for array backed queues. The class is pre-padded and the array is padded on either side to help
* with False Sharing prevention. It is expected that subclasses handle post padding.
*/
abstract class ConcurrentCircularUnpaddedArrayQueue extends ConcurrentCircularUnpaddedArrayQueueL0Pad implements MessagePassingQueue, IndexedQueue, QueueProgressIndicators, SupportsIterator {
protected final long mask;
protected final E[] buffer;
ConcurrentCircularUnpaddedArrayQueue(int capacity) {
int actualCapacity = Pow2.roundToPowerOfTwo(capacity);
mask = actualCapacity - 1;
buffer = allocateRefArray(actualCapacity);
}
@Override
public int size() {
return IndexedQueueSizeUtil.size(this, IndexedQueueSizeUtil.PLAIN_DIVISOR);
}
@Override
public boolean isEmpty() {
return IndexedQueueSizeUtil.isEmpty(this);
}
@Override
public String toString() {
return this.getClass().getName();
}
@Override
public void clear() {
while (poll() != null) {
// if you stare into the void
}
}
@Override
public int capacity() {
return (int) (mask + 1);
}
@Override
public long currentProducerIndex() {
return lvProducerIndex();
}
@Override
public long currentConsumerIndex() {
return lvConsumerIndex();
}
/**
* Get an iterator for this queue. This method is thread safe.
*
* The iterator provides a best-effort snapshot of the elements in the queue.
* The returned iterator is not guaranteed to return elements in queue order,
* and races with the consumer thread may cause gaps in the sequence of returned elements.
* Like {link #relaxedPoll}, the iterator may not immediately return newly inserted elements.
*
* @return The iterator.
*/
@Override
public Iterator iterator() {
final long cIndex = lvConsumerIndex();
final long pIndex = lvProducerIndex();
return new WeakIterator(cIndex, pIndex, mask, buffer);
}
private static class WeakIterator implements Iterator {
private final long pIndex;
private final long mask;
private final E[] buffer;
private long nextIndex;
private E nextElement;
WeakIterator(long cIndex, long pIndex, long mask, E[] buffer) {
this.nextIndex = cIndex;
this.pIndex = pIndex;
this.mask = mask;
this.buffer = buffer;
nextElement = getNext();
}
@Override
public void remove() {
throw new UnsupportedOperationException("remove");
}
@Override
public boolean hasNext() {
return nextElement != null;
}
@Override
public E next() {
final E e = nextElement;
if (e == null)
throw new NoSuchElementException();
nextElement = getNext();
return e;
}
private E getNext() {
while (nextIndex < pIndex) {
long offset = calcCircularRefElementOffset(nextIndex++, mask);
E e = lvRefElement(buffer, offset);
if (e != null) {
return e;
}
}
return null;
}
}
}