use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class JobletUtil method isJobletInput.
public boolean isJobletInput(Node connNode, IProcess2 process) {
if (process.getProperty().getItem() instanceof JobletProcessItem) {
JobletProcess jobletProcess = ((JobletProcessItem) process.getProperty().getItem()).getJobletProcess();
List<JobletNode> jobletNodes = jobletProcess.getJobletNodes();
for (JobletNode jnode : jobletNodes) {
List list = jnode.getElementParameter();
for (Object obj : list) {
if (obj instanceof ElementParameterType) {
if (((ElementParameterType) obj).getValue().equals(connNode.getJoblet_unique_name())) {
return jnode.isInput();
}
}
}
}
}
return false;
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class UpgradeParameterHelper method upgradeRelatedParameters.
/**
*
* ggu Comment method "upgradeRelatedParameters".
*
* "type =null" is only for property type parameter.
*/
private static boolean upgradeRelatedParameters(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
updateParameterValue(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 AddPortForTCassandraConfigurationSpark method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
final ProcessType processType = getProcessType(item);
//$NON-NLS-1$
String[] compNames = { "tCassandraConfiguration" };
IComponentConversion conversion = new IComponentConversion() {
@Override
public void transform(NodeType node) {
if (node == null) {
return;
}
//$NON-NLS-1$
ElementParameterType parameter = ComponentUtilities.getNodeProperty(node, "PORT");
List<Object> needRemovedList = new ArrayList<Object>();
if (parameter == null) {
// get the value of native port if the user defined it on the configuration table
String portValue = null;
//$NON-NLS-1$
ElementParameterType configTable = ComponentUtilities.getNodeProperty(node, "CASSANDRA_CONFIGURATION");
boolean findNative = false;
boolean findRpc = false;
for (Object e : configTable.getElementValue()) {
ElementValueTypeImpl el = (ElementValueTypeImpl) e;
if (findNative && "VALUE".equals(el.getElementRef())) {
//$NON-NLS-1$
portValue = el.getValue();
needRemovedList.add(e);
findNative = false;
}
if (findRpc && "VALUE".equals(el.getElementRef())) {
//$NON-NLS-1$
needRemovedList.add(e);
findRpc = false;
}
if ("KEY".equals(el.getElementRef())) {
//$NON-NLS-1$
if ("connection_native_port".equals(el.getValue())) {
//$NON-NLS-1$
findNative = true;
needRemovedList.add(e);
}
if ("connection_rpc_port".equals(el.getValue())) {
//$NON-NLS-1$
findRpc = true;
needRemovedList.add(e);
}
}
}
configTable.getElementValue().removeAll(needRemovedList);
//$NON-NLS-1$ //$NON-NLS-2$
ComponentUtilities.addNodeProperty(node, "PORT", "TEXT");
//$NON-NLS-1$ //$NON-NLS-2$
ComponentUtilities.setNodeValue(node, "PORT", portValue == null ? "\"9042\"" : portValue);
}
}
};
for (String name : compNames) {
IComponentFilter filter = new NameComponentFilter(name);
try {
ModifyComponentsAction.searchAndModify(item, processType, filter, Arrays.<IComponentConversion>asList(conversion));
} catch (PersistenceException e) {
// TODO Auto-generated catch block
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 AddQuotesToModuleListMigrationTask method addQuote.
/**
* Add quote marks to the separators.
*
* yzhang Comment method "addQuote".
*
* @throws PersistenceException
*/
private void addQuote(Item item) throws PersistenceException {
ProcessType processType = getProcessType(item);
if (processType == null) {
return;
}
ProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
boolean modified = false;
EList node = processType.getNode();
for (Object object2 : node) {
NodeType type = (NodeType) object2;
EList elementParameterList = type.getElementParameter();
for (Object object3 : elementParameterList) {
ElementParameterType elemType = (ElementParameterType) object3;
if (elemType.getField().equals("MODULE_LIST")) {
//$NON-NLS-1$
String value = elemType.getValue();
if (!isWithinQuote(value)) {
elemType.setValue(TalendTextUtils.addQuotes(value));
modified = true;
break;
}
}
}
}
if (modified) {
factory.save(item);
}
}
use of org.talend.designer.core.model.utils.emf.talendfile.ElementParameterType in project tdi-studio-se by Talend.
the class AddScreenshotFileMigrationTask method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
byte[] screenshotStream = null;
EList nodeList = null;
try {
if (item instanceof ProcessItem) {
ProcessItem process = (ProcessItem) item;
screenshotStream = process.getProcess().getScreenshot();
process.getProcess().getScreenshots().put("process", screenshotStream);
nodeList = process.getProcess().getNode();
for (int i = 0; i < nodeList.size(); i++) {
String nodeName;
NodeType node = (NodeType) nodeList.get(i);
if (node.getScreenshot() != null && node.getScreenshot().length > 0) {
EList params = node.getElementParameter();
for (int j = 0; j < params.size(); j++) {
ElementParameterType type = (ElementParameterType) params.get(j);
if ("UNIQUE_NAME".equals(type.getName())) {
nodeName = type.getValue();
process.getProcess().getScreenshots().put(nodeName, node.getScreenshot());
break;
}
}
node.setScreenshot(null);
}
}
process.getProcess().setScreenshot(null);
} else if (item instanceof JobletProcessItem) {
JobletProcessItem joblet = (JobletProcessItem) item;
screenshotStream = ((JobletProcessItem) item).getJobletProcess().getScreenshot();
joblet.getJobletProcess().getScreenshots().put("process", screenshotStream);
nodeList = joblet.getJobletProcess().getNode();
for (int i = 0; i < nodeList.size(); i++) {
String nodeName;
NodeType node = (NodeType) nodeList.get(i);
if (node.getScreenshot() != null && node.getScreenshot().length > 0) {
EList params = node.getElementParameter();
for (int j = 0; j < params.size(); j++) {
ElementParameterType type = (ElementParameterType) params.get(j);
if ("UNIQUE_NAME".equals(type.getName())) {
nodeName = type.getValue();
joblet.getJobletProcess().getScreenshots().put(nodeName, node.getScreenshot());
break;
}
}
node.setScreenshot(null);
}
}
joblet.getJobletProcess().setScreenshot(null);
}
ProxyRepositoryFactory.getInstance().save(item, true);
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
return ExecutionResult.SUCCESS_NO_ALERT;
}
Aggregations