io.activej.async.function.AsyncBiPredicate Maven / Gradle / Ivy
Show all versions of activej-promise Show documentation
/*
* Copyright (C) 2020 ActiveJ LLC.
*
* 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 io.activej.async.function;
import io.activej.common.function.BiPredicateEx;
import io.activej.promise.Promise;
import java.util.function.Predicate;
import static io.activej.common.exception.FatalErrorHandler.handleError;
@FunctionalInterface
public interface AsyncBiPredicate extends AsyncBiPredicateEx {
@Override
Promise test(T t, U u);
/**
* Wraps a {@link BiPredicateEx} interface.
*
* @param predicate a {@link BiPredicateEx}
* @return {@link AsyncBiPredicate} that works on top of {@link BiPredicateEx} interface
*/
static AsyncBiPredicate of(BiPredicateEx super T, ? super U> predicate) {
return (t, u) -> {
try {
return Promise.of(predicate.test(t, u));
} catch (Exception e) {
handleError(e, predicate);
return Promise.ofException(e);
}
};
}
static AsyncBiPredicate sanitize(AsyncBiPredicateEx super T, ? super U> predicate) {
return (t, u) -> {
try {
return predicate.test(t, u);
} catch (Exception e) {
handleError(e, predicate);
return Promise.ofException(e);
}
};
}
/**
* Returns an {@link AsyncBiPredicate} that always returns promise of {@code true}
*/
static AsyncBiPredicate alwaysTrue() {
return (t, u) -> Promise.of(Boolean.TRUE);
}
/**
* Returns an {@link AsyncBiPredicate} that always returns promise of {@code false}
*/
static AsyncBiPredicate alwaysFalse() {
return (t, u) -> Promise.of(Boolean.FALSE);
}
/**
* Negates a given {@link AsyncBiPredicate}
*
* @param predicate an original {@link AsyncBiPredicate}
* @return an {@link AsyncBiPredicate} that represents a logical negation of original predicate
*/
static AsyncBiPredicate not(AsyncBiPredicate super T, ? super U> predicate) {
//noinspection unchecked
return (AsyncBiPredicate) predicate.negate();
}
/**
* Negates {@code this} {@link AsyncBiPredicate}
*
* @return an {@link AsyncBiPredicate} that represents a logical negation of {@code this} predicate
*/
default AsyncBiPredicate negate() {
return (t, u) -> test(t, u).map(b -> !b);
}
/**
* Returns a composed {@link AsyncBiPredicate} that represents a logical AND of this
* asynchronous predicate and the other
*
* Unlike Java's {@link Predicate#and(Predicate)} this method does not provide short-circuit.
* If either {@code this} or {@code other} predicate returns an exceptionally completed promise,
* the combined asynchronous predicate also returns an exceptionally completed promise
*
* @param other other {@link AsyncBiPredicate} that will be logically ANDed with {@code this} predicate
* @return a composed {@link AsyncBiPredicate} that represents a logical AND of this
* asynchronous predicate and the other
*/
default AsyncBiPredicate and(AsyncBiPredicate super T, ? super U> other) {
return (t, u) -> test(t, u).combine(other.test(t, u), (b1, b2) -> b1 && b2);
}
/**
* Returns a composed {@link AsyncBiPredicate} that represents a logical OR of this
* asynchronous predicate and the other
*
* Unlike Java's {@link Predicate#or(Predicate)} this method does not provide short-circuit.
* If either {@code this} or {@code other} predicate returns an exceptionally completed promise,
* the combined asynchronous predicate also returns an exceptionally completed promise
*
* @param other other {@link AsyncBiPredicate} that will be logically ORed with {@code this} predicate
* @return a composed {@link AsyncBiPredicate} that represents a logical OR of this
* asynchronous predicate and the other
*/
default AsyncBiPredicate or(AsyncBiPredicate super T, ? super U> other) {
return (t, u) -> test(t, u).combine(other.test(t, u), (b1, b2) -> b1 || b2);
}
}