Search in sources :

Example 1 with WorkflowInput_PK

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

the class WorkflowInputResource method save.

public void save() throws WorkflowCatalogException {
    EntityManager em = null;
    try {
        em = WorkflowCatalogJPAUtils.getEntityManager();
        WorkflowInput existingWFInput = em.find(WorkflowInput.class, new WorkflowInput_PK(wfTemplateId, inputKey));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        WorkflowInput workflowInput;
        em = WorkflowCatalogJPAUtils.getEntityManager();
        em.getTransaction().begin();
        if (existingWFInput == null) {
            workflowInput = new WorkflowInput();
        } else {
            workflowInput = existingWFInput;
        }
        workflowInput.setTemplateID(wfTemplateId);
        Workflow workflow = em.find(Workflow.class, wfTemplateId);
        workflowInput.setWorkflow(workflow);
        workflowInput.setDataType(dataType);
        workflowInput.setInputKey(inputKey);
        if (inputVal != null) {
            workflowInput.setInputVal(inputVal.toCharArray());
        }
        workflowInput.setMetadata(metadata);
        workflowInput.setAppArgument(appArgument);
        workflowInput.setUserFriendlyDesc(userFriendlyDesc);
        workflowInput.setStandardInput(standardInput);
        workflowInput.setRequiredToCMD(requiredToCMD);
        workflowInput.setRequired(isRequired);
        workflowInput.setDataStaged(dataStaged);
        if (existingWFInput == null) {
            em.persist(workflowInput);
        } else {
            em.merge(workflowInput);
        }
        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) Workflow(org.apache.airavata.registry.core.workflow.catalog.model.Workflow) WorkflowInput(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput) ApplicationSettingsException(org.apache.airavata.common.exception.ApplicationSettingsException) WorkflowCatalogException(org.apache.airavata.registry.cpi.WorkflowCatalogException) WorkflowInput_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput_PK)

Example 2 with WorkflowInput_PK

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

the class WorkflowInputResource 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();
        WorkflowInput workflowInput = em.find(WorkflowInput.class, new WorkflowInput_PK(ids.get(WorkflowInputConstants.WF_TEMPLATE_ID), ids.get(WorkflowInputConstants.INPUT_KEY)));
        if (em.isOpen()) {
            if (em.getTransaction().isActive()) {
                em.getTransaction().rollback();
            }
            em.close();
        }
        return workflowInput != 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) WorkflowInput(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput) HashMap(java.util.HashMap) Map(java.util.Map) WorkflowInput_PK(org.apache.airavata.registry.core.workflow.catalog.model.WorkflowInput_PK)

Aggregations

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