use of org.talend.commons.exception.PersistenceException in project tesb-studio-se by Talend.
the class ESBService method updateOperation.
@Override
public void updateOperation(INode node, String linkedRepository, RepositoryNode selectNode) {
String[] ids = linkedRepository.split(" - ");
if (ids.length == 3) {
try {
IRepositoryViewObject reViewObject = ProxyRepositoryFactory.getInstance().getLastVersion(ids[0]);
ServiceItem servicesItem = (ServiceItem) reViewObject.getProperty().getItem();
ServiceConnection serConn = (ServiceConnection) servicesItem.getConnection();
String portName = "";
EList<ServicePort> portList = serConn.getServicePort();
ServiceOperation operation = null;
for (ServicePort port : portList) {
if (port.getId().equals(ids[1])) {
portName = port.getName();
EList<ServiceOperation> opeList = port.getServiceOperation();
for (ServiceOperation ope : opeList) {
if (ope.getId().equals(ids[2])) {
operation = ope;
break;
}
}
break;
}
}
if (operation == null) {
return;
}
RepositoryNode topParent = getServicesTopNode(selectNode);
changeOldOperationLabel(topParent, node, operation);
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
IProcess2 process = (IProcess2) RepositoryPlugin.getDefault().getDesignerCoreService().getCurrentProcess();
Item jobItem = process.getProperty().getItem();
String jobID = jobItem.getProperty().getId();
String jobName = jobItem.getProperty().getLabel();
if (operation.getReferenceJobId() != null && !operation.getReferenceJobId().equals(jobID)) {
changeOtherJobSchemaValue(factory, operation, /* serConn, */
selectNode);
MessageDialog.openWarning(new Shell(), Messages.ESBService_DisconnectWarningTitle, Messages.ESBService_DisconnectWarningMsg);
}
operation.setReferenceJobId(jobID);
operation.setLabel(operation.getName() + '-' + jobName);
IFile wsdlPath = WSDLUtils.getWsdlFile(selectNode);
Map<String, String> serviceParameters = WSDLUtils.getServiceOperationParameters(wsdlPath, operation.getName(), portName);
CreateNewJobAction.setProviderRequestComponentConfiguration(node, serviceParameters);
factory.save(servicesItem);
} catch (PersistenceException e) {
ExceptionHandler.process(e);
} catch (CoreException e) {
ExceptionHandler.process(e);
}
}
}
use of org.talend.commons.exception.PersistenceException in project tesb-studio-se by Talend.
the class ESBService method changeOldOperationLabel.
// public AbstractMetadataObject getServicesOperation(Connection connection, String operationName) {
// List<ServiceOperation> list = new ArrayList<ServiceOperation>();
// if (connection instanceof ServiceConnection) {
// ServiceConnection serConnection = (ServiceConnection) connection;
// EList<ServicePort> serPort = serConnection.getServicePort();
// for (ServicePort port : serPort) {
// list.addAll(port.getServiceOperation());
// }
// }
// for (ServiceOperation ope : list) {
// if (ope.getLabel().equals(operationName)) {
// return ope;
// }
// }
// return null;
// }
// public void changeOperationLabel(RepositoryNode newNode, INode node, Connection connection) {
// if (!(connection instanceof ServiceConnection)) {
// return;
// }
// ServiceConnection serConn = (ServiceConnection) connection;
// changeOldOperationLabel(serConn, node);
// changenewOperationLabel(newNode, node, serConn);
// }
private void changeOldOperationLabel(RepositoryNode topParent, INode node, ServiceOperation newOperation) {
// here should be all the ports, not just ports of one connection
List<IRepositoryNode> nodeList = topParent.getChildren();
IElementParameter elePara = node.getElementParameter("PROPERTY:" + EParameterName.REPOSITORY_PROPERTY_TYPE.getName());
if (elePara == null) {
return;
}
ServiceConnection serConn = null;
ServiceItem servicesItem = null;
String paraValue = (String) elePara.getValue();
if (paraValue == null || "".equals(paraValue)) {
return;
}
String connID = null;
if (paraValue.contains(" - ")) {
connID = paraValue.split(" - ")[0];
} else {
connID = paraValue;
}
for (IRepositoryNode repNode : nodeList) {
String id = repNode.getObject().getProperty().getId();
if (id.equals(connID)) {
servicesItem = (ServiceItem) repNode.getObject().getProperty().getItem();
serConn = (ServiceConnection) servicesItem.getConnection();
break;
}
}
if (serConn == null) {
return;
}
EList<ServicePort> portList = serConn.getServicePort();
IElementParameter portPara = node.getElementParameter(WSDLUtils.PORT_NAME);
IElementParameter opePara = node.getElementParameter(WSDLUtils.OPERATION_NAME);
if (portPara != null && opePara != null) {
String portValue = (String) portPara.getValue();
String opeValue = (String) opePara.getValue();
if (portValue != null && !"".equals(portValue) && opeValue != null && !"".equals(opeValue)) {
out: for (ServicePort port : portList) {
if (port.getName().equals(portValue)) {
for (ServiceOperation ope : port.getServiceOperation()) {
if (ope.getName().equals(opeValue) && newOperation != null && !ope.getId().equals(newOperation.getId())) {
ope.setLabel(opeValue);
ope.setReferenceJobId(null);
if (servicesItem != null) {
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
try {
factory.save(servicesItem);
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
}
break out;
}
}
}
}
}
}
}
use of org.talend.commons.exception.PersistenceException in project tesb-studio-se by Talend.
the class ESBService method copyJobForService.
private Item copyJobForService(final Item item, final IPath path, final String newName) {
try {
final Item newItem = ProxyRepositoryFactory.getInstance().copy(item, path, newName);
if (newItem instanceof ConnectionItem) {
Connection connection = ((ConnectionItem) newItem).getConnection();
if (connection != null) {
connection.setLabel(newName);
connection.setName(newName);
connection.getSupplierDependency().clear();
}
}
ProxyRepositoryFactory.getInstance().save(newItem);
return newItem;
} catch (PersistenceException e) {
ExceptionHandler.process(e);
} catch (BusinessException e) {
ExceptionHandler.process(e);
}
return null;
}
use of org.talend.commons.exception.PersistenceException in project tesb-studio-se by Talend.
the class ESBService method getAllTheJObNames.
@Override
public StringBuffer getAllTheJObNames(IRepositoryNode jobObject) {
StringBuffer jobNames = null;
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
List<IRepositoryNode> jobList = new ArrayList<IRepositoryNode>();
if (jobObject.getObjectType() == ERepositoryObjectType.PROCESS) {
jobList.add(jobObject);
} else if (jobObject.getObjectType() == ERepositoryObjectType.FOLDER) {
jobList = getJobObject(jobObject);
}
try {
List<IRepositoryViewObject> repList = factory.getAll(getServicesType());
for (IRepositoryNode node : jobList) {
ERepositoryObjectType repositoryObjectType = node.getObjectType();
if (repositoryObjectType != ERepositoryObjectType.PROCESS) {
continue;
}
String jobID = node.getObject().getProperty().getId();
for (IRepositoryViewObject obj : repList) {
ServiceItem item = (ServiceItem) obj.getProperty().getItem();
ServiceConnection conn = (ServiceConnection) item.getConnection();
middle: for (ServicePort port : conn.getServicePort()) {
for (ServiceOperation operation : port.getServiceOperation()) {
if (operation.getReferenceJobId() != null && operation.getReferenceJobId().endsWith(jobID)) {
if (jobNames == null) {
jobNames = new StringBuffer(node.getObject().getProperty().getLabel());
} else {
jobNames.append(",");
jobNames.append(node.getObject().getProperty().getLabel());
}
break middle;
}
}
}
}
}
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
return jobNames;
}
use of org.talend.commons.exception.PersistenceException in project tesb-studio-se by Talend.
the class AssignJobAction method init.
@Override
protected void init(RepositoryNode node) {
ERepositoryObjectType nodeType = (ERepositoryObjectType) node.getProperties(EProperties.CONTENT_TYPE);
if (!currentNodeType.equals(nodeType)) {
return;
}
IProxyRepositoryFactory proxyFactory = DesignerPlugin.getDefault().getProxyRepositoryFactory();
try {
proxyFactory.updateLockStatus();
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
IRepositoryViewObject repositoryViewObject = node.getObject();
ERepositoryStatus status = proxyFactory.getStatus(repositoryViewObject);
if (!status.isEditable() && !status.isPotentiallyEditable()) {
setEnabled(false);
} else {
//not enabled if the operation doesn't define in binding
if (!WSDLUtils.isOperationInBinding(node)) {
setEnabled(false);
return;
}
setEnabled(true);
}
}
Aggregations