use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus in project airavata by apache.
the class ComponentStatusResource method getIds.
public List<String> getIds(String fieldName, Object value) throws WorkflowCatalogException {
List<String> statusResourceIds = new ArrayList<String>();
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;
statusResourceIds.add(componentStatus.getTemplateId());
}
}
} 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 statusResourceIds;
}
use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus in project airavata by apache.
the class ComponentStatusResource method isExists.
public boolean isExists(Object identifier) throws WorkflowCatalogException {
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
ComponentStatus status = em.find(ComponentStatus.class, identifier.toString());
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
return status != 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();
}
}
}
use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus in project airavata by apache.
the class ComponentStatusResource method get.
public WorkflowCatalogResource get(Object identifier) throws WorkflowCatalogException {
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
WorkflowCatalogQueryGenerator generator = new WorkflowCatalogQueryGenerator(COMPONENT_STATUS);
generator.setParameter(ComponentStatusConstants.STATUS_ID, identifier.toString());
Query q = generator.selectQuery(em);
ComponentStatus status = (ComponentStatus) q.getSingleResult();
ComponentStatusResource statusResource = (ComponentStatusResource) WorkflowCatalogJPAUtils.getResource(WorkflowCatalogResourceType.COMPONENT_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();
}
}
}
use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus 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;
}
use of org.apache.airavata.registry.core.workflow.catalog.model.ComponentStatus in project airavata by apache.
the class ComponentStatusResource method save.
public void save() throws WorkflowCatalogException {
EntityManager em = null;
try {
em = WorkflowCatalogJPAUtils.getEntityManager();
ComponentStatus existingStatus = em.find(ComponentStatus.class, statusId);
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
em = WorkflowCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existingStatus != null) {
existingStatus.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
existingStatus.setWorkflow(workflow);
existingStatus.setReason(reason);
existingStatus.setState(state);
existingStatus.setUpdateTime(AiravataUtils.getCurrentTimestamp());
em.merge(existingStatus);
} else {
ComponentStatus status = new ComponentStatus();
status.setTemplateId(templateId);
Workflow workflow = em.find(Workflow.class, templateId);
status.setWorkflow(workflow);
status.setReason(reason);
status.setState(state);
status.setUpdateTime(AiravataUtils.getCurrentTimestamp());
em.persist(status);
}
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();
}
}
}
Aggregations