内容目录
//使用方式
AssertUtils.notNull(logSave, "上架日志保存异常,应用上架失败!");
package com.uinfor.mes.common.core.utils;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.map.MapUtil;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.uinfor.mes.common.core.exception.ServiceException;
import com.uinfor.mes.common.core.web.ResultEnum;
import java.util.Map;
import java.util.function.Supplier;
/**
* @author ****
* @version 1.0
* @description: 断言
* @date 2022/9/21 17:44
*/
public class AssertUtils {
private static final String TEMPLATE_VALUE_MUST_BE_BETWEEN_AND = "The value must be between {} and {}.";
/**
* 断言是否为真,如果为 {@code false} 抛出给定的异常<br>
*
* <pre class="code">
* Assert.isTrue(i > 0, ServiceException::new);
* </pre>
*
* @param <X> 异常类型
* @param expression 布尔值
* @param supplier 指定断言不通过时抛出的异常
* @throws X if expression is {@code false}
*/
public static <X extends Throwable> void isTrue(boolean expression, Supplier<? extends X> supplier) throws X {
if (!expression) {
throw supplier.get();
}
}
/**
* 断言是否为真,如果为 {@code false} 抛出 {@code ServiceException} 异常<br>
*
* <pre class="code">
* Assert.isTrue(i > 0, "The value must be greater than zero");
* </pre>
*
* @param expression 布尔值
* @param errorMsgTemplate 错误抛出异常附带的消息模板,变量用{}代替
* @param params 参数列表
* @throws ServiceException if expression is {@code false}
*/
public static void isTrue(boolean expression, String errorMsgTemplate, Object... params) throws ServiceException {
isTrue(expression, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static void isTrue(boolean expression, String message, Integer code) throws ServiceException {
isTrue(expression, () -> new ServiceException(message, code));
}
public static void isTrue(boolean expression, ResultEnum resultEnum) throws ServiceException {
isTrue(expression, () -> new ServiceException(resultEnum));
}
/**
* 断言是否为真,如果为 {@code false} 抛出 {@code ServiceException} 异常<br>
*
* <pre class="code">
* Assert.isTrue(i > 0);
* </pre>
*
* @param expression 布尔值
* @throws ServiceException if expression is {@code false}
*/
public static void isTrue(boolean expression) throws ServiceException {
isTrue(expression, "[Assertion failed] - this expression must be true");
}
/**
* 断言是否为假,如果为 {@code true} 抛出指定类型异常<br>
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.isFalse(i > 0, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <X> 异常类型
* @param expression 布尔值
* @param errorSupplier 指定断言不通过时抛出的异常
* @throws X if expression is {@code false}
* @since 5.4.5
*/
public static <X extends Throwable> void isFalse(boolean expression, Supplier<X> errorSupplier) throws X {
if (expression) {
throw errorSupplier.get();
}
}
/**
* 断言是否为假,如果为 {@code true} 抛出 {@code ServiceException} 异常<br>
*
* <pre class="code">
* Assert.isFalse(i < 0, "The value must not be negative");
* </pre>
*
* @param expression 布尔值
* @param errorMsgTemplate 错误抛出异常附带的消息模板,变量用{}代替
* @param params 参数列表
* @throws ServiceException if expression is {@code false}
*/
public static void isFalse(boolean expression, String errorMsgTemplate, Object... params) throws ServiceException {
isFalse(expression, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static void isFalse(boolean expression, String message, Integer code) throws ServiceException {
isFalse(expression, () -> new ServiceException(message, code));
}
public static void isFalse(boolean expression, ResultEnum resultEnum) throws ServiceException {
isFalse(expression, () -> new ServiceException(resultEnum));
}
/**
* 断言是否为假,如果为 {@code true} 抛出 {@code ServiceException} 异常<br>
*
* <pre class="code">
* Assert.isFalse(i < 0);
* </pre>
*
* @param expression 布尔值
* @throws ServiceException if expression is {@code false}
*/
public static void isFalse(boolean expression) throws ServiceException {
isFalse(expression, "[Assertion failed] - this expression must be false");
}
/**
* 断言对象是否为{@code null} ,如果不为{@code null} 抛出指定类型异常
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.isNull(value, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <X> 异常类型
* @param object 被检查的对象
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @throws X if the object is not {@code null}
* @since 5.4.5
*/
public static <X extends Throwable> void isNull(Object object, Supplier<X> errorSupplier) throws X {
if (ObjectUtil.isNotEmpty(object)) {
throw errorSupplier.get();
}
}
/**
* 断言对象是否为{@code null} ,如果不为{@code null} 抛出{@link ServiceException} 异常
*
* <pre class="code">
* Assert.isNull(value, "The value must be null");
* </pre>
*
* @param object 被检查的对象
* @param errorMsgTemplate 消息模板,变量使用{}表示
* @param params 参数列表
* @throws ServiceException if the object is not {@code null}
*/
public static void isNull(Object object, String errorMsgTemplate, Object... params) throws ServiceException {
isNull(object, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static void isNull(Object object, String message, Integer code) throws ServiceException {
isNull(object, () -> new ServiceException(message, code));
}
public static void isNull(Object object, ResultEnum resultEnum) throws ServiceException {
isNull(object, () -> new ServiceException(resultEnum));
}
/**
* 断言对象是否为{@code null} ,如果不为{@code null} 抛出{@link ServiceException} 异常
*
* <pre class="code">
* Assert.isNull(value);
* </pre>
*
* @param object 被检查对象
* @throws ServiceException if the object is not {@code null}
*/
public static void isNull(Object object) throws ServiceException {
isNull(object, "[Assertion failed] - the object argument must be null");
}
// ----------------------------------------------------------------------------------------------------------- Check not null
/**
* 断言对象是否不为{@code null} ,如果为{@code null} 抛出指定类型异常
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.notNull(clazz, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <T> 被检查对象泛型类型
* @param <X> 异常类型
* @param object 被检查对象
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 被检查后的对象
* @throws X if the object is {@code null}
* @since 5.4.5
*/
public static <T, X extends Throwable> T notNull(T object, Supplier<X> errorSupplier) throws X {
if (ObjectUtil.isEmpty(object)) {
throw errorSupplier.get();
}
return object;
}
/**
* 断言对象是否不为{@code null} ,如果为{@code null} 抛出{@link ServiceException} 异常 Assert that an object is not {@code null} .
*
* <pre class="code">
* Assert.notNull(clazz, "The class must not be null");
* </pre>
*
* @param <T> 被检查对象泛型类型
* @param object 被检查对象
* @param errorMsgTemplate 错误消息模板,变量使用{}表示
* @param params 参数
* @return 被检查后的对象
* @throws ServiceException if the object is {@code null}
*/
public static <T> T notNull(T object, String errorMsgTemplate, Object... params) throws ServiceException {
return notNull(object, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static <T> T notNull(T object, String message, Integer code) throws ServiceException {
return notNull(object, () -> new ServiceException(message, code));
}
public static <T> T notNull(T object, ResultEnum resultEnum) throws ServiceException {
return notNull(object, () -> new ServiceException(resultEnum));
}
/**
* 断言对象是否不为{@code null} ,如果为{@code null} 抛出{@link ServiceException} 异常
*
* <pre class="code">
* Assert.notNull(clazz);
* </pre>
*
* @param <T> 被检查对象类型
* @param object 被检查对象
* @return 非空对象
* @throws ServiceException if the object is {@code null}
*/
public static <T> T notNull(T object) throws ServiceException {
return notNull(object, "[Assertion failed] - this argument is required; it must not be null");
}
// ----------------------------------------------------------------------------------------------------------- Check empty
/**
* 检查给定字符串是否为空,为空抛出自定义异常,并使用指定的函数获取错误信息返回。
* <pre class="code">
* Assert.notEmpty(name, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <X> 异常类型
* @param <T> 字符串类型
* @param text 被检查字符串
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 非空字符串
* @throws X 被检查字符串为空抛出此异常
* @see StrUtil#isNotEmpty(CharSequence)
* @since 5.4.5
*/
public static <T extends CharSequence, X extends Throwable> T notEmpty(T text, Supplier<X> errorSupplier) throws X {
if (StrUtil.isEmpty(text)) {
throw errorSupplier.get();
}
return text;
}
/**
* 检查给定字符串是否为空,为空抛出 {@link ServiceException}
*
* <pre class="code">
* Assert.notEmpty(name, "Name must not be empty");
* </pre>
*
* @param <T> 字符串类型
* @param text 被检查字符串
* @param errorMsgTemplate 错误消息模板,变量使用{}表示
* @param params 参数
* @return 非空字符串
* @throws ServiceException 被检查字符串为空
* @see StrUtil#isNotEmpty(CharSequence)
*/
public static <T extends CharSequence> T notEmpty(T text, String errorMsgTemplate, Object... params) throws ServiceException {
return notEmpty(text, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 检查给定字符串是否为空,为空抛出 {@link ServiceException}
*
* <pre class="code">
* Assert.notEmpty(name);
* </pre>
*
* @param <T> 字符串类型
* @param text 被检查字符串
* @return 被检查的字符串
* @throws ServiceException 被检查字符串为空
* @see StrUtil#isNotEmpty(CharSequence)
*/
public static <T extends CharSequence> T notEmpty(T text) throws ServiceException {
return notEmpty(text, "[Assertion failed] - this String argument must have length; it must not be null or empty");
}
/**
* 检查给定字符串是否为空白(null、空串或只包含空白符),为空抛出自定义异常。
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.notBlank(name, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <X> 异常类型
* @param <T> 字符串类型
* @param text 被检查字符串
* @param errorMsgSupplier 错误抛出异常附带的消息生产接口
* @return 非空字符串
* @throws X 被检查字符串为空白
* @see StrUtil#isNotBlank(CharSequence)
*/
public static <T extends CharSequence, X extends Throwable> T notBlank(T text, Supplier<X> errorMsgSupplier) throws X {
if (StrUtil.isBlank(text)) {
throw errorMsgSupplier.get();
}
return text;
}
/**
* 检查给定字符串是否为空白(null、空串或只包含空白符),为空抛出 {@link ServiceException}
*
* <pre class="code">
* Assert.notBlank(name, "Name must not be blank");
* </pre>
*
* @param <T> 字符串类型
* @param text 被检查字符串
* @param errorMsgTemplate 错误消息模板,变量使用{}表示
* @param params 参数
* @return 非空字符串
* @throws ServiceException 被检查字符串为空白
* @see StrUtil#isNotBlank(CharSequence)
*/
public static <T extends CharSequence> T notBlank(T text, String errorMsgTemplate, Object... params) throws ServiceException {
return notBlank(text, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static <T extends CharSequence> T notBlank(T text, ResultEnum resultEnum) throws ServiceException {
return notBlank(text, () -> new ServiceException(resultEnum));
}
/**
* 检查给定字符串是否为空白(null、空串或只包含空白符),为空抛出 {@link ServiceException}
*
* <pre class="code">
* Assert.notBlank(name);
* </pre>
*
* @param <T> 字符串类型
* @param text 被检查字符串
* @return 非空字符串
* @throws ServiceException 被检查字符串为空白
* @see StrUtil#isNotBlank(CharSequence)
*/
public static <T extends CharSequence> T notBlank(T text) throws ServiceException {
return notBlank(text, "[Assertion failed] - this String argument must have text; it must not be null, empty, or blank");
}
/**
* 断言给定字符串是否不被另一个字符串包含(即是否为子串)
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.notContain(name, "rod", ()->{
* // to query relation message
* return new ServiceException("relation message to return ");
* });
* </pre>
*
* @param <T> 字符串类型
* @param <X> 异常类型
* @param textToSearch 被搜索的字符串
* @param substring 被检查的子串
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 被检查的子串
* @throws X 非子串抛出异常
* @see StrUtil#contains(CharSequence, CharSequence)
* @since 5.4.5
*/
public static <T extends CharSequence, X extends Throwable> T notContain(CharSequence textToSearch, T substring, Supplier<X> errorSupplier) throws X {
if (StrUtil.contains(textToSearch, substring)) {
throw errorSupplier.get();
}
return substring;
}
/**
* 断言给定字符串是否不被另一个字符串包含(即是否为子串)
*
* <pre class="code">
* Assert.notContain(name, "rod", "Name must not contain 'rod'");
* </pre>
*
* @param textToSearch 被搜索的字符串
* @param substring 被检查的子串
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 被检查的子串
* @throws ServiceException 非子串抛出异常
*/
public static String notContain(String textToSearch, String substring, String errorMsgTemplate, Object... params) throws ServiceException {
return notContain(textToSearch, substring, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 断言给定字符串是否不被另一个字符串包含(即是否为子串)
*
* <pre class="code">
* Assert.notContain(name, "rod");
* </pre>
*
* @param textToSearch 被搜索的字符串
* @param substring 被检查的子串
* @return 被检查的子串
* @throws ServiceException 非子串抛出异常
*/
public static String notContain(String textToSearch, String substring) throws ServiceException {
return notContain(textToSearch, substring, "[Assertion failed] - this String argument must not contain the substring [{}]", substring);
}
/**
* 断言给定数组是否包含元素,数组必须不为 {@code null} 且至少包含一个元素
* 并使用指定的函数获取错误信息返回
*
* <pre class="code">
* Assert.notEmpty(array, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <T> 数组元素类型
* @param <X> 异常类型
* @param array 被检查的数组
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 被检查的数组
* @throws X if the object array is {@code null} or has no elements
* @see ArrayUtil#isNotEmpty(Object[])
* @since 5.4.5
*/
public static <T, X extends Throwable> T[] notEmpty(T[] array, Supplier<X> errorSupplier) throws X {
if (ArrayUtil.isEmpty(array)) {
throw errorSupplier.get();
}
return array;
}
/**
* 断言给定数组是否包含元素,数组必须不为 {@code null} 且至少包含一个元素
*
* <pre class="code">
* Assert.notEmpty(array, "The array must have elements");
* </pre>
*
* @param <T> 数组元素类型
* @param array 被检查的数组
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 被检查的数组
* @throws ServiceException if the object array is {@code null} or has no elements
*/
public static <T> T[] notEmpty(T[] array, String errorMsgTemplate, Object... params) throws ServiceException {
return notEmpty(array, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static <T> T[] notEmpty(T[] array, ResultEnum resultEnum) throws ServiceException {
return notEmpty(array, () -> new ServiceException(resultEnum));
}
/**
* 断言给定数组是否包含元素,数组必须不为 {@code null} 且至少包含一个元素
*
* <pre class="code">
* Assert.notEmpty(array, "The array must have elements");
* </pre>
*
* @param <T> 数组元素类型
* @param array 被检查的数组
* @return 被检查的数组
* @throws ServiceException if the object array is {@code null} or has no elements
*/
public static <T> T[] notEmpty(T[] array) throws ServiceException {
return notEmpty(array, "[Assertion failed] - this array must not be empty: it must contain at least 1 element");
}
/**
* 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.noNullElements(array, ()->{
* // to query relation message
* return new ServiceException("relation message to return ");
* });
* </pre>
*
* @param <T> 数组元素类型
* @param <X> 异常类型
* @param array 被检查的数组
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 被检查的数组
* @throws X if the object array contains a {@code null} element
* @see ArrayUtil#hasNull(Object[])
* @since 5.4.5
*/
public static <T, X extends Throwable> T[] noNullElements(T[] array, Supplier<X> errorSupplier) throws X {
if (ArrayUtil.hasNull(array)) {
throw errorSupplier.get();
}
return array;
}
/**
* 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
*
* <pre class="code">
* Assert.noNullElements(array, "The array must not have null elements");
* </pre>
*
* @param <T> 数组元素类型
* @param array 被检查的数组
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 被检查的数组
* @throws ServiceException if the object array contains a {@code null} element
*/
public static <T> T[] noNullElements(T[] array, String errorMsgTemplate, Object... params) throws ServiceException {
return noNullElements(array, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
*
* <pre class="code">
* Assert.noNullElements(array);
* </pre>
*
* @param <T> 数组元素类型
* @param array 被检查的数组
* @return 被检查的数组
* @throws ServiceException if the object array contains a {@code null} element
*/
public static <T> T[] noNullElements(T[] array) throws ServiceException {
return noNullElements(array, "[Assertion failed] - this array must not contain any null elements");
}
/**
* 断言给定集合非空
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.notEmpty(collection, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <E> 集合元素类型
* @param <T> 集合类型
* @param <X> 异常类型
* @param collection 被检查的集合
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 非空集合
* @throws X if the collection is {@code null} or has no elements
* @see CollUtil#isNotEmpty(Iterable)
* @since 5.4.5
*/
public static <E, T extends Iterable<E>, X extends Throwable> T notEmpty(T collection, Supplier<X> errorSupplier) throws X {
if (CollUtil.isEmpty(collection)) {
throw errorSupplier.get();
}
return collection;
}
/**
* 断言给定集合非空
*
* <pre class="code">
* Assert.notEmpty(collection, "Collection must have elements");
* </pre>
*
* @param <E> 集合元素类型
* @param <T> 集合类型
* @param collection 被检查的集合
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 非空集合
* @throws ServiceException if the collection is {@code null} or has no elements
*/
public static <E, T extends Iterable<E>> T notEmpty(T collection, String errorMsgTemplate, Object... params) throws ServiceException {
return notEmpty(collection, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static <E, T extends Iterable<E>> T notEmpty(T collection, String message, Integer code) throws ServiceException {
return notEmpty(collection, () -> new ServiceException(message, code));
}
public static <E, T extends Iterable<E>> T notEmpty(T collection, ResultEnum resultEnum) throws ServiceException {
return notEmpty(collection, () -> new ServiceException(resultEnum));
}
/**
* 断言给定集合非空
*
* <pre class="code">
* Assert.notEmpty(collection);
* </pre>
*
* @param <E> 集合元素类型
* @param <T> 集合类型
* @param collection 被检查的集合
* @return 被检查集合
* @throws ServiceException if the collection is {@code null} or has no elements
*/
public static <E, T extends Iterable<E>> T notEmpty(T collection) throws ServiceException {
return notEmpty(collection, "[Assertion failed] - this collection must not be empty: it must contain at least 1 element");
}
/**
* 断言给定Map非空
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.notEmpty(map, ()->{
* // to query relation message
* return new ServiceException("relation message to return");
* });
* </pre>
*
* @param <K> Key类型
* @param <V> Value类型
* @param <T> Map类型
* @param <X> 异常类型
* @param map 被检查的Map
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 被检查的Map
* @throws X if the map is {@code null} or has no entries
* @see MapUtil#isNotEmpty(Map)
* @since 5.4.5
*/
public static <K, V, T extends Map<K, V>, X extends Throwable> T notEmpty(T map, Supplier<X> errorSupplier) throws X {
if (MapUtil.isEmpty(map)) {
throw errorSupplier.get();
}
return map;
}
/**
* 断言给定Map非空
*
* <pre class="code">
* Assert.notEmpty(map, "Map must have entries");
* </pre>
*
* @param <K> Key类型
* @param <V> Value类型
* @param <T> Map类型
* @param map 被检查的Map
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 被检查的Map
* @throws ServiceException if the map is {@code null} or has no entries
*/
public static <K, V, T extends Map<K, V>> T notEmpty(T map, String errorMsgTemplate, Object... params) throws ServiceException {
return notEmpty(map, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static <K, V, T extends Map<K, V>> T notEmpty(T map, ResultEnum resultEnum) throws ServiceException {
return notEmpty(map, () -> new ServiceException(resultEnum));
}
/**
* 断言给定Map非空
*
* <pre class="code">
* Assert.notEmpty(map, "Map must have entries");
* </pre>
*
* @param <K> Key类型
* @param <V> Value类型
* @param <T> Map类型
* @param map 被检查的Map
* @return 被检查的Map
* @throws ServiceException if the map is {@code null} or has no entries
*/
public static <K, V, T extends Map<K, V>> T notEmpty(T map) throws ServiceException {
return notEmpty(map, "[Assertion failed] - this map must not be empty; it must contain at least one entry");
}
/**
* 断言给定对象是否是给定类的实例
*
* <pre class="code">
* Assert.instanceOf(Foo.class, foo);
* </pre>
*
* @param <T> 被检查对象泛型类型
* @param type 被检查对象匹配的类型
* @param obj 被检查对象
* @return 被检查的对象
* @throws ServiceException if the object is not an instance of clazz
* @see Class#isInstance(Object)
*/
public static <T> T isInstanceOf(Class<?> type, T obj) {
return isInstanceOf(type, obj, "Object [{}] is not instanceof [{}]", obj, type);
}
/**
* 断言给定对象是否是给定类的实例
*
* <pre class="code">
* Assert.instanceOf(Foo.class, foo, "foo must be an instance of class Foo");
* </pre>
*
* @param <T> 被检查对象泛型类型
* @param type 被检查对象匹配的类型
* @param obj 被检查对象
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 被检查对象
* @throws ServiceException if the object is not an instance of clazz
* @see Class#isInstance(Object)
*/
public static <T> T isInstanceOf(Class<?> type, T obj, String errorMsgTemplate, Object... params) throws ServiceException {
notNull(type, "Type to check against must not be null");
if (false == type.isInstance(obj)) {
throw new ServiceException(StrUtil.format(errorMsgTemplate, params));
}
return obj;
}
/**
* 断言 {@code superType.isAssignableFrom(subType)} 是否为 {@code true}.
*
* <pre class="code">
* Assert.isAssignable(Number.class, myClass);
* </pre>
*
* @param superType 需要检查的父类或接口
* @param subType 需要检查的子类
* @throws ServiceException 如果子类非继承父类,抛出此异常
*/
public static void isAssignable(Class<?> superType, Class<?> subType) throws ServiceException {
isAssignable(superType, subType, "{} is not assignable to {})", subType, superType);
}
/**
* 断言 {@code superType.isAssignableFrom(subType)} 是否为 {@code true}.
*
* <pre class="code">
* Assert.isAssignable(Number.class, myClass, "myClass must can be assignable to class Number");
* </pre>
*
* @param superType 需要检查的父类或接口
* @param subType 需要检查的子类
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @throws ServiceException 如果子类非继承父类,抛出此异常
*/
public static void isAssignable(Class<?> superType, Class<?> subType, String errorMsgTemplate, Object... params) throws ServiceException {
notNull(superType, "Type to check against must not be null");
if (subType == null || !superType.isAssignableFrom(subType)) {
throw new ServiceException(StrUtil.format(errorMsgTemplate, params));
}
}
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
* 并使用指定的函数获取错误信息返回
* <pre class="code">
* Assert.state(id == null, ()->{
* // to query relation message
* return "relation message to return ";
* });
* </pre>
*
* @param expression boolean 表达式
* @param errorMsgSupplier 错误抛出异常附带的消息生产接口
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression, Supplier<String> errorMsgSupplier) throws IllegalStateException {
if (false == expression) {
throw new IllegalStateException(errorMsgSupplier.get());
}
}
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
*
* <pre class="code">
* Assert.state(id == null, "The id property must not already be initialized");
* </pre>
*
* @param expression boolean 表达式
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression, String errorMsgTemplate, Object... params) throws IllegalStateException {
if (false == expression) {
throw new IllegalStateException(StrUtil.format(errorMsgTemplate, params));
}
}
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
*
* <pre class="code">
* Assert.state(id == null);
* </pre>
*
* @param expression boolean 表达式
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression) throws IllegalStateException {
state(expression, "[Assertion failed] - this state invariant must be true");
}
/**
* 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
*
* <pre>
* 0 ≤ index < size
* </pre>
*
* @param index 下标
* @param size 长度
* @return 检查后的下标
* @throws ServiceException 如果size < 0 抛出此异常
* @throws IndexOutOfBoundsException 如果index < 0或者 index ≥ size 抛出此异常
* @since 4.1.9
*/
public static int checkIndex(int index, int size) throws ServiceException, IndexOutOfBoundsException {
return checkIndex(index, size, "[Assertion failed]");
}
/**
* 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
*
* <pre>
* 0 ≤ index < size
* </pre>
*
* @param index 下标
* @param size 长度
* @param errorMsgTemplate 异常时的消息模板
* @param params 参数列表
* @return 检查后的下标
* @throws ServiceException 如果size < 0 抛出此异常
* @throws IndexOutOfBoundsException 如果index < 0或者 index ≥ size 抛出此异常
* @since 4.1.9
*/
public static int checkIndex(int index, int size, String errorMsgTemplate, Object... params) throws ServiceException, IndexOutOfBoundsException {
if (index < 0 || index >= size) {
throw new IndexOutOfBoundsException(badIndexMsg(index, size, errorMsgTemplate, params));
}
return index;
}
/**
* 检查值是否在指定范围内
*
* @param <X> 异常类型
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 经过检查后的值
* @throws X if value is out of bound
* @since 5.7.15
*/
public static <X extends Throwable> int checkBetween(int value, int min, int max, Supplier<? extends X> errorSupplier) throws X {
if (value < min || value > max) {
throw errorSupplier.get();
}
return value;
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorMsgTemplate 异常信息模板,类似于"aa{}bb{}cc"
* @param params 异常信息参数,用于替换"{}"占位符
* @return 经过检查后的值
* @since 5.7.15
*/
public static int checkBetween(int value, int min, int max, String errorMsgTemplate, Object... params) {
return checkBetween(value, min, max, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @return 检查后的长度值
* @since 4.1.10
*/
public static int checkBetween(int value, int min, int max) {
return checkBetween(value, min, max, TEMPLATE_VALUE_MUST_BE_BETWEEN_AND, min, max);
}
/**
* 检查值是否在指定范围内
*
* @param <X> 异常类型
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 经过检查后的值
* @throws X if value is out of bound
* @since 5.7.15
*/
public static <X extends Throwable> long checkBetween(long value, long min, long max, Supplier<? extends X> errorSupplier) throws X {
if (value < min || value > max) {
throw errorSupplier.get();
}
return value;
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorMsgTemplate 异常信息模板,类似于"aa{}bb{}cc"
* @param params 异常信息参数,用于替换"{}"占位符
* @return 经过检查后的值
* @since 5.7.15
*/
public static long checkBetween(long value, long min, long max, String errorMsgTemplate, Object... params) {
return checkBetween(value, min, max, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @return 检查后的长度值
* @since 4.1.10
*/
public static long checkBetween(long value, long min, long max) {
return checkBetween(value, min, max, TEMPLATE_VALUE_MUST_BE_BETWEEN_AND, min, max);
}
/**
* 检查值是否在指定范围内
*
* @param <X> 异常类型
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @return 经过检查后的值
* @throws X if value is out of bound
* @since 5.7.15
*/
public static <X extends Throwable> double checkBetween(double value, double min, double max, Supplier<? extends X> errorSupplier) throws X {
if (value < min || value > max) {
throw errorSupplier.get();
}
return value;
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @param errorMsgTemplate 异常信息模板,类似于"aa{}bb{}cc"
* @param params 异常信息参数,用于替换"{}"占位符
* @return 经过检查后的值
* @since 5.7.15
*/
public static double checkBetween(double value, double min, double max, String errorMsgTemplate, Object... params) {
return checkBetween(value, min, max, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @return 检查后的长度值
* @since 4.1.10
*/
public static double checkBetween(double value, double min, double max) {
return checkBetween(value, min, max, TEMPLATE_VALUE_MUST_BE_BETWEEN_AND, min, max);
}
/**
* 检查值是否在指定范围内
*
* @param value 值
* @param min 最小值(包含)
* @param max 最大值(包含)
* @return 检查后的长度值
* @since 4.1.10
*/
public static Number checkBetween(Number value, Number min, Number max) {
notNull(value);
notNull(min);
notNull(max);
double valueDouble = value.doubleValue();
double minDouble = min.doubleValue();
double maxDouble = max.doubleValue();
if (valueDouble < minDouble || valueDouble > maxDouble) {
throw new ServiceException(StrUtil.format(TEMPLATE_VALUE_MUST_BE_BETWEEN_AND, min, max));
}
return value;
}
/**
* 断言两个对象是否不相等,如果两个对象相等 抛出ServiceException 异常
* <pre class="code">
* Assert.notEquals(obj1,obj2);
* </pre>
*
* @param obj1 对象1
* @param obj2 对象2
* @throws ServiceException obj1 must be not equals obj2
*/
public static void notEquals(Object obj1, Object obj2) {
notEquals(obj1, obj2, "({}) must be not equals ({})", obj1, obj2);
}
/**
* 断言两个对象是否不相等,如果两个对象相等 抛出ServiceException 异常
* <pre class="code">
* Assert.notEquals(obj1,obj2,"obj1 must be not equals obj2");
* </pre>
*
* @param obj1 对象1
* @param obj2 对象2
* @param errorMsgTemplate 异常信息模板,类似于"aa{}bb{}cc"
* @param params 异常信息参数,用于替换"{}"占位符
* @throws ServiceException obj1 must be not equals obj2
*/
public static void notEquals(Object obj1, Object obj2, String errorMsgTemplate, Object... params) throws ServiceException {
notEquals(obj1, obj2, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static void notEquals(Object obj1, Object obj2, ResultEnum resultEnum) throws ServiceException {
notEquals(obj1, obj2, () -> new ServiceException(resultEnum));
}
/**
* 断言两个对象是否不相等,如果两个对象相等,抛出指定类型异常,并使用指定的函数获取错误信息返回
*
* @param obj1 对象1
* @param obj2 对象2
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @param <X> 异常类型
* @throws X obj1 must be not equals obj2
*/
public static <X extends Throwable> void notEquals(Object obj1, Object obj2, Supplier<X> errorSupplier) throws X {
if (ObjectUtil.equals(obj1, obj2)) {
throw errorSupplier.get();
}
}
// ----------------------------------------------------------------------------------------------------------- Check not equals
/**
* 断言两个对象是否相等,如果两个对象不相等 抛出ServiceException 异常
* <pre class="code">
* Assert.isEquals(obj1,obj2);
* </pre>
*
* @param obj1 对象1
* @param obj2 对象2
* @throws ServiceException obj1 must be equals obj2
*/
public static void equals(Object obj1, Object obj2) {
equals(obj1, obj2, "({}) must be equals ({})", obj1, obj2);
}
/**
* 断言两个对象是否相等,如果两个对象不相等 抛出ServiceException 异常
* <pre class="code">
* Assert.isEquals(obj1,obj2,"obj1 must be equals obj2");
* </pre>
*
* @param obj1 对象1
* @param obj2 对象2
* @param errorMsgTemplate 异常信息模板,类似于"aa{}bb{}cc"
* @param params 异常信息参数,用于替换"{}"占位符
* @throws ServiceException obj1 must be equals obj2
*/
public static void equals(Object obj1, Object obj2, String errorMsgTemplate, Object... params) throws ServiceException {
equals(obj1, obj2, () -> new ServiceException(StrUtil.format(errorMsgTemplate, params)));
}
public static void equals(Object obj1, Object obj2, ResultEnum resultEnum) throws ServiceException {
equals(obj1, obj2, () -> new ServiceException(resultEnum));
}
/**
* 断言两个对象是否相等,如果两个对象不相等,抛出指定类型异常,并使用指定的函数获取错误信息返回
*
* @param obj1 对象1
* @param obj2 对象2
* @param errorSupplier 错误抛出异常附带的消息生产接口
* @param <X> 异常类型
* @throws X obj1 must be equals obj2
*/
public static <X extends Throwable> void equals(Object obj1, Object obj2, Supplier<X> errorSupplier) throws X {
if (ObjectUtil.notEqual(obj1, obj2)) {
throw errorSupplier.get();
}
}
// ----------------------------------------------------------------------------------------------------------- Check is equals
// -------------------------------------------------------------------------------------------------------------------------------------------- Private method start
/**
* 错误的下标时显示的消息
*
* @param index 下标
* @param size 长度
* @param desc 异常时的消息模板
* @param params 参数列表
* @return 消息
*/
private static String badIndexMsg(int index, int size, String desc, Object... params) {
if (index < 0) {
return StrUtil.format("{} ({}) must not be negative", StrUtil.format(desc, params), index);
} else if (size < 0) {
throw new ServiceException("negative size: " + size);
} else { // index >= size
return StrUtil.format("{} ({}) must be less than size ({})", StrUtil.format(desc, params), index, size);
}
}
// -------------------------------------------------------------------------------------------------------------------------------------------- Private method end
}