|
@@ -9,7 +9,6 @@ import org.bfkj.utils.MyDbHelper;
|
|
|
import org.bfkj.utils.ScriptEnginePro;
|
|
|
|
|
|
import java.util.*;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -26,9 +25,9 @@ public class DataProcess {
|
|
|
|
|
|
private final Map<String, ScriptEnginePro> ScriptEngineProMaps = new HashMap<>();//用于缓存当前服务的算法引擎对象,数据库的无需缓存
|
|
|
|
|
|
- private Map<String, List<String>> columnMaps = new HashMap<>(); //用于缓存对应数据库算法的SQL结构,表名、字段列表、主键
|
|
|
+ private final Map<String, List<String>> columnMaps = new HashMap<>(); //用于缓存对应数据库算法的SQL结构,表名、字段列表、主键
|
|
|
|
|
|
- private static List<String> baseInfo = new ArrayList<>() {{
|
|
|
+ private static final List<String> baseInfo = new ArrayList<>() {{
|
|
|
add("serviceId");
|
|
|
add("event");
|
|
|
add("page");
|
|
@@ -45,8 +44,6 @@ public class DataProcess {
|
|
|
errorMessage = "获取myDbHelper对象异常: " + myDbHelper.getErrorMessage();
|
|
|
return;
|
|
|
}
|
|
|
- //服务信息
|
|
|
- // todo 修改: result ,检查外层是否是判断过服务是否存在,如果不在存则修改sql否则移除
|
|
|
Map<String, Object> serviceInfoResult = myDbHelper.queryByParamsReturnList("select * from serviceinfo where serviceID = ?", service_Id);//直接数据库查询
|
|
|
List<Map<String, Object>> mapList = MapTools.getMapList(serviceInfoResult);
|
|
|
if (!serviceInfoResult.get("code").equals("0") || Objects.isNull(mapList) || mapList.isEmpty()) {//查询数据库失败
|
|
@@ -60,13 +57,13 @@ public class DataProcess {
|
|
|
if (!calculationResult.get("code").equals("0")) {//查询数据库失败
|
|
|
errorMessage = "查询" + service_Id + "的算法失败:" + calculationResult.get("message");
|
|
|
}
|
|
|
+ if (calculationLibraryList == null || calculationLibraryList.isEmpty()) {//查询数据库失败
|
|
|
+ errorMessage = "服务ID " + service_Id +"没有找到对应的算法";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 关闭的连接信息
|
|
|
- *
|
|
|
- * @param
|
|
|
- * @return
|
|
|
*/
|
|
|
public void close() {//销毁当前服务对象时,需要将缓存的算法引擎实例同步销毁
|
|
|
for (ScriptEnginePro scriptEnginePro : ScriptEngineProMaps.values()) {
|
|
@@ -166,7 +163,6 @@ public class DataProcess {
|
|
|
calculationResult.add(inputData);//默认接收数据为第0个算法的结果
|
|
|
Map<String, List<Map<String, Object>>> execResult = execCalultion(calculationResult, null, event, dataObjectId, inputData.get("page"), inputData.get("pageSize"));
|
|
|
calculationResult = execResult.get("calcData");//执行当前服务对应的算法库
|
|
|
-
|
|
|
Map<String, Object> lastResult = calculationResult.get(calculationResult.size() - 1);//获取最后一个计算结果
|
|
|
if (Objects.equals(lastResult.get("code"), "-1")) {//最后一个计算结果为-1则记录异常,否则全部记录正常
|
|
|
String libraryId = lastResult.get("library_id").toString();
|
|
@@ -181,7 +177,7 @@ public class DataProcess {
|
|
|
// 循环lastResult
|
|
|
// 遍历map
|
|
|
// 如果key不在列权限则删除
|
|
|
- List<Map<String, Object>> collect = calculationResult.stream().filter(map -> Objects.isNull(map.get("library_id")) || !map.get("library_id").toString().contains("_N")).collect(Collectors.toList());
|
|
|
+ List<Map<String, Object>> collect = calculationResult.stream().filter(map -> Objects.isNull(map.get("library_id")) || !map.get("library_id").toString().contains("_N")).toList();
|
|
|
return processSuccess(collect.get(collect.size() - 1));
|
|
|
}
|
|
|
|
|
@@ -210,6 +206,7 @@ public class DataProcess {
|
|
|
return inputData;//
|
|
|
}
|
|
|
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
private static Map<String, Object> createStandardParameters(Map<String, Object> inDataContent, String event, List<Object> authList) {
|
|
|
Map<String, Object> returnData = new HashMap<>();//创建返回值returnData{}
|
|
|
if ("1,2".contains(event)) {//如果事件是新增或更新则(查询和删除无需处理value)
|
|
@@ -225,13 +222,13 @@ public class DataProcess {
|
|
|
Object tempFilterObject = inDataContent.get("filter");//获取filter
|
|
|
tempFilterObject = Objects.isNull(tempFilterObject) ? inDataContent : tempFilterObject;//如果不存在filter则等于原始MAP
|
|
|
if (tempFilterObject instanceof Map) {////如果filter是单个Map则
|
|
|
- authList.addAll(changeSignFilter((Map) tempFilterObject, null, null));
|
|
|
+ authList.addAll(changeSignFilter((Map<String, Object>) tempFilterObject, null, null));
|
|
|
returnData.put("filter", authList);//转换为标准条件集
|
|
|
} else {
|
|
|
if (tempFilterObject instanceof List tempFilterObjectList && tempFilterObjectList.get(0) instanceof Map) {//如果filter是List则"123"
|
|
|
List<Object> tempFilterList = new ArrayList<>(authList);
|
|
|
for (Object o : tempFilterObjectList) {//循环List -{c1:c2,c3:c4}
|
|
|
- tempFilterList.addAll(changeSignFilter((Map) o, null, null)); //循环添加
|
|
|
+ tempFilterList.addAll(changeSignFilter((Map<String, Object>) o, null, null)); //循环添加
|
|
|
}
|
|
|
returnData.put("filter", tempFilterList);//转换为标准条件集
|
|
|
} else {//此时tempFilterObject既不是List也不是Map:1、dataContent包含filter且filter是一个字符串
|
|
@@ -248,7 +245,7 @@ public class DataProcess {
|
|
|
objects.add(filterMap);
|
|
|
return objects;
|
|
|
}
|
|
|
- for (Object filterKey : filterMap.keySet()) {
|
|
|
+ for (String filterKey : filterMap.keySet()) {
|
|
|
Map<String, Object> returnMap = new HashMap<>();
|
|
|
Object keyValues = filterMap.get(filterKey);
|
|
|
returnMap.put("left", "");
|
|
@@ -270,7 +267,7 @@ public class DataProcess {
|
|
|
List<Map<String, Object>> preData = new ArrayList<>();
|
|
|
List<Map<String, Object>> calcData = Objects.isNull(inData) || inData.isEmpty() ? new ArrayList<>() : inData;
|
|
|
for (Map<String, Object> calculationLibrary : calculationLibraryList) {//循环算法库
|
|
|
-
|
|
|
+// long l = System.currentTimeMillis();
|
|
|
String library_id = calculationLibrary.get("library_id").toString();//算法编号
|
|
|
if (MapTools.isNotBlank(beginLibraryId) && !beginLibraryId.equals(library_id)) {
|
|
|
continue;//如果异常恢复开始算法编号不为空且不等于当前循环的算法编号则跳过
|
|
@@ -309,17 +306,12 @@ public class DataProcess {
|
|
|
returnData.put("calcData", calcData);
|
|
|
return returnData;
|
|
|
}
|
|
|
- Object sourceObjectName = calculationLibrary.get("sourceObjectName");//目标对象名(表名)
|
|
|
+ //目标对象名(表名)
|
|
|
+ String tableName = Objects.isNull(calculationLibrary.get("sourceObjectName")) ? null : calculationLibrary.get("sourceObjectName").toString();
|
|
|
Object isActiveTable = calculationLibrary.get("isActiveTable");//是否动态表
|
|
|
- Object eventStr = calculationLibrary.get("event");//指定当前算法事件
|
|
|
- String eventFlag;
|
|
|
- if (Objects.isNull(eventStr)) {//算法未指定事件:表名方式依赖入口否则通过SQL语句进行判断 ------------------sql语句如果换行了呢
|
|
|
- eventFlag = Objects.nonNull(sourceObjectName) ? event.toString() : AppConfig.staticEvent.get(Objects.requireNonNull(computing_expression).trim().toLowerCase().substring(0, 6));
|
|
|
- } else {//算法指定事件
|
|
|
- eventFlag = eventStr.toString();
|
|
|
- }
|
|
|
+ //指定当前算法事件
|
|
|
+ String eventFlag = Objects.isNull(calculationLibrary.get("event")) ? (MapTools.isNotBlank(tableName)? event.toString() : AppConfig.staticEvent.get(Objects.requireNonNull(computing_expression).trim().toLowerCase().substring(0, 6))) : calculationLibrary.get("event").toString();
|
|
|
if (null == eventFlag) {
|
|
|
-// inData.add();
|
|
|
calcData.add(processFail("事件标志为空", library_id));
|
|
|
returnData.put("calcData", calcData);
|
|
|
return returnData;
|
|
@@ -329,14 +321,14 @@ public class DataProcess {
|
|
|
Object tempDBPrams = null;
|
|
|
try {//添加try捕获异常
|
|
|
if (Objects.isNull(calculationLibrary.get("parmIndex"))) {//未配置取参则默认取上一个算法
|
|
|
- Map<String, Object> tempMap = inData.get(inData.size() - 1);
|
|
|
+ Map<String, Object> tempMap = calcData.get(calcData.size() - 1);
|
|
|
tempDBPrams = tempMap.containsKey("dataContent") ? tempMap.get("dataContent") : tempMap.get("returnData");
|
|
|
} else {//算法取值位置表达式不为空
|
|
|
- tempDBPrams = inData;//默认等于全量参数
|
|
|
+ tempDBPrams = calcData;//默认等于全量参数
|
|
|
String[] parmSplit = calculationLibrary.get("parmIndex").toString().split("\\.");//按.进行分割
|
|
|
for (String item : parmSplit) {//循环提取参数
|
|
|
if (MapTools.isNumber(item)) {//数字代表数组中的位置
|
|
|
- tempDBPrams = ((List) tempDBPrams).get(Integer.parseInt(item));
|
|
|
+ tempDBPrams = ((List<?>) tempDBPrams).get(Integer.parseInt(item));
|
|
|
} else {
|
|
|
tempDBPrams = ((Map) tempDBPrams).get(item);
|
|
|
}
|
|
@@ -354,9 +346,9 @@ public class DataProcess {
|
|
|
}
|
|
|
// 事件6 在算法表中的event定义,实现自动的新增或更新
|
|
|
if (eventFlag.equals("6")) {
|
|
|
- currentResult = myDbHelper.insertOrUpdate(Objects.nonNull(sourceObjectName) ? sourceObjectName.toString() : "", dbPrams);
|
|
|
+ currentResult = myDbHelper.insertOrUpdate(tableName, dbPrams);
|
|
|
} else {
|
|
|
- currentResult = myDbHelper.generalProcess(eventFlag, Objects.nonNull(sourceObjectName) ? sourceObjectName.toString() : "", computing_expression, null, dbPrams, Objects.nonNull(isActiveTable) && Objects.equals(isActiveTable, "true"), page, pageSize);
|
|
|
+ currentResult = myDbHelper.generalProcess(eventFlag, tableName, computing_expression, null, dbPrams, Objects.nonNull(isActiveTable) && Objects.equals(isActiveTable, "true"), page, pageSize);
|
|
|
}
|
|
|
|
|
|
} else {
|
|
@@ -367,6 +359,7 @@ public class DataProcess {
|
|
|
}
|
|
|
calcData.add(currentResult);
|
|
|
returnData.put("calcData", calcData);
|
|
|
+// System.out.println("算法ID : " + library_id +" 执行时间为:" +(System.currentTimeMillis()-l));
|
|
|
setServiceErrorCount(library_id, serviceId, "0"); /// 错误次数恢复??
|
|
|
}
|
|
|
return returnData;
|