Search in sources :

Example 26 with WorkflowCatalogException

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

the class PortResource method isExists.

public boolean isExists(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();
        Port port = em.find(Port.class, new Port_PK(ids.get(PortConstants.TEMPLATE_ID), ids.get(PortConstants.PORT_ID)));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return port != 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 : Port_PK(org.apache.airavata.registry.core.workflow.catalog.model.Port_PK) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) EntityManager(javax.persistence.EntityManager) Port(org.apache.airavata.registry.core.workflow.catalog.model.Port) HashMap(java.util.HashMap) Map(java.util.Map)

Example 27 with WorkflowCatalogException

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

the class PortResource method save.

public void save() throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        Port existingPort = em.find(Port.class, new Port_PK(templateId, portId));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        if (existingPort != null) {
            existingPort.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            existingPort.setWorkflow(workflow);
            existingPort.setComponentStatusId(statusId);
            existingPort.setDescription(description);
            existingPort.setName(name);
            existingPort.setCreatedTime(createdTime);
            em.merge(existingPort);
        } else {
            Port edge = new Port();
            edge.setTemplateId(templateId);
            Workflow workflow = em.find(Workflow.class, templateId);
            edge.setWorkflow(workflow);
            edge.setComponentStatusId(statusId);
            edge.setDescription(description);
            edge.setName(name);
            edge.setCreatedTime(AiravataUtils.getCurrentTimestamp());
            em.persist(edge);
        }
        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 : Port_PK(org.apache.airavata.registry.core.workflow.catalog.model.Port_PK) EntityManager(javax.persistence.EntityManager) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) Port(org.apache.airavata.registry.core.workflow.catalog.model.Port) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 28 with WorkflowCatalogException

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

the class WorkflowCatalogImpl method getAllWorkflows.

@Override
public List<String> getAllWorkflows(String gatewayId) throws WorkflowCatalogException {
    List<String> workflowIds = new ArrayList<String>();
    try {
        WorkflowResource resource = new WorkflowResource();
        resource.setGatewayId(gatewayId);
        workflowIds = resource.getAllIds();
    } catch (Exception e) {
        logger.error("Error while retrieving all the workflow template ids...", e);
        throw new WorkflowCatalogException(e);
    }
    return workflowIds;
}
Also used : WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) ArrayList(java.util.ArrayList) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 29 with WorkflowCatalogException

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

the class WorkflowCatalogImpl method getWorkflowTemplateId.

@Override
public String getWorkflowTemplateId(String workflowName) throws WorkflowCatalogException {
    try {
        WorkflowResource resource = new WorkflowResource();
        List<WorkflowCatalogResource> resourceList = resource.get(WorkflowCatAbstractResource.WorkflowConstants.WORKFLOW_NAME, workflowName);
        if (resourceList != null && !resourceList.isEmpty()) {
            WorkflowResource wfResource = (WorkflowResource) resourceList.get(0);
            return wfResource.getWfTemplateId();
        }
    } catch (Exception e) {
        logger.error("Error while retrieving the workflow with the workflow name...", e);
        throw new WorkflowCatalogException(e);
    }
    return null;
}
Also used : WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

Example 30 with WorkflowCatalogException

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

the class WorkflowCatalogImpl method deleteWorkflow.

@Override
public void deleteWorkflow(String workflowTemplateId) throws WorkflowCatalogException {
    try {
        WorkflowResource resource = new WorkflowResource();
        resource.remove(workflowTemplateId);
    } catch (Exception e) {
        logger.error("Error while deleting the workflow...", e);
        throw new WorkflowCatalogException(e);
    }
}
Also used : WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException)

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