![JAR search and dependency download from the Maven repository](/logo.png)
org.cp.elements.util.BreadthFirstIterator Maven / Gradle / Ivy
/*
* Copyright 2011-Present Author or Authors.
*
* 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.cp.elements.util;
import static org.cp.elements.lang.RuntimeExceptionsFactory.newIllegalStateException;
import static org.cp.elements.lang.RuntimeExceptionsFactory.newNoSuchElementException;
import static org.cp.elements.util.CollectionUtils.asIterable;
import java.util.Deque;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.concurrent.atomic.AtomicBoolean;
import org.cp.elements.lang.Assert;
import org.cp.elements.lang.annotation.NotNull;
/**
* {@link Iterator} implementation and facade used for an {@link Iterator} of {@link Iterator Iterators}
* iterating elements in row order, left to right, top to bottom.
*
* @author John Blum
* @param {@link Class type} of the {@link Object objects} iterated over by this {@link Iterator}.
* @see java.util.Iterator
* @see org.cp.elements.util.DepthFirstIterator
* @since 1.0.0
*/
@SuppressWarnings("unused")
public class BreadthFirstIterator implements Iterator {
private final AtomicBoolean nextCalled = new AtomicBoolean(false);
private final Deque> iterators = new LinkedList<>();
/**
* Constructs an instance of the BreadthFirstIterator class wrapping the Iterator of Iterators to collectively
* traverse the Iterators in order, left to right, top to bottom.
*
* @param iterators the Iterator of Iterators to encapsulate in a breadth-first traversal.
* @throws java.lang.NullPointerException if the Iterator of Iterators reference is null.
* @see java.util.Iterator
*/
public BreadthFirstIterator(@NotNull Iterator> iterators) {
Assert.notNull(iterators, "The Iterator of Iterators must not be null!");
for (Iterator iterator : asIterable(iterators)) {
if (iterator != null) {
this.iterators.add(iterator);
}
}
}
/**
* Determines whether another element is available in the iteration.
*
* @return a boolean value indicating whether another element is available in the iteration.
* @see java.util.Iterator#hasNext()
*/
@Override
public boolean hasNext() {
while (!(this.iterators.isEmpty() || this.iterators.peek().hasNext())) {
Assert.isFalse(this.iterators.removeFirst().hasNext(), newIllegalStateException("removing a non-empty Iterator"));
}
return (!this.iterators.isEmpty() && this.iterators.peek().hasNext());
}
/**
* Gets the next element in the iteration.
*
* @return the next element in the iteration.
* @throws java.util.NoSuchElementException if the iteration has exhausted all elements.
* @see java.util.Iterator#next()
* @see #hasNext()
*/
@Override
@SuppressWarnings("all")
public T next() {
Assert.isTrue(hasNext(), newNoSuchElementException("The iteration has no more elements!"));
T value = this.iterators.peek().next();
this.nextCalled.set(true);
return value;
}
/**
* Removes the current element in the iteration.
*
* @throws java.lang.IllegalStateException if the next method has not yet been called, or the remove method
* has already been called after the last call to the next method.
* @see java.util.Iterator#remove()
*/
@Override
@SuppressWarnings("all")
public void remove() {
Assert.state(this.nextCalled.compareAndSet(true, false),
"next was not called before remove");
this.iterators.peek().remove();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy