mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
refactor: 重构逻辑删除默认实现类。
This commit is contained in:
parent
46a25cde62
commit
7e504299f3
@ -0,0 +1,66 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
|
||||||
|
* <p>
|
||||||
|
* 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
|
||||||
|
* <p>
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* <p>
|
||||||
|
* 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 com.mybatisflex.core.logicdelete;
|
||||||
|
|
||||||
|
import com.mybatisflex.core.dialect.IDialect;
|
||||||
|
import com.mybatisflex.core.query.QueryCondition;
|
||||||
|
import com.mybatisflex.core.query.QueryWrapper;
|
||||||
|
import com.mybatisflex.core.table.TableInfo;
|
||||||
|
|
||||||
|
import static com.mybatisflex.core.constant.SqlConsts.EQUALS;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 逻辑删除处理器抽象类。
|
||||||
|
*
|
||||||
|
* @author 王帅
|
||||||
|
* @since 2023-06-20
|
||||||
|
*/
|
||||||
|
public abstract class AbstractLogicDeleteProcessor implements LogicDeleteProcessor {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String buildLogicNormalCondition(String logicColumn, IDialect dialect) {
|
||||||
|
return dialect.wrap(logicColumn) + EQUALS + getLogicNormalValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String buildLogicDeletedSet(String logicColumn, IDialect dialect) {
|
||||||
|
return dialect.wrap(logicColumn) + EQUALS + getLogicDeletedValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void buildQueryCondition(QueryWrapper queryWrapper, TableInfo tableInfo) {
|
||||||
|
queryWrapper.and(QueryCondition.create(tableInfo.getSchema(), tableInfo.getTableName(), tableInfo.getLogicDeleteColumn()
|
||||||
|
, EQUALS
|
||||||
|
, getLogicNormalValue()));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取逻辑删除列未删除标记值。
|
||||||
|
*
|
||||||
|
* @return 未删除标记值
|
||||||
|
*/
|
||||||
|
protected abstract Object getLogicNormalValue();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取逻辑删除列删除时标记值。
|
||||||
|
*
|
||||||
|
* @return 删除时标记值
|
||||||
|
*/
|
||||||
|
protected abstract Object getLogicDeletedValue();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -15,23 +15,41 @@
|
|||||||
*/
|
*/
|
||||||
package com.mybatisflex.core.logicdelete;
|
package com.mybatisflex.core.logicdelete;
|
||||||
|
|
||||||
|
import com.mybatisflex.core.logicdelete.impl.DefaultLogicDeleteProcessorImpl;
|
||||||
|
|
||||||
import java.util.function.Supplier;
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 逻辑删除管理器。
|
||||||
|
*/
|
||||||
public class LogicDeleteManager {
|
public class LogicDeleteManager {
|
||||||
|
|
||||||
|
private LogicDeleteManager() {
|
||||||
|
}
|
||||||
|
|
||||||
private static LogicDeleteProcessor processor = new DefaultLogicDeleteProcessorImpl();
|
private static LogicDeleteProcessor processor = new DefaultLogicDeleteProcessorImpl();
|
||||||
private static final ThreadLocal<Boolean> skipFlags = new ThreadLocal<>();
|
private static final ThreadLocal<Boolean> skipFlags = new ThreadLocal<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取逻辑删除处理器。
|
||||||
|
*
|
||||||
|
* @return 逻辑删除处理器
|
||||||
|
*/
|
||||||
public static LogicDeleteProcessor getProcessor() {
|
public static LogicDeleteProcessor getProcessor() {
|
||||||
return processor;
|
return processor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置逻辑删除处理器。
|
||||||
|
*
|
||||||
|
* @param processor 逻辑删除处理器
|
||||||
|
*/
|
||||||
public static void setProcessor(LogicDeleteProcessor processor) {
|
public static void setProcessor(LogicDeleteProcessor processor) {
|
||||||
LogicDeleteManager.processor = processor;
|
LogicDeleteManager.processor = processor;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 跳过逻辑删除字段处理,直接进行数据库物理操作
|
* 跳过逻辑删除字段处理,直接进行数据库物理操作。
|
||||||
*/
|
*/
|
||||||
public static <T> T execWithoutLogicDelete(Supplier<T> supplier) {
|
public static <T> T execWithoutLogicDelete(Supplier<T> supplier) {
|
||||||
try {
|
try {
|
||||||
@ -43,21 +61,25 @@ public class LogicDeleteManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 跳过逻辑删除字段处理
|
* 跳过逻辑删除字段处理。
|
||||||
*/
|
*/
|
||||||
public static void skipLogicDelete() {
|
public static void skipLogicDelete() {
|
||||||
skipFlags.set(Boolean.TRUE);
|
skipFlags.set(Boolean.TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 恢复逻辑删除字段处理
|
* 恢复逻辑删除字段处理。
|
||||||
*/
|
*/
|
||||||
public static void restoreLogicDelete() {
|
public static void restoreLogicDelete() {
|
||||||
skipFlags.remove();
|
skipFlags.remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取逻辑删除列,返回 {@code null} 表示跳过逻辑删除。
|
||||||
|
*
|
||||||
|
* @param logicDeleteColumn 逻辑删除列
|
||||||
|
* @return 逻辑删除列
|
||||||
|
*/
|
||||||
public static String getLogicDeleteColumn(String logicDeleteColumn) {
|
public static String getLogicDeleteColumn(String logicDeleteColumn) {
|
||||||
if (logicDeleteColumn == null) {
|
if (logicDeleteColumn == null) {
|
||||||
return null;
|
return null;
|
||||||
@ -66,7 +88,7 @@ public class LogicDeleteManager {
|
|||||||
if (skipFlag == null) {
|
if (skipFlag == null) {
|
||||||
return logicDeleteColumn;
|
return logicDeleteColumn;
|
||||||
}
|
}
|
||||||
|
|
||||||
return skipFlag ? null : logicDeleteColumn;
|
return skipFlag ? null : logicDeleteColumn;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,11 +13,10 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.mybatisflex.core.logicdelete;
|
package com.mybatisflex.core.logicdelete.impl;
|
||||||
|
|
||||||
import com.mybatisflex.core.FlexGlobalConfig;
|
import com.mybatisflex.core.FlexGlobalConfig;
|
||||||
import com.mybatisflex.core.constant.SqlConsts;
|
import com.mybatisflex.core.logicdelete.AbstractLogicDeleteProcessor;
|
||||||
import com.mybatisflex.core.dialect.IDialect;
|
|
||||||
import com.mybatisflex.core.query.QueryCondition;
|
import com.mybatisflex.core.query.QueryCondition;
|
||||||
import com.mybatisflex.core.query.QueryWrapper;
|
import com.mybatisflex.core.query.QueryWrapper;
|
||||||
import com.mybatisflex.core.table.TableInfo;
|
import com.mybatisflex.core.table.TableInfo;
|
||||||
@ -25,27 +24,18 @@ import com.mybatisflex.core.table.TableInfo;
|
|||||||
import static com.mybatisflex.core.constant.SqlConsts.EQUALS;
|
import static com.mybatisflex.core.constant.SqlConsts.EQUALS;
|
||||||
import static com.mybatisflex.core.constant.SqlConsts.SINGLE_QUOTE;
|
import static com.mybatisflex.core.constant.SqlConsts.SINGLE_QUOTE;
|
||||||
|
|
||||||
public class DefaultLogicDeleteProcessorImpl implements LogicDeleteProcessor {
|
/**
|
||||||
|
* 默认逻辑删除处理器。
|
||||||
@Override
|
*/
|
||||||
public String buildLogicNormalCondition(String logicColumn, IDialect dialect) {
|
public class DefaultLogicDeleteProcessorImpl extends AbstractLogicDeleteProcessor {
|
||||||
return dialect.wrap(logicColumn) + EQUALS + getLogicNormalValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String buildLogicDeletedSet(String logicColumn, IDialect dialect) {
|
|
||||||
return dialect.wrap(logicColumn) + EQUALS + getLogicDeletedValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void buildQueryCondition(QueryWrapper queryWrapper, TableInfo tableInfo) {
|
public void buildQueryCondition(QueryWrapper queryWrapper, TableInfo tableInfo) {
|
||||||
queryWrapper.and(QueryCondition.create(tableInfo.getSchema(), tableInfo.getTableName(), tableInfo.getLogicDeleteColumn()
|
queryWrapper.and(QueryCondition.create(tableInfo.getSchema(), tableInfo.getTableName(), tableInfo.getLogicDeleteColumn()
|
||||||
, SqlConsts.EQUALS
|
, EQUALS
|
||||||
, FlexGlobalConfig.getDefaultConfig().getNormalValueOfLogicDelete()));
|
, FlexGlobalConfig.getDefaultConfig().getNormalValueOfLogicDelete()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected Object getLogicNormalValue() {
|
protected Object getLogicNormalValue() {
|
||||||
Object normalValueOfLogicDelete = FlexGlobalConfig.getDefaultConfig().getNormalValueOfLogicDelete();
|
Object normalValueOfLogicDelete = FlexGlobalConfig.getDefaultConfig().getNormalValueOfLogicDelete();
|
||||||
if (normalValueOfLogicDelete instanceof Number
|
if (normalValueOfLogicDelete instanceof Number
|
||||||
@ -55,7 +45,6 @@ public class DefaultLogicDeleteProcessorImpl implements LogicDeleteProcessor {
|
|||||||
return SINGLE_QUOTE + normalValueOfLogicDelete + SINGLE_QUOTE;
|
return SINGLE_QUOTE + normalValueOfLogicDelete + SINGLE_QUOTE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected Object getLogicDeletedValue() {
|
protected Object getLogicDeletedValue() {
|
||||||
Object deletedValueOfLogicDelete = FlexGlobalConfig.getDefaultConfig().getDeletedValueOfLogicDelete();
|
Object deletedValueOfLogicDelete = FlexGlobalConfig.getDefaultConfig().getDeletedValueOfLogicDelete();
|
||||||
if (deletedValueOfLogicDelete instanceof Number
|
if (deletedValueOfLogicDelete instanceof Number
|
||||||
@ -64,6 +53,7 @@ public class DefaultLogicDeleteProcessorImpl implements LogicDeleteProcessor {
|
|||||||
}
|
}
|
||||||
return SINGLE_QUOTE + deletedValueOfLogicDelete + SINGLE_QUOTE;
|
return SINGLE_QUOTE + deletedValueOfLogicDelete + SINGLE_QUOTE;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
|
||||||
|
* <p>
|
||||||
|
* 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
|
||||||
|
* <p>
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* <p>
|
||||||
|
* 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 com.mybatisflex.core.logicdelete.impl;
|
||||||
Loading…
x
Reference in New Issue
Block a user