DurationUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.lang3.time;

  18. import java.time.Duration;
  19. import java.time.Instant;
  20. import java.time.temporal.ChronoUnit;
  21. import java.time.temporal.Temporal;
  22. import java.util.Objects;
  23. import java.util.concurrent.TimeUnit;

  24. import org.apache.commons.lang3.LongRange;
  25. import org.apache.commons.lang3.ObjectUtils;
  26. import org.apache.commons.lang3.function.FailableBiConsumer;
  27. import org.apache.commons.lang3.function.FailableConsumer;
  28. import org.apache.commons.lang3.function.FailableRunnable;
  29. import org.apache.commons.lang3.math.NumberUtils;

  30. /**
  31.  * Utilities for {@link Duration}.
  32.  *
  33.  * @since 3.12.0
  34.  */
  35. public class DurationUtils {

  36.     /**
  37.      * An Integer Range that accepts Longs.
  38.      */
  39.     static final LongRange LONG_TO_INT_RANGE = LongRange.of(NumberUtils.LONG_INT_MIN_VALUE, NumberUtils.LONG_INT_MAX_VALUE);

  40.     /**
  41.      * Accepts the function with the duration as a long milliseconds and int nanoseconds.
  42.      *
  43.      * @param <T> The function exception.
  44.      * @param consumer Accepting function.
  45.      * @param duration The duration to pick apart.
  46.      * @throws T See the function signature.
  47.      * @see StopWatch
  48.      */
  49.     @SuppressWarnings("boxing") // boxing unavoidable
  50.     public static <T extends Throwable> void accept(final FailableBiConsumer<Long, Integer, T> consumer, final Duration duration)
  51.             throws T {
  52.         if (consumer != null && duration != null) {
  53.             consumer.accept(duration.toMillis(), getNanosOfMilli(duration));
  54.         }
  55.     }

  56.     /**
  57.      * Gets the nanosecond part of a Duration converted to milliseconds.
  58.      * <p>
  59.      * Handy when calling an API that takes a long of milliseconds and an int of nanoseconds. For example,
  60.      * {@link Object#wait(long, int)} and {@link Thread#sleep(long, int)}.
  61.      * </p>
  62.      * <p>
  63.      * Note that is this different from {@link Duration#getNano()} because a duration are seconds and nanoseconds.
  64.      * </p>
  65.      *
  66.      * @param duration The duration to query.
  67.      * @return nanoseconds between 0 and 999,999.
  68.      * @deprecated Use {@link #getNanosOfMilli(Duration)}.
  69.      */
  70.     @Deprecated
  71.     public static int getNanosOfMiili(final Duration duration) {
  72.         return getNanosOfMilli(duration);
  73.     }

  74.     /**
  75.      * Gets the nanosecond part of a Duration converted to milliseconds.
  76.      * <p>
  77.      * Handy when calling an API that takes a long of milliseconds and an int of nanoseconds. For example,
  78.      * {@link Object#wait(long, int)} and {@link Thread#sleep(long, int)}.
  79.      * </p>
  80.      * <p>
  81.      * Note that is this different from {@link Duration#getNano()} because a duration are seconds and nanoseconds.
  82.      * </p>
  83.      *
  84.      * @param duration The duration to query.
  85.      * @return nanoseconds between 0 and 999,999.
  86.      * @since 3.13.0
  87.      */
  88.     public static int getNanosOfMilli(final Duration duration) {
  89.         return zeroIfNull(duration).getNano() % 1_000_000;
  90.     }

  91.     /**
  92.      * Tests whether the given Duration is positive (&gt;0).
  93.      *
  94.      * @param duration the value to test
  95.      * @return whether the given Duration is positive (&gt;0).
  96.      */
  97.     public static boolean isPositive(final Duration duration) {
  98.         return !duration.isNegative() && !duration.isZero();
  99.     }

  100.     private static <E extends Throwable> Instant now(final FailableConsumer<Instant, E> nowConsumer) throws E {
  101.         final Instant start = Instant.now();
  102.         nowConsumer.accept(start);
  103.         return start;
  104.     }

  105.     /**
  106.      * Runs the lambda and returns the duration of its execution.
  107.      *
  108.      * @param <E> The type of exception throw by the lambda.
  109.      * @param consumer What to execute.
  110.      * @return The Duration of execution.
  111.      * @throws E thrown by the lambda.
  112.      * @see StopWatch
  113.      * @since 3.13.0
  114.      */
  115.     public static <E extends Throwable> Duration of(final FailableConsumer<Instant, E> consumer) throws E {
  116.         return since(now(consumer::accept));
  117.     }

  118.     /**
  119.      * Runs the lambda and returns the duration of its execution.
  120.      *
  121.      * @param <E> The type of exception throw by the lambda.
  122.      * @param runnable What to execute.
  123.      * @return The Duration of execution.
  124.      * @throws E thrown by the lambda.
  125.      * @see StopWatch
  126.      * @since 3.13.0
  127.      */
  128.     public static <E extends Throwable> Duration of(final FailableRunnable<E> runnable) throws E {
  129.         return of(start -> runnable.run());
  130.     }

  131.     /**
  132.      * Computes the Duration between a start instant and now.
  133.      *
  134.      * @param startInclusive the start instant, inclusive, not null.
  135.      * @return a {@link Duration}, not null.
  136.      * @since 3.13.0
  137.      */
  138.     public static Duration since(final Temporal startInclusive) {
  139.         return Duration.between(startInclusive, Instant.now());
  140.     }

  141.     /**
  142.      * Converts a {@link TimeUnit} to a {@link ChronoUnit}.
  143.      *
  144.      * @param timeUnit A non-null TimeUnit.
  145.      * @return The corresponding ChronoUnit.
  146.      */
  147.     static ChronoUnit toChronoUnit(final TimeUnit timeUnit) {
  148.         // TODO when using Java >= 9: Use TimeUnit.toChronoUnit().
  149.         switch (Objects.requireNonNull(timeUnit)) {
  150.         case NANOSECONDS:
  151.             return ChronoUnit.NANOS;
  152.         case MICROSECONDS:
  153.             return ChronoUnit.MICROS;
  154.         case MILLISECONDS:
  155.             return ChronoUnit.MILLIS;
  156.         case SECONDS:
  157.             return ChronoUnit.SECONDS;
  158.         case MINUTES:
  159.             return ChronoUnit.MINUTES;
  160.         case HOURS:
  161.             return ChronoUnit.HOURS;
  162.         case DAYS:
  163.             return ChronoUnit.DAYS;
  164.         default:
  165.             throw new IllegalArgumentException(timeUnit.toString());
  166.         }
  167.     }

  168.     /**
  169.      * Converts an amount and TimeUnit into a Duration.
  170.      *
  171.      * @param amount   the amount of the duration, measured in terms of the unit, positive or negative
  172.      * @param timeUnit the unit that the duration is measured in, must have an exact duration, not null
  173.      * @return a Duration.
  174.      */
  175.     public static Duration toDuration(final long amount, final TimeUnit timeUnit) {
  176.         return Duration.of(amount, toChronoUnit(timeUnit));
  177.     }

  178.     /**
  179.      * Converts a Duration to milliseconds bound to an int (instead of a long).
  180.      * <p>
  181.      * Handy for low-level APIs that take millisecond timeouts in ints rather than longs.
  182.      * </p>
  183.      * <ul>
  184.      * <li>If the duration milliseconds are greater than {@link Integer#MAX_VALUE}, then return
  185.      * {@link Integer#MAX_VALUE}.</li>
  186.      * <li>If the duration milliseconds are lesser than {@link Integer#MIN_VALUE}, then return
  187.      * {@link Integer#MIN_VALUE}.</li>
  188.      * </ul>
  189.      *
  190.      * @param duration The duration to convert, not null.
  191.      * @return int milliseconds.
  192.      */
  193.     public static int toMillisInt(final Duration duration) {
  194.         Objects.requireNonNull(duration, "duration");
  195.         // intValue() does not do a narrowing conversion here
  196.         return LONG_TO_INT_RANGE.fit(Long.valueOf(duration.toMillis())).intValue();
  197.     }

  198.     /**
  199.      * Returns the given non-null value or {@link Duration#ZERO} if null.
  200.      *
  201.      * @param duration The duration to test.
  202.      * @return The given duration or {@link Duration#ZERO}.
  203.      */
  204.     public static Duration zeroIfNull(final Duration duration) {
  205.         return ObjectUtils.defaultIfNull(duration, Duration.ZERO);
  206.     }

  207.     /**
  208.      * Make private in 4.0.
  209.      *
  210.      * @deprecated TODO Make private in 4.0.
  211.      */
  212.     @Deprecated
  213.     public DurationUtils() {
  214.         // empty
  215.     }
  216. }