Search in sources :

Example 1 with ComponentStatus

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

the class ComponentStatusResource method getIds.

public List<String> getIds(String fieldName, Object value) throws WorkflowCatalogException {
    List<String> statusResourceIds = new ArrayList<String>();
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        Query q;
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(COMPONENT_STATUS);
        List results;
        if (fieldName.equals(ComponentStatusConstants.TEMPLATE_ID)) {
            generator.setParameter(ComponentStatusConstants.TEMPLATE_ID, value);
            q = generator.selectQuery(em);
            results = q.getResultList();
            if (results.size() != 0) {
                for (Object result : results) {
                    ComponentStatus componentStatus = (ComponentStatus) result;
                    statusResourceIds.add(componentStatus.getTemplateId());
                }
            }
        } else {
            em.getTransaction().commit();
            if (em.isOpen()) {
                if (em.getTransaction().isActive()) {
                    em.getTransaction().rollback();
                }
                em.close();
            }
            logger.error("Unsupported field name for Component Status resource.", new IllegalArgumentException());
            throw new IllegalArgumentException("Unsupported field name for Component Status 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 statusResourceIds;
}
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) ComponentStatus(org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus) 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 2 with ComponentStatus

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

the class ComponentStatusResource method isExists.

public boolean isExists(Object identifier) throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        ComponentStatus status = em.find(ComponentStatus.class, identifier.toString());
        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) EntityManager(javax.persistence.EntityManager) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) ComponentStatus(org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)

Example 3 with ComponentStatus

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

the class ComponentStatusResource method get.

public WorkflowCatalogResource get(Object identifier) throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(COMPONENT_STATUS);
        generator.setParameter(ComponentStatusConstants.STATUS_ID, identifier.toString());
        Query q = generator.selectQuery(em);
        ComponentStatus status = (ComponentStatus) q.getSingleResult();
        ComponentStatusResource statusResource = (ComponentStatusResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.COMPONENT_STATUS, status);
        em.getTransaction().commit();
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return statusResource;
    } 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) ComponentStatus(org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)

Example 4 with ComponentStatus

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

the class ComponentStatusResource method get.

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

Example 5 with ComponentStatus

use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus 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)5 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)5 ComponentStatus (org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)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 List (java.util.List)2 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)1