1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.api.impl;
18
19 import java.rmi.RemoteException;
20 import java.util.List;
21
22 import org.apache.commons.logging.Log;
23 import org.apache.commons.logging.LogFactory;
24 import org.gwe.api.ServerAPI4User;
25 import org.gwe.api.exceptions.PasswordMismatchException;
26 import org.gwe.app.daemon.domain.UserDomain;
27 import org.gwe.persistence.model.DaemonConfigDesc;
28 import org.gwe.persistence.model.HeadResourceInfo;
29 import org.gwe.persistence.model.JobInfo;
30 import org.gwe.persistence.model.OrderInfo;
31 import org.gwe.utils.security.AccountInfo;
32
33
34
35
36
37 public class ServerAPI4UserImpl extends SecuredServerAPIImpl<ServerAPI4User, UserDomain> implements ServerAPI4User {
38
39 private static Log log = LogFactory.getLog(ServerAPI4UserImpl.class);
40
41 public void configureDaemon(AccountInfo auth, HeadResourceInfo daemonInfo) throws RemoteException, PasswordMismatchException {
42
43 }
44
45 public void shutdownDaemon(AccountInfo auth) throws RemoteException, PasswordMismatchException {}
46
47
48
49
50
51 public long getDaemonTime(AccountInfo auth) throws RemoteException, PasswordMismatchException {
52 return System.currentTimeMillis();
53 }
54
55 public void updateConfig(AccountInfo sessionId, DaemonConfigDesc config) throws RemoteException, PasswordMismatchException {
56 try {
57 domain.updateConfig(config);
58 } catch (Exception e) {
59
60 log.warn(e);
61 }
62 }
63
64
65
66
67 public List<OrderInfo> getOrdersDefined(AccountInfo auth) throws RemoteException, PasswordMismatchException {
68 return domain.getOrdersDefined();
69 }
70
71 public OrderInfo queueOrder(AccountInfo auth, OrderInfo order) throws RemoteException, PasswordMismatchException {
72 order = domain.persistOrder(order);
73 domain.queueOrder(order);
74 log.info("Request to queue an order received: " + order);
75 return order;
76 }
77
78 public List<String> previewOrder(AccountInfo auth, OrderInfo order) throws RemoteException, PasswordMismatchException, Exception {
79 return domain.previewOrder(order);
80 }
81
82 public void pauseOrder(AccountInfo auth, int orderId) throws RemoteException, PasswordMismatchException {
83 setPause(orderId, true);
84 }
85
86 public void resumeOrder(AccountInfo auth, int orderId) throws RemoteException, PasswordMismatchException {
87 setPause(orderId, false);
88 }
89
90 private void setPause(int orderId, boolean pause) throws PasswordMismatchException {
91 domain.pauseOrder(orderId, pause);
92 }
93
94 public void abortOrder(AccountInfo auth, int orderId) throws RemoteException, PasswordMismatchException {
95 domain.abortOrder(orderId);
96 }
97
98 public void deleteOrder(AccountInfo auth, int orderId) throws RemoteException, PasswordMismatchException {
99 domain.deleteOrder(orderId);
100 }
101
102 public void updateOrder(AccountInfo auth, int orderId, OrderInfo order) throws RemoteException {
103
104 log.info("Request to update an order received: " + order);
105 if (true) return;
106 }
107
108
109
110
111 public List<OrderInfo> getOrdersByDescription(AccountInfo auth, String description) throws RemoteException, PasswordMismatchException {
112 return domain.getOrdersByDescription(description);
113 }
114
115 public OrderInfo getOrderDetails(AccountInfo auth, int orderId, boolean includeJobs) throws RemoteException, PasswordMismatchException {
116 return domain.getOrder(orderId, includeJobs);
117 }
118
119 public List<OrderInfo> getOrdersList(AccountInfo auth, boolean includeJobs) throws RemoteException, PasswordMismatchException {
120 return domain.getOrdersList(includeJobs);
121 }
122
123 public JobInfo getJobDetails(AccountInfo auth, int orderId, int jobNum) throws RemoteException, PasswordMismatchException {
124 JobInfo result = domain.getJobDetails(orderId, jobNum);
125 result.setExecutions(domain.getExecutionDetails(orderId, jobNum));
126 return result;
127 }
128
129 public void swapPriorities(AccountInfo auth, int orderId, int orderId2) throws RemoteException, PasswordMismatchException {
130 domain.swapPriorities(orderId, orderId2);
131 }
132
133 public void cleanupDisposedAllocations(AccountInfo sessionId) throws RemoteException, PasswordMismatchException {
134 domain.cleanupDisposedAllocations();
135 }
136
137
138
139
140
141
142
143
144
145 }