Search in sources :

Example 1 with WorkflowStatus_PK

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

the class WorkflowStatusResource method isExists.

public boolean isExists(Object identifier) throws WorkflowCatalogException {
    HashMap<String, String> ids;
    if (identifier instanceof Map) {
        ids = (HashMap) 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();
        WorkflowStatus status = em.find(WorkflowStatus.class, new WorkflowStatus_PK(ids.get(WorkflowStatusConstants.TEMPLATE_ID), ids.get(WorkflowStatusConstants.STATUS_ID)));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return status != 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) WorkflowStatus_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus_PK) HashMap(java.util.HashMap) Map(java.util.Map) WorkflowStatus(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)

Example 2 with WorkflowStatus_PK

use of org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus_PK 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)

Aggregations

EntityManager (javax.persistence.EntityManager)2 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)2 WorkflowStatus (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)2 WorkflowStatus_PK (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus_PK)2 WorkflowCatalogException (org.apache.airavata.registry.cpi.WorkflowCatalogException)2 HashMap (java.util.HashMap)1 Map (java.util.Map)1 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)1