Search in sources :

Example 26 with WorkflowCatalogQueryGenerator

use of org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator 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 27 with WorkflowCatalogQueryGenerator

use of org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator in project airavata by apache.

the class WorkflowStatusResource 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(WORKFLOW_STATUS);
        generator.setParameter(WorkflowStatusConstants.STATUS_ID, ids.get(WorkflowStatusConstants.STATUS_ID));
        generator.setParameter(WorkflowStatusConstants.TEMPLATE_ID, ids.get(WorkflowStatusConstants.TEMPLATE_ID));
        Query q = generator.selectQuery(em);
        WorkflowStatus status = (WorkflowStatus) q.getSingleResult();
        WorkflowStatusResource statusResource = (WorkflowStatusResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.WORKFLOW_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) 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) HashMap(java.util.HashMap) Map(java.util.Map) WorkflowStatus(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)

Example 28 with WorkflowCatalogQueryGenerator

use of org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator 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 29 with WorkflowCatalogQueryGenerator

use of org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator in project airavata by apache.

the class EdgeResource method getIds.

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

Example 30 with WorkflowCatalogQueryGenerator

use of org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator in project airavata by apache.

the class EdgeResource method get.

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

Aggregations

EntityManager (javax.persistence.EntityManager)34 Query (javax.persistence.Query)34 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)34 WorkflowCatalogQueryGenerator (org.apache.airavata.registry.core.workflow.catalog.utils.WorkflowCatalogQueryGenerator)34 WorkflowCatalogException (org.apache.airavata.registry.cpi.WorkflowCatalogException)34 ArrayList (java.util.ArrayList)18 List (java.util.List)16 HashMap (java.util.HashMap)12 Map (java.util.Map)12 Workflow (org.apache.airavata.registry.core.workflow.catalog.model.Workflow)5 ComponentStatus (org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus)3 Edge (org.apache.airavata.registry.core.workflow.catalog.model.Edge)3 Node (org.apache.airavata.registry.core.workflow.catalog.model.Node)3 Port (org.apache.airavata.registry.core.workflow.catalog.model.Port)3 WorkflowInput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput)3 WorkflowOutput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput)3 WorkflowStatus (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowStatus)3