org.agrona.collections.IntIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Agrona Show documentation
Show all versions of Agrona Show documentation
High performance primitives and utility library.
/*
* Copyright 2014 - 2016 Real Logic Ltd.
*
* 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.agrona.collections;
import org.agrona.generation.DoNotSub;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* An iterator for a sequence of primitive values.
*/
public class IntIterator implements Iterator
{
private final int missingValue;
@DoNotSub private int positionCounter;
@DoNotSub private int stopCounter;
private int[] values;
/**
* Construct an {@link Iterator} over an array of primitives ints.
*
* @param missingValue to indicate the value is missing, i.e. not present or null.
* @param values to iterate over.
*/
public IntIterator(final int missingValue, final int[] values)
{
this.missingValue = missingValue;
reset(values);
}
/**
* Reset methods for fixed size collections.
*/
void reset()
{
reset(values);
}
/**
* Reset method for expandable collections.
*
* @param values to be iterated over
*/
void reset(final int[] values)
{
this.values = values;
@DoNotSub final int length = values.length;
@DoNotSub int i = length;
if (values[length - 1] != missingValue)
{
i = 0;
for (@DoNotSub int size = length; i < size; i++)
{
if (values[i] == missingValue)
{
break;
}
}
}
stopCounter = i;
positionCounter = i + length;
}
@DoNotSub protected int position()
{
return positionCounter & (values.length - 1);
}
public boolean hasNext()
{
final int[] values = this.values;
@DoNotSub final int mask = values.length - 1;
for (@DoNotSub int i = positionCounter - 1; i >= stopCounter; i--)
{
@DoNotSub final int index = i & mask;
if (values[index] != missingValue)
{
return true;
}
}
return false;
}
protected void findNext()
{
final int[] values = this.values;
@DoNotSub final int mask = values.length - 1;
for (@DoNotSub int i = positionCounter - 1; i >= stopCounter; i--)
{
@DoNotSub final int index = i & mask;
if (values[index] != missingValue)
{
positionCounter = i;
return;
}
}
throw new NoSuchElementException();
}
public Integer next()
{
return nextValue();
}
/**
* Strongly typed alternative of {@link Iterator#next()} not to avoid boxing.
*
* @return the next int value.
*/
public int nextValue()
{
findNext();
return values[position()];
}
}