use of org.talend.core.model.components.filters.NameComponentFilter in project tdi-studio-se by Talend.
the class MoveExcelSheetnameToSheetlist 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("tFileInputExcel");
IComponentConversion addNewProperty = new IComponentConversion() {
public void transform(NodeType node) {
//$NON-NLS-1$ //$NON-NLS-2$
ComponentUtilities.addNodeProperty(node, "SHEETLIST", "TABLE");
List<ElementValueType> values = new ArrayList<ElementValueType>();
ElementValueType eValue = TalendFileFactory.eINSTANCE.createElementValueType();
//$NON-NLS-1$
eValue.setElementRef("SHEETNAME");
//$NON-NLS-1$
eValue.setValue(ComponentUtilities.getNodePropertyValue(node, "SHEETNAME"));
values.add(eValue);
//$NON-NLS-1$
ComponentUtilities.setNodeProperty(node, "SHEETLIST", values);
}
};
//$NON-NLS-1$
IComponentConversion removeOldProperty = new RemovePropertyComponentConversion("SHEETNAME");
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(addNewProperty, removeOldProperty));
return ExecutionResult.SUCCESS_WITH_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.core.model.components.filters.NameComponentFilter in project tdi-studio-se by Talend.
the class MoveExcelSheetnameToSheetlistForJava method execute.
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() == ECodeLanguage.PERL || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
try {
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tFileInputExcel");
IComponentConversion addNewProperty = new IComponentConversion() {
public void transform(NodeType node) {
//$NON-NLS-1$ //$NON-NLS-2$
ComponentUtilities.addNodeProperty(node, "SHEETLIST", "TABLE");
List<ElementValueType> values = new ArrayList<ElementValueType>();
ElementValueType eValue = TalendFileFactory.eINSTANCE.createElementValueType();
//$NON-NLS-1$
eValue.setElementRef("SHEETNAME");
//$NON-NLS-1$
eValue.setValue(ComponentUtilities.getNodePropertyValue(node, "SHEETNAME"));
values.add(eValue);
//$NON-NLS-1$
ComponentUtilities.setNodeProperty(node, "SHEETLIST", values);
}
};
//$NON-NLS-1$
IComponentConversion removeOldProperty = new RemovePropertyComponentConversion("SHEETNAME");
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(addNewProperty, removeOldProperty));
return ExecutionResult.SUCCESS_WITH_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.core.model.components.filters.NameComponentFilter in project tdi-studio-se by Talend.
the class MoveFileListFilemaskToFilemaskListForJava method execute.
@Override
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() == ECodeLanguage.PERL || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
try {
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tFileList");
IComponentConversion addNewProperty = new IComponentConversion() {
public void transform(NodeType node) {
//$NON-NLS-1$ //$NON-NLS-2$
ComponentUtilities.addNodeProperty(node, "FILES", "TABLE");
List<ElementValueType> values = new ArrayList<ElementValueType>();
ElementValueType eValue = TalendFileFactory.eINSTANCE.createElementValueType();
//$NON-NLS-1$
eValue.setElementRef("FILEMASK");
//$NON-NLS-1$
eValue.setValue(ComponentUtilities.getNodePropertyValue(node, "FILEMASK"));
values.add(eValue);
//$NON-NLS-1$
ComponentUtilities.setNodeProperty(node, "FILES", values);
}
};
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(addNewProperty));
return ExecutionResult.SUCCESS_WITH_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.core.model.components.filters.NameComponentFilter in project tdi-studio-se by Talend.
the class RenametFor method execute.
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
try {
if (getProject().getLanguage().equals(ECodeLanguage.JAVA) && processType != null) {
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tFor");
IComponentConversion addProperty = new AddPropertyLoopTypeConversion();
//$NON-NLS-1$
IComponentConversion renameComponent = new RenameComponentConversion("tLoop");
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(addProperty, renameComponent));
return ExecutionResult.SUCCESS_WITH_ALERT;
} else {
// do nothing
return ExecutionResult.NOTHING_TO_DO;
}
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
use of org.talend.core.model.components.filters.NameComponentFilter in project tdi-studio-se by Talend.
the class Salesforce620Migration 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;
}
String[] componentsName = new String[] { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
"tSalesforceConnection", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
"tSalesforceBulkExec", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
"tSalesforceGetDeleted", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
"tSalesforceGetUpdated", "tSalesforceInput", "tSalesforceOutput", "tSalesforceOutputBulk", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
"tSalesforceOutputBulkExec" };
IComponentConversion changeJDBCDriverJarType = new IComponentConversion() {
@Override
public void transform(NodeType node) {
ElementParameterType elemParamType = ComponentUtilities.getNodeProperty(node, "PROPERTIES");
String propertiesString = elemParamType.getValue();
SerializerDeserializer.Deserialized<ComponentProperties> fromSerialized = Properties.Helper.fromSerializedPersistent(propertiesString, ComponentProperties.class, new PostDeserializeSetup() {
@Override
public void setup(Object properties) {
((Properties) properties).setValueEvaluator(new PropertyValueEvaluator() {
@Override
public Object evaluate(Property property, Object storedValue) {
if (storedValue instanceof String) {
if (GenericTypeUtils.isEnumType(property)) {
ComponentProperties newProperties = ComponentsUtils.getComponentProperties(node.getComponentName());
Property newProperty = (Property) newProperties.getProperty(property.getName());
if (newProperty == null) {
newProperty = (Property) newProperties.getProperty("connection.loginType");
}
if (newProperty != null) {
List<?> propertyPossibleValues = ((Property<?>) newProperty).getPossibleValues();
if (propertyPossibleValues != null) {
for (Object possibleValue : propertyPossibleValues) {
if (possibleValue.toString().equals(storedValue)) {
property.setStoredValue(possibleValue);
return possibleValue;
}
}
}
}
}
}
return storedValue;
}
});
}
});
ComponentProperties newProperties = ComponentsUtils.getComponentProperties(node.getComponentName());
updateSubProperties(fromSerialized.object, newProperties);
newProperties.copyValuesFrom(fromSerialized.object, true, false);
NamedThing nt = newProperties.getProperty("module.moduleName");
if (nt != null && nt instanceof Property) {
Property moduleNameProperty = (Property) nt;
String moduleName = (String) moduleNameProperty.getValue();
if (ContextParameterUtils.isContainContextParam(moduleName)) {
moduleName = TalendQuoteUtils.removeQuotes(moduleName);
} else {
moduleName = TalendQuoteUtils.addPairQuotesIfNotExist(moduleName);
}
moduleNameProperty.setStoredValue(moduleName);
}
nt = newProperties.getProperty("upsertRelationTable.columnName");
if (nt != null && nt instanceof Property) {
Property moduleNameProperty = (Property) nt;
if (moduleNameProperty.getPossibleValues() == null || moduleNameProperty.getPossibleValues().isEmpty()) {
List<String> columns = new ArrayList<String>();
if (moduleNameProperty.getValue() instanceof String) {
String column = (String) moduleNameProperty.getValue();
columns.add(column);
} else if (moduleNameProperty.getValue() instanceof List) {
columns.addAll((Collection<? extends String>) moduleNameProperty.getValue());
}
moduleNameProperty.setPossibleValues(columns);
}
}
elemParamType.setValue(newProperties.toSerialized());
}
};
boolean modified = false;
for (Object obj : processType.getNode()) {
if (obj != null && obj instanceof NodeType) {
String componentName = ((NodeType) obj).getComponentName();
if (ArrayUtils.contains(componentsName, componentName)) {
IComponentFilter filter = new NameComponentFilter(componentName);
modified = ModifyComponentsAction.searchAndModify((NodeType) obj, filter, Arrays.<IComponentConversion>asList(changeJDBCDriverJarType)) || modified;
}
}
}
if (modified) {
try {
ProxyRepositoryFactory.getInstance().save(item, true);
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
return ExecutionResult.SUCCESS_WITH_ALERT;
}
Aggregations