All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.theangrydev.businessflows.TechnicalFailure Maven / Gradle / Ivy

Go to download

A combination of the Try monad and the Either monad, to help tame complex business flows.

There is a newer version: 10.3.0
Show newest version
/*
 * Copyright 2016 Liam Williams .
 *
 * This file is part of business-flows.
 *
 * 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.github.theangrydev.businessflows;

/**
 * A {@link TechnicalFailure} is a {@link BusinessFlow} that is biased towards the result being an {@link Exception}.
 */
public interface TechnicalFailure extends BusinessFlow, WithOptional {

    /**
     * Provides a {@link TechnicalFailure} view over a known {@link Exception} object.
     *
     * @param technicalFailure The technical failure to initiate the flow with
     * @param           The type of happy object the resulting {@link TechnicalFailure} may represent
     * @param             The type of sad object the resulting {@link TechnicalFailure} may represent
     * @return A {@link TechnicalFailure} that is a technical failure on the inside
     */
    static  TechnicalFailure technicalFailure(Exception technicalFailure) {
        return new TechnicalFailureCaseTechnicalFailure<>(technicalFailure);
    }

    /**
     * Provides a {@link TechnicalFailure} view over a known {@link Sad} object.
     *
     * @param sad     The sad object to initiate the flow with
     * @param  The type of happy object the resulting {@link TechnicalFailure} may represent
     * @param    The type of sad object the resulting {@link TechnicalFailure} may represent
     * @return A {@link TechnicalFailure} that is sad on the inside
     */
    static  TechnicalFailure sadPath(Sad sad) {
        return new SadCaseTechnicalFailure<>(sad);
    }

    /**
     * Provides a {@link TechnicalFailure} view over a known {@link Happy} object.
     *
     * @param happy   The happy object to initiate the flow with
     * @param  The type of happy object the resulting {@link TechnicalFailure} may represent
     * @param    The type of sad object the resulting {@link TechnicalFailure} may represent
     * @return A {@link TechnicalFailure} that is happy on the inside
     */
    static  TechnicalFailure happyPath(Happy happy) {
        return new HappyCaseTechnicalFailure<>(happy);
    }

    /**
     * If the underlying business case is a technical failure, then apply the given action, otherwise do nothing to the
     * underlying case.
     *
     * @param action The action to apply to an existing technical failure
     * @return The result of applying the action to the existing technical failure, if applicable
     */
    TechnicalFailure then(Mapping> action);

    /**
     * If the underlying business case is a technical failure, then apply the given mapping, otherwise do nothing to the
     * underlying case.
     *
     * @param mapping The mapping to apply to an existing technical failure
     * @return The result of applying the mapping to the existing technical failure, if applicable
     */
    TechnicalFailure map(Mapping mapping);

    /**
     * If the underlying business case is a technical failure, recover to a {@link Happy} path using the given recovery mapping.
     *
     * @param recovery The recovery to apply to an existing technical failure
     * @return The result of applying the recovery to the existing technical failure, if applicable
     */
    HappyPath recover(Mapping recovery);

    /**
     * If the underlying business case is a technical failure, recover to a {@link Happy} path using the given {@link Attempt}.
     *
     * @param recovery The recovery to apply to an existing technical failure
     * @return The result of applying {@link Attempt}, if applicable
     */
    HappyPath recover(Attempt recovery);

    /**
     * If the underlying business case is a technical failure, map to a {@link Sad} path using the given recovery mapping.
     *
     * @param mapping The mapping to apply to an existing technical failure
     * @return The result of applying the mapping to the existing technical failure, if applicable
     */
    SadPath mapToSadPath(Mapping mapping);

    /**
     * If the underlying business case is a technical failure, map to a {@link Sad} path using the given {@link Attempt}
     *
     * @param mapping The mapping to apply to an existing technical failure
     * @return The result of applying {@link Attempt}, if applicable
     */
    SadPath mapToSadPath(Attempt mapping);

    /**
     * Take a look at the technical failure (if there really is one).
     *
     * @param peek What to do if the underlying business case is a technical failure
     * @return The same {@link TechnicalFailure}
     */
    TechnicalFailure peek(Peek peek);

    /**
     * Throw the technical failure, if it is present.
     *
     * @throws Exception if the underlying business case is a technical failure
     * @return This {@link TechnicalFailure} if there is not an {@link Exception} to throw
     */
    TechnicalFailure throwIt() throws Exception;

    /**
     * Throw the technical failure, if it is present, wrapped in a {@link RuntimeException}.
     *
     * @throws RuntimeException if the underlying business case is a technical failure
     * @return This {@link TechnicalFailure} if there is not an {@link RuntimeException} to throw
     */
    TechnicalFailure throwItAsARuntimeException() throws RuntimeException;

    /**
     * {@inheritDoc}
     */
    @Override
    default TechnicalFailure ifTechnicalFailure() {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy