package org.eclipse.collections.impl.lazy.primitive;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Optional;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.impl.EmptyIterator;
import org.eclipse.collections.impl.block.factory.Predicates;
import org.eclipse.collections.api.iterator.ShortIterator;
import org.eclipse.collections.impl.block.procedure.AdaptObjectIntProcedureToProcedure;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.utility.Iterate;
public class FlatCollectShortToObjectIterable<V>
extends AbstractLazyIterable<V>
{
private final ShortIterable iterable;
private final ShortToObjectFunction<? extends Iterable<V>> function;
public FlatCollectShortToObjectIterable(
ShortIterable iterable,
ShortToObjectFunction<? extends Iterable<V>> function)
{
this.iterable = iterable;
this.function = function;
}
@Override
public void each(Procedure<? super V> procedure)
{
this.iterable.forEach((short each) -> Iterate.forEach(this.function.valueOf(each), procedure));
}
@Override
public void forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)
{
Procedure<V> innerProcedure = new AdaptObjectIntProcedureToProcedure<>(objectIntProcedure);
this.iterable.forEach(each ->
{
Iterable<V> iterable = this.function.valueOf(each);
Iterate.forEach(iterable, innerProcedure);
});
}
@Override
public <P> void forEachWith(Procedure2<? super V, ? super P> procedure, P parameter)
{
this.iterable.forEach((short each) -> Iterate.forEachWith(this.function.valueOf(each), procedure, parameter));
}
@Override
public Iterator<V> iterator()
{
return new FlatCollectShortIterator<>(this.iterable, this.function);
}
@Override
public V detect(Predicate<? super V> predicate)
{
V[] result = (V[]) new Object[1];
this.iterable.anySatisfy(each ->
{
Iterable<V> it = this.function.valueOf(each);
return Iterate.anySatisfy(it, each1 ->
{
if (predicate.accept(each1))
{
result[0] = each1;
return true;
}
return false;
});
});
return result[0];
}
@Override
public Optional<V> detectOptional(Predicate<? super V> predicate)
{
V[] result = (V[]) new Object[1];
this.iterable.anySatisfy(each ->
{
Iterable<V> it = this.function.valueOf(each);
if (iterable == null)
{
throw new NullPointerException();
}
return Iterate.anySatisfy(it, each1 ->
{
if (predicate.accept(each1))
{
if (each1 == null)
{
throw new NullPointerException();
}
result[0] = each1;
return true;
}
return false;
});
});
return Optional.ofNullable(result[0]);
}
@Override
public boolean anySatisfy(Predicate<? super V> predicate)
{
return this.iterable.anySatisfy(each -> Iterate.anySatisfy(this.function.valueOf(each), predicate));
}
@Override
public <P> boolean anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter)
{
return this.anySatisfy(Predicates.bind(predicate, parameter));
}
@Override
public boolean allSatisfy(Predicate<? super V> predicate)
{
return this.iterable.allSatisfy(each -> Iterate.allSatisfy(this.function.valueOf(each), predicate));
}
@Override
public <P> boolean allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter)
{
return this.allSatisfy(Predicates.bind(predicate, parameter));
}
@Override
public boolean noneSatisfy(Predicate<? super V> predicate)
{
return this.iterable.noneSatisfy(each -> Iterate.anySatisfy(this.function.valueOf(each), predicate));
}
@Override
public <P> boolean noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter)
{
return this.noneSatisfy(Predicates.bind(predicate, parameter));
}
private final class FlatCollectShortIterator<V> implements Iterator<V>
{
private final ShortIterator iterator;
private final ShortToObjectFunction<? extends Iterable<V>> function;
private Iterator<V> innerIterator = EmptyIterator.getInstance();
public FlatCollectShortIterator(
ShortIterable iterable,
ShortToObjectFunction<? extends Iterable<V>> newFunction)
{
this(iterable.shortIterator(), newFunction);
}
public FlatCollectShortIterator(
ShortIterator newIterator,
ShortToObjectFunction<? extends Iterable<V>> newFunction)
{
this.iterator = newIterator;
this.function = newFunction;
}
@Override
public void remove()
{
throw new UnsupportedOperationException("Cannot remove from a flatCollectShort iterator");
}
@Override
public boolean hasNext()
{
while (true)
{
if (this.innerIterator.hasNext())
{
return true;
}
if (!this.iterator.hasNext())
{
return false;
}
this.innerIterator = this.function.valueOf(this.iterator.next()).iterator();
}
}
@Override
public V next()
{
if (!this.hasNext())
{
throw new NoSuchElementException();
}
return this.innerIterator.next();
}
}
}