![JAR search and dependency download from the Maven repository](/logo.png)
org.cactoos.func.FuncWithFallback Maven / Gradle / Ivy
Show all versions of cactoos Show documentation
/**
* The MIT License (MIT)
*
* Copyright (c) 2017-2018 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.cactoos.func;
import org.cactoos.Func;
/**
* Func with a fallback plan.
*
* There is no thread-safety guarantee.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id: 8cf1739e2646ae5d99af248f89a6b1b8994a0bd5 $
* @param Type of input
* @param Type of output
* @since 0.2
* @todo #759:30min Refactor FuncWithFallback applying a new
* ScalarWithFallback: change implementation of this class so that it uses
* ScalarWithFallback as base implementation. Refactored class should allow
* the user to specify multiple fallbacks for different types of exceptions
* (similar to ScalarWithFallback).
*/
public final class FuncWithFallback implements Func {
/**
* The func.
*/
private final Func func;
/**
* The fallback.
*/
private final Func fallback;
/**
* The follow up.
*/
private final Func follow;
/**
* Ctor.
* @param fnc The func
* @param fbk The fallback
*/
public FuncWithFallback(final Func fnc,
final Func fbk) {
this(fnc, fbk, input -> input);
}
/**
* Ctor.
* @param fnc The func
* @param fbk The fallback
* @param flw The follow up func
*/
public FuncWithFallback(final Func fnc,
final Func fbk, final Func flw) {
this.func = fnc;
this.fallback = fbk;
this.follow = flw;
}
@Override
@SuppressWarnings("PMD.AvoidCatchingThrowable")
public Y apply(final X input) throws Exception {
Y result;
try {
result = this.func.apply(input);
} catch (final InterruptedException ex) {
Thread.currentThread().interrupt();
result = this.fallback.apply(ex);
// @checkstyle IllegalCatchCheck (1 line)
} catch (final Throwable ex) {
result = this.fallback.apply(ex);
}
return this.follow.apply(result);
}
}