2525: example
[arvados.git] / sdk / java / ArvadosSDKJavaExampleWithPrompt.java
1 /**
2  * This Sample test program is useful in getting started with using Arvados Java SDK.
3  * This program creates an Arvados instance using the configured environment variables.
4  * It then provides a prompt to input method name and input parameters. 
5  * The program them invokes the API server to execute the specified method.  
6  * 
7  * @author radhika
8  */
9
10 import org.arvados.sdk.java.Arvados;
11
12 import java.io.File;
13 import java.util.HashMap;
14 import java.util.List;
15 import java.util.Map;
16 import java.util.Map.Entry;
17 import java.util.Set;
18 import java.io.BufferedReader;
19 import java.io.InputStreamReader;
20
21 public class ArvadosSDKJavaExampleWithPrompt {
22   /**
23    * Make sure the following environment variables are set before using Arvados:
24    * ARVADOS_API_TOKEN, ARVADOS_API_HOST and ARVADOS_API_HOST_INSECURE Set
25    * ARVADOS_API_HOST_INSECURE to true if you are using self-singed certificates
26    * in development and want to bypass certificate validations.
27    * 
28    * Please refer to http://doc.arvados.org/api/index.html for a complete list
29    * of the available API methods.
30    */
31   public static void main(String[] args) throws Exception {
32     String apiName = "arvados";
33     String apiVersion = "v1";
34
35     System.out.print("Welcome to Arvados Java SDK");
36     System.out.println("You can use this example to call API methods");
37     System.out.println("Enter ^C when you want to quit");
38
39     // use configured env variables for API TOKEN, HOST and HOST_INSECURE
40     Arvados arv = new Arvados(apiName, apiVersion);
41
42     while (true) {
43       // prompt for resource
44       System.out.println("\n\nEnter Resource name (for example users): ");
45
46       // read resource name
47       BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
48       String resourceName = in.readLine().trim();
49
50       // read method name
51       System.out.println("\nEnter method name (for example get): ");
52       String methodName = in.readLine().trim();
53
54       // read method parameters
55       System.out.println("\nEnter parameter name, value (for example uuid, uuid-value): ");
56       Map paramsMap = new HashMap();
57       String param = "";
58       try {
59         do {
60           param = in.readLine();
61           if (param.isEmpty())
62             break;
63           int index = param.indexOf(","); // first comma
64           String paramName = param.substring(0, index);
65           String paramValue = param.substring(index);
66           System.out.println(paramName + " " + paramValue);
67           paramsMap.put(paramName.trim(), paramValue.trim());
68
69           System.out.println("\nEnter parameter name, value (for example uuid, uuid-value): ");
70         } while (!param.isEmpty());
71       } catch (Exception e) {
72         System.out.println (e.getMessage());
73         System.out.println ("\nStart over");
74         continue;
75       }
76
77       // Make a "call" for the given resource name and method name
78       try {
79         System.out.println ("Making a call for " + resourceName + " " + methodName);
80         Map response = arv.call(resourceName, methodName, paramsMap);
81         
82         Set<Entry<String,Object>> entrySet = (Set<Entry<String,Object>>)response.entrySet();
83         for (Map.Entry<String, Object> entry : entrySet) {
84           if ("items".equals(entry.getKey())) {
85             List items = (List)entry.getValue();
86             for (Object item : items) {
87               System.out.println("    " + item);
88             }            
89           } else {
90             System.out.println(entry.getKey() + " = " + entry.getValue());
91           }
92         }
93       } catch (Exception e){
94         System.out.println (e.getMessage());
95         System.out.println ("\nStart over");
96       }
97     }
98   }
99 }