spring-data-redis TimeoutUtils 源码

  • 2022-08-16
  • 浏览 (414)

spring-data-redis TimeoutUtils 代码

文件路径:/src/main/java/org/springframework/data/redis/core/TimeoutUtils.java

/*
 * Copyright 2013-2022 the original author or authors.
 *
 * 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
 *
 *      https://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 org.springframework.data.redis.core;

import java.time.Duration;
import java.util.concurrent.TimeUnit;

/**
 * Helper class featuring methods for calculating Redis timeouts
 *
 * @author Jennifer Hickey
 * @author Mark Paluch
 * @author Christoph Strobl
 */
public abstract class TimeoutUtils {

	/**
	 * Check if a given Duration can be represented in {@code sec} or requires {@code msec} representation.
	 *
	 * @param duration the actual {@link Duration} to inspect. Never {@literal null}.
	 * @return {@literal true} if the {@link Duration} contains millisecond information.
	 * @since 2.1
	 */
	public static boolean hasMillis(Duration duration) {
		return duration.toMillis() % 1000 != 0;
	}

	/**
	 * Converts the given timeout to seconds.
	 * <p>
	 * Since a 0 timeout blocks some Redis ops indefinitely, this method will return 1 if the original value is greater
	 * than 0 but is truncated to 0 on conversion.
	 *
	 * @param duration The duration to convert
	 * @return The converted timeout
	 * @since 2.3
	 */
	public static long toSeconds(Duration duration) {
		return roundUpIfNecessary(duration.toMillis(), duration.getSeconds());
	}

	/**
	 * Converts the given timeout to seconds.
	 * <p>
	 * Since a 0 timeout blocks some Redis ops indefinitely, this method will return 1 if the original value is greater
	 * than 0 but is truncated to 0 on conversion.
	 *
	 * @param timeout The timeout to convert
	 * @param unit The timeout's unit
	 * @return The converted timeout
	 */
	public static long toSeconds(long timeout, TimeUnit unit) {
		return roundUpIfNecessary(timeout, unit.toSeconds(timeout));
	}

	/**
	 * Converts the given timeout to seconds with a fraction of seconds.
	 *
	 * @param timeout The timeout to convert
	 * @param unit The timeout's unit
	 * @return The converted timeout
	 * @since 2.6
	 */
	public static double toDoubleSeconds(long timeout, TimeUnit unit) {

		switch (unit) {
			case MILLISECONDS:
			case MICROSECONDS:
			case NANOSECONDS:
				return unit.toMillis(timeout) / 1000d;
			default:
				return unit.toSeconds(timeout);
		}
	}

	/**
	 * Converts the given timeout to milliseconds.
	 * <p>
	 * Since a 0 timeout blocks some Redis ops indefinitely, this method will return 1 if the original value is greater
	 * than 0 but is truncated to 0 on conversion.
	 *
	 * @param timeout The timeout to convert
	 * @param unit The timeout's unit
	 * @return The converted timeout
	 */
	public static long toMillis(long timeout, TimeUnit unit) {
		return roundUpIfNecessary(timeout, unit.toMillis(timeout));
	}

	private static long roundUpIfNecessary(long timeout, long convertedTimeout) {
		// A 0 timeout blocks some Redis ops indefinitely, round up if that's
		// not the intention
		if (timeout > 0 && convertedTimeout == 0) {
			return 1;
		}
		return convertedTimeout;
	}
}

相关信息

spring-data-redis 源码目录

相关文章

spring-data-redis AbstractOperations 源码

spring-data-redis BoundGeoOperations 源码

spring-data-redis BoundHashOperations 源码

spring-data-redis BoundKeyOperations 源码

spring-data-redis BoundListOperations 源码

spring-data-redis BoundOperationsProxyFactory 源码

spring-data-redis BoundSetOperations 源码

spring-data-redis BoundStreamOperations 源码

spring-data-redis BoundValueOperations 源码

spring-data-redis BoundZSetOperations 源码

0  赞