blob: e2d659bb1eae5bc24b996b805961031db7ecb925 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Cloudsmith Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ql;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* A FlattenIterator will assume that its operand is an iterator that will produce
* elements that can be represented as iterators. The elements of those iterators
* will be returned in sequence, thus removing one iterator dimension.
*/
public class FlattenIterator implements Iterator {
private static final Object NO_ELEMENT = new Object();
private final Iterator iteratorIterator;
private Iterator currentIterator;
private Object nextObject = NO_ELEMENT;
public FlattenIterator(Iterator iterator) {
this.iteratorIterator = iterator;
}
public boolean hasNext() {
return positionNext();
}
public Object next() {
if (!positionNext())
throw new NoSuchElementException();
Object nxt = nextObject;
nextObject = NO_ELEMENT;
return nxt;
}
public void remove() {
throw new UnsupportedOperationException();
}
private boolean positionNext() {
if (nextObject != NO_ELEMENT)
return true;
while (currentIterator == null || !currentIterator.hasNext()) {
if (!iteratorIterator.hasNext())
return false;
Object nextItor = iteratorIterator.next();
currentIterator = (nextItor instanceof Iterator) ? (Iterator) nextItor : RepeatableIterator.create(nextItor);
}
nextObject = currentIterator.next();
return true;
}
}