use of org.talend.designer.core.model.utils.emf.talendfile.ProcessType in project tdi-studio-se by Talend.
the class UpdateLookupColumnMigrationTask method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractJobMigrationTask#executeOnProcess(org.talend.core.model.properties.ProcessItem)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
// TODO Auto-generated method stub
try {
// 1.tFuzzyMatch:
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tFuzzyMatch");
//$NON-NLS-1$
IComponentConversion lookupProperty = new UpdateLookupColumnConversion("LOOKUP_COLUMN");
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(lookupProperty));
// 2.tIntervalMatch
//$NON-NLS-1$
IComponentFilter filter2 = new NameComponentFilter("tIntervalMatch");
ModifyComponentsAction.searchAndModify(item, processType, filter2, Arrays.<IComponentConversion>asList(lookupProperty));
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.designer.core.model.utils.emf.talendfile.ProcessType in project tdi-studio-se by Talend.
the class UpdateTheJobsActionsOnTable method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractJobMigrationTask#executeOnProcess(org.talend.core.model.properties.ProcessItem)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType process = getProcessType(item);
if (process == null) {
return ExecutionResult.NOTHING_TO_DO;
}
List<NodeType> nodeList = process.getNode();
for (NodeType node : nodeList) {
if (node.getComponentName().indexOf(UpdateTheJobsActionsOnTable.T_ORACLE_OUTPUT) != -1) {
for (ElementParameterType elementParameterType : (List<ElementParameterType>) node.getElementParameter()) {
if (UpdateTheJobsActionsOnTable.CLEAR_TABLE.equals(elementParameterType.getName())) {
if ("true".equals(elementParameterType.getValue())) {
//$NON-NLS-1$
UpdateTheJobsActionsOnTable.isClear = true;
return ExecutionResult.SUCCESS_NO_ALERT;
}
}
}
}
}
return ExecutionResult.NOTHING_TO_DO;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ProcessType in project tdi-studio-se by Talend.
the class UpgradeAttributestAdvancedXMLMigrationTask method execute.
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() != ECodeLanguage.JAVA || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
try {
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tAdvancedFileOutputXML");
IComponentConversion removeQuotes1 = new UpdateAttributesFortAdvancedXMLConversion();
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(removeQuotes1));
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.designer.core.model.utils.emf.talendfile.ProcessType in project tdi-studio-se by Talend.
the class UpdateDbtypeOfCreateTableTask method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractJobMigrationTask#executeOnProcess(org.talend.core.model.properties.ProcessItem)
*/
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage().equals(ECodeLanguage.JAVA) && processType != null) {
final Map<String, String> dbtypes = new HashMap<String, String>();
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Access", "ACCESS");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("AS400", "AS400");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("DB2", "DB2");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("FireBird", "FIREBIRD");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Hsql", "HSQLDB");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Informix", "INFORMIX");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Ingres", "INGRES");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Interbase", "INTERBASE");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("JavaDb", "JAVADB");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("MSSQLServer", "MSSQL");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Oracle", "DBORACLE");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Postgre", "POSTGRE");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("SQLite", "SQLITE");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("Sybase", "SYBASE");
//$NON-NLS-1$ //$NON-NLS-2$
dbtypes.put("ODBC", "ODBC");
//$NON-NLS-1$
final String name = "tCreateTable";
//$NON-NLS-1$
final String property = "DBTYPE";
IComponentFilter filert = new IComponentFilter() {
public boolean accept(NodeType node) {
boolean toReturn = (name == null ? true : acceptS(node));
if (toReturn) {
String pValue = ComponentUtilities.getNodePropertyValue(node, property);
toReturn = !dbtypes.values().contains(pValue);
}
return toReturn;
}
public boolean acceptS(NodeType node) {
return node.getComponentName().equals(name);
}
};
IComponentConversion conversion = new IComponentConversion() {
public void transform(NodeType node) {
String pValue = ComponentUtilities.getNodePropertyValue(node, property);
String value = dbtypes.get(pValue);
if (value != null) {
ComponentUtilities.setNodeValue(node, property, value);
} else {
//$NON-NLS-1$
ComponentUtilities.setNodeValue(node, property, "MYSQL");
}
}
};
List<IComponentConversion> cons = new ArrayList<IComponentConversion>();
cons.add(conversion);
try {
ModifyComponentsAction.searchAndModify(item, processType, filert, cons);
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
} else {
// do nothing
return ExecutionResult.NOTHING_TO_DO;
}
}
use of org.talend.designer.core.model.utils.emf.talendfile.ProcessType in project tdi-studio-se by Talend.
the class UpdateJobSettingsForMysqlMigrationTask method execute.
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (processType.getParameters() != null) {
@SuppressWarnings("rawtypes") EList elementParameter = processType.getParameters().getElementParameter();
boolean modified = false;
for (int i = 0; i < elementParameter.size(); i++) {
final Object object = elementParameter.get(i);
if (object instanceof ElementParameterTypeImpl) {
ElementParameterTypeImpl parameterType = (ElementParameterTypeImpl) object;
String name = parameterType.getName();
if ("DB_VERSION_IMPLICIT_CONTEXT".equals(name)) {
//$NON-NLS-1$
modified = updateJarValue(parameterType) || modified;
}
if ("DB_VERSION".equals(name)) {
//$NON-NLS-1$
modified = updateJarValue(parameterType) || modified;
}
}
}
if (modified) {
try {
FACTORY.save(item, true);
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
}
return ExecutionResult.NOTHING_TO_DO;
}
Aggregations