use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class CorrectBatchModeForJDBCOutput method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() != ECodeLanguage.JAVA || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
//groupx
List<String> filterList = Arrays.asList("tJDBCOutput");
IComponentConversion correctBatchModeForDBComponents = new IComponentConversion() {
public void transform(NodeType node) {
ElementParameterType useExistingConnPara = ComponentUtilities.getNodeProperty(node, "USE_EXISTING_CONNECTION");
if (useExistingConnPara == null) {
ComponentUtilities.addNodeProperty(node, "USE_EXISTING_CONNECTION", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_EXISTING_CONNECTION").setValue("false");
}
ElementParameterType useBatchSizePara = ComponentUtilities.getNodeProperty(node, "USE_BATCH_SIZE");
if (useBatchSizePara == null) {
ComponentUtilities.addNodeProperty(node, "USE_BATCH_SIZE", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_BATCH_SIZE").setValue("false");
}
ElementParameterType useBatchAndUseConnPara = ComponentUtilities.getNodeProperty(node, "USE_BATCH_AND_USE_CONN");
if (useBatchAndUseConnPara == null) {
ComponentUtilities.addNodeProperty(node, "USE_BATCH_AND_USE_CONN", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_BATCH_AND_USE_CONN").setValue("false");
}
}
};
for (String componentName : filterList) {
IComponentFilter filter = new NameComponentFilter(componentName);
try {
ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(correctBatchModeForDBComponents));
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
return ExecutionResult.SUCCESS_NO_ALERT;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class CorrectBatchModeForTeradataOutput method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() != ECodeLanguage.JAVA || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
//groupx
List<String> filterList = Arrays.asList("tTeradataOutput");
IComponentConversion correctBatchModeForDBComponents = new IComponentConversion() {
public void transform(NodeType node) {
ElementParameterType useExistingConnPara = ComponentUtilities.getNodeProperty(node, "USE_EXISTING_CONNECTION");
if (useExistingConnPara == null) {
ComponentUtilities.addNodeProperty(node, "USE_EXISTING_CONNECTION", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_EXISTING_CONNECTION").setValue("false");
}
boolean useExistConn = ComponentUtilities.getNodeProperty(node, "USE_EXISTING_CONNECTION").getValue().equalsIgnoreCase("true");
ElementParameterType useBatchSizePara = ComponentUtilities.getNodeProperty(node, "USE_BATCH_SIZE");
if (useBatchSizePara == null) {
ComponentUtilities.addNodeProperty(node, "USE_BATCH_SIZE", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_BATCH_SIZE").setValue("false");
}
boolean useBatchExistAndCheckForPreviousVersion = useBatchSizePara != null && useBatchSizePara.getValue().equalsIgnoreCase("true");
ElementParameterType useBatchAndUseConnPara = ComponentUtilities.getNodeProperty(node, "USE_BATCH_AND_USE_CONN");
if (useBatchAndUseConnPara == null) {
ComponentUtilities.addNodeProperty(node, "USE_BATCH_AND_USE_CONN", "CHECK");
ComponentUtilities.getNodeProperty(node, "USE_BATCH_AND_USE_CONN").setValue(useBatchExistAndCheckForPreviousVersion ? "true" : "false");
}
boolean useBatchExistAndUncheckForPreviousVersion = useBatchSizePara != null && useBatchSizePara.getValue().equalsIgnoreCase("false");
if (useExistConn) {
if (useBatchExistAndUncheckForPreviousVersion) {
ComponentUtilities.getNodeProperty(node, "USE_BATCH_AND_USE_CONN").setValue("true");
ComponentUtilities.getNodeProperty(node, "BATCH_SIZE").setValue("0");
}
} else {
if (useBatchExistAndUncheckForPreviousVersion) {
useBatchSizePara.setValue("true");
ComponentUtilities.getNodeProperty(node, "BATCH_SIZE").setValue("0");
}
}
}
};
for (String componentName : filterList) {
IComponentFilter filter = new NameComponentFilter(componentName);
try {
ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(correctBatchModeForDBComponents));
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
return ExecutionResult.SUCCESS_NO_ALERT;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class UseOracleSIDAsDefaultOracleTypeMigrationTask method execute.
/*
* (non-Javadoc)
*
* @seeorg.talend.core.model.migration.AbstractJobMigrationTask#executeOnProcess(org.talend.core.model.properties.
* ProcessItem)
*/
@SuppressWarnings("unchecked")
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
EList parameters = null;
try {
parameters = processType.getParameters().getElementParameter();
} catch (Exception e) {
// ignore it
}
if (parameters != null) {
for (int i = 0; i < parameters.size(); i++) {
ElementParameterType parameter = (ElementParameterType) parameters.get(i);
if ((parameter.getName().equals(EParameterName.DB_TYPE.getName()) || parameter.getName().equals(//$NON-NLS-1$
"DB_TYPE_IMPLICIT_CONTEXT")) && parameter.getField().equals(EParameterFieldType.CLOSED_LIST.getName())) {
String value = parameter.getValue();
if (value.equalsIgnoreCase("tOracleOutput")) {
//$NON-NLS-1$
// Default set to Orace SID(see bug 5315) //$NON-NLS-1$
parameter.setValue("tOracleOutput_sid");
}
}
}
}
return ExecutionResult.SUCCESS_WITH_ALERT;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class DowngradeParameterHelper method downgradeRelatedParameters.
/**
*
* ggu Comment method "upgradeRelatedParameters".
*
* "type =null" is only for property type parameter.
*/
private static boolean downgradeRelatedParameters(ElementParameterType repositoryParam, String repositoryParamName, final String oleTypeParamName, String newTypeParamName, final String parentName, List<ElementParameterType> elemParamList, ERepositoryObjectType type) {
if (repositoryParam == null || oleTypeParamName == null || parentName == null || elemParamList == null || elemParamList.isEmpty()) {
return false;
}
if (repositoryParamName == null) {
repositoryParamName = repositoryParam.getName();
}
if (newTypeParamName == null) {
newTypeParamName = oleTypeParamName;
}
// related paramter
// such as PROPERTY_TYPE, QUERYSTORE_TYPE, SCHEMA_TYPE
ElementParameterType typeParam = findParameter(oleTypeParamName, elemParamList);
if (typeParam != null) {
repositoryParam.setName(parentName + COLON + repositoryParamName);
repositoryParam.setField(EParameterFieldType.TECHNICAL.getName());
typeParam.setName(parentName + COLON + newTypeParamName);
typeParam.setField(EParameterFieldType.TECHNICAL.getName());
// update the value
downgradeParameterValue(repositoryParam, typeParam, parentName, type);
return true;
}
return false;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class ChangeRecalculateFormulaValueMigrationTask method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
//$NON-NLS-1$
String[] componentsName = new String[] { "tFileOutputExcel" };
try {
for (String element : componentsName) {
IComponentFilter filter = new NameComponentFilter(element);
ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(new IComponentConversion() {
@Override
public void transform(NodeType node) {
//$NON-NLS-1$
ElementParameterType ept = ComponentUtilities.getNodeProperty(node, "RECALCULATE_FORMULA");
if (ept == null) {
//$NON-NLS-1$//$NON-NLS-2$
ComponentUtilities.addNodeProperty(node, "RECALCULATE_FORMULA", "CHECK");
//$NON-NLS-1$//$NON-NLS-2$
ComponentUtilities.setNodeValue(node, "RECALCULATE_FORMULA", "true");
}
}
}));
}
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
Aggregations