|
@@ -114,7 +114,6 @@ public class DataProcessService {
|
|
|
long startTime = System.currentTimeMillis();
|
|
|
algorithmlibraryid = algorithmLibrary.get("algorithmlibraryid");
|
|
|
Object preConditions = algorithmLibrary.get("preconditions");
|
|
|
- Object preparameterset = algorithmLibrary.get("preparameterset");
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
// 记录生命周期ID
|
|
|
data.put("lifecycleid", lifecycleid);
|
|
@@ -131,10 +130,10 @@ public class DataProcessService {
|
|
|
|
|
|
String preCode;
|
|
|
// 前置算法参数
|
|
|
- List<Object> params = new ArrayList<>(getParams(Optional.ofNullable(preparameterset).map(DataFormatUtil::toString).orElse(null), source));
|
|
|
+// List<Object> params = new ArrayList<>(getParams(Optional.ofNullable(preparameterset).map(DataFormatUtil::toString).orElse(null), source));
|
|
|
|
|
|
- params.add(0, DataFormatUtil.toString(preConditions));
|
|
|
- Map<String, Object> eval = JsScriptEngineUtil.eval(params.toArray());
|
|
|
+// params.add(0, DataFormatUtil.toString(preConditions));
|
|
|
+ Map<String, Object> eval = JsScriptEngineUtil.eval(preConditions.toString(), resource);
|
|
|
|
|
|
preData.put("preResult", eval);
|
|
|
if (!Objects.equals(eval.get("code"), "0")) {
|
|
@@ -145,7 +144,7 @@ public class DataProcessService {
|
|
|
|
|
|
preData.put("preCode", preCode);
|
|
|
// 记录前置条件结果
|
|
|
- preData.put("preParameters", params);
|
|
|
+// preData.put("preParameters", params);
|
|
|
// 直接结束后续算法
|
|
|
if (Objects.equals("2", preCode)) {
|
|
|
break;
|
|
@@ -161,121 +160,99 @@ public class DataProcessService {
|
|
|
}
|
|
|
|
|
|
resource.add(data);
|
|
|
- Object parameterSet = algorithmLibrary.get("parameterset");
|
|
|
- Object dataSourceId = algorithmLibrary.get("datasourceid");
|
|
|
- List<Map<String, Object>> datasourceList = DATA_BASE.query(Config.getCenterConnectionStr(), "select * from datasource where datasourceid=?", dataSourceId);
|
|
|
- Map<String, Object> datasource = datasourceList.isEmpty() ? null : datasourceList.get(0);
|
|
|
- List<Map<String, Object>> params = DATA_BASE.query(Config.getCenterConnectionStr(), """
|
|
|
+
|
|
|
+ Object algorithmsourcelibraryid = algorithmLibrary.get("algorithmsourcelibraryid");
|
|
|
+// if (Objects.nonNull(algorithmsourcelibraryid) && !algorithmsourcelibraryid.toString().trim().isEmpty()) {
|
|
|
+
|
|
|
+ List<Map<String, Object>> algorithmsourcelibraryList = DATA_BASE.query(Config.getCenterConnectionStr(), "select * from algorithmsourcelibrary where id=? ", algorithmsourcelibraryid);
|
|
|
+ Map<String, Object> algorithmsourcelibrary = algorithmsourcelibraryList.get(0);
|
|
|
+
|
|
|
+ HashMap<String, Object> configMap = new HashMap<>();
|
|
|
+ Object methodName = algorithmsourcelibrary.get("code");
|
|
|
+ configMap.put("methodName", methodName);
|
|
|
+ configMap.put("path", algorithmsourcelibrary.get("filepath"));
|
|
|
+ Object className = algorithmsourcelibrary.get("library");
|
|
|
+ configMap.put("className", className);
|
|
|
+ Map<String, Object> result;
|
|
|
+ if ("com.scbfkj.uni.library.script.JsScriptEngineUtil".equals(className) && "eval".equals(methodName)) {
|
|
|
+ String expressionStr = algorithmLibrary.get("computingexpression").toString();
|
|
|
+ result = JsScriptEngineUtil.eval(expressionStr, resource);
|
|
|
+ } else {
|
|
|
+ List<Map<String, Object>> params = DATA_BASE.query(Config.getCenterConnectionStr(), """
|
|
|
select
|
|
|
algorithmparametersid, algorithmlibraryid, parametername, subscriptionexpressions, parametertype, datasource
|
|
|
from algorithmparameters where algorithmlibraryid =?""", algorithmlibraryid.toString());
|
|
|
|
|
|
// 获取入参列表
|
|
|
- List<Object> parameters = new ArrayList<>();
|
|
|
- for (Map<String, Object> param : params) {
|
|
|
- Object o = param.get("datasource");
|
|
|
- Object subscriptionExpressions = param.get("subscriptionexpressions");
|
|
|
- Object parameterType = param.get("parametertype");
|
|
|
- if ("0".equals(o)) {
|
|
|
-
|
|
|
-
|
|
|
- } else if ("1".equals(o)) {
|
|
|
- Object o1 = algorithmLibrary.get(subscriptionExpressions);
|
|
|
- switch (parameterType.toString()) {
|
|
|
- case "String" -> {
|
|
|
- parameters.add(DataFormatUtil.toString(o1));
|
|
|
- }
|
|
|
- case "Array" -> {
|
|
|
- parameters.add(DataFormatUtil.toList(o1));
|
|
|
+ List<Object> parameters = new ArrayList<>();
|
|
|
+ for (Map<String, Object> param : params) {
|
|
|
+ Object o = param.get("datasource");
|
|
|
+ Object subscriptionExpressions = param.get("subscriptionexpressions");
|
|
|
+ Object parameterType = param.get("parametertype");
|
|
|
+ if ("0".equals(o)) {
|
|
|
+
|
|
|
+
|
|
|
+ } else if ("1".equals(o)) {
|
|
|
+ Object o1 = algorithmLibrary.get(subscriptionExpressions);
|
|
|
+ switch (parameterType.toString()) {
|
|
|
+ case "String" -> {
|
|
|
+ parameters.add(DataFormatUtil.toString(o1));
|
|
|
+ }
|
|
|
+ case "Array" -> {
|
|
|
+ parameters.add(DataFormatUtil.toList(o1));
|
|
|
+ }
|
|
|
+ case "Map" -> {
|
|
|
+ parameters.add(DataFormatUtil.toMap(o1));
|
|
|
+ }
|
|
|
+ case "Number" -> {
|
|
|
+ parameters.add(NumberFormat.getInstance().parse(o1.toString()));
|
|
|
+ }
|
|
|
+ default -> {
|
|
|
+ throw new RuntimeException("参数数据类型错误");
|
|
|
+ }
|
|
|
}
|
|
|
- case "Map" -> {
|
|
|
- parameters.add(DataFormatUtil.toMap(o1));
|
|
|
- }
|
|
|
- case "Number" -> {
|
|
|
- parameters.add(NumberFormat.getInstance().parse(o1.toString()));
|
|
|
- }
|
|
|
- default -> {
|
|
|
- throw new RuntimeException("参数数据类型错误");
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- } else if ("2".equals(o)) {
|
|
|
-
|
|
|
- switch (parameterType.toString()) {
|
|
|
- case "String" -> {
|
|
|
- parameters.add(DataFormatUtil.toString(subscriptionExpressions));
|
|
|
- }
|
|
|
- case "Array" -> {
|
|
|
- parameters.add(DataFormatUtil.toList(subscriptionExpressions));
|
|
|
- }
|
|
|
- case "Map" -> {
|
|
|
- parameters.add(DataFormatUtil.toMap(subscriptionExpressions));
|
|
|
- }
|
|
|
- case "Number" -> {
|
|
|
- parameters.add(NumberFormat.getInstance().parse(subscriptionExpressions.toString()));
|
|
|
- }
|
|
|
- default -> {
|
|
|
- throw new RuntimeException("参数数据类型错误");
|
|
|
+ } else if ("2".equals(o)) {
|
|
|
+
|
|
|
+ switch (parameterType.toString()) {
|
|
|
+ case "String" -> {
|
|
|
+ parameters.add(DataFormatUtil.toString(subscriptionExpressions));
|
|
|
+ }
|
|
|
+ case "Array" -> {
|
|
|
+ parameters.add(DataFormatUtil.toList(subscriptionExpressions));
|
|
|
+ }
|
|
|
+ case "Map" -> {
|
|
|
+ parameters.add(DataFormatUtil.toMap(subscriptionExpressions));
|
|
|
+ }
|
|
|
+ case "Number" -> {
|
|
|
+ parameters.add(NumberFormat.getInstance().parse(subscriptionExpressions.toString()));
|
|
|
+ }
|
|
|
+ default -> {
|
|
|
+ throw new RuntimeException("参数数据类型错误");
|
|
|
+ }
|
|
|
}
|
|
|
+ } else if ("3".equals(o)) {
|
|
|
+ parameters.addAll(getParams(parameterType + ".$.args" + subscriptionExpressions.toString(), source));
|
|
|
}
|
|
|
- } else if ("3".equals(o)) {
|
|
|
- parameters.addAll(getParams(parameterType + ".$.args" + subscriptionExpressions.toString(), source));
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- if (Objects.nonNull(parameterSet)) {
|
|
|
- source.put("datasource", datasource);
|
|
|
-// 算法参数配置 获取算法参数 组合成String.$.datasource.host;;String.$.datasource.port;;String.$.datasource.username;;String.$.datasource.password;;List.$.args[0].result.returnData
|
|
|
-
|
|
|
|
|
|
-// 从algorithmlibrary 的parameterSet 获取算法参数
|
|
|
- if (Objects.nonNull(parameterSet)) {
|
|
|
- parameters.addAll(getParams(parameterSet.toString(), source));
|
|
|
}
|
|
|
-// 算法入参
|
|
|
+ data.put("parameters", parameters);
|
|
|
+ result = JavaScriptEngineUtil.invoke(configMap, methodName.toString(), parameters.toArray());
|
|
|
}
|
|
|
- data.put("parameters", parameters);
|
|
|
- Object algorithmsourcelibraryid = algorithmLibrary.get("algorithmsourcelibraryid");
|
|
|
- if (Objects.nonNull(algorithmsourcelibraryid) && !algorithmsourcelibraryid.toString().trim().isEmpty()) {
|
|
|
-
|
|
|
- List<Map<String, Object>> algorithmsourcelibraryList = DATA_BASE.query(Config.getCenterConnectionStr(), "select * from algorithmsourcelibrary where id=? ", algorithmsourcelibraryid);
|
|
|
- Map<String, Object> algorithmsourcelibrary = algorithmsourcelibraryList.get(0);
|
|
|
-
|
|
|
- HashMap<String, Object> configMap = new HashMap<>();
|
|
|
- Object methodName = algorithmsourcelibrary.get("code");
|
|
|
- configMap.put("methodName", methodName);
|
|
|
- configMap.put("path", algorithmsourcelibrary.get("filepath"));
|
|
|
- Object className = algorithmsourcelibrary.get("library");
|
|
|
- configMap.put("className", className);
|
|
|
- Map<String, Object> result;
|
|
|
- if ("com.scbfkj.uni.library.script.JsScriptEngineUtil".equals(className) && "eval".equals(methodName)) {
|
|
|
- result = JsScriptEngineUtil.eval(parameters.toArray());
|
|
|
- } else {
|
|
|
- result = JavaScriptEngineUtil.invoke(configMap, methodName.toString(), parameters.toArray());
|
|
|
- }
|
|
|
-
|
|
|
- if ("0".equals(result.get("code"))) {
|
|
|
- Object returnData = result.get("returnData");
|
|
|
- if (returnData instanceof Map<?, ?> d) {
|
|
|
- if (Objects.isNull(result.get("code"))) {
|
|
|
- algorithmResult = result;
|
|
|
-
|
|
|
- } else {
|
|
|
- algorithmResult = (Map<String, Object>) d;
|
|
|
-
|
|
|
- }
|
|
|
- } else {
|
|
|
+ if ("0".equals(result.get("code"))) {
|
|
|
+ Object returnData = result.get("returnData");
|
|
|
+ if (returnData instanceof Map<?, ?> d) {
|
|
|
+ if (Objects.isNull(result.get("code"))) {
|
|
|
algorithmResult = result;
|
|
|
-
|
|
|
+ } else {
|
|
|
+ algorithmResult = (Map<String, Object>) d;
|
|
|
}
|
|
|
} else {
|
|
|
- message = result.get("message").toString();
|
|
|
- throw new RuntimeException(message);
|
|
|
+ algorithmResult = result;
|
|
|
}
|
|
|
-
|
|
|
} else {
|
|
|
- Object type = algorithmLibrary.get("algorithmtype");
|
|
|
- algorithmResult = processByAlgorithm(type, parameters);
|
|
|
+ message = result.get("message").toString();
|
|
|
+ throw new RuntimeException(message);
|
|
|
}
|
|
|
// 算法执行结果
|
|
|
data.put("result", algorithmResult);
|
|
@@ -360,9 +337,9 @@ public class DataProcessService {
|
|
|
return JavaScriptEngineUtil.invoke((Map<String, Object>) parameters.get(0), DataFormatUtil.toString(parameters.get(1)), parameters.subList(2, parameters.size()).toArray());
|
|
|
}
|
|
|
// JS表达式
|
|
|
- case "2", "JS" -> {
|
|
|
- return JsScriptEngineUtil.eval(parameters.toArray());
|
|
|
- }
|
|
|
+// case "2", "JS" -> {
|
|
|
+// return JsScriptEngineUtil.eval(DataFormatUtil.toString(parameters.get(0)),);
|
|
|
+// }
|
|
|
// 数据库
|
|
|
case "3", "DB" -> {
|
|
|
// 下放到Database中处理数据
|