136 lines
4.6 KiB
Java
Raw Normal View History

/*
2024-10-12 00:57:35 +08:00
* Copyright 2024 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 xyz.zhouxy.plusone.commons.util;
import java.util.function.Supplier;
import javax.annotation.Nonnull;
/**
* 断言工具
2024-10-21 18:18:53 +08:00
*
* <p>
2024-10-21 23:17:52 +08:00
* 本工具类不封装过多判断逻辑鼓励充分使用项目中的工具类进行逻辑判断
2024-10-18 18:31:20 +08:00
* </p>
2024-10-21 18:18:53 +08:00
*
2024-10-18 18:31:20 +08:00
* <pre>
* AssertTools.checkArgument(StringUtils.hasText(str), "The argument cannot be blank.");
* AssertTools.checkState(ArrayUtils.isNotEmpty(result), "The result cannot be empty.");
* AssertTools.checkCondition(!CollectionUtils.isEmpty(roles), () -> new InvalidInputException("The roles cannot be empty."));
2024-10-21 23:17:52 +08:00
* AssertTools.checkCondition(RegexTools.matches(email, PatternConsts.EMAIL), "must be a well-formed email address");
2024-10-18 18:31:20 +08:00
* </pre>
2024-10-21 18:18:53 +08:00
*
2024-10-21 23:17:52 +08:00
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
*/
public class AssertTools {
2024-10-21 18:18:53 +08:00
// #region - checkArgument
2024-10-18 18:31:20 +08:00
public static <T> void checkArgumentNotNull(T argument) {
checkCondition(argument != null, () -> new IllegalArgumentException("The argument cannot be null."));
}
public static <T> void checkArgumentNotNull(T argument, String errMsg) {
checkCondition(argument != null, () -> new IllegalArgumentException(errMsg));
}
2024-10-18 18:31:20 +08:00
public static <T> void checkArgumentNotNull(T argument, Supplier<String> messageSupplier) {
checkCondition(argument != null, () -> new IllegalArgumentException(messageSupplier.get()));
}
2024-10-18 18:31:20 +08:00
public static <T> void checkArgumentNotNull(T argument, String format, Object... args) {
checkCondition(argument != null, () -> new IllegalArgumentException(String.format(format, args)));
}
2024-10-12 00:21:19 +08:00
public static void checkArgument(boolean condition) {
checkCondition(condition, IllegalArgumentException::new);
}
public static void checkArgument(boolean condition, String errMsg) {
checkCondition(condition, () -> new IllegalArgumentException(errMsg));
}
2024-10-18 18:31:20 +08:00
public static void checkArgument(boolean condition, Supplier<String> messageSupplier) {
checkCondition(condition, () -> new IllegalArgumentException(messageSupplier.get()));
}
2024-10-12 00:21:19 +08:00
public static void checkArgument(boolean condition, String format, Object... args) {
checkCondition(condition, () -> new IllegalArgumentException(String.format(format, args)));
}
2024-10-21 18:18:53 +08:00
// #endregion
// #region - checkState
2024-10-12 00:21:19 +08:00
public static void checkState(boolean condition) {
checkCondition(condition, IllegalStateException::new);
}
public static void checkState(boolean condition, String errMsg) {
checkCondition(condition, () -> new IllegalStateException(errMsg));
}
2024-10-18 18:31:20 +08:00
public static void checkState(boolean condition, Supplier<String> messageSupplier) {
checkCondition(condition, () -> new IllegalStateException(messageSupplier.get()));
}
public static void checkState(boolean condition, String format, Object... args) {
checkCondition(condition, () -> new IllegalStateException(String.format(format, args)));
}
2024-10-21 18:18:53 +08:00
// #endregion
2024-11-01 10:36:07 +08:00
// #region - checkNotNull
public static <T> void checkNotNull(T obj) {
checkCondition(obj != null, NullPointerException::new);
}
public static <T> void checkNotNull(T obj, String errMsg) {
checkCondition(obj != null, () -> new NullPointerException(errMsg));
}
public static <T> void checkNotNull(T obj, Supplier<String> messageSupplier) {
checkCondition(obj != null, () -> new NullPointerException(messageSupplier.get()));
}
public static <T> void checkNotNull(T obj, String format, Object... args) {
checkCondition(obj != null, () -> new NullPointerException(String.format(format, args)));
}
// #endregion
2024-10-21 18:18:53 +08:00
// #region - checkCondition
public static <T extends Exception> void checkCondition(boolean condition, @Nonnull Supplier<T> e)
throws T {
if (!condition) {
throw e.get();
}
}
2024-10-21 18:18:53 +08:00
// #endregion
// #region - private constructor
private AssertTools() {
throw new IllegalStateException("Utility class");
}
2024-10-21 18:18:53 +08:00
// #endregion
}