use of org.apache.airavata.registry.core.workflow.catalog.model.Node_PK in project airavata by apache.
the class NodeResource 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();
Node port = em.find(Node.class, new Node_PK(ids.get(NodeConstants.TEMPLATE_ID), ids.get(NodeConstants.NODE_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.Node_PK in project airavata by apache.
the class NodeResource method save.
public void save() throws WorkflowCatalogException {
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
Node existingNode = em.find(Node.class, new Node_PK(templateId, nodeId));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
em = WorkflowCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existingNode != null) {
existingNode.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
existingNode.setWorkflow(workflow);
existingNode.setComponentStatusId(statusId);
existingNode.setDescription(description);
existingNode.setName(name);
existingNode.setCreatedTime(createdTime);
existingNode.setApplicationName(applicationName);
existingNode.setApplicationId(applicationId);
em.merge(existingNode);
} else {
Node node = new Node();
node.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
node.setWorkflow(workflow);
node.setComponentStatusId(statusId);
node.setDescription(description);
node.setName(name);
node.setCreatedTime(AiravataUtils.getCurrentTimestamp());
node.setApplicationName(applicationName);
node.setApplicationId(applicationId);
em.persist(node);
}
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