-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessageHandler.java
357 lines (299 loc) · 12.3 KB
/
MessageHandler.java
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
import java.net.Socket;
import java.net.ConnectException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.concurrent.ConcurrentHashMap;
import java.io.ObjectOutputStream;
import java.io.ObjectInputStream;
import java.io.IOException;
import java.lang.ClassNotFoundException;
public class MessageHandler implements Runnable {
private Socket socket;
private Tracker tracker;
private ObjectOutputStream output;
private ObjectInputStream input;
public MessageHandler(Socket socket, Tracker tracker) {
this.socket = socket;
this.tracker = tracker;
try {
output = new ObjectOutputStream(socket.getOutputStream());
input = new ObjectInputStream(socket.getInputStream());
} catch (IOException ioe) {
ioe.printStackTrace();
System.exit(0);
}
}
public void run() {
String message;
while (true) {
try {
if (socket.isClosed()) break;
if (input.available() == 0) continue;
// Wait for message
message = input.readUTF();
switch (message) {
case "register":
handleRegister();
break;
case "login":
handleLogin();
break;
case "logout":
handleLogout();
break;
case "notify":
handleNotify();
break;
case "list":
replyList();
break;
case "details":
replyDetails();
break;
case "notifyDownload":
handleNotifyDownload();
break;
case "assemble":
replyAssemble();
break;
default:
System.out.println("Tracker: No such function: " + message +".");
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
private void handleRegister() {
try {
// Send true
output.writeBoolean(true);
output.flush();
// Wait for credentials
Object response = input.readObject();
@SuppressWarnings("unchecked")
ConcurrentHashMap<String, String> credentials = (ConcurrentHashMap<String, String>) response;
// Create an account and send success message
boolean success = tracker.addSavedPeer(credentials.get("username"), credentials.get("password"));
if (success)
System.out.println("Tracker: Created user with username " + credentials.get("username") + ".");
output.writeBoolean(success);
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
private void handleLogin() {
try {
// Send true
output.writeBoolean(true);
output.flush();
// Wait for peer's port number
int port = input.readInt();
// Wait for username and password
Object response = input.readObject();
@SuppressWarnings("unchecked")
ConcurrentHashMap<String, String> credentials = (ConcurrentHashMap<String, String>) response;
int tokenId = tracker.loginPeer(credentials.get("username"),
credentials.get("password"),
port, socket, output, input);
if (tokenId == 0) return;
// Respond
output.writeInt(tokenId);
output.flush();
// Wait for inform
response = input.readObject();
@SuppressWarnings("unchecked")
ArrayList<SavedFile> files = (ArrayList<SavedFile>) response;
tracker.addPeerFiles(credentials.get("username"), files);
// Send true
output.writeBoolean(true);
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
private void handleLogout() {
try {
// Send true
output.writeBoolean(true);
output.flush();
// Wait for token_id
int token = input.readInt();
for (int t : tracker.getTokens()) {
if (token == t) {
// Logout the peer and send true
tracker.logoutPeer(token);
output.writeBoolean(true);
output.flush();
System.out.println("Tracker: Logged peer " + token + " out.");
return;
}
}
// Send false(token_id doesn't match any logged in peer)
output.writeBoolean(false);
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
private void handleNotify() {
try {
// Get token_id
String token = input.readUTF();
String username = tracker.getUsername(token);
// Get the peer's files
int filesNumber = input.readInt();
ArrayList<SavedFile> files = new ArrayList<>();
Object response;
for (int i = 0; i < filesNumber; i++) {
response = input.readObject();
files.add((SavedFile) response);
}
tracker.addPeerFiles(username, files);
// Send success message
System.out.println("Tracker: Got filenames from peer " + token + ".");
output.writeBoolean(true);
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
} catch (ClassNotFoundException cnfe) {
cnfe.printStackTrace();
}
}
private void replyList() {
try {
// Send a list containing all available files
output.writeObject(tracker.getAllFiles());
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
private void replyDetails() {
try {
// Get the filename
String filename = input.readUTF();
// Find whether the file exists
boolean isActive, found = false;
HashMap<String, ArrayList<SavedFile>> files = new HashMap<>(tracker.getPeerFiles());
HashMap<String, ArrayList<Object>> requestedFileOwners = new HashMap<>();
for (String username : files.keySet()) {
for (SavedFile file : files.get(username)) {
if (file.getFilename().equals(filename)) {
// Make sure the peer is logged in
isActive = false;
for (LoggedInPeer peer : tracker.getLoggedInPeers()) {
if (peer.getUser().getUsername().equals(username)) {
// Send checkActive to peer
isActive = checkActive(peer);
// Amend the requestedFileOwners hashmap to include the active peer
if (isActive) {
found = true;
requestedFileOwners.putIfAbsent(username, new ArrayList<>());
requestedFileOwners.get(username).add(peer.getIpAddress());
requestedFileOwners.get(username).add(peer.getPort());
requestedFileOwners.get(username).add(peer.getUser().getUsername());
requestedFileOwners.get(username).add(peer.getUser().getCountDownloads());
requestedFileOwners.get(username).add(peer.getUser().getCountFailures());
requestedFileOwners.get(username).add(peer.getUser().getFile(filename));
} else {
tracker.logoutPeer(peer.getTokenId());
}
break;
}
}
}
}
}
// Notify the peer about the status of the requested file
output.writeBoolean(found);
output.flush();
// Send the information about the requested files and it's peers
if (found) {
output.writeObject(requestedFileOwners);
output.flush();
System.out.println("Tracker: Sent details for file " + filename + ".");
} else {
System.out.println("Tracker: No such file: " + filename + ".");
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
private boolean checkActive(LoggedInPeer otherPeer) {
try {
// Connect with the otherPeer
Socket otherSocket = new Socket(otherPeer.getIpAddress(), otherPeer.getPort());
ObjectOutputStream otherOutput = new ObjectOutputStream(otherSocket.getOutputStream());
ObjectInputStream otherInput = new ObjectInputStream(otherSocket.getInputStream());
// Send "checkActive"
otherOutput.writeUTF("checkActive");
otherOutput.flush();
// Wait for response
boolean response = otherInput.readBoolean();
// Close the connection
otherOutput.close();
otherInput.close();
otherSocket.close();
if (response) {
System.out.println("Tracker: Peer at " + otherPeer.getIpAddress() + ":" + String.valueOf(otherPeer.getPort()) + " is active.");
return true;
}
return false;
} catch (ConnectException e) {
System.out.println("Tracker: Peer at " + otherPeer.getIpAddress() + ":" + String.valueOf(otherPeer.getPort()) + " is not active.");
return false;
} catch (IOException ioe) {
ioe.printStackTrace();
return false;
}
}
private void handleNotifyDownload() {
try {
// Get the success and the username
boolean success = input.readBoolean();
String username = input.readUTF();
// Update the saved peer
for (SavedPeer peer : tracker.getSavedPeers()) {
if (peer.getUsername().equals(username)) {
if (success) {
peer.incrementCountDownloads();
System.out.println("Tracker: Got notified for a download success for peer " + username + ".");
} else {
peer.incrementCountFailures();
System.out.println("Tracker: Got notified for a download failure for peer " + username + ".");
}
break;
}
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
private void replyAssemble() {
try {
// Receive the filename
String filename = input.readUTF();
// Find the pieces for the given filename
ArrayList<String> pieces = null;
for (String username : tracker.getPeerFiles().keySet()) {
for (SavedFile file : tracker.getPeerFiles().get(username)) {
if (filename.equals(file.getFilename()) && file.getSeeder()) {
pieces = file.getPieces();
break;
}
}
}
// Send the pieces
output.writeObject(pieces);
output.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}