1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.app.agent;
18
19 import org.apache.commons.logging.Log;
20 import org.apache.commons.logging.LogFactory;
21 import org.gwe.GWEAppContext;
22 import org.gwe.api.ServerAPI4Agent;
23 import org.gwe.persistence.model.DaemonConfigDesc;
24 import org.gwe.persistence.model.DaemonInstallation;
25
26
27
28
29
30 public class AgentApp {
31
32 private static Log log = LogFactory.getLog(AgentApp.class);
33 public static final String SPRING_AGENT_CONF = "spring-gwe-agent.xml";
34
35 public static void main(String[] args) {
36 try {
37 String daemonInstallPath = args[0];
38 int allocId = Integer.parseInt(args[1]);
39 DaemonConfigDesc config = initContext(daemonInstallPath, allocId);
40 config.initializeServices();
41 ServerAPI4Agent agentAPI = config.createAPILink().createAPIProxy(ServerAPI4Agent.class);
42
43 BaseAgent agent = new BaseAgent(agentAPI, config, allocId);
44 agent.call();
45 } catch (Exception e) {
46 log.fatal("Non-recoverable exception occured in agent. Exiting!", e);
47 exit();
48 }
49
50 log.info("Bye!");
51 exit();
52 }
53
54 private static DaemonConfigDesc initContext(String daemonInstallPath, int allocId) {
55 DaemonInstallation install = new DaemonInstallation(daemonInstallPath);
56 GWEAppContext ctx = new GWEAppContext(AgentApp.class, daemonInstallPath, install.getAllocsWorkspacePath(allocId), SPRING_AGENT_CONF);
57 return ctx.getBeanOfClass(DaemonConfigDesc.class);
58 }
59
60 private static void exit() {
61
62
63 System.exit(0);
64 }
65 }
66