|
@@ -17,6 +17,9 @@
|
|
|
|
|
|
package org.apache.dolphinscheduler.plugin.task.procedure;
|
|
|
|
|
|
+import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
|
|
+import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_SUCCESS;
|
|
|
+
|
|
|
import org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceClientProvider;
|
|
|
import org.apache.dolphinscheduler.plugin.datasource.api.utils.DataSourceUtils;
|
|
|
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
|
@@ -42,8 +45,7 @@ import java.sql.Types;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
|
|
|
|
-import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
|
|
-import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_SUCCESS;
|
|
|
+import com.google.common.collect.Maps;
|
|
|
|
|
|
/**
|
|
|
* procedure task
|
|
@@ -74,14 +76,16 @@ public class ProcedureTask extends AbstractTask {
|
|
|
|
|
|
logger.info("procedure task params {}", taskExecutionContext.getTaskParams());
|
|
|
|
|
|
- this.procedureParameters = JSONUtils.parseObject(taskExecutionContext.getTaskParams(), ProcedureParameters.class);
|
|
|
+ this.procedureParameters =
|
|
|
+ JSONUtils.parseObject(taskExecutionContext.getTaskParams(), ProcedureParameters.class);
|
|
|
|
|
|
// check parameters
|
|
|
if (!procedureParameters.checkParameters()) {
|
|
|
throw new RuntimeException("procedure task params is not valid");
|
|
|
}
|
|
|
|
|
|
- procedureTaskExecutionContext = procedureParameters.generateExtendedContext(taskExecutionContext.getResourceParametersHelper());
|
|
|
+ procedureTaskExecutionContext =
|
|
|
+ procedureParameters.generateExtendedContext(taskExecutionContext.getResourceParametersHelper());
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -98,13 +102,22 @@ public class ProcedureTask extends AbstractTask {
|
|
|
// load class
|
|
|
DbType dbType = DbType.valueOf(procedureParameters.getType());
|
|
|
// get datasource
|
|
|
- ConnectionParam connectionParam = DataSourceUtils.buildConnectionParams(DbType.valueOf(procedureParameters.getType()),
|
|
|
- procedureTaskExecutionContext.getConnectionParams());
|
|
|
+ ConnectionParam connectionParam =
|
|
|
+ DataSourceUtils.buildConnectionParams(DbType.valueOf(procedureParameters.getType()),
|
|
|
+ procedureTaskExecutionContext.getConnectionParams());
|
|
|
|
|
|
// get jdbc connection
|
|
|
connection = DataSourceClientProvider.getInstance().getConnection(dbType, connectionParam);
|
|
|
+
|
|
|
Map<Integer, Property> sqlParamsMap = new HashMap<>();
|
|
|
- Map<String, Property> paramsMap = taskExecutionContext.getPrepareParamsMap();
|
|
|
+ Map<String, Property> paramsMap = taskExecutionContext.getPrepareParamsMap() == null ? Maps.newHashMap()
|
|
|
+ : taskExecutionContext.getPrepareParamsMap();
|
|
|
+ if (procedureParameters.getOutProperty() != null) {
|
|
|
+ // set out params before format sql
|
|
|
+ paramsMap.putAll(procedureParameters.getOutProperty());
|
|
|
+ }
|
|
|
+
|
|
|
+ // format sql
|
|
|
String proceduerSql = formatSql(sqlParamsMap, paramsMap);
|
|
|
// call method
|
|
|
stmt = connection.prepareCall(proceduerSql);
|
|
@@ -137,7 +150,8 @@ public class ProcedureTask extends AbstractTask {
|
|
|
|
|
|
private String formatSql(Map<Integer, Property> sqlParamsMap, Map<String, Property> paramsMap) {
|
|
|
// combining local and global parameters
|
|
|
- setSqlParamsMap(procedureParameters.getMethod(), rgex, sqlParamsMap, paramsMap, taskExecutionContext.getTaskInstanceId());
|
|
|
+ setSqlParamsMap(procedureParameters.getMethod(), rgex, sqlParamsMap, paramsMap,
|
|
|
+ taskExecutionContext.getTaskInstanceId());
|
|
|
return procedureParameters.getMethod().replaceAll(rgex, "?");
|
|
|
}
|
|
|
|
|
@@ -168,8 +182,8 @@ public class ProcedureTask extends AbstractTask {
|
|
|
* @return outParameterMap
|
|
|
* @throws Exception Exception
|
|
|
*/
|
|
|
- private Map<Integer, Property> getOutParameterMap(CallableStatement stmt, Map<Integer, Property> paramsMap
|
|
|
- , Map<String, Property> totalParamsMap) throws Exception {
|
|
|
+ private Map<Integer, Property> getOutParameterMap(CallableStatement stmt, Map<Integer, Property> paramsMap,
|
|
|
+ Map<String, Property> totalParamsMap) throws Exception {
|
|
|
Map<Integer, Property> outParameterMap = new HashMap<>();
|
|
|
if (procedureParameters.getLocalParametersMap() == null) {
|
|
|
return outParameterMap;
|
|
@@ -180,7 +194,8 @@ public class ProcedureTask extends AbstractTask {
|
|
|
for (Map.Entry<Integer, Property> entry : paramsMap.entrySet()) {
|
|
|
Property property = entry.getValue();
|
|
|
if (property.getDirect().equals(Direct.IN)) {
|
|
|
- ParameterUtils.setInParameter(index, stmt, property.getType(), totalParamsMap.get(property.getProp()).getValue());
|
|
|
+ ParameterUtils.setInParameter(index, stmt, property.getType(),
|
|
|
+ totalParamsMap.get(property.getProp()).getValue());
|
|
|
} else if (property.getDirect().equals(Direct.OUT)) {
|
|
|
setOutParameter(index, stmt, property.getType(), totalParamsMap.get(property.getProp()).getValue());
|
|
|
outParameterMap.put(index, property);
|
|
@@ -237,7 +252,8 @@ public class ProcedureTask extends AbstractTask {
|
|
|
* @param dataType dataType
|
|
|
* @throws SQLException SQLException
|
|
|
*/
|
|
|
- private Object getOutputParameter(CallableStatement stmt, int index, String prop, DataType dataType) throws SQLException {
|
|
|
+ private Object getOutputParameter(CallableStatement stmt, int index, String prop,
|
|
|
+ DataType dataType) throws SQLException {
|
|
|
Object value = null;
|
|
|
switch (dataType) {
|
|
|
case VARCHAR:
|