org.d2ab.iterator.chars.TailSkippingCharIterator Maven / Gradle / Ivy
/*
* Copyright 2016 Daniel Skogquist Åborg
*
* 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.d2ab.iterator.chars;
import java.util.NoSuchElementException;
/**
* An iterator that skips a set number of steps at the end of another iterator.
*/
public class TailSkippingCharIterator extends DelegatingUnaryCharIterator {
private final int skip;
private boolean started;
private char[] buffer;
private int position;
public TailSkippingCharIterator(CharIterator iterator, int skip) {
super(iterator);
this.skip = skip;
}
@Override
public boolean hasNext() {
if (!started) {
buffer = new char[skip];
position = 0;
while (position < skip && iterator.hasNext())
buffer[position++] = iterator.nextChar();
position = 0;
started = true;
}
return super.hasNext();
}
@Override
public char nextChar() {
if (!hasNext())
throw new NoSuchElementException();
char next = buffer[position];
buffer[position++] = iterator.nextChar();
position = position % skip;
return next;
}
}