use of org.apache.airavata.registry.cpi.AppCatalogException in project airavata by apache.
the class AppEnvironmentResource method get.
@Override
public List<AppCatalogResource> get(String fieldName, Object value) throws AppCatalogException {
List<AppCatalogResource> appEnvironmentList = new ArrayList<AppCatalogResource>();
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
Query q;
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(APP_ENVIRONMENT);
List results;
if (fieldName.equals(AppEnvironmentConstants.DEPLOYMENT_ID) || fieldName.equals(AppEnvironmentConstants.NAME)) {
generator.setParameter(fieldName, value);
q = generator.selectQuery(em);
results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
AppEnvironment appEnvironment = (AppEnvironment) result;
AppEnvironmentResource resource = (AppEnvironmentResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.APP_ENVIRONMENT, appEnvironment);
appEnvironmentList.add(resource);
}
Collections.sort(appEnvironmentList, (o1, o2) -> {
AppEnvironmentResource order1 = (AppEnvironmentResource) o1;
AppEnvironmentResource order2 = (AppEnvironmentResource) o2;
if (order1.getOrder() == null) {
return (order2.getOrder() == null) ? 0 : -1;
}
if (order2.getOrder() == null) {
return 1;
}
return order1.getOrder().compareTo(order2.getOrder());
});
}
} else {
em.getTransaction().commit();
em.close();
logger.error("Unsupported field name for App Environment resource.", new IllegalArgumentException());
throw new IllegalArgumentException("Unsupported field name for App Environment 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 AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return appEnvironmentList;
}
use of org.apache.airavata.registry.cpi.AppCatalogException in project airavata by apache.
the class AppInterfaceResource method get.
@Override
public List<AppCatalogResource> get(String fieldName, Object value) throws AppCatalogException {
List<AppCatalogResource> resourceList = new ArrayList<AppCatalogResource>();
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
Query q;
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(APPLICATION_INTERFACE);
List results;
if (fieldName.equals(ApplicationInterfaceConstants.APPLICATION_NAME)) {
generator.setParameter(ApplicationInterfaceConstants.APPLICATION_NAME, value);
q = generator.selectQuery(em);
results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
ApplicationInterface appInterface = (ApplicationInterface) result;
AppInterfaceResource resource = (AppInterfaceResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.APPLICATION_INTERFACE, appInterface);
resourceList.add(resource);
}
}
} else {
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
logger.error("Unsupported field name for application interface.", new IllegalArgumentException());
throw new IllegalArgumentException("Unsupported field name for application interface.");
}
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 AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return resourceList;
}
use of org.apache.airavata.registry.cpi.AppCatalogException in project airavata by apache.
the class AppInterfaceResource method get.
@Override
public AppCatalogResource get(Object identifier) throws AppCatalogException {
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(APPLICATION_INTERFACE);
generator.setParameter(ApplicationInterfaceConstants.INTERFACE_ID, identifier);
Query q = generator.selectQuery(em);
ApplicationInterface applicationInterface = (ApplicationInterface) q.getSingleResult();
AppInterfaceResource resource = (AppInterfaceResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.APPLICATION_INTERFACE, applicationInterface);
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
return resource;
} catch (ApplicationSettingsException e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
use of org.apache.airavata.registry.cpi.AppCatalogException in project airavata by apache.
the class AppInterfaceResource method getAll.
@Override
public List<AppCatalogResource> getAll() throws AppCatalogException {
List<AppCatalogResource> resourceList = new ArrayList<AppCatalogResource>();
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(APPLICATION_INTERFACE);
generator.setParameter(ApplicationInterfaceConstants.GATEWAY_ID, gatewayId);
Query q = generator.selectQuery(em);
List results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
ApplicationInterface appInterface = (ApplicationInterface) result;
AppInterfaceResource resource = (AppInterfaceResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.APPLICATION_INTERFACE, appInterface);
resourceList.add(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 AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return resourceList;
}
use of org.apache.airavata.registry.cpi.AppCatalogException in project airavata by apache.
the class AppInterfaceResource method save.
@Override
public void save() throws AppCatalogException {
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
ApplicationInterface existigAppInterface = em.find(ApplicationInterface.class, interfaceId);
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existigAppInterface != null) {
existigAppInterface.setAppName(appName);
existigAppInterface.setAppDescription(appDescription);
existigAppInterface.setUpdateTime(AiravataUtils.getCurrentTimestamp());
existigAppInterface.setGatewayId(gatewayId);
existigAppInterface.setArchiveWorkingDirectory(archiveWorkingDirectory);
existigAppInterface.setHasOptionalFileInputs(hasOptionalFileInputs);
em.merge(existigAppInterface);
} else {
ApplicationInterface applicationInterface = new ApplicationInterface();
applicationInterface.setInterfaceID(interfaceId);
applicationInterface.setAppName(appName);
applicationInterface.setAppDescription(appDescription);
applicationInterface.setCreationTime(AiravataUtils.getCurrentTimestamp());
applicationInterface.setGatewayId(gatewayId);
applicationInterface.setArchiveWorkingDirectory(archiveWorkingDirectory);
applicationInterface.setHasOptionalFileInputs(hasOptionalFileInputs);
em.persist(applicationInterface);
}
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 AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
Aggregations