spring.turbo.util.Asserts Maven / Gradle / Ivy
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* ____ _ _____ _
* / ___| _ __ _ __(_)_ __ __ |_ _| _ _ __| |__ ___
* \___ \| '_ \| '__| | '_ \ / _` || || | | | '__| '_ \ / _ \
* ___) | |_) | | | | | | | (_| || || |_| | | | |_) | (_) |
* |____/| .__/|_| |_|_| |_|\__, ||_| \__,_|_| |_.__/ \___/
* |_| |___/ https://github.com/yingzhuo/spring-turbo
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package spring.turbo.util;
import org.springframework.lang.Nullable;
import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;
import java.util.Collection;
import java.util.Map;
import java.util.Optional;
import java.util.function.Supplier;
/**
* @author 应卓
* @see org.springframework.util.Assert
* @since 1.0.0
*/
public final class Asserts {
/**
* 私有构造方法
*/
private Asserts() {
super();
}
public static void isTrue(boolean expression, @Nullable String message) {
if (!expression) {
throw new IllegalArgumentException(message);
}
}
public static void isTrue(boolean expression, Supplier messageSupplier) {
if (!expression) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void isTrue(boolean expression) {
isTrue(expression, "[Assertion failed] - this expression must be true");
}
public static void isFalse(boolean expression, @Nullable String message) {
if (expression) {
throw new IllegalArgumentException(message);
}
}
public static void isFalse(boolean expression, Supplier messageSupplier) {
if (expression) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void isFalse(boolean expression) {
isTrue(expression, "[Assertion failed] - this expression must be false");
}
public static void isNull(@Nullable Object object, @Nullable String message) {
if (object != null) {
throw new IllegalArgumentException(message);
}
}
public static void isNull(@Nullable Object object, Supplier messageSupplier) {
if (object != null) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void isNull(@Nullable Object object) {
isNull(object, "[Assertion failed] - the object argument must be null");
}
public static void notNull(@Nullable Object object, @Nullable String message) {
if (object == null) {
throw new IllegalArgumentException(message);
}
}
public static void notNull(@Nullable Object object, Supplier messageSupplier) {
if (object == null) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void notNull(@Nullable Object object) {
notNull(object, "[Assertion failed] - this argument is required; it must not be null");
}
public static void hasLength(@Nullable String text, @Nullable String message) {
if (!StringUtils.hasLength(text)) {
throw new IllegalArgumentException(message);
}
}
public static void hasLength(@Nullable String text, Supplier messageSupplier) {
if (!StringUtils.hasLength(text)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void hasLength(@Nullable String text) {
hasLength(text,
"[Assertion failed] - this String argument must have length; it must not be null or empty");
}
public static void hasText(@Nullable String text, @Nullable String message) {
if (!StringUtils.hasText(text)) {
throw new IllegalArgumentException(message);
}
}
public static void hasText(@Nullable String text, Supplier messageSupplier) {
if (!StringUtils.hasText(text)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void hasText(@Nullable String text) {
hasText(text,
"[Assertion failed] - this String argument must have text; it must not be null, empty, or blank");
}
public static void doesNotContain(@Nullable String textToSearch, String substring, @Nullable String message) {
if (StringUtils.hasLength(textToSearch) && StringUtils.hasLength(substring) &&
textToSearch.contains(substring)) {
throw new IllegalArgumentException(message);
}
}
public static void doesNotContain(@Nullable String textToSearch, String substring, Supplier messageSupplier) {
if (StringUtils.hasLength(textToSearch) && StringUtils.hasLength(substring) &&
textToSearch.contains(substring)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void doesNotContain(@Nullable String textToSearch, String substring) {
doesNotContain(textToSearch, substring,
() -> "[Assertion failed] - this String argument must not contain the substring [" + substring + "]");
}
public static void notEmpty(@Nullable Object[] array, @Nullable String message) {
if (ObjectUtils.isEmpty(array)) {
throw new IllegalArgumentException(message);
}
}
public static void notEmpty(@Nullable Object[] array, Supplier messageSupplier) {
if (ObjectUtils.isEmpty(array)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void notEmpty(@Nullable Object[] array) {
notEmpty(array, "[Assertion failed] - this array must not be empty: it must contain at least 1 element");
}
public static void noNullElements(@Nullable Object[] array, @Nullable String message) {
if (array != null) {
for (Object element : array) {
if (element == null) {
throw new IllegalArgumentException(message);
}
}
}
}
public static void noNullElements(@Nullable Object[] array, Supplier messageSupplier) {
if (array != null) {
for (Object element : array) {
if (element == null) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
}
}
public static void noNullElements(@Nullable Object[] array) {
noNullElements(array, "[Assertion failed] - this array must not contain any null elements");
}
public static void notEmpty(@Nullable Collection> collection, @Nullable String message) {
if (CollectionUtils.isEmpty(collection)) {
throw new IllegalArgumentException(message);
}
}
public static void notEmpty(@Nullable Collection> collection, Supplier messageSupplier) {
if (CollectionUtils.isEmpty(collection)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void notEmpty(@Nullable Collection> collection) {
notEmpty(collection,
"[Assertion failed] - this collection must not be empty: it must contain at least 1 element");
}
public static void noNullElements(@Nullable Collection> collection, @Nullable String message) {
if (collection != null) {
for (Object element : collection) {
if (element == null) {
throw new IllegalArgumentException(message);
}
}
}
}
public static void noNullElements(@Nullable Collection> collection, Supplier messageSupplier) {
if (collection != null) {
for (Object element : collection) {
if (element == null) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
}
}
public static void notEmpty(@Nullable Map, ?> map, @Nullable String message) {
if (CollectionUtils.isEmpty(map)) {
throw new IllegalArgumentException(message);
}
}
public static void notEmpty(@Nullable Map, ?> map, Supplier messageSupplier) {
if (CollectionUtils.isEmpty(map)) {
throw new IllegalArgumentException(nullSafeGet(messageSupplier));
}
}
public static void notEmpty(@Nullable Map, ?> map) {
notEmpty(map, "[Assertion failed] - this map must not be empty; it must contain at least one entry");
}
public static void isInstanceOf(Class> type, @Nullable Object obj, @Nullable String message) {
notNull(type, "Type to check against must not be null");
if (!type.isInstance(obj)) {
instanceCheckFailed(type, obj, message);
}
}
public static void isInstanceOf(Class> type, @Nullable Object obj, Supplier messageSupplier) {
notNull(type, "Type to check against must not be null");
if (!type.isInstance(obj)) {
instanceCheckFailed(type, obj, nullSafeGet(messageSupplier));
}
}
public static void isInstanceOf(Class> type, @Nullable Object obj) {
isInstanceOf(type, obj, "");
}
public static void isAssignable(Class> superType, @Nullable Class> subType, @Nullable String message) {
notNull(superType, "Super type to check against must not be null");
if (subType == null || !superType.isAssignableFrom(subType)) {
assignableCheckFailed(superType, subType, message);
}
}
public static void isAssignable(Class> superType, @Nullable Class> subType, Supplier messageSupplier) {
notNull(superType, "Super type to check against must not be null");
if (subType == null || !superType.isAssignableFrom(subType)) {
assignableCheckFailed(superType, subType, nullSafeGet(messageSupplier));
}
}
public static void isAssignable(Class> superType, Class> subType) {
isAssignable(superType, subType, "");
}
public static void isAbsent(Optional optional) {
isAbsent(optional, "[Assertion failed] - this optional must be absent");
}
public static void isAbsent(Optional optional, @Nullable String message) {
Asserts.notNull(optional, message);
if (optional.isPresent()) {
throw new IllegalArgumentException(message);
}
}
public static void isAbsent(Optional optional, Supplier messageSupplier) {
isAbsent(optional, messageSupplier.get());
}
public static void isPresent(Optional optional) {
isPresent(optional, "[Assertion failed] - this optional must be present");
}
public static void isPresent(Optional optional, @Nullable String message) {
Asserts.notNull(optional, message);
if (optional.isEmpty()) {
throw new IllegalArgumentException(message);
}
}
public static void isPresent(Optional optional, Supplier messageSupplier) {
isPresent(optional, messageSupplier.get());
}
private static void instanceCheckFailed(Class> type, @Nullable Object obj, @Nullable String msg) {
String className = (obj != null ? obj.getClass().getName() : "null");
String result = "";
boolean defaultMessage = true;
if (StringUtils.hasLength(msg)) {
if (endsWithSeparator(msg)) {
result = msg + " ";
} else {
result = messageWithTypeName(msg, className);
defaultMessage = false;
}
}
if (defaultMessage) {
result = result + ("Object of class [" + className + "] must be an instance of " + type);
}
throw new IllegalArgumentException(result);
}
private static void assignableCheckFailed(Class> superType, @Nullable Class> subType, @Nullable String msg) {
String result = "";
boolean defaultMessage = true;
if (StringUtils.hasLength(msg)) {
if (endsWithSeparator(msg)) {
result = msg + " ";
} else {
result = messageWithTypeName(msg, subType);
defaultMessage = false;
}
}
if (defaultMessage) {
result = result + (subType + " is not assignable to " + superType);
}
throw new IllegalArgumentException(result);
}
private static boolean endsWithSeparator(String msg) {
return (msg.endsWith(":") || msg.endsWith(";") || msg.endsWith(",") || msg.endsWith("."));
}
private static String messageWithTypeName(String msg, @Nullable Object typeName) {
return msg + (msg.endsWith(" ") ? "" : ": ") + typeName;
}
@Nullable
private static String nullSafeGet(@Nullable Supplier messageSupplier) {
return (messageSupplier != null ? messageSupplier.get() : null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy