/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.airavata.client.samples; import org.apache.airavata.model.error.*; import org.apache.airavata.api.Airavata; import org.apache.airavata.api.client.AiravataClientFactory; import org.apache.airavata.model.security.AuthzToken; import org.apache.thrift.TException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.String; public class CancelExperiments { //FIXME: Read from a config file public static final String THRIFT_SERVER_HOST = "gw56.iu.xsede.org"; public static final int THRIFT_SERVER_PORT = 8930; private final static Logger logger = LoggerFactory.getLogger(CreateLaunchExperiment.class); private static final String DEFAULT_USER = "default.registry.user"; private static final String DEFAULT_GATEWAY = "default"; private static Airavata.Client client; public static void main(String[] args) { try { client = AiravataClientFactory.createAiravataClient(THRIFT_SERVER_HOST, THRIFT_SERVER_PORT); String expeId = "echoExperiment_31c132fd-87ea-4781-803c-ae5f04a79baf"; terminateExperiment(client,expeId); System.out.println("retrieved exp id : " + expeId); } catch (Exception e) { logger.error("Error while connecting with server", e.getMessage()); e.printStackTrace(); } } public static void terminateExperiment(Airavata.Client client, String expId) throws TException { try { client.terminateExperiment(new AuthzToken(""), expId, DEFAULT_GATEWAY); } catch (ExperimentNotFoundException e) { logger.error("Error occured while launching the experiment...", e.getMessage()); throw new ExperimentNotFoundException(e); } catch (AiravataSystemException e) { logger.error("Error occured while launching the experiment...", e.getMessage()); throw new AiravataSystemException(e); } catch (InvalidRequestException e) { logger.error("Error occured while launching the experiment...", e.getMessage()); throw new InvalidRequestException(e); } catch (AiravataClientException e) { logger.error("Error occured while launching the experiment...", e.getMessage()); throw new AiravataClientException(e); } catch (TException e) { logger.error("Error occured while launching the experiment...", e.getMessage()); throw new TException(e); } } }