buckelieg.fn.db.TryFunction Maven / Gradle / Ivy
/*
* Copyright 2016- Anatoly Kutyakov
*
* 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
*
* 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 buckelieg.fn.db;
import static java.util.Objects.requireNonNull;
/**
* Single argument function with returned result that might throw an exception
*
* @param argument type
* @param result type
* @param an exception type thrown
*/
@SuppressWarnings("unchecked")
@FunctionalInterface
public interface TryFunction {
/**
* Represents some one-argument function which might throw an Exception
*
* @param input function input.
* @return mapped value
* @throws E in case of something went wrong
*/
O apply(I input) throws E;
/**
* Returns a function that always returns its input argument.
*
* @param the type of the input and output objects to the function
* @return a function that always returns its input argument
*/
static TryFunction identity() {
return t -> t;
}
/**
* Returns reference of lambda expression.
* Typical usage is:
* {@code TryFunction.of(x -> null).andThen(nil -> null);}
*
* @param tryFunction a function
* @return lambda as {@link TryFunction} reference
* @throws NullPointerException if tryFunction is null
*/
static TryFunction of(TryFunction tryFunction) {
return requireNonNull(tryFunction);
}
/**
* Returns a composed function that first applies the {@code before}
* function to its input, and then applies this function to the result.
*
* @param the type of input to the {@code before} function, and to the
* composed function
* @param before the function to apply before this function is applied
* @return a composed function that first applies the {@code before}
* function and then applies this function
* @throws E an exception
* @throws NullPointerException if before is null
* @see #andThen(TryFunction)
*/
default TryFunction compose(TryFunction super V, ? extends I, ? extends E> before) throws E {
try {
return (V v) -> apply(requireNonNull(before).apply(v));
} catch (Throwable t) {
throw (E) t;
}
}
/**
* Returns a composed function that first applies this function to
* its input, and then applies the {@code after} function to the result.
*
* @param the type of output of the {@code after} function, and of the
* composed function
* @param after the function to apply after this function is applied
* @return a composed function that first applies this function and then
* applies the {@code after} function
* @throws E an exception
* @throws NullPointerException if after is null
* @see #compose(TryFunction)
*/
default TryFunction andThen(TryFunction super O, ? extends V, ? extends E> after) throws E {
try {
return (I t) -> requireNonNull(after).apply(apply(t));
} catch (Throwable t) {
throw (E) t;
}
}
}