use of org.apache.airavata.registry.core.workflow.catalog.model.Port_PK in project airavata by apache.
the class PortResource method isExists.
public boolean isExists(Object identifier) throws WorkflowCatalogException {
HashMap<String, String> ids;
if (identifier instanceof Map) {
ids = (HashMap<String, String>) identifier;
} else {
logger.error("Identifier should be a map with the field name and it's value");
throw new WorkflowCatalogException("Identifier should be a map with the field name and it's value");
}
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
Port port = em.find(Port.class, new Port_PK(ids.get(PortConstants.TEMPLATE_ID), ids.get(PortConstants.PORT_ID)));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
return port != null;
} catch (ApplicationSettingsException e) {
logger.error(e.getMessage(), e);
throw new WorkflowCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
use of org.apache.airavata.registry.core.workflow.catalog.model.Port_PK in project airavata by apache.
the class PortResource method save.
public void save() throws WorkflowCatalogException {
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
Port existingPort = em.find(Port.class, new Port_PK(templateId, portId));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
em = WorkflowCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existingPort != null) {
existingPort.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
existingPort.setWorkflow(workflow);
existingPort.setComponentStatusId(statusId);
existingPort.setDescription(description);
existingPort.setName(name);
existingPort.setCreatedTime(createdTime);
em.merge(existingPort);
} else {
Port edge = new Port();
edge.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
edge.setWorkflow(workflow);
edge.setComponentStatusId(statusId);
edge.setDescription(description);
edge.setName(name);
edge.setCreatedTime(AiravataUtils.getCurrentTimestamp());
em.persist(edge);
}
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new WorkflowCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
Aggregations