Search in sources :

Example 11 with Workflow

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

the class WorkflowResource method get.

@Override
public WorkflowCatalogResource get(Object identifier) throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(WORKFLOW);
        generator.setParameter(WorkflowConstants.TEMPLATE_ID, identifier);
        Query q = generator.selectQuery(em);
        Workflow workflow = (Workflow) q.getSingleResult();
        WorkflowResource workflowResource = (WorkflowResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.WORKFLOW, workflow);
        em.getTransaction().commit();
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return workflowResource;
    } 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) 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) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow)

Example 12 with Workflow

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

the class WorkflowResource method getAllIds.

@Override
public List<String> getAllIds() throws WorkflowCatalogException {
    List<String> workflowIds = new ArrayList<String>();
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(WORKFLOW);
        generator.setParameter(WorkflowConstants.GATEWAY_ID, gatewayId);
        Query q = generator.selectQuery(em);
        List results = q.getResultList();
        if (results.size() != 0) {
            for (Object result : results) {
                Workflow workflow = (Workflow) result;
                workflowIds.add(workflow.getTemplateId());
            }
        }
        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 workflowIds;
}
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) ArrayList(java.util.ArrayList) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) ArrayList(java.util.ArrayList) List(java.util.List) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 13 with Workflow

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

the class WorkflowStatusResource method save.

public void save() throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        WorkflowStatus existingStatus = em.find(WorkflowStatus.class, new WorkflowStatus_PK(templateId, statusId));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        if (existingStatus != null) {
            existingStatus.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            existingStatus.setWorkflow(workflow);
            existingStatus.setReason(reason);
            existingStatus.setState(state);
            existingStatus.setUpdateTime(AiravataUtils.getCurrentTimestamp());
            em.merge(existingStatus);
        } else {
            WorkflowStatus status = new WorkflowStatus();
            status.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            status.setWorkflow(workflow);
            status.setReason(reason);
            status.setState(state);
            status.setUpdateTime(AiravataUtils.getCurrentTimestamp());
            em.persist(status);
        }
        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) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) WorkflowStatus_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus_PK) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) WorkflowStatus(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)

Example 14 with Workflow

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

the class ComponentStatusResource method save.

public void save() throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        ComponentStatus existingStatus = em.find(ComponentStatus.class, statusId);
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        if (existingStatus != null) {
            existingStatus.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            existingStatus.setWorkflow(workflow);
            existingStatus.setReason(reason);
            existingStatus.setState(state);
            existingStatus.setUpdateTime(AiravataUtils.getCurrentTimestamp());
            em.merge(existingStatus);
        } else {
            ComponentStatus status = new ComponentStatus();
            status.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            status.setWorkflow(workflow);
            status.setReason(reason);
            status.setState(state);
            status.setUpdateTime(AiravataUtils.getCurrentTimestamp());
            em.persist(status);
        }
        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) ComponentStatus(org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Aggregations

EntityManager (javax.persistence.EntityManager)14 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)14 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)14 WorkflowCatalogException (org.apache.airavata.registry.cpi.WorkflowCatalogException)14 Query (javax.persistence.Query)5 WorkflowCatalogQueryGenerator (org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator)5 ArrayList (java.util.ArrayList)4 List (java.util.List)2 ComponentStatus (org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)1 Edge (org.apache.airavata.registry.core.workflow.catalog.model.Edge)1 Edge_PK (org.apache.airavata.registry.core.workflow.catalog.model.Edge_PK)1 Node (org.apache.airavata.registry.core.workflow.catalog.model.Node)1 Node_PK (org.apache.airavata.registry.core.workflow.catalog.model.Node_PK)1 Port (org.apache.airavata.registry.core.workflow.catalog.model.Port)1 Port_PK (org.apache.airavata.registry.core.workflow.catalog.model.Port_PK)1 WorkflowInput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput)1 WorkflowInput_PK (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput_PK)1 WorkflowOutput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput)1 WorkflowOutput_PK (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput_PK)1 WorkflowStatus (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)1