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

org.springframework.integration.util.FunctionIterator Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2014-2019 the original 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
 *
 *      https://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.springframework.integration.util;

import java.util.Iterator;
import java.util.function.Function;

import org.springframework.lang.Nullable;

/**
 * An {@link Iterator} implementation to convert each item from the target
 * {@link #iterator} to a new object applying the {@link #function} on {@link #next()}.
 *
 * @author Artem Bilan
 * @author Ruslan Stelmachenko
 * @author Gary Russell
 * @since 4.1
 */
public class FunctionIterator implements CloseableIterator {

	private final AutoCloseable closeable;

	private final Iterator iterator;

	private final Function function;

	/**
	 * Construct an instance with the provided iterable and function.
	 * @param iterable the iterable.
	 * @param function the function.
	 */
	public FunctionIterator(Iterable iterable, Function function) {
		this(null, iterable.iterator(), function);
	}

	/**
	 * Construct an instance with the provided root object, iterable and function.
	 * @param closeable an {@link AutoCloseable} to close when iteration is complete.
	 * @param iterable the iterable.
	 * @param function the function.
	 * @since 5.0.7
	 */
	public FunctionIterator(@Nullable AutoCloseable closeable, Iterable iterable,
			Function function) {

		this(closeable, iterable.iterator(), function);
	}

	/**
	 * Construct an instance with the provided iterator and function.
	 * @param newIterator the iterator.
	 * @param function the function.
	 */
	public FunctionIterator(Iterator newIterator, Function function) {
		this(null, newIterator, function);
	}

	/**
	 * Construct an instance with the provided root object, iterator and function.
	 * @param closeable an {@link AutoCloseable} to close when iteration is complete.
	 * @param newIterator the iterator.
	 * @param function the function.
	 * @since 5.0.7
	 */
	public FunctionIterator(@Nullable AutoCloseable closeable, Iterator newIterator,
			Function function) {

		this.closeable = closeable;
		this.iterator = newIterator;
		this.function = function;
	}

	@Override
	public boolean hasNext() {
		return this.iterator.hasNext();
	}

	@Override
	public V next() {
		return this.function.apply(this.iterator.next());
	}

	@Override
	public void close() {
		if (this.iterator instanceof AutoCloseable) {
			try {
				((AutoCloseable) this.iterator).close();
			}
			catch (Exception e) {
				// NOSONAR
			}
		}
		if (this.closeable != null) {
			try {
				this.closeable.close();
			}
			catch (Exception e) {
				// NOSONAR
			}
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy