-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeer.java
436 lines (373 loc) · 12 KB
/
Peer.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.Socket;
import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
public class Peer extends Thread{
public boolean reqCheck;
public int currIndex=-1;
private String ID;
private String ipAdd;
private int port;
private Socket skt;
private boolean chock,aChock;
private boolean interest,aInterest;
private Torrent torrent;
private boolean is_run , is_connect;
public Queue <AbstractMessage.Request> pendingReqs = new LinkedList<AbstractMessage.Request>();
private DataOutputStream send_out;
private boolean[] pStatus; // keep track of the pieces
private SendOutThread outThread;
private int pieceCount;
//Own peer
public Peer(String ID, String ipadd, int port, int no_pieces,int status,Torrent torrent){
this.ID=ID;
this.ipAdd=ipadd;
this.port=port;
this.torrent=torrent;
this.pStatus = new boolean[no_pieces];
for(int i=0;i<this.pStatus.length;i++){
if(status==1){
this.pStatus[i]=true;
}
else{
this.pStatus[i]=false;
}
}
chock = aChock = true;
interest = aInterest = is_connect = false;
this.pieceCount=0;
}
//for the other connecting peers
public Peer(Socket sk , Torrent torrent){
this.skt= sk;
this.torrent = torrent;
this.pStatus = new boolean [torrent.getpieceNUM()];
is_connect = true;
ID = null;
chock = aChock = true;
interest = aInterest = false;
this.pieceCount=0;
try{
DataOutputStream dOut= new DataOutputStream(skt.getOutputStream());
this.outThread = new SendOutThread(dOut, this);
this.outThread.start();
}
catch (IOException e){
System.exit(1);
}
}
public String getPeerId(){
return this.ID;
}
public void connect_peer() {
try {
skt = new Socket(this.ipAdd, this.port);
this.send_out = new DataOutputStream(this.skt.getOutputStream());
outThread = new SendOutThread(send_out, this);
outThread.start();
this.is_run = true;
is_connect = true;
} catch (IOException e) {
torrent.removePeer(this);
}
}
public void disconnect_Peer() {
if (is_connect) {
this.is_run = false;
this.is_connect = false;
//this.pouthread.shutdown();
if(torrent.is_Running)
torrent.removePeer(this);
try{
this.skt.close();
} catch (IOException e) {
}
}
}
@Override
public void run(){
boolean bitfieldCheck = true; // we need to check if bitfield is first message
try{
this.skt.setSoTimeout(120000); // to block to input stream
}
catch(SocketException e){
}
while (is_run){
try {
final AbstractMessage recvMessage = AbstractMessage.decodeMessage(new DataInputStream(this.skt.getInputStream()));
if(recvMessage == null){
disconnect_Peer();
}
switch(recvMessage.getID()){
case AbstractMessage.chokeid:
this.chock=true;
break;
case AbstractMessage.unchokeid:
this.chock=false;
if(reqCheck){
reqNext();
}
break;
case AbstractMessage.interestedid:
setInterested(true);
setMeChok(false);
sendUnchokeMessage();
break;
case AbstractMessage.notinterestedid:
setInterested(false);
break;
case AbstractMessage.haveid:
this.pStatus[((AbstractMessage.Have)recvMessage).getIndex()]=true;
pieceCount++;
break;
case AbstractMessage.bitfieldid:
if(bitfieldCheck){setCompletedFromBitfield(((AbstractMessage.BitField)recvMessage).getBitField());}
else{disconnect_Peer();}
break;
case AbstractMessage.requestid:
AbstractMessage.Request req = (AbstractMessage.Request)recvMessage;
if(!aChock){
//torrent to get request received
torrent.request_Receiv_ed(req, this);
}
break;
case AbstractMessage.pieceid:
AbstractMessage.Piece piece = (AbstractMessage.Piece)recvMessage;
torrent.pieceReceived(piece,this);
break;
case AbstractMessage.keepaliveid:break;
default:
}
bitfieldCheck=false;
} catch (SocketTimeoutException e) {
disconnect_Peer();
}
catch(EOFException e){
if (currIndex != -1) {
torrent.rerequest(currIndex);
}
disconnect_Peer();
}
catch (IOException e) {
if (!is_run)
return;
if (currIndex != -1) {
torrent.rerequest(currIndex);
}
disconnect_Peer();
}
if ((torrent.getDoneNUM() == torrent.getpieceNUM()) && (pieceCount == torrent.getpieceNUM())) {
disconnect_Peer();
}
}
}
private ByteBuffer buildHandshakeMessage(String localPeerID) {
byte[] handshake = new byte[32];
try {
byte[] head = CommonResource.handshakeHead.getBytes("ASCII");
System.arraycopy(head, 0, handshake, 0, head.length);
Arrays.fill(handshake, 18, 28, (byte)0);
System.arraycopy(localPeerID.getBytes("ASCII"), 0, handshake, 28, localPeerID.length());
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
System.exit(1);
}
return ByteBuffer.wrap(handshake);
}
private void sendHandshake(String localPeerID) {
try {
ByteBuffer handshake = buildHandshakeMessage(localPeerID);
if(!is_connect) {
this.connect_peer();
}
DataOutputStream sendOut = new DataOutputStream(skt.getOutputStream());
sendOut.write(handshake.array());
sendOut.flush();
} catch(IOException e) {
e.printStackTrace();
}
}
private boolean verifyHandshake() {
try {
DataInputStream serverIn = new DataInputStream(skt.getInputStream());
byte[] response = new byte[32];
skt.setSoTimeout(500);
skt.setSoTimeout(0);
if (Arrays.equals(CommonResource.handshakeHead.getBytes(Charset.forName("UTF-8")), Arrays.copyOfRange(response, 0, 17)))
if (Arrays.equals(ID.getBytes("ASCII"), Arrays.copyOfRange(response, 28, 31)))
return true;
} catch (SocketTimeoutException e) {
disconnect_Peer();
return false;
} catch (IOException e) {
disconnect_Peer();
e.printStackTrace();
}
return false;
}
public boolean startHandshake(String localPeerID) {
sendHandshake(localPeerID);
return verifyHandshake();
}
private boolean initPeerFromHandshake() throws IOException {
DataInputStream serverIn = new DataInputStream(skt.getInputStream());
byte head[] = new byte[18];
serverIn.readFully(head);
if (Arrays.equals(CommonResource.handshakeHead.getBytes(Charset.forName("UTF-8")), head)) {
byte zeroBytes[] = new byte[10];
serverIn.readFully(zeroBytes);
byte peerid[] = new byte[4];
serverIn.readFully(peerid);
ID = new String(peerid, "ASCII");
return true;
}
return false;
}
public boolean answer_Handshake(String localPeerID) {
try {
if(initPeerFromHandshake()) {
sendHandshake(localPeerID);
return true;
}
} catch(IOException e) {
e.printStackTrace();
}
return false;
}
private LinkedList<AbstractMessage> getOutQueue(){
return this.outThread.getOutQueue();
}
public String getipAddress() {
return this.ipAdd;
}
public int getPort() {
return this.port;
}
public Socket getSocket() {
return skt;
}
public synchronized boolean Choking() { // Current peer chocking
return chock;
}
public synchronized boolean aChoking() { // I am chocking
return aChock;
}
public synchronized boolean Interested() {
return interest;
}
public synchronized boolean aInterested() {
return aInterest;
}
public synchronized void setInterested(boolean interest) {
this.interest = interest;
}
public synchronized void setMeChok(boolean aChock) {
this.aChock = aChock;
}
public synchronized void setMeInterested(boolean aInterested) {
this.aInterest = aInterested;
}
public boolean is_Connected() {
return is_connect;
}
public boolean is_Running() {
return this.is_run;
}
public boolean[] getPieceStatus() {
return pStatus;
}
private boolean isSet(byte[] bitfield, int bit) {
int index = bit / 8;
byte b = bitfield[index];
return (b >> (7 - bit) & 1) == 1;
}
public void setCompletedFromBitfield(byte[] bitfield) {
for (int x = 0; x < pStatus.length; x++) {
if (isSet(bitfield, x)) {
pStatus[x] = true;
pieceCount++;
}
}
}
public void setCompletedByIndex(int pieceIndex) {
pStatus[pieceIndex] = true;
}
public synchronized void sendChokeMessage() throws IOException{
AbstractMessage.encodeMessage(AbstractMessage.choke, send_out);
}
public synchronized void sendUnchokeMessage(){
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addLast(AbstractMessage.unchoke);
outQueue.notifyAll();
}
}
public void sendInterested(){
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addLast(AbstractMessage.interested);
outQueue.notifyAll();
}
}
public synchronized void sendUninterestedMessage(){
AbstractMessage.encodeMessage(AbstractMessage.notinterested, send_out);
}
public synchronized void sendBitField(byte[] bitfield) throws IOException{
AbstractMessage.encodeMessage(new AbstractMessage.BitField(bitfield), send_out);
}
public synchronized void sendRequestMessage(int index) throws IOException{
synchronized (pendingReqs) {
pendingReqs.offer(new AbstractMessage.Request(index));
}
}
public synchronized void reqNext(){
synchronized (pendingReqs) {
if(!pendingReqs.isEmpty()){
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addFirst(pendingReqs.peek());
outQueue.notifyAll();
}
}
}
}
public synchronized void sendKeepMess() throws IOException{
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addLast(AbstractMessage.keepalive);
outQueue.notifyAll();
}
}
public void sendRequestToOut(){
synchronized (pendingReqs) {
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addFirst(pendingReqs.peek());
outQueue.notifyAll();
}
}
}
public synchronized void sendHaveMessage(int index){
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addLast(new AbstractMessage.Have(index));
outQueue.notifyAll();
}
}
public synchronized void sendPiece(AbstractMessage.Piece index){
LinkedList<AbstractMessage> outQueue = getOutQueue();
synchronized (outQueue) {
outQueue.addLast(index);
outQueue.notifyAll();
}
}
}