use of org.talend.repository.model.IProxyRepositoryFactory in project tesb-studio-se by Talend.
the class AssignJobAction method assign.
public boolean assign(IRepositoryNode jobNode) {
if (jobNode == null) {
return false;
}
IRepositoryViewObject repositoryObject = jobNode.getObject();
final Item item = repositoryObject.getProperty().getItem();
// judge the job whether had T_ESB_PROVIDER_REQUEST
ProcessItem processItem = (ProcessItem) item;
NodeType providerNode = null;
for (Object obj : processItem.getProcess().getNode()) {
NodeType node = (NodeType) obj;
if (CreateNewJobAction.T_ESB_PROVIDER_REQUEST.equals(node.getComponentName())) {
providerNode = node;
break;
}
}
if (null == providerNode) {
MessageDialog.openWarning(Display.getCurrent().getActiveShell(), Messages.AssignJobAction_WarningTitle, Messages.AssignJobAction_WarningMessage);
return false;
}
try {
String jobID = item.getProperty().getId();
String jobName = item.getProperty().getLabel();
String operationName = repositoryNode.getObject().getLabel();
String portName = repositoryNode.getParent().getObject().getLabel();
ServiceItem serviceItem = (ServiceItem) repositoryNode.getParent().getParent().getObject().getProperty().getItem();
List<ServicePort> listPort = ((ServiceConnection) serviceItem.getConnection()).getServicePort();
for (ServicePort port : listPort) {
if (port.getName().equals(portName)) {
List<ServiceOperation> listOperation = port.getServiceOperation();
for (ServiceOperation operation : listOperation) {
if (operation.getLabel().equals(operationName)) {
// should not change the job name
// String jobNewName = port.getName() + "_" + operation.getName();
// if (resetJobname(item, jobNewName)) {
// jobName = jobNewName;
// }
operation.setReferenceJobId(jobID);
operation.setLabel(operation.getName() + "-" + jobName);
break;
}
}
break;
}
}
IFile wsdlPath = WSDLUtils.getWsdlFile(serviceItem);
Map<String, String> serviceParameters = WSDLUtils.getServiceOperationParameters(wsdlPath, ((OperationRepositoryObject) repositoryNode.getObject()).getName(), portName);
for (Object paramObj : providerNode.getElementParameter()) {
ElementParameterType param = (ElementParameterType) paramObj;
String name = param.getName();
if (serviceParameters.containsKey(name)) {
param.setValue(serviceParameters.get(name));
}
}
IProcess2 process = null;
IEditorReference[] reference = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getEditorReferences();
List<IProcess2> processes = RepositoryPlugin.getDefault().getDesignerCoreService().getOpenedProcess(reference);
for (IProcess2 processOpen : processes) {
if (processOpen.getProperty().getItem() == processItem) {
process = processOpen;
break;
}
}
if (process == null) {
IDesignerCoreService service = CorePlugin.getDefault().getDesignerCoreService();
IProcess proc = service.getProcessFromProcessItem(processItem);
if (proc instanceof IProcess2) {
process = (IProcess2) proc;
}
}
if (process != null) {
List<? extends INode> nodelist = process.getGraphicalNodes();
for (INode node : nodelist) {
if (node.getComponent().getName().equals("tESBProviderRequest")) {
repositoryChange(repositoryNode, node);
}
}
processItem.setProcess(process.saveXmlFile());
}
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
factory.save(processItem);
factory.save(serviceItem);
return true;
} catch (Exception e) {
ExceptionHandler.process(e);
}
return false;
}
use of org.talend.repository.model.IProxyRepositoryFactory 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);
}
}
use of org.talend.repository.model.IProxyRepositoryFactory in project tesb-studio-se by Talend.
the class ESBService method refreshOperationLabel.
@Override
public void refreshOperationLabel(String jobID) {
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
try {
List<IRepositoryViewObject> repList = factory.getAll(getServicesType());
for (IRepositoryViewObject obj : repList) {
ServiceItem item = (ServiceItem) obj.getProperty().getItem();
ServiceConnection conn = (ServiceConnection) item.getConnection();
for (ServicePort port : conn.getServicePort()) {
for (ServiceOperation operation : port.getServiceOperation()) {
if (operation.getReferenceJobId() != null && operation.getReferenceJobId().endsWith(jobID)) {
operation.setLabel(operation.getName());
operation.setReferenceJobId(null);
factory.save(item);
return;
}
}
}
}
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
}
use of org.talend.repository.model.IProxyRepositoryFactory in project tesb-studio-se by Talend.
the class ESBService method editJobName.
@Override
public void editJobName(String originaleObjectLabel, String newLabel) {
IProxyRepositoryFactory proxyRepositoryFactory = CoreRuntimePlugin.getInstance().getProxyRepositoryFactory();
Project project = ProjectManager.getInstance().getCurrentProject();
List<IRepositoryViewObject> service = null;
try {
service = proxyRepositoryFactory.getAll(project, ESBRepositoryNodeType.SERVICES, true);
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
if (service != null && service.size() > 0) {
for (IRepositoryViewObject Object : service) {
boolean flag = false;
ServiceItem item = (ServiceItem) Object.getProperty().getItem();
ServiceConnection serviceConnection = (ServiceConnection) item.getConnection();
List<ServicePort> servicePorts = serviceConnection.getServicePort();
for (ServicePort port : servicePorts) {
List<ServiceOperation> serviceOperations = port.getServiceOperation();
for (ServiceOperation operation : serviceOperations) {
String originaleItemLabel = operation.getLabel();
if (originaleItemLabel.contains("-")) {
String[] array = originaleItemLabel.split("-");
if (originaleObjectLabel.equals(array[1])) {
operation.setLabel(array[0] + "-" + newLabel);
flag = true;
}
}
}
}
if (flag) {
try {
proxyRepositoryFactory.save(item);
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
}
}
}
// RepositoryManager.refresh(ESBRepositoryNodeType.SERVICES);
}
use of org.talend.repository.model.IProxyRepositoryFactory in project tesb-studio-se by Talend.
the class ESBService method deleteOldRelation.
@Override
public void deleteOldRelation(String jobID) {
boolean portBreak = false;
boolean serviceBreak = false;
IProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
try {
for (IRepositoryViewObject viewObject : factory.getAll(ERepositoryObjectType.SERVICESOPERATION)) {
ServiceItem serviceItem = (ServiceItem) viewObject.getProperty().getItem();
ServiceConnection serviceConnection = (ServiceConnection) serviceItem.getConnection();
List<ServicePort> ports = serviceConnection.getServicePort();
for (ServicePort port : ports) {
List<ServiceOperation> operations = port.getServiceOperation();
for (ServiceOperation operation : operations) {
String referenceJobId = operation.getReferenceJobId();
if (jobID.equals(referenceJobId)) {
operation.setLabel(operation.getName());
operation.setReferenceJobId(null);
portBreak = true;
break;
}
}
if (portBreak) {
serviceBreak = true;
break;
}
}
if (serviceBreak) {
factory.save(serviceItem, null);
break;
}
}
} catch (PersistenceException e) {
ExceptionHandler.process(e);
}
}
Aggregations