spring ThrowingConsumer 源码

  • 2022-08-08
  • 浏览 (328)

spring ThrowingConsumer 代码

文件路径:/spring-core/src/main/java/org/springframework/util/function/ThrowingConsumer.java

/*
 * Copyright 2002-2022 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.util.function;

import java.util.function.BiFunction;
import java.util.function.Consumer;

/**
 * A {@link Consumer} that allows invocation of code that throws a checked
 * exception.
 *
 * @author Stephane Nicoll
 * @author Phillip Webb
 * @since 6.0
 * @param <T> the type of the input to the operation
 */
@FunctionalInterface
public interface ThrowingConsumer<T> extends Consumer<T> {

	/**
	 * Performs this operation on the given argument, possibly throwing a
	 * checked exception.
	 * @param t the input argument
	 * @throws Exception on error
	 */
	void acceptWithException(T t) throws Exception;

	/**
	 * Default {@link Consumer#accept(Object)} that wraps any thrown checked
	 * exceptions (by default in a {@link RuntimeException}).
	 * @see java.util.function.Consumer#accept(Object)
	 */
	@Override
	default void accept(T t) {
		accept(t, RuntimeException::new);
	}

	/**
	 * Performs this operation on the given argument, wrapping any thrown
	 * checked exceptions using the given {@code exceptionWrapper}.
	 * @param exceptionWrapper {@link BiFunction} that wraps the given message
	 * and checked exception into a runtime exception
	 */
	default void accept(T t,BiFunction<String, Exception, RuntimeException> exceptionWrapper) {
		try {
			acceptWithException(t);
		}
		catch (RuntimeException ex) {
			throw ex;
		}
		catch (Exception ex) {
			throw exceptionWrapper.apply(ex.getMessage(), ex);
		}
	}

	/**
	 * Return a new {@link ThrowingConsumer} where the {@link #accept(Object)}
	 * method wraps any thrown checked exceptions using the given
	 * {@code exceptionWrapper}.
	 * @param exceptionWrapper {@link BiFunction} that wraps the given message
	 * and checked exception into a runtime exception
	 * @return the replacement {@link ThrowingConsumer} instance
	 */
	default ThrowingConsumer<T> throwing(BiFunction<String, Exception, RuntimeException> exceptionWrapper) {
		return new ThrowingConsumer<>() {

			@Override
			public void acceptWithException(T t) throws Exception {
				ThrowingConsumer.this.acceptWithException(t);
			}

			@Override
			public void accept(T t) {
				accept(t, exceptionWrapper);
			}

		};
	}

	/**
	 * Lambda friendly convenience method that can be used to create
	 * {@link ThrowingConsumer} where the {@link #accept(Object)} method wraps
	 * any thrown checked exceptions using the given {@code exceptionWrapper}.
	 * @param <T> the type of the input to the operation
	 * @param consumer the source consumer
	 * @return a new {@link ThrowingConsumer} instance
	 */
	static <T> ThrowingConsumer<T> of(ThrowingConsumer<T> consumer) {
		return consumer;
	}

	/**
	 * Lambda friendly convenience method that can be used to create
	 * {@link ThrowingConsumer} where the {@link #accept(Object)} method wraps
	 * any thrown checked exceptions using the given {@code exceptionWrapper}.
	 * @param <T> the type of the input to the operation
	 * @param consumer the source consumer
	 * @param exceptionWrapper the exception wrapper to use
	 * @return a new {@link ThrowingConsumer} instance
	 */
	static <T> ThrowingConsumer<T> of(ThrowingConsumer<T> consumer,
			BiFunction<String, Exception, RuntimeException> exceptionWrapper) {

		return consumer.throwing(exceptionWrapper);
	}

}

相关信息

spring 源码目录

相关文章

spring SingletonSupplier 源码

spring SupplierUtils 源码

spring ThrowingBiFunction 源码

spring ThrowingFunction 源码

spring ThrowingSupplier 源码

spring package-info 源码

0  赞