All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.common.collect.Iterators Maven / Gradle / Ivy

There is a newer version: 8.14.0
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.common.collect;

import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Objects;

public class Iterators {

    /**
     * Returns a single element iterator over the supplied value.
     */
    public static  Iterator single(T element) {
        return new Iterator<>() {

            private T value = Objects.requireNonNull(element);

            @Override
            public boolean hasNext() {
                return value != null;
            }

            @Override
            public T next() {
                final T res = value;
                value = null;
                return res;
            }
        };
    }

    @SafeVarargs
    @SuppressWarnings("varargs")
    public static  Iterator concat(Iterator... iterators) {
        if (iterators == null) {
            throw new NullPointerException("iterators");
        }

        // explicit generic type argument needed for type inference
        return new ConcatenatedIterator(iterators);
    }

    static class ConcatenatedIterator implements Iterator {
        private final Iterator[] iterators;
        private int index = 0;

        @SafeVarargs
        @SuppressWarnings("varargs")
        ConcatenatedIterator(Iterator... iterators) {
            if (iterators == null) {
                throw new NullPointerException("iterators");
            }
            for (int i = 0; i < iterators.length; i++) {
                if (iterators[i] == null) {
                    throw new NullPointerException("iterators[" + i + "]");
                }
            }
            this.iterators = iterators;
        }

        @Override
        public boolean hasNext() {
            boolean hasNext = false;
            while (index < iterators.length && (hasNext = iterators[index].hasNext()) == false) {
                index++;
            }

            return hasNext;
        }

        @Override
        public T next() {
            if (hasNext() == false) {
                throw new NoSuchElementException();
            }
            return iterators[index].next();
        }
    }

    public static  Iterator forArray(T[] array) {
        return new ArrayIterator<>(array);
    }

    private static final class ArrayIterator implements Iterator {

        private final T[] array;
        private int index;

        private ArrayIterator(T[] array) {
            this.array = Objects.requireNonNull(array, "Unable to iterate over a null array");
        }

        @Override
        public boolean hasNext() {
            return index < array.length;
        }

        @Override
        public T next() {
            if (index >= array.length) {
                throw new NoSuchElementException();
            }
            return array[index++];
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy