cn.mybatis.mp.core.MybatisMpConfig Maven / Gradle / Ivy
package cn.mybatis.mp.core;
import cn.mybatis.mp.core.logicDelete.LogicDeleteSwitch;
import cn.mybatis.mp.core.sql.MybatisMpQuerySQLBuilder;
import cn.mybatis.mp.core.sql.QuerySQLBuilder;
import cn.mybatis.mp.core.util.StringPool;
import cn.mybatis.mp.core.util.TypeConvertUtil;
import java.lang.reflect.Array;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
/**
* 全局配置
*/
public final class MybatisMpConfig {
private static final Map CACHE = new ConcurrentHashMap<>();
private static final String COLUMN_UNDERLINE = "columnUnderline";
private static final String TABLE_UNDERLINE = "tableUnderline";
private static final String DEFAULT_BATCH_SIZE = "defaultBatchSize";
private static final String SQL_BUILDER = "SQLBuilder";
private static final String LOGIC_DELETE_SWITCH = "logicDeleteSwitch";
private static final String DEFAULT_VALUE_MANAGER = "defaultValueManager";
private static final QuerySQLBuilder DEFAULT_SQL_BUILDER = new MybatisMpQuerySQLBuilder();
static {
Map, Object>> defaultValueMap = new ConcurrentHashMap<>();
defaultValueMap.put("{BLANK}", (type) -> {
if (type == String.class) {
return StringPool.EMPTY;
} else if (type.isArray()) {
return Array.newInstance(type, 0);
} else if (List.class.isAssignableFrom(type)) {
return Collections.EMPTY_LIST;
} else if (Set.class.isAssignableFrom(type)) {
return Collections.EMPTY_SET;
} else if (Map.class.isAssignableFrom(type)) {
return Collections.EMPTY_MAP;
}
throw new RuntimeException("Inconsistent types");
});
defaultValueMap.put("{NOW}", (type) -> {
if (type == LocalDateTime.class) {
return LocalDateTime.now();
} else if (type == LocalDate.class) {
return LocalDate.now();
} else if (type == Date.class) {
return new Date();
} else if (type == Long.class) {
return System.currentTimeMillis();
} else if (type == Integer.class) {
return (int) (System.currentTimeMillis() / 1000);
}
throw new RuntimeException("Inconsistent types");
});
CACHE.put(DEFAULT_VALUE_MANAGER, defaultValueMap);
}
private MybatisMpConfig() {
}
/**
* 数据库列是否下划线规则 默认 true
*
* @return 列是否是下划线命名规则
*/
public static boolean isColumnUnderline() {
return (boolean) CACHE.computeIfAbsent(COLUMN_UNDERLINE, key -> true);
}
/**
* 数据库列是否下划线规则(必须在项目启动时设置,否则可能永远不会成功)
*
* @param bool 列是否下划线命名规则
*/
public static void setColumnUnderline(boolean bool) {
CACHE.putIfAbsent(COLUMN_UNDERLINE, bool);
}
/**
* 数据库表是否下划线规则 默认 true
*
* @return 是否是下划线规则
*/
public static boolean isTableUnderline() {
return (boolean) CACHE.computeIfAbsent(TABLE_UNDERLINE, key -> true);
}
/**
* 设置数据库表是否下划线规则(必须在项目启动时设置,否则可能永远不会成功)
*
* @param bool 是否是下划线规则
*/
public static void setTableUnderline(boolean bool) {
CACHE.putIfAbsent(TABLE_UNDERLINE, bool);
}
/**
* 默认1000
*
* @return 批量提交的默认size
*/
public static int getDefaultBatchSize() {
return (int) CACHE.computeIfAbsent(DEFAULT_BATCH_SIZE, key -> 1000);
}
public static void setDefaultBatchSize(int defaultBatchSize) {
if (defaultBatchSize < 1) {
throw new RuntimeException("defaultBatchSize can't less 1");
}
CACHE.put(DEFAULT_BATCH_SIZE, defaultBatchSize);
}
/**
* 设置QUERY SQL BUILDER
*
* @return 返回QuerySQLBuilder
*/
public static QuerySQLBuilder getQuerySQLBuilder() {
return (QuerySQLBuilder) CACHE.computeIfAbsent(SQL_BUILDER, key -> DEFAULT_SQL_BUILDER);
}
public static void setQuerySQLBuilder(QuerySQLBuilder querySQLBuilder) {
CACHE.put(SQL_BUILDER, querySQLBuilder);
}
/**
* 获取逻辑删除开关,默认开启
*
* @return 逻辑开关的是否打开
*/
public static boolean isLogicDeleteSwitchOpen() {
Boolean state = LogicDeleteSwitch.getState();
if (state != null) {
//局部开关 优先
return state;
}
return (boolean) CACHE.computeIfAbsent(LOGIC_DELETE_SWITCH, key -> true);
}
/**
* 设置逻辑删除开关状态(必须在项目启动时设置,否则可能永远false)
*
* @param bool 开关状态
*/
public static void setLogicDeleteSwitch(boolean bool) {
CACHE.putIfAbsent(LOGIC_DELETE_SWITCH, bool);
}
public static boolean isDefaultValueKeyFormat(String key) {
return key.startsWith("{") && key.endsWith("}");
}
public static void setDefaultValue(String key, Function, Object> f) {
checkDefaultValueKey(key);
((Map, Object>>) CACHE.get(DEFAULT_VALUE_MANAGER)).computeIfAbsent(key, mapKey -> f);
}
private static void checkDefaultValueKey(String key) {
if (!isDefaultValueKeyFormat(key)) {
throw new RuntimeException("key must start with '{' and end with '}'");
}
}
/**
* 获取默认值
*
* @param clazz 默认值的类型
* @param key 默认值的key,key必须以{}包裹,例如:{NOW}
* @param 类型clazz的泛型
* @return 返回指定类型clazz key的默认值
*/
public static T getDefaultValue(Class clazz, String key) {
if (!isDefaultValueKeyFormat(key)) {
return TypeConvertUtil.convert(key, clazz);
}
Map, T>> map = (Map, T>>) CACHE.get(DEFAULT_VALUE_MANAGER);
Function, T> f = map.get(key);
if (f == null) {
throw new RuntimeException(String.format("key: %s not set", key));
}
return f.apply(clazz);
}
}