1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.integration.slicer;
18
19 import java.io.IOException;
20 import java.rmi.RemoteException;
21 import java.util.List;
22
23 import org.gwe.integration.slicer.model.ExecutableModel;
24 import org.gwe.utils.StringUtils;
25 import org.gwe.utils.cmd.ArgsList;
26
27
28
29
30
31 public abstract class AbstractCLMProxyApp {
32
33 public static String ENV_SLICER_HOME = "SLICER_HOME";
34 public static String PLUGINS_RELATIVE_DIR = "/lib/Slicer3/Plugins";
35
36 private static Class[] classes = new Class[]{String.class};
37
38 public static void main(String[] args) throws Exception {
39 ArgsList argsList = new ArgsList(args);
40
41 Class<? extends AbstractCLMProxyApp> proxyAppClass = (Class<? extends AbstractCLMProxyApp>) Class.forName(argsList.remove(0));
42 proxyAppClassMain(proxyAppClass, argsList);
43 }
44
45 protected static <PROXY_APP_TYPE extends AbstractCLMProxyApp> void proxyAppClassMain(Class<PROXY_APP_TYPE> proxyAppClass, List<String> argsList) throws Exception {
46
47 PROXY_APP_TYPE proxyApp = proxyAppClass.getConstructor(classes).newInstance(argsList.remove(0));
48 proxyAppMain(proxyApp, argsList);
49 }
50
51 protected static <PROXY_APP extends AbstractCLMProxyApp> void proxyAppMain(PROXY_APP proxyApp, List<String> argsList) {
52 String[] args = argsList.toArray(new String[]{});
53 try {
54 ExecutableModel model = new ExecutableModel(null, null, null);
55 model.loadArgs(args, false);
56 if (model.isXMLSelected()) {
57 System.out.println(proxyApp.generateProxyXML());
58 } else if (model.isLogoSelected()) {
59 } else {
60 try {
61 System.out.println("CLMP invoked with args: " + StringUtils.getArrayAsStr(args));
62 proxyApp.runProxyApp(args);
63 } catch (RemoteException e) {
64
65 }
66 }
67 } catch (Exception e) {
68
69 System.out.println("CLMP invoked with args: " + StringUtils.getArrayAsStr(args));
70 e.printStackTrace();
71 }
72 }
73
74 public static String[] removeArgs(String[] args, int count) {
75 String[] trimmedArgs = new String[args.length - count];
76 for (int idx = count; idx < args.length; idx++) trimmedArgs[idx - count] = args[idx];
77 return trimmedArgs;
78 }
79
80 protected String slicerHome;
81 protected ExecutableModel xmlModel = null;
82
83 public AbstractCLMProxyApp() {
84 this.slicerHome = System.getenv(ENV_SLICER_HOME);
85 }
86
87 public String getPluginsDir() {
88 return getPluginsDir(slicerHome);
89 }
90
91 public String getPluginsDir(String slicerHomeDir) {
92 return slicerHomeDir + PLUGINS_RELATIVE_DIR;
93 }
94
95 public ExecutableModel getXmlModel() {
96 return xmlModel;
97 }
98
99 public void setXmlModel(ExecutableModel xmlModel) {
100 this.xmlModel = xmlModel;
101 }
102
103 public abstract String generateProxyXML() throws Exception;
104
105 public abstract String runProxyApp(String[] args) throws Exception;
106
107 protected String generateCLMErrorXML(IOException e) { return ""; }
108 }
109