Search in sources :

Example 1 with Node

use of org.apache.airavata.registry.core.workflow.catalog.model.Node 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();
        }
    }
}
Also used : ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) EntityManager(javax.persistence.EntityManager) Node(org.apache.airavata.registry.core.workflow.catalog.model.Node) Node_PK(org.apache.airavata.registry.core.workflow.catalog.model.Node_PK) HashMap(java.util.HashMap) Map(java.util.Map)

Example 2 with Node

use of org.apache.airavata.registry.core.workflow.catalog.model.Node 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();
        }
    }
}
Also used : EntityManager(javax.persistence.EntityManager) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) Node(org.apache.airavata.registry.core.workflow.catalog.model.Node) Node_PK(org.apache.airavata.registry.core.workflow.catalog.model.Node_PK) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 3 with Node

use of org.apache.airavata.registry.core.workflow.catalog.model.Node in project airavata by apache.

the class NodeResource method getIds.

public List<String> getIds(String fieldName, Object value) throws WorkflowCatalogException {
    List<String> nodeResourceIds = new ArrayList<String>();
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        Query q;
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(NODE);
        List results;
        if (fieldName.equals(NodeConstants.TEMPLATE_ID)) {
            generator.setParameter(NodeConstants.TEMPLATE_ID, value);
            q = generator.selectQuery(em);
            results = q.getResultList();
            if (results.size() != 0) {
                for (Object result : results) {
                    Node node = (Node) result;
                    nodeResourceIds.add(node.getTemplateId());
                }
            }
        } else {
            em.getTransaction().commit();
            if (em.isOpen()) {
                if (em.getTransaction().isActive()) {
                    em.getTransaction().rollback();
                }
                em.close();
            }
            logger.error("Unsupported field name for Workflow node resource.", new IllegalArgumentException());
            throw new IllegalArgumentException("Unsupported field name for Workflow node Resource.");
        }
        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();
        }
    }
    return nodeResourceIds;
}
Also used : EntityManager(javax.persistence.EntityManager) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) Query(javax.persistence.Query) WorkflowCatalogQueryGenerator(org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator) Node(org.apache.airavata.registry.core.workflow.catalog.model.Node) ArrayList(java.util.ArrayList) ArrayList(java.util.ArrayList) List(java.util.List) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 4 with Node

use of org.apache.airavata.registry.core.workflow.catalog.model.Node in project airavata by apache.

the class NodeResource method get.

public WorkflowCatalogResource get(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();
        em.getTransaction().begin();
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(NODE);
        generator.setParameter(NodeConstants.NODE_ID, ids.get(NodeConstants.NODE_ID));
        generator.setParameter(NodeConstants.TEMPLATE_ID, ids.get(NodeConstants.TEMPLATE_ID));
        Query q = generator.selectQuery(em);
        Node node = (Node) q.getSingleResult();
        NodeResource nodeResource = (NodeResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.NODE, node);
        em.getTransaction().commit();
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return nodeResource;
    } 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();
        }
    }
}
Also used : ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) EntityManager(javax.persistence.EntityManager) Query(javax.persistence.Query) WorkflowCatalogQueryGenerator(org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator) Node(org.apache.airavata.registry.core.workflow.catalog.model.Node) HashMap(java.util.HashMap) Map(java.util.Map)

Example 5 with Node

use of org.apache.airavata.registry.core.workflow.catalog.model.Node in project airavata by apache.

the class NodeResource method get.

public List<WorkflowCatalogResource> get(String fieldName, Object value) throws WorkflowCatalogException {
    List<WorkflowCatalogResource> nodeResources = new ArrayList<WorkflowCatalogResource>();
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        Query q;
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(NODE);
        List results;
        if (fieldName.equals(NodeConstants.TEMPLATE_ID)) {
            generator.setParameter(NodeConstants.TEMPLATE_ID, value);
            q = generator.selectQuery(em);
            results = q.getResultList();
            if (results.size() != 0) {
                for (Object result : results) {
                    Node node = (Node) result;
                    NodeResource nodeResource = (NodeResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.NODE, node);
                    nodeResources.add(nodeResource);
                }
            }
        } else {
            em.getTransaction().commit();
            if (em.isOpen()) {
                if (em.getTransaction().isActive()) {
                    em.getTransaction().rollback();
                }
                em.close();
            }
            logger.error("Unsupported field name for Node Resource.", new IllegalArgumentException());
            throw new IllegalArgumentException("Unsupported field name for Node Resource.");
        }
        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();
        }
    }
    return nodeResources;
}
Also used : WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) Query(javax.persistence.Query) Node(org.apache.airavata.registry.core.workflow.catalog.model.Node) ArrayList(java.util.ArrayList) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) EntityManager(javax.persistence.EntityManager) WorkflowCatalogQueryGenerator(org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator) ArrayList(java.util.ArrayList) List(java.util.List)

Aggregations

EntityManager (javax.persistence.EntityManager)5 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)5 Node (org.apache.airavata.registry.core.workflow.catalog.model.Node)5 WorkflowCatalogException (org.apache.airavata.registry.cpi.WorkflowCatalogException)5 Query (javax.persistence.Query)3 WorkflowCatalogQueryGenerator (org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator)3 ArrayList (java.util.ArrayList)2 HashMap (java.util.HashMap)2 List (java.util.List)2 Map (java.util.Map)2 Node_PK (org.apache.airavata.registry.core.workflow.catalog.model.Node_PK)2 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)1