Search in sources :

Example 1 with WorkflowOutput_PK

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

the class WorkflowOutputResource 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();
        WorkflowOutput workflowOutput = em.find(WorkflowOutput.class, new WorkflowOutput_PK(ids.get(WorkflowOutputConstants.WF_TEMPLATE_ID), ids.get(WorkflowOutputConstants.OUTPUT_KEY)));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return workflowOutput != 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 : WorkflowOutput(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) EntityManager(javax.persistence.EntityManager) HashMap(java.util.HashMap) Map(java.util.Map) WorkflowOutput_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput_PK)

Example 2 with WorkflowOutput_PK

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

the class WorkflowOutputResource method save.

public void save() throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        WorkflowOutput existingWorkflowOutput = em.find(WorkflowOutput.class, new WorkflowOutput_PK(wfTemplateId, outputKey));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        if (existingWorkflowOutput != null) {
            existingWorkflowOutput.setTemplateId(wfTemplateId);
            Workflow workflow = em.find(Workflow.class, wfTemplateId);
            existingWorkflowOutput.setWorkflow(workflow);
            existingWorkflowOutput.setDataType(dataType);
            existingWorkflowOutput.setOutputKey(outputKey);
            if (outputVal != null) {
                existingWorkflowOutput.setOutputVal(outputVal.toCharArray());
            }
            existingWorkflowOutput.setDataMovement(dataMovement);
            existingWorkflowOutput.setDataNameLocation(dataNameLocation);
            em.merge(existingWorkflowOutput);
        } else {
            WorkflowOutput workflowOutput = new WorkflowOutput();
            workflowOutput.setTemplateId(wfTemplateId);
            Workflow workflow = em.find(Workflow.class, wfTemplateId);
            workflowOutput.setWorkflow(workflow);
            workflowOutput.setDataType(dataType);
            workflowOutput.setOutputKey(outputKey);
            if (outputVal != null) {
                workflowOutput.setOutputVal(outputVal.toCharArray());
            }
            workflowOutput.setDataMovement(dataMovement);
            workflowOutput.setDataNameLocation(dataNameLocation);
            em.persist(workflowOutput);
        }
        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 : WorkflowOutput(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput) EntityManager(javax.persistence.EntityManager) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) WorkflowOutput_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput_PK)

Aggregations

EntityManager (javax.persistence.EntityManager)2 ApplicationSettingsException (org.apache.airavata.common.exception.ApplicationSettingsException)2 WorkflowOutput (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput)2 WorkflowOutput_PK (org.apache.airavata.registry.core.workflow.catalog.model.WorkflowOutput_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