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

io.joynr.common.ExpiryDateUtils Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * %%
 * Copyright (C) 2022 BMW Car IT GmbH
 * %%
 * 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.
 * #L%
 */
package io.joynr.common;

public class ExpiryDateUtils {

    //No need to instantiate class with static methods
    private ExpiryDateUtils() {

    }

    //JavaScript max safe integer (2^53-1)
    public static final long MAX_JS_INT = 9007199254740991L;

    private static final LongToLongBiFunction ADD = Math::addExact;
    private static final LongToLongFunction LIMIT_MAX = x -> Math.min(x, MAX_JS_INT);
    private static final LongToLongBiFunction ADD_AND_LIMIT = ADD.andThen(LIMIT_MAX);
    private static final LongToLongBiFunction SUBTRACT = Math::subtractExact;

    private static long clamp(final LongToLongBiFunction biFunction,
                              final long clampValue,
                              final long firstParam,
                              final long secondParam) {
        try {
            return biFunction.apply(firstParam, secondParam);
        } catch (final ArithmeticException exception) {
            return clampValue;
        }
    }

    /**
     * Adds first argument to second.
     * Result is limited to JavaScript max safe integer value.
     * @param first  first argument of sum
     * @param second second argument of sum
     * @return result of sum
     */
    public static long addAndLimit(final long first, final long second) {
        return clamp(ADD_AND_LIMIT, MAX_JS_INT, first, second);
    }

    /**
     * Subtracts second argument from first
     * @param first  first argument of subtraction
     * @param second second argument of subtraction
     * @return result of subtraction
     */
    public static long subtract(final long first, final long second) {
        return clamp(SUBTRACT, Long.MIN_VALUE, first, second);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy