Search in sources :

Example 41 with WorkflowCatalogException

use of org.apache.airavata.registry.cpi.WorkflowCatalogException 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 42 with WorkflowCatalogException

use of org.apache.airavata.registry.cpi.WorkflowCatalogException 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 43 with WorkflowCatalogException

use of org.apache.airavata.registry.cpi.WorkflowCatalogException in project airavata by apache.

the class WorkflowStatusResource 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(WORKFLOW_STATUS);
        List results;
        if (fieldName.equals(WorkflowStatusConstants.TEMPLATE_ID)) {
            generator.setParameter(WorkflowStatusConstants.TEMPLATE_ID, value);
            q = generator.selectQuery(em);
            results = q.getResultList();
            if (results.size() != 0) {
                for (Object result : results) {
                    WorkflowStatus WorkflowStatus = (WorkflowStatus) result;
                    statusResourceIds.add(WorkflowStatus.getTemplateId());
                }
            }
        } else {
            em.getTransaction().commit();
            if (em.isOpen()) {
                if (em.getTransaction().isActive()) {
                    em.getTransaction().rollback();
                }
                em.close();
            }
            logger.error("Unsupported field name for Workflow Status resource.", new IllegalArgumentException());
            throw new IllegalArgumentException("Unsupported field name for Workflow 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) 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) WorkflowStatus(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)

Example 44 with WorkflowCatalogException

use of org.apache.airavata.registry.cpi.WorkflowCatalogException in project airavata by apache.

the class WorkflowStatusResource 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(WORKFLOW_STATUS);
        List results;
        if (fieldName.equals(WorkflowStatusConstants.TEMPLATE_ID)) {
            generator.setParameter(WorkflowStatusConstants.TEMPLATE_ID, value);
            q = generator.selectQuery(em);
            results = q.getResultList();
            if (results.size() != 0) {
                for (Object result : results) {
                    WorkflowStatus WorkflowStatus = (WorkflowStatus) result;
                    WorkflowStatusResource statusResource = (WorkflowStatusResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.WORKFLOW_STATUS, WorkflowStatus);
                    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 Workflow status Resource.", new IllegalArgumentException());
            throw new IllegalArgumentException("Unsupported field name for Workflow 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) WorkflowStatus(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus) EntityManager(javax.persistence.EntityManager) WorkflowCatalogQueryGenerator(org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator) ArrayList(java.util.ArrayList) List(java.util.List)

Example 45 with WorkflowCatalogException

use of org.apache.airavata.registry.cpi.WorkflowCatalogException 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)

Aggregations

WorkflowCatalogException (org.apache.airavata.registry.cpi.WorkflowCatalogException)57 EntityManager (javax.persistence.EntityManager)50 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)50 Query (javax.persistence.Query)34 WorkflowCatalogQueryGenerator (org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator)34 ArrayList (java.util.ArrayList)19 HashMap (java.util.HashMap)19 Map (java.util.Map)18 List (java.util.List)16 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)14 ComponentStatus (org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)5 Edge (org.apache.airavata.registry.core.workflow.catalog.model.Edge)5 Node (org.apache.airavata.registry.core.workflow.catalog.model.Node)5 Port (org.apache.airavata.registry.core.workflow.catalog.model.Port)5 WorkflowInput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput)5 WorkflowOutput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput)5 WorkflowStatus (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)5 InputDataObjectType (org.apache.airavata.model.application.io.InputDataObjectType)2 OutputDataObjectType (org.apache.airavata.model.application.io.OutputDataObjectType)2 Edge_PK (org.apache.airavata.registry.core.workflow.catalog.model.Edge_PK)2