Search in sources :

Example 71 with IComponentConversion

use of org.talend.core.model.components.conversions.IComponentConversion in project tdi-studio-se by Talend.

the class AddDistributionClosedListForHadoopComponentsMigrationTask method addDistributionClosedList.

private void addDistributionClosedList(Item item) throws Exception {
    ProcessType processType = getProcessType(item);
    java.util.List<IComponentFilter> filters = new java.util.ArrayList<IComponentFilter>();
    filters.add(new NameComponentFilter("tHDFSConnection"));
    filters.add(new NameComponentFilter("tHDFSInput"));
    filters.add(new NameComponentFilter("tHDFSOutput"));
    filters.add(new NameComponentFilter("tHDFSPut"));
    filters.add(new NameComponentFilter("tHDFSGet"));
    filters.add(new NameComponentFilter("tHDFSDelete"));
    filters.add(new NameComponentFilter("tPigLoad"));
    filters.add(new NameComponentFilter("tHiveConnection"));
    filters.add(new NameComponentFilter("tHiveInput"));
    filters.add(new NameComponentFilter("tHiveRow"));
    filters.add(new NameComponentFilter("tHBaseConnection"));
    filters.add(new NameComponentFilter("tHBaseInput"));
    filters.add(new NameComponentFilter("tHBaseOutput"));
    filters.add(new NameComponentFilter("tHCatalogInput"));
    filters.add(new NameComponentFilter("tHCatalogLoad"));
    filters.add(new NameComponentFilter("tHCatalogOutput"));
    filters.add(new NameComponentFilter("tHCatalogOperation"));
    IComponentConversion addOption = new AddDistribution();
    java.util.Iterator<IComponentFilter> iter = filters.iterator();
    while (iter.hasNext()) {
        IComponentFilter filter = (IComponentFilter) iter.next();
        ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(addOption));
    }
}
Also used : ProcessType(org.talend.designer.core.model.utils.emf.talendfile.ProcessType) IComponentFilter(org.talend.core.model.components.filters.IComponentFilter) NameComponentFilter(org.talend.core.model.components.filters.NameComponentFilter) IComponentConversion(org.talend.core.model.components.conversions.IComponentConversion)

Example 72 with IComponentConversion

use of org.talend.core.model.components.conversions.IComponentConversion in project tdi-studio-se by Talend.

the class RemoveUnuseQuoteOnTLoop method execute.

@Override
public ExecutionResult execute(Item item) {
    ProcessType processType = getProcessType(item);
    if (getProject().getLanguage() != ECodeLanguage.JAVA || processType == null) {
        return ExecutionResult.NOTHING_TO_DO;
    }
    //$NON-NLS-1$
    String[] componentsName = new String[] { "tLoop" };
    IComponentConversion removeQuote = new IComponentConversion() {

        private void removeQuote(ElementParameterType element) {
            if (element != null && element.getValue() != null) {
                String dValue = element.getValue();
                if (dValue.startsWith("\"") && dValue.endsWith("\"")) {
                    //$NON-NLS-1$ //$NON-NLS-2$
                    dValue = dValue.substring(1, dValue.length() - 1);
                    element.setValue(dValue);
                }
            }
        }

        @Override
        public void transform(NodeType node) {
            //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
            List<String> parameters = Arrays.asList(new String[] { "DECLARATION", "CONDITION", "ITERATION" });
            for (String parameter : parameters) {
                removeQuote(ComponentUtilities.getNodeProperty(node, parameter));
            }
        }
    };
    for (String name : componentsName) {
        IComponentFilter filter = new NameComponentFilter(name);
        try {
            ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(removeQuote));
        } catch (PersistenceException e) {
            ExceptionHandler.process(e);
            return ExecutionResult.FAILURE;
        }
    }
    return ExecutionResult.SUCCESS_NO_ALERT;
}
Also used : ElementParameterType(org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType) ProcessType(org.talend.designer.core.model.utils.emf.talendfile.ProcessType) NodeType(org.talend.designer.core.model.utils.emf.talendfile.NodeType) IComponentFilter(org.talend.core.model.components.filters.IComponentFilter) PersistenceException(org.talend.commons.exception.PersistenceException) NameComponentFilter(org.talend.core.model.components.filters.NameComponentFilter) IComponentConversion(org.talend.core.model.components.conversions.IComponentConversion)

Example 73 with IComponentConversion

use of org.talend.core.model.components.conversions.IComponentConversion 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;
    }
}
Also used : ProcessType(org.talend.designer.core.model.utils.emf.talendfile.ProcessType) ElementValueType(org.talend.designer.core.model.utils.emf.talendfile.ElementValueType) IComponentFilter(org.talend.core.model.components.filters.IComponentFilter) NodeType(org.talend.designer.core.model.utils.emf.talendfile.NodeType) ArrayList(java.util.ArrayList) RemovePropertyComponentConversion(org.talend.core.model.components.conversions.RemovePropertyComponentConversion) NameComponentFilter(org.talend.core.model.components.filters.NameComponentFilter) IComponentConversion(org.talend.core.model.components.conversions.IComponentConversion)

Example 74 with IComponentConversion

use of org.talend.core.model.components.conversions.IComponentConversion 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;
    }
}
Also used : ProcessType(org.talend.designer.core.model.utils.emf.talendfile.ProcessType) ElementValueType(org.talend.designer.core.model.utils.emf.talendfile.ElementValueType) IComponentFilter(org.talend.core.model.components.filters.IComponentFilter) NodeType(org.talend.designer.core.model.utils.emf.talendfile.NodeType) ArrayList(java.util.ArrayList) RemovePropertyComponentConversion(org.talend.core.model.components.conversions.RemovePropertyComponentConversion) NameComponentFilter(org.talend.core.model.components.filters.NameComponentFilter) IComponentConversion(org.talend.core.model.components.conversions.IComponentConversion)

Example 75 with IComponentConversion

use of org.talend.core.model.components.conversions.IComponentConversion 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;
    }
}
Also used : ProcessType(org.talend.designer.core.model.utils.emf.talendfile.ProcessType) ElementValueType(org.talend.designer.core.model.utils.emf.talendfile.ElementValueType) IComponentFilter(org.talend.core.model.components.filters.IComponentFilter) NodeType(org.talend.designer.core.model.utils.emf.talendfile.NodeType) ArrayList(java.util.ArrayList) NameComponentFilter(org.talend.core.model.components.filters.NameComponentFilter) IComponentConversion(org.talend.core.model.components.conversions.IComponentConversion)

Aggregations

IComponentConversion (org.talend.core.model.components.conversions.IComponentConversion)154 ProcessType (org.talend.designer.core.model.utils.emf.talendfile.ProcessType)154 IComponentFilter (org.talend.core.model.components.filters.IComponentFilter)150 NameComponentFilter (org.talend.core.model.components.filters.NameComponentFilter)142 NodeType (org.talend.designer.core.model.utils.emf.talendfile.NodeType)111 ElementParameterType (org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType)85 PersistenceException (org.talend.commons.exception.PersistenceException)77 ElementValueType (org.talend.designer.core.model.utils.emf.talendfile.ElementValueType)15 RenameComponentConversion (org.talend.core.model.components.conversions.RenameComponentConversion)12 ArrayList (java.util.ArrayList)11 RemovePropertyComponentConversion (org.talend.core.model.components.conversions.RemovePropertyComponentConversion)9 List (java.util.List)7 PropertyComponentFilter (org.talend.core.model.components.filters.PropertyComponentFilter)6 ConnectionType (org.talend.designer.core.model.utils.emf.talendfile.ConnectionType)5 HashMap (java.util.HashMap)3 EConnectionType (org.talend.core.model.process.EConnectionType)3 MetadataType (org.talend.designer.core.model.utils.emf.talendfile.MetadataType)3 ComponentProperties (org.talend.components.api.properties.ComponentProperties)2 AddPropertyCSVOptionConversion (org.talend.core.model.components.conversions.AddPropertyCSVOptionConversion)2 AddPropertyLoopTypeConversion (org.talend.core.model.components.conversions.AddPropertyLoopTypeConversion)2