summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica/replica1/RequestResource.java
blob: f7fa4ab1e54dc9dc14cea11800609d0aacc6b1c6 (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
package derms.replica.replica1;

import java.io.IOException;
import java.io.Serializable;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.util.concurrent.Executors;
import java.util.concurrent.ExecutorService;
import java.util.logging.Logger;
import java.util.NoSuchElementException;

public class RequestResource {
	public static final int port = 5557;
	public static final int bufsize = 4096;

	public static class Client {
		private CoordinatorID coordinatorID;
		private ResourceID resourceID;
		private int duration;

		public Client(CoordinatorID coordinatorID, ResourceID resourceID, int duration) {
			this.coordinatorID = coordinatorID;
			this.resourceID = resourceID;
			this.duration = duration;
		}

		public Response sendRequest(InetAddress serverAddr) throws IOException {
			Request request = new Request(coordinatorID, resourceID, duration);
			DatagramSocket sock;
			try {
				sock = new DatagramSocket();
			} catch (Exception e) {
				throw new IOException("Request 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("Request 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("Request  Resource Client: error receiving from server: "+e.getMessage());
			}

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

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

		public Server(InetAddress localAddr, Resources resources) throws IOException {
			this.localAddr = localAddr;
			this.resources = resources;
			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.toString()
					+": "+e.getMessage());
				return;
			}

			log.info("Listening on "+localAddr.toString()+":"+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.info("Got request");

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

					pool.execute(new RequestHandler(request, requestPkt.getSocketAddress(), resources, log));
				}
			} finally {
				sock.close();
			}
		}
	}

	private static class Request implements Serializable {
		private CoordinatorID coordinatorID;
		private ResourceID resourceID;
		private int duration;

		private Request(CoordinatorID cid, ResourceID rid, int duration) {
			this.coordinatorID = cid;
			this.resourceID = rid;
			this.duration = duration;
		}
	}

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

		private RequestHandler(Request request, SocketAddress client, Resources resources, Logger log) {
			this.request = request;
			this.client = client;
			this.resources = resources;
			this.log = log;
		}

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

			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 packet: "+e.getMessage());
				sock.close();
				return;
			}
			try {
				sock.send(pkt);
			} catch (Exception e) {
				log.severe("Failed to send response: "+e.getMessage());
			}
			sock.close();
		}

		private Response borrow() {
			try {
				Resource resource = resources.getByID(request.resourceID);
				synchronized (resource) {
					if (resource.isBorrowed && !request.coordinatorID.equals(resource.borrower)) {
						return new Response(Response.Status.ALREADY_BORROWED,
								request.coordinatorID+" cannot borrow "+request.resourceID
										+"; already borrowed by "+resource.borrower);
					} else if (request.duration <= 0) {
						return new Response(Response.Status.INVALID_DURATION,
								"duration "+request.duration+" less than 1");
					} else if (request.duration > resource.duration) {
						return new Response(Response.Status.INVALID_DURATION,
								"cannot borrow "+resource.id+" for duration of "+request.duration
										+"; only "+resource.duration+" remaining");
					}

					if (resource.borrower.equals(request.coordinatorID)) {
						// Resource is already borrowed. Add to existing duration.
						resource.borrowDuration += request.duration;
					} else {
						resource.borrowDuration = request.duration;
					}
					resource.borrower = request.coordinatorID;
					resource.isBorrowed = true;
					resource.duration -= request.duration;

					return new Response(Response.Status.SUCCESS, request.coordinatorID
						+" successfully borrowed "+request.resourceID);
				}
			} catch (NoSuchElementException e) {
				return new Response(Response.Status.NO_SUCH_RESOURCE, "no such resource "+request.resourceID);
			}
		}
	}

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

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

		private Response() {
			this(Status.SUCCESS, "");
		}

		public enum Status {
			SUCCESS, NO_SUCH_RESOURCE, ALREADY_BORROWED, INVALID_DURATION
		}
	}
}