java8.util.PQueueSpliterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamsupport Show documentation
Show all versions of streamsupport Show documentation
streamsupport is a backport of the Java 8 java.util.function (functional interfaces) and
java.util.stream (streams) API for Java 6 / 7 and Android developers
The newest version!
/*
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package java8.util;
import java.util.Comparator;
import java.util.ConcurrentModificationException;
import java.util.PriorityQueue;
import java8.util.Spliterator;
import java8.util.function.Consumer;
// Spliterator for java.util.PriorityQueue
final class PQueueSpliterator implements Spliterator {
// CVS rev. 1.133
private final PriorityQueue pq;
private int index; // current index, modified on advance/split
private int fence; // -1 until first use
private int expectedModCount; // initialized when fence set
/** Creates new spliterator covering the given range. */
private PQueueSpliterator(PriorityQueue pq, int origin, int fence,
int expectedModCount) {
this.pq = pq;
this.index = origin;
this.fence = fence;
this.expectedModCount = expectedModCount;
}
static Spliterator spliterator(PriorityQueue pq) {
return new PQueueSpliterator(pq, 0, -1, 0);
}
private int getFence() { // initialize fence to size on first use
int hi;
if ((hi = fence) < 0) {
expectedModCount = getModCount(pq);
hi = fence = getSize(pq);
}
return hi;
}
@Override
public PQueueSpliterator trySplit() {
int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
return (lo >= mid) ? null :
new PQueueSpliterator(pq, lo, index = mid,
expectedModCount);
}
@Override
@SuppressWarnings("unchecked")
public void forEachRemaining(Consumer super E> action) {
Objects.requireNonNull(action);
PriorityQueue q = pq;
if (fence < 0) { fence = getSize(q); expectedModCount = getModCount(q); }
Object[] es = getQueue(q);
int i, hi; E e;
for (i = index, index = hi = fence; i < hi; i++) {
if ((e = (E) es[i]) == null) {
break; // must be CME
}
action.accept(e);
}
if (getModCount(q) != expectedModCount) {
throw new ConcurrentModificationException();
}
}
@Override
@SuppressWarnings("unchecked")
public boolean tryAdvance(Consumer super E> action) {
Objects.requireNonNull(action);
PriorityQueue q = pq;
if (fence < 0) { fence = getSize(q); expectedModCount = getModCount(q); }
int i;
if ((i = index) < fence) {
index = i + 1;
E e;
if ((e = (E) getQueue(q)[i]) == null
|| getModCount(q) != expectedModCount) {
throw new ConcurrentModificationException();
}
action.accept(e);
return true;
}
return false;
}
@Override
public long estimateSize() {
return getFence() - index;
}
@Override
public int characteristics() {
return Spliterator.SIZED | Spliterator.SUBSIZED | Spliterator.NONNULL;
}
@Override
public Comparator super E> getComparator() {
return Spliterators.getComparator(this);
}
@Override
public long getExactSizeIfKnown() {
return Spliterators.getExactSizeIfKnown(this);
}
@Override
public boolean hasCharacteristics(int characteristics) {
return Spliterators.hasCharacteristics(this, characteristics);
}
private static int getSize(PriorityQueue pq) {
return U.getInt(pq, SIZE_OFF);
}
private static int getModCount(PriorityQueue pq) {
if (IS_HARMONY) {
return 0;
}
return U.getInt(pq, MODCOUNT_OFF);
}
private static Object[] getQueue(PriorityQueue pq) {
return (Object[]) U.getObject(pq, QUEUE_OFF);
}
// Unsafe mechanics
private static final boolean IS_HARMONY = Spliterators.IS_HARMONY_ANDROID;
private static final sun.misc.Unsafe U = UnsafeAccess.unsafe;
private static final long SIZE_OFF;
private static final long MODCOUNT_OFF;
private static final long QUEUE_OFF;
static {
try {
SIZE_OFF = U.objectFieldOffset(PriorityQueue.class
.getDeclaredField("size"));
if (!IS_HARMONY) {
MODCOUNT_OFF = U.objectFieldOffset(PriorityQueue.class
.getDeclaredField("modCount"));
} else {
MODCOUNT_OFF = 0L; // unused
}
String queueFieldName = IS_HARMONY ? "elements" : "queue";
QUEUE_OFF = U.objectFieldOffset(PriorityQueue.class
.getDeclaredField(queueFieldName));
} catch (Exception e) {
throw new Error(e);
}
}
}