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();
}
}
}
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();
}
}
}
Aggregations