|
@@ -33,23 +33,33 @@ public class DataProcessService {
|
|
|
|
|
|
try {
|
|
|
serviceIdOpt = DataAliasGetUtil.getValue("serviceid", inData);
|
|
|
- if (Objects.isNull(inData) || inData.isEmpty() || serviceIdOpt.isEmpty())
|
|
|
+ if (Objects.isNull(inData) || inData.isEmpty() || serviceIdOpt.isEmpty()) {
|
|
|
throw new RuntimeException("服务编号不能为空");
|
|
|
+ }
|
|
|
serviceId = serviceIdOpt.get();
|
|
|
|
|
|
- List<Map<String, Object>> serviceInfoList = DataBase.query(Config.getCenterConnectionStr(), "select * from serviceinfo where serviceid = ?", serviceId);
|
|
|
+ List<Map<String, Object>> serviceInfoList = DataBase.query(Config.getCenterConnectionStr(), "select enablelog from serviceinfo where serviceid = ?", serviceId);
|
|
|
if (!serviceInfoList.isEmpty()) {
|
|
|
serviceInfo = serviceInfoList.get(0);
|
|
|
}
|
|
|
|
|
|
// 熔断
|
|
|
|
|
|
- List<Map<String, Object>> algorithmLibraries;
|
|
|
- algorithmLibraries = DataBase.query(Config.getCenterConnectionStr(), "select * from algorithmlibrary where serviceid=?", serviceId);
|
|
|
+ List<Map<String, Object>> algorithmLibraries = DataBase.query(Config.getCenterConnectionStr(), """
|
|
|
+ select algorithmlibraryid,
|
|
|
+ serviceid,
|
|
|
+ algorithmtype,
|
|
|
+ computingexpression,
|
|
|
+ parameterset,
|
|
|
+ preconditions,
|
|
|
+ executionnumber,
|
|
|
+ datasourceid,
|
|
|
+ preparameterset
|
|
|
+ from algorithmlibrary
|
|
|
+ where serviceid = ?""", serviceId);
|
|
|
|
|
|
|
|
|
- Optional<String> lifecycleidOpt;
|
|
|
- lifecycleidOpt = DataAliasGetUtil.getValue("lifecycleid", inData);
|
|
|
+ Optional<String> lifecycleidOpt = DataAliasGetUtil.getValue("lifecycleid", inData);
|
|
|
|
|
|
if (lifecycleidOpt.isEmpty()) {
|
|
|
lifecycleid = DataAliasGetUtil.createLifeCycleCol(Config.getContainerCode(), serviceId);
|
|
@@ -65,7 +75,6 @@ public class DataProcessService {
|
|
|
|
|
|
startDateTime = LocalDateTime.now();
|
|
|
long startTime = System.currentTimeMillis();
|
|
|
- List<Object> parameters = null;
|
|
|
algorithmlibraryid = algorithmLibrary.get("algorithmlibraryid");
|
|
|
Object preConditions = algorithmLibrary.get("preconditions");
|
|
|
Object preparameterset = algorithmLibrary.get("preparameterset");
|
|
@@ -109,10 +118,10 @@ public class DataProcessService {
|
|
|
Object parameterSet = algorithmLibrary.get("parameterset");
|
|
|
Object dataSourceId = algorithmLibrary.get("datasourceid");
|
|
|
List<Map<String, Object>> datasourceList = DataBase.query(Config.getCenterConnectionStr(), "select * from datasource where datasourceid=?", dataSourceId);
|
|
|
- Map<String, Object> datasource = datasourceList.isEmpty()?null: datasourceList.get(0);
|
|
|
+ Map<String, Object> datasource = datasourceList.isEmpty() ? null : datasourceList.get(0);
|
|
|
|
|
|
// 获取入参列表
|
|
|
- parameters = new ArrayList<>();
|
|
|
+ List<Object> parameters = new ArrayList<>();
|
|
|
if (Objects.nonNull(parameterSet)) {
|
|
|
source.put("datasource", datasource);
|
|
|
parameters.addAll(getParams(parameterSet.toString(), source));
|
|
@@ -136,7 +145,7 @@ public class DataProcessService {
|
|
|
throw new RuntimeException(message);
|
|
|
}
|
|
|
}
|
|
|
- return UniReturnUtil.success(((Map) resource.get(resource.size() - 1).get("result")).get("returnData"));
|
|
|
+ return UniReturnUtil.success(((Map<?, ?>) resource.get(resource.size() - 1).get("result")).get("returnData"));
|
|
|
} catch (Exception e) {
|
|
|
message = e.getMessage();
|
|
|
return UniReturnUtil.fail(e);
|
|
@@ -147,19 +156,16 @@ public class DataProcessService {
|
|
|
if (Objects.nonNull(message)) {
|
|
|
target = LoggerService.LogType.SERVICE_ERR;
|
|
|
}
|
|
|
- LocalDateTime finalStartDateTime = startDateTime;
|
|
|
- String finalServiceId = serviceId;
|
|
|
- String finalMessage = message;
|
|
|
- String finalLifecycleid = lifecycleid;
|
|
|
- LoggerService.log(target, new HashMap<>() {{
|
|
|
- put("begintime", finalStartDateTime);
|
|
|
- put("endtime", LocalDateTime.now());
|
|
|
- put("serviceid", finalServiceId);
|
|
|
- put("resource", DataFormatUtil.toString(resource));
|
|
|
- put("prepesource", DataFormatUtil.toString(preResource));
|
|
|
- put("returnmessage", finalMessage);
|
|
|
- put("lifecycleid", finalLifecycleid);
|
|
|
- }});
|
|
|
+ HashMap<String, Object> logData = new HashMap<>();
|
|
|
+ logData.put("begintime", startDateTime);
|
|
|
+ logData.put("endtime", LocalDateTime.now());
|
|
|
+ logData.put("serviceid", serviceId);
|
|
|
+ logData.put("resource", DataFormatUtil.toString(resource));
|
|
|
+ logData.put("prepesource", DataFormatUtil.toString(preResource));
|
|
|
+ logData.put("returnmessage", message);
|
|
|
+ logData.put("lifecycleid", lifecycleid);
|
|
|
+
|
|
|
+ LoggerService.log(target, logData);
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -167,27 +173,28 @@ public class DataProcessService {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 根据算法类型对数据进行处理
|
|
|
+ *
|
|
|
+ * @param type 算法类型
|
|
|
* @param parameters 算法参数
|
|
|
- * @return
|
|
|
+ * @return 处理结果
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
- public static Map<String, Object> processByAlgorithm
|
|
|
- (Object type, List<Object> parameters) throws Exception {
|
|
|
-
|
|
|
+ public static Map<String, Object> processByAlgorithm(Object type, List<Object> parameters) throws Exception {
|
|
|
|
|
|
switch (type.toString()) {
|
|
|
-// java反射
|
|
|
+ // java反射
|
|
|
case "1" -> {
|
|
|
return JavaScriptEngineUtil.invoke((Map<String, Object>) parameters.get(0), DataFormatUtil.toString(parameters.get(1)), parameters.subList(2, parameters.size()).toArray());
|
|
|
}
|
|
|
-// JS表达式
|
|
|
+ // JS表达式
|
|
|
case "2" -> {
|
|
|
return JsScriptEngineUtil.eval(DataFormatUtil.toString(parameters.get(0)), parameters.subList(1, parameters.size()).toArray());
|
|
|
}
|
|
|
-// 数据库
|
|
|
+ // 数据库
|
|
|
case "3" -> {
|
|
|
-// 下放到Database中处理数据
|
|
|
-// 参数表达式顺序是 数据源连接字符串(String.$.datasource.connectset),sql表达式(String.$.algorithm.computingexpression),需要操作的值(List.$.args[1].returnData),执行编号(String.$.algorithm.executionnumber)
|
|
|
+ // 下放到Database中处理数据
|
|
|
+ // 参数表达式顺序是 数据源连接字符串(String.$.datasource.connectset),sql表达式(String.$.algorithm.computingexpression),需要操作的值(List.$.args[1].returnData),执行编号(String.$.algorithm.executionnumber)
|
|
|
return DatabaseScriptUtil.exec(DataFormatUtil.toString(parameters.get(0)), DataFormatUtil.toString(parameters.get(1)), ((List<Map<String, Object>>) parameters.get(2)), parameters.get(3), (List<String>) parameters.get(4), (List<Map<String, Object>>) parameters.get(5));
|
|
|
}
|
|
|
default -> {
|
|
@@ -203,69 +210,73 @@ public class DataProcessService {
|
|
|
* @return
|
|
|
*/
|
|
|
public static List<Object> getParams(String parameterSet, Object source) {
|
|
|
- if (Objects.isNull(parameterSet)) return Collections.emptyList();
|
|
|
- String[] paths = parameterSet.split(";;");
|
|
|
- String json = DataFormatUtil.toString(source);
|
|
|
- List<Object> result = new ArrayList<>();
|
|
|
-
|
|
|
- for (String it : paths) {
|
|
|
- it = it.trim();
|
|
|
- String type = it.split("\\.")[0];
|
|
|
- if (!List.of("string", "list", "map", "array", "long", "integer", "boolean", "double", "float", "datetime").contains(type.toLowerCase())) {
|
|
|
- if (Objects.equals("null", type.toLowerCase())) {
|
|
|
- result.add(null);
|
|
|
- } else {
|
|
|
- result.add(type);
|
|
|
+ List<Object> res;
|
|
|
+ if (Objects.isNull(parameterSet)) {
|
|
|
+ res = Collections.emptyList();
|
|
|
+ } else {
|
|
|
+ String[] paths = parameterSet.split(";;");
|
|
|
+ String json = DataFormatUtil.toString(source);
|
|
|
+ List<Object> result = new ArrayList<>();
|
|
|
+ for (String it : paths) {
|
|
|
+ it = it.trim();
|
|
|
+ String type = it.split("\\.")[0];
|
|
|
+ if (!List.of("string", "list", "map", "array", "long", "integer", "boolean", "double", "float", "datetime").contains(type.toLowerCase())) {
|
|
|
+ if (Objects.equals("null", type.toLowerCase())) {
|
|
|
+ result.add(null);
|
|
|
+ } else {
|
|
|
+ result.add(type);
|
|
|
+ }
|
|
|
+ continue;
|
|
|
}
|
|
|
- continue;
|
|
|
- }
|
|
|
- String path = it.replace(type + ".", "");
|
|
|
- Object value = null;
|
|
|
+ String path = it.replace(type + ".", "");
|
|
|
+ Object value = null;
|
|
|
// $开头的使用标准的jsonPath
|
|
|
- if (path.startsWith("$")) {
|
|
|
- value = JsonPath.read(json, path);
|
|
|
- } else if (path.startsWith("#")) {
|
|
|
-// todo 缓存之类的特殊值
|
|
|
+ if (path.startsWith("$")) {
|
|
|
+ value = JsonPath.read(json, path);
|
|
|
+ } else if (path.startsWith("#")) {
|
|
|
+// todo 缓存中的值,获取什么位置的缓存?
|
|
|
|
|
|
// 不是使用$#开头的直接取后面的字符串
|
|
|
- } else {
|
|
|
- value = path;
|
|
|
- }
|
|
|
- if (Objects.isNull(value)) {
|
|
|
- result.add(null);
|
|
|
- continue;
|
|
|
- }
|
|
|
- if ("String".equalsIgnoreCase(type)) {
|
|
|
- value = DataFormatUtil.toString(value);
|
|
|
- } else if ("List".equalsIgnoreCase(type)) {
|
|
|
- value = DataFormatUtil.toList(value);
|
|
|
- } else if ("Array".equalsIgnoreCase(type)) {
|
|
|
- value = DataFormatUtil.toArray(value);
|
|
|
- } else if ("Map".equalsIgnoreCase(type)) {
|
|
|
- value = DataFormatUtil.toMap(value);
|
|
|
- } else if ("Long".equalsIgnoreCase(type)) {
|
|
|
- value = Long.parseLong(value.toString());
|
|
|
- } else if ("Integer".equalsIgnoreCase(type)) {
|
|
|
- value = Integer.parseInt(value.toString());
|
|
|
- } else if ("Double".equalsIgnoreCase(type)) {
|
|
|
- value = Double.parseDouble(value.toString());
|
|
|
- } else if ("Float".equalsIgnoreCase(type)) {
|
|
|
- value = Float.parseFloat(value.toString());
|
|
|
- } else if ("Boolean".equalsIgnoreCase(type)) {
|
|
|
- value = Boolean.parseBoolean(value.toString());
|
|
|
- } else if ("Datetime".equalsIgnoreCase(type)) {
|
|
|
- String string = value.toString();
|
|
|
- String patten = "yyyy-MM-dd HH:mm:ss";
|
|
|
- if (string.contains("(")) {
|
|
|
- patten = string.substring(string.indexOf("(") + 1, string.length() - 1);
|
|
|
- string = string.substring(0, string.indexOf("("));
|
|
|
+ } else {
|
|
|
+ value = path;
|
|
|
+ }
|
|
|
+ if (Objects.isNull(value)) {
|
|
|
+ result.add(null);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if ("String".equalsIgnoreCase(type)) {
|
|
|
+ value = DataFormatUtil.toString(value);
|
|
|
+ } else if ("List".equalsIgnoreCase(type)) {
|
|
|
+ value = DataFormatUtil.toList(value);
|
|
|
+ } else if ("Array".equalsIgnoreCase(type)) {
|
|
|
+ value = DataFormatUtil.toArray(value);
|
|
|
+ } else if ("Map".equalsIgnoreCase(type)) {
|
|
|
+ value = DataFormatUtil.toMap(value);
|
|
|
+ } else if ("Long".equalsIgnoreCase(type)) {
|
|
|
+ value = Long.parseLong(value.toString());
|
|
|
+ } else if ("Integer".equalsIgnoreCase(type)) {
|
|
|
+ value = Integer.parseInt(value.toString());
|
|
|
+ } else if ("Double".equalsIgnoreCase(type)) {
|
|
|
+ value = Double.parseDouble(value.toString());
|
|
|
+ } else if ("Float".equalsIgnoreCase(type)) {
|
|
|
+ value = Float.parseFloat(value.toString());
|
|
|
+ } else if ("Boolean".equalsIgnoreCase(type)) {
|
|
|
+ value = Boolean.parseBoolean(value.toString());
|
|
|
+ } else if ("Datetime".equalsIgnoreCase(type)) {
|
|
|
+ String string = value.toString();
|
|
|
+ String patten = "yyyy-MM-dd HH:mm:ss";
|
|
|
+ if (string.contains("(")) {
|
|
|
+ patten = string.substring(string.indexOf("(") + 1, string.length() - 1);
|
|
|
+ string = string.substring(0, string.indexOf("("));
|
|
|
+ }
|
|
|
+ value = LocalDateTime.parse(string, DateTimeFormatter.ofPattern(patten));
|
|
|
}
|
|
|
- value = LocalDateTime.parse(string, DateTimeFormatter.ofPattern(patten));
|
|
|
- }
|
|
|
|
|
|
- result.add(value);
|
|
|
+ result.add(value);
|
|
|
+ }
|
|
|
+ res = result;
|
|
|
}
|
|
|
- return result;
|
|
|
+ return res;
|
|
|
}
|
|
|
|
|
|
|