summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica2/SwapResource.java
blob: 654681d3d1ff92882ed9e850622adfcdd870da6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package derms.replica2;

import derms.City;

import java.io.IOException;
import java.io.Serializable;
import java.net.*;
import java.util.NoSuchElementException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.logging.Logger;

class SwapResource {
	static final int port = 5560;
	static final int bufSize = 4096;

	static class Client {
		private CoordinatorID cid;
		private ResourceID oldRID;
		private ResourceID newRID;

		Client(CoordinatorID cid, ResourceID oldRID, ResourceID newRID) {
			this.cid = cid;
			this.oldRID = oldRID;
			this.newRID = newRID;
		}

		Response sendRequest(InetAddress serverAddr) throws IOException {
			Request request = new Request(cid, oldRID, newRID);
			DatagramSocket sock;
			try {
				sock = new DatagramSocket();
			} catch (Exception e) {
				throw new IOException("Swap Resource Client: failed to open socket: "+e.getMessage());
			}

			DatagramPacket requestPkt;
			try {
				requestPkt = ObjectPacket.create(request, new InetSocketAddress(serverAddr, port));
			} catch (IOException e) {
				sock.close();
				throw new IOException("Swap Resource Client: failed to create request: "+e.getMessage());
			}

			sock.send(requestPkt);

			byte[] buf = new byte[bufSize];
			DatagramPacket responsePkt = new DatagramPacket(buf, buf.length);
			try {
				sock.receive(responsePkt);
			} catch (Exception e) {
				sock.close();
				throw new IOException("Swap Resource Client: error receiving from server: "+e.getMessage());
			}

			try {
				return ObjectPacket.deserialize(responsePkt, Response.class);
			} catch (IOException e) {
				throw new IOException("Swap Resource Client: failed to deserialize response: "+e.getMessage());
			} finally {
				sock.close();
			}
		}
	}

	static class Server implements Runnable {
		private InetAddress localAddr;
		private Resources resources;
		private Servers servers;
		private ExecutorService pool;
		private Logger log;

		Server(InetAddress localAddr, Resources resources, Servers servers) throws IOException {
			this.localAddr = localAddr;
			this.resources = resources;
			this.servers = servers;
			pool = Executors.newWorkStealingPool();
			this.log = DermsLogger.getLogger(this.getClass());
		}

		@Override
		public void run() {
			DatagramSocket sock = null;
			try {
				sock = new DatagramSocket(port, localAddr);
			} catch (Exception e) {
				log.severe("Failed to bind socket to "+localAddr+": "+e.getMessage());
				return;
			}
			log.info("Listening on "+localAddr+":"+port);

			DatagramPacket requestPkt = new DatagramPacket(new byte[bufSize], bufSize);

			try {
				for (;;) {
					try {
						sock.receive(requestPkt);
					} catch (Exception e) {
						log.warning("Error receiving from socket: "+e.getMessage());
						continue;
					}
					log.fine("Got request");

					Request request = null;
					try {
						request = ObjectPacket.deserialize(requestPkt, Request.class);
					} catch (IOException e) {
						log.warning("Failed to deserialize request: "+e.getMessage());
						continue;
					}

					SocketAddress client = requestPkt.getSocketAddress();
					try {
						RequestHandler handler = new RequestHandler(request, client, resources, servers);
						pool.execute(handler);
					} catch (IOException e) {
						log.warning("Failed to create request handler: "+e.getMessage());
						continue;
					}
				}
			} finally {
				sock.close();
			}
		}
	}

	private static class Request implements Serializable {
		private CoordinatorID cid;
		private ResourceID oldRID;
		private ResourceID newRID;

		private Request(CoordinatorID cid, ResourceID oldRID, ResourceID newRID) {
			this.cid = cid;
			this.oldRID = oldRID;
			this.newRID = newRID;
		}
	}

	private static class RequestHandler implements Runnable {
		private Request request;
		private SocketAddress client;
		private Resources resources;
		private Servers servers;
		private Logger log;

		private RequestHandler(Request request, SocketAddress client, Resources resources, Servers servers) throws IOException {
			this.request = request;
			this.client = client;
			this.resources = resources;
			this.servers = servers;
			this.log = DermsLogger.getLogger(this.getClass());
		}

		@Override
		public void run() {
			Response response = swapResources();

			DatagramSocket sock;
			try {
				sock = new DatagramSocket();
			} catch (Exception e) {
				log.severe("failed to open socket: "+e.getMessage());
				return;
			}

			DatagramPacket pkt;
			try {
				pkt = ObjectPacket.create(response, client);
			} catch (IOException e) {
				log.severe("failed to create response: "+e.getMessage());
				sock.close();
				return;
			}

			try {
				sock.send(pkt);
			} catch (Exception e) {
				log.severe("failed to send response: "+e.getMessage());
			} finally {
				sock.close();
			}
		}

		private Response swapResources() {
			try {
				Resource resource = resources.getByID(request.oldRID);
				synchronized (resource) {
					if (!resource.borrower.equals(request.cid)) {
						return new Response(Response.Status.NOT_BORROWED, "resource "+request.oldRID+" not borrowed by "+request.cid);
					}
					try {
						acquireNewResource(resource.borrowDuration);
						returnOldResource(resource);
						return new Response(Response.Status.SUCCESS, request.cid+" success fully swapped "+request.oldRID+" for "+request.newRID);
					} catch (UnknownHostException e) {
						return new Response(Response.Status.UNKNOWN_HOST, e.getMessage());
					} catch (IOException e) {
						return new Response(Response.Status.FAILURE, e.getMessage());
					} catch (CannotBorrow e) {
						return new Response(Response.Status.CANNOT_BORROW, e.getMessage());
					}
				}
			} catch (NoSuchElementException e) {
				return new Response(Response.Status.NO_SUCH_RESOURCE, "no such resource "+request.oldRID);
			}
		}

		private void acquireNewResource(int borrowDuration) throws UnknownHostException, IOException, CannotBorrow {
			RequestResource.Client requestClient = new RequestResource.Client(request.cid, request.newRID, borrowDuration);
			City city = new City(request.newRID.city);
			InetAddress requestResourceServer = servers.get(city);
			if (requestResourceServer == null) {
				throw new UnknownHostException(city.toString());
			}
			RequestResource.Response response = requestClient.sendRequest(requestResourceServer);
			// TODO: make exception handling more granular---pass through status from Request.
			if (response.status != RequestResource.Response.Status.SUCCESS) {
				throw new CannotBorrow(request.cid, request.newRID, response.message);
			}
		}

		private void returnOldResource(Resource r) {
			r.isBorrowed = false;
			r.borrower = new CoordinatorID();
			r.borrowDuration = -1;
		}
	}

	static class Response implements Serializable {
		Status status;
		String message;

		private Response(Status status, String message) {
			this.status = status;
			this.message = message;
		}

		enum Status {
			SUCCESS,
			FAILURE,
			NO_SUCH_RESOURCE,
			NOT_BORROWED,
			CANNOT_BORROW,
			UNKNOWN_HOST
		}
	}

	private static class CannotBorrow extends Exception {
		CoordinatorID attemptedBorrower;
		ResourceID rid;
		String message;

		private CannotBorrow(CoordinatorID attemptedBorrower, ResourceID rid, String message) {
			this.attemptedBorrower = attemptedBorrower;
			this.rid = rid;
			this.message = message;
		}

		@Override
		public String getMessage() {
			return attemptedBorrower+" failed to borrow "+rid+": "+message;
		}
	}
}