blob: 3b9c64902b24f7fc9003f96cb279f06e4aa57a2e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.directory.shared.ldap.util;
import java.util.Iterator;
import java.util.NoSuchElementException;
import org.apache.directory.shared.i18n.I18n;
/**
* An Iterator that joins the results of many iterators.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class JoinIterator implements Iterator
{
/** the iterators whose results are joined */
private final Iterator[] iterators;
private int index;
/**
* Creates an Iterator that joins other Iterators.
*
* @param iterators
* the Iterators whose results are joined
* @throws IllegalArgumentException
* if a null array argument, or one with less than 2 elements is
* used
*/
public JoinIterator(Iterator[] iterators)
{
if ( iterators == null || iterators.length < 2 )
{
throw new IllegalArgumentException( I18n.err( I18n.ERR_04397 ) );
}
if ( iterators != null )
{
this.iterators = new Iterator[ iterators.length ];
System.arraycopy( iterators, 0, this.iterators, 0, iterators.length );
} else {
this.iterators = null;
}
this.index = 0;
}
public void remove()
{
throw new UnsupportedOperationException();
}
public boolean hasNext()
{
for ( /** nada */
; index < iterators.length; index++ )
{
if ( iterators[index].hasNext() )
{
return true;
}
}
return false;
}
public Object next()
{
for ( /** nada */
; index < iterators.length; index++ )
{
if ( iterators[index].hasNext() )
{
return iterators[index].next();
}
}
throw new NoSuchElementException();
}
}