eu.lunisolar.magma.func.operator.unary.LUnaryOperator Maven / Gradle / Ivy
/*
* This file is part of "lunisolar-magma".
*
* (C) Copyright 2014-2019 Lunisolar (http://lunisolar.eu/).
*
* 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 eu.lunisolar.magma.func.operator.unary;
import javax.annotation.Nonnull; // NOSONAR
import javax.annotation.Nullable; // NOSONAR
import java.util.Comparator; // NOSONAR
import java.util.Objects; // NOSONAR
import eu.lunisolar.magma.basics.*; //NOSONAR
import eu.lunisolar.magma.basics.builder.*; // NOSONAR
import eu.lunisolar.magma.basics.exceptions.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.aType.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.type.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.domain.*; // NOSONAR
import eu.lunisolar.magma.func.IA;
import eu.lunisolar.magma.func.SA;
import eu.lunisolar.magma.func.*; // NOSONAR
import eu.lunisolar.magma.func.tuple.*; // NOSONAR
import java.util.function.*; // NOSONAR
import java.util.*; // NOSONAR
import java.lang.reflect.*;
import eu.lunisolar.magma.func.action.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.bi.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.obj.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.tri.*; // NOSONAR
import eu.lunisolar.magma.func.function.*; // NOSONAR
import eu.lunisolar.magma.func.function.conversion.*; // NOSONAR
import eu.lunisolar.magma.func.function.from.*; // NOSONAR
import eu.lunisolar.magma.func.function.to.*; // NOSONAR
import eu.lunisolar.magma.func.operator.binary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.ternary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.unary.*; // NOSONAR
import eu.lunisolar.magma.func.predicate.*; // NOSONAR
import eu.lunisolar.magma.func.supplier.*; // NOSONAR
/**
* Non-throwing functional interface (lambda) LUnaryOperator for Java 8.
*
* Type: operator
*
* Domain (lvl: 1): T a
*
* Co-domain: T
*
* Special case of function that corresponds to expressions like (iterator) -> Iterator::next
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LUnaryOperator extends UnaryOperator, MetaOperator, MetaInterface.NonThrowing, OFunction>, Codomain>, Domain1>, LFunction { // NOSONAR
String DESCRIPTION = "LUnaryOperator: T apply(T a)";
default T tupleApply(LSingle args) {
return apply(args.value());
}
/** Function call that handles exceptions according to the instructions. */
default T handlingApply(T a, HandlingInstructions handling) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LUnaryOperator handling(HandlingInstructions handling) {
return a -> handlingApply(a, handling);
}
default T apply(T a, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF, newMessage, messageParams);
}
}
default LUnaryOperator trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return a -> apply(a, exF, newMessage, messageParams);
}
default T apply(T a, @Nonnull ExWF exF) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LUnaryOperator trying(@Nonnull ExWF exF) {
return a -> apply(a, exF);
}
default T applyThen(T a, @Nonnull LFunction handler) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return handler.apply(e);
}
}
default LUnaryOperator tryingThen(@Nonnull LFunction handler) {
return a -> applyThen(a, handler);
}
/** Function call that handles exceptions by always nesting checked exceptions and propagating the others as is. */
default T nestingApply(T a) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/** Function call that handles exceptions by always propagating them as is, even when they are undeclared checked ones. */
default T shovingApply(T a) {
try {
return this.applyX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static T handlingApply(T a, LUnaryOperator func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
return func.handlingApply(a, handling);
}
static T tryApply(T a, LUnaryOperator func) {
Null.nonNullArg(func, "func");
return func.nestingApply(a);
}
static T tryApply(T a, LUnaryOperator func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
return func.apply(a, exF, newMessage, messageParams);
}
static T tryApply(T a, LUnaryOperator func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
return func.apply(a, exF);
}
static T tryApplyThen(T a, LUnaryOperator func, @Nonnull LFunction handler) {
Null.nonNullArg(func, "func");
return func.applyThen(a, handler);
}
default T failSafeApply(T a, @Nonnull LUnaryOperator failSafe) {
try {
return apply(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return failSafe.apply(a);
}
}
static T failSafeApply(T a, LUnaryOperator func, @Nonnull LUnaryOperator failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
return failSafe.apply(a);
} else {
return func.failSafeApply(a, failSafe);
}
}
static LUnaryOperator failSafe(LUnaryOperator func, @Nonnull LUnaryOperator failSafe) {
Null.nonNullArg(failSafe, "failSafe");
return a -> failSafeApply(a, func, failSafe);
}
LSupplier NULL_VALUE_MESSAGE_SUPPLIER = () -> "Evaluated value by nonNullApply() method cannot be null (" + DESCRIPTION + ").";
/** Function call that ensures the result is not null */
@Nonnull
default T nonNullApply(T a) {
return Null.requireNonNull(apply(a), NULL_VALUE_MESSAGE_SUPPLIER);
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LUnaryOperator.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(int min_i, int max_i, T a, LUnaryOperator func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i <= max_i; i++) {
func.apply(a);
}
} else {
for (int i = min_i; i >= max_i; i--) {
func.apply(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(int min_i, int max_i, T a, LUnaryOperator func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i < max_i; i++) {
func.apply(a);
}
} else {
for (int i = min_i; i > max_i; i--) {
func.apply(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(int max_i, T a, LUnaryOperator func) {
if (max_i < 0)
return;
fromTill(0, max_i, a, func);
}
/** Cast that removes generics. */
public default LUnaryOperator untyped() {
return this;
}
/** Cast that replace generics. */
public default LUnaryOperator cast() {
return untyped();
}
/** Cast that replace generics. */
public static LUnaryOperator cast(LUnaryOperator function) {
return (LUnaryOperator) function;
}
/** Captures arguments but delays the evaluation. */
default LSupplier capture(T a) {
return () -> this.apply(a);
}
/** Creates function that always returns the same value. */
static LUnaryOperator constant(T r) {
return a -> r;
}
/** Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces). */
@Nonnull
static LUnaryOperator unaryOp(final @Nonnull LUnaryOperator lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LUnaryOperator recursive(final @Nonnull LFunction, LUnaryOperator> selfLambda) {
final LUnaryOperatorSingle single = new LUnaryOperatorSingle();
LUnaryOperator func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LUnaryOperatorSingle implements LSingle>, LUnaryOperator {
private LUnaryOperator target = null;
@Override
public T applyX(T a) throws Throwable {
return target.applyX(a);
}
@Override
public LUnaryOperator value() {
return target;
}
}
@Nonnull
static LUnaryOperator unaryOpThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce();
};
}
@Nonnull
static LUnaryOperator unaryOpThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce(message);
};
}
static T call(T a, final @Nonnull LUnaryOperator lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda.apply(a);
}
//
/** Wraps JRE instance. */
@Nonnull
static LUnaryOperator wrap(final UnaryOperator other) {
return other::apply;
}
//
//
/** Safe instance. That always returns the same value (as produce). */
@Nonnull
static LUnaryOperator safe() {
return LUnaryOperator::produce;
}
/** Safe instance supplier. Returns supplier of safe() instance. */
@Nonnull
static LSupplier> safeSupplier() {
return () -> safe();
}
/** Safe wrapping. Either argument function is returned (if it is not null) or safe() instance. */
@Nonnull
static LUnaryOperator safe(final @Nullable LUnaryOperator other) {
if (other == null) {
return safe();
} else {
return other;
}
}
/** Safe supplier. Either argument supplier is returned (if it is not null) or supplier of safe() instance. */
@Nonnull
static LSupplier> safeSupplier(final @Nullable LSupplier> supplier) {
if (supplier == null) {
return safeSupplier();
} else {
return supplier;
}
}
//
//
/** Combines two functions together in a order. */
@Nonnull
default LFunction then(@Nonnull LFunction super T, ? extends V> after) {
Null.nonNullArg(after, "after");
return a -> after.apply(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToByteFunction thenToByte(@Nonnull LToByteFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsByte(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToSrtFunction thenToSrt(@Nonnull LToSrtFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsSrt(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToIntFunction thenToInt(@Nonnull LToIntFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsInt(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToLongFunction thenToLong(@Nonnull LToLongFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsLong(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToFltFunction thenToFlt(@Nonnull LToFltFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsFlt(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToDblFunction thenToDbl(@Nonnull LToDblFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsDbl(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LToCharFunction thenToChar(@Nonnull LToCharFunction super T> after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsChar(this.apply(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LPredicate thenToBool(@Nonnull LPredicate super T> after) {
Null.nonNullArg(after, "after");
return a -> after.test(this.apply(a));
}
//
/** Returns a function that always returns its input argument. */
@Nonnull
static LUnaryOperator identity() {
return t -> t;
}
//
//
/** Converts to function that makes sure that the result is not null. */
@Nonnull
default LUnaryOperator nonNullable() {
return this::nonNullApply;
}
/** Does nothing (LUnaryOperator) Operator */
public static T produce(T a) {
return (T) Function4U.defaultObject;
}
/**
* For each element (or tuple) from arguments, calls the function and passes the result to consumer.
* Thread safety, fail-fast, fail-safety of this method is not expected.
*/
default void forEach(IndexedRead> ia, C0 source, LConsumer super T> consumer) {
int size = ia.size(source);
LOiFunction