|
@@ -2,11 +2,12 @@ package com.scbfkj.uni.system;
|
|
|
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
import com.fasterxml.jackson.databind.JsonNode;
|
|
|
-import com.scbfkj.uni.dtos.Expression;
|
|
|
+import com.fasterxml.jackson.databind.node.ArrayNode;
|
|
|
+import com.fasterxml.jackson.databind.node.JsonNodeFactory;
|
|
|
+import com.fasterxml.jackson.databind.node.NullNode;
|
|
|
import com.scbfkj.uni.library.DataAliasGetUtil;
|
|
|
import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
-import com.scbfkj.uni.library.script.DatabaseScriptUtil;
|
|
|
import com.scbfkj.uni.library.script.JavaScriptEngineUtil;
|
|
|
import com.scbfkj.uni.library.script.JsScriptEngineUtil;
|
|
|
import com.scbfkj.uni.process.DataBase;
|
|
@@ -32,9 +33,10 @@ public class ProcessUtil {
|
|
|
public Map<String, Object> process(Map<String, Object> inData) {
|
|
|
String lifecycleid = null;
|
|
|
List<Map<String, Object>> resource = new ArrayList<>();
|
|
|
- List<Map<String, Object>> tempResult = new ArrayList<>();
|
|
|
+// List<Map<String, Object>> tempResult = new ArrayList<>();
|
|
|
List<Map<String, Object>> preResource = new ArrayList<>();
|
|
|
- tempResult.add(inData);
|
|
|
+// tempResult.add(inData);
|
|
|
+ inData.put("index", 0);
|
|
|
resource.add(inData);
|
|
|
String serviceId = null;
|
|
|
LocalDateTime startDateTime = LocalDateTime.now();
|
|
@@ -65,8 +67,6 @@ public class ProcessUtil {
|
|
|
if (!serviceInfoList.isEmpty()) {
|
|
|
serviceInfo = serviceInfoList.get(0);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
Optional<String> lifecycleidOpt = DataAliasGetUtil.getValue("lifecycleid", inData);
|
|
|
|
|
|
if (lifecycleidOpt.isEmpty()) {
|
|
@@ -75,7 +75,7 @@ public class ProcessUtil {
|
|
|
} else {
|
|
|
lifecycleid = lifecycleidOpt.get();
|
|
|
}
|
|
|
- HashMap<String, Object> source = new HashMap<>();
|
|
|
+// HashMap<String, Object> source = new HashMap<>();
|
|
|
|
|
|
Map<String, Integer> algorithmLibrariesOrders = new HashMap<>();
|
|
|
|
|
@@ -123,19 +123,22 @@ public class ProcessUtil {
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
Object preConditions = algorithmLibrary.get("preconditions");
|
|
|
|
|
|
- source.put("args", resource);
|
|
|
- source.put("algorithm", algorithmLibrary);
|
|
|
+// source.put("args", resource);
|
|
|
+// source.put("algorithm", algorithmLibrary);
|
|
|
if (Objects.nonNull(preConditions)) {
|
|
|
- Map<String, Object> eval = JsScriptEngineUtil.eval(preConditions.toString(), tempResult);
|
|
|
+ Map<String, Object> eval = JsScriptEngineUtil.eval(preConditions.toString(), resource);
|
|
|
HashMap<String, Object> preData = new HashMap<>();
|
|
|
preResource.add(preData);
|
|
|
|
|
|
preData.put("algorithmlibraryid", algorithmlibraryid);
|
|
|
preData.put("preResult", eval);
|
|
|
- preCode = eval.get("code").toString();
|
|
|
+ preCode = eval.get("returnData").toString();
|
|
|
}
|
|
|
|
|
|
- if ("1".equalsIgnoreCase(preCode) || "2".equalsIgnoreCase(preCode) || "3".equalsIgnoreCase(preCode)) {
|
|
|
+ if ("1".equalsIgnoreCase(preCode)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if ("2".equalsIgnoreCase(preCode) || "3".equalsIgnoreCase(preCode)) {
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -155,7 +158,7 @@ public class ProcessUtil {
|
|
|
List<Object> parameters = new ArrayList<>();
|
|
|
if ("com.scbfkj.uni.library.script.JsScriptEngineUtil".equals(className) && "eval".equals(methodName)) {
|
|
|
String expressionStr = algorithmLibrary.get("computingexpression").toString();
|
|
|
- result = JsScriptEngineUtil.eval(expressionStr, tempResult);
|
|
|
+ result = JsScriptEngineUtil.eval(expressionStr, resource);
|
|
|
} else {
|
|
|
List<Map<String, Object>> params = DATA_BASE.query(Config.getCenterConnectionStr(), """
|
|
|
select
|
|
@@ -175,7 +178,7 @@ public class ProcessUtil {
|
|
|
} else if ("2".equals(o)) {
|
|
|
parseData(parameterType, parameters, subscriptionExpressions);
|
|
|
} else if ("3".equals(o)) {
|
|
|
- parameters.add(getParams(parameterType.toString(), "/args", subscriptionExpressions.toString(), source));
|
|
|
+ parameters.add(getParamsByIndex(subscriptionExpressions.toString(), resource, false));
|
|
|
}
|
|
|
}
|
|
|
result = JavaScriptEngineUtil.invoke(configMap, methodName.toString(), parameters.toArray());
|
|
@@ -192,6 +195,7 @@ public class ProcessUtil {
|
|
|
data.put("lifecycleid", lifecycleid);
|
|
|
data.put("algorithmlibraryid", algorithmlibraryid);
|
|
|
data.put("result", result);
|
|
|
+ data.put("index", algorithmLibrariesOrders.get(algorithmlibraryid));
|
|
|
data.put("parameters", parameters);
|
|
|
// 执行时长
|
|
|
data.put("execTime", System.currentTimeMillis() - startTime);
|
|
@@ -201,12 +205,13 @@ public class ProcessUtil {
|
|
|
message = Optional.ofNullable(result.get("message")).map(DataFormatUtil::toString).orElse(null);
|
|
|
data.put("resultCode", code);
|
|
|
|
|
|
- tempResult.add(algorithmLibrariesOrders.get(algorithmlibraryid.toString()), data);
|
|
|
+// tempResult.set(algorithmLibrariesOrders.get(algorithmlibraryid.toString()), data);
|
|
|
resource.add(data);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- if ("2".equalsIgnoreCase(preCode) || "3".equalsIgnoreCase(preCode)) {
|
|
|
+ if ("2".equalsIgnoreCase(preCode)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if ("3".equalsIgnoreCase(preCode)) {
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -313,7 +318,66 @@ public class ProcessUtil {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public Object getParams(String type, String root, String parameterSet, Object source) throws JsonProcessingException {
|
|
|
+ public Object getParamsByIndex(String parameterSet, Object source, boolean all) throws JsonProcessingException {
|
|
|
+ if (Objects.isNull(source)) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ if (parameterSet == null) return NullNode.instance;
|
|
|
+ ArrayNode jsonNode = DataFormatUtil.toJsonNode(source).withArray("");
|
|
|
+ if (parameterSet.trim().isEmpty()) return jsonNode;
|
|
|
+ String jsonPtrExpr = parameterSet.replaceAll("[\\[\\]$.]", "/").replaceAll("/+", "/");
|
|
|
+
|
|
|
+ String[] split = jsonPtrExpr.split("/", 2);
|
|
|
+
|
|
|
+ if (split.length > 1) {
|
|
|
+ if (split[0].isEmpty()) {
|
|
|
+ if (split.length == 2) {
|
|
|
+ jsonPtrExpr = split[1];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!jsonPtrExpr.equalsIgnoreCase("/") && jsonPtrExpr.endsWith("/")) {
|
|
|
+ jsonPtrExpr = jsonPtrExpr.substring(0, jsonPtrExpr.length() - 1);
|
|
|
+ }
|
|
|
+ String[] split1 = jsonPtrExpr.split("/", 2);
|
|
|
+ JsonNode result = NullNode.getInstance();
|
|
|
+
|
|
|
+ for (int i = 0; i < split1.length; i++) {
|
|
|
+ String key = split1[i];
|
|
|
+ if (i == 0) {
|
|
|
+ ArrayNode arrayNode = new ArrayNode(JsonNodeFactory.instance);
|
|
|
+ var index = 0;
|
|
|
+ for (JsonNode node : jsonNode) {
|
|
|
+
|
|
|
+ if (node.get("index").asText().equals(key)) {
|
|
|
+ if (!all) {
|
|
|
+ if (index == jsonNode.size() - 1) {
|
|
|
+ arrayNode.add(node);
|
|
|
+ result = node;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ arrayNode.add(node);
|
|
|
+ result = node;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ index++;
|
|
|
+ }
|
|
|
+ jsonNode = arrayNode;
|
|
|
+ } else {
|
|
|
+ ArrayNode arrayNode = new ArrayNode(JsonNodeFactory.instance);
|
|
|
+ for (JsonNode node : jsonNode) {
|
|
|
+ JsonNode node1 = node.at("/" + key);
|
|
|
+ arrayNode.add(node1);
|
|
|
+ result = node1;
|
|
|
+ }
|
|
|
+ jsonNode = arrayNode;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return all ? jsonNode : result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Object getParams(String root, String parameterSet, Object source) throws JsonProcessingException {
|
|
|
|
|
|
|
|
|
if (Objects.isNull(source)) {
|
|
@@ -329,41 +393,44 @@ public class ProcessUtil {
|
|
|
if (!jsonPtrExpr.startsWith("/")) {
|
|
|
jsonPtrExpr = "/" + jsonPtrExpr;
|
|
|
}
|
|
|
- JsonNode node = "/".equalsIgnoreCase(jsonPtrExpr) ? jsonNode : jsonNode.at(jsonPtrExpr);
|
|
|
- if (!List.of("string", "list", "map", "array", "long", "integer", "boolean", "double", "float", "datetime").contains(type.toLowerCase())) {
|
|
|
- if ("null".equalsIgnoreCase(type)) {
|
|
|
- return null;
|
|
|
- } else {
|
|
|
- throw new RuntimeException("数据类型错误: " + type);
|
|
|
- }
|
|
|
- }
|
|
|
- if ("String".equalsIgnoreCase(type)) {
|
|
|
- return node.toString();
|
|
|
- } else if ("List".equalsIgnoreCase(type)) {
|
|
|
- return DataFormatUtil.toList(node);
|
|
|
- } else if ("Array".equalsIgnoreCase(type)) {
|
|
|
- return DataFormatUtil.toArray(node);
|
|
|
- } else if ("Map".equalsIgnoreCase(type)) {
|
|
|
- return DataFormatUtil.toMap(node);
|
|
|
- } else if ("Long".equalsIgnoreCase(type)) {
|
|
|
- return node.asLong();
|
|
|
- } else if ("Integer".equalsIgnoreCase(type)) {
|
|
|
- return node.asInt();
|
|
|
- } else if ("Double".equalsIgnoreCase(type)) {
|
|
|
- return node.asDouble();
|
|
|
- } else if ("Float".equalsIgnoreCase(type)) {
|
|
|
- return node.floatValue();
|
|
|
- } else if ("Boolean".equalsIgnoreCase(type)) {
|
|
|
- return node.asBoolean();
|
|
|
- } else if ("Datetime".equalsIgnoreCase(type)) {
|
|
|
- String string = node.asText();
|
|
|
- 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("("));
|
|
|
- }
|
|
|
- return LocalDateTime.parse(string, DateTimeFormatter.ofPattern(patten));
|
|
|
+ if (jsonPtrExpr.endsWith("/") && jsonPtrExpr.length() > 1) {
|
|
|
+ jsonPtrExpr = jsonPtrExpr.substring(0, jsonPtrExpr.length() - 1);
|
|
|
}
|
|
|
+ JsonNode node = "/".equalsIgnoreCase(jsonPtrExpr) ? jsonNode : jsonNode.at(jsonPtrExpr);
|
|
|
+// if (!List.of("string", "list", "map", "array", "long", "integer", "boolean", "double", "float", "datetime").contains(type.toLowerCase())) {
|
|
|
+// if ("null".equalsIgnoreCase(type)) {
|
|
|
+// return null;
|
|
|
+// } else {
|
|
|
+// throw new RuntimeException("数据类型错误: " + type);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// if ("String".equalsIgnoreCase(type)) {
|
|
|
+// return node.toString();
|
|
|
+// } else if ("List".equalsIgnoreCase(type)) {
|
|
|
+// return DataFormatUtil.toList(node);
|
|
|
+// } else if ("Array".equalsIgnoreCase(type)) {
|
|
|
+// return DataFormatUtil.toArray(node);
|
|
|
+// } else if ("Map".equalsIgnoreCase(type)) {
|
|
|
+// return DataFormatUtil.toMap(node);
|
|
|
+// } else if ("Long".equalsIgnoreCase(type)) {
|
|
|
+// return node.asLong();
|
|
|
+// } else if ("Integer".equalsIgnoreCase(type)) {
|
|
|
+// return node.asInt();
|
|
|
+// } else if ("Double".equalsIgnoreCase(type)) {
|
|
|
+// return node.asDouble();
|
|
|
+// } else if ("Float".equalsIgnoreCase(type)) {
|
|
|
+// return node.floatValue();
|
|
|
+// } else if ("Boolean".equalsIgnoreCase(type)) {
|
|
|
+// return node.asBoolean();
|
|
|
+// } else if ("Datetime".equalsIgnoreCase(type)) {
|
|
|
+// String string = node.asText();
|
|
|
+// 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("("));
|
|
|
+// }
|
|
|
+// return LocalDateTime.parse(string, DateTimeFormatter.ofPattern(patten));
|
|
|
+// }
|
|
|
return node;
|
|
|
}
|
|
|
|