-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReceiver.java
63 lines (52 loc) · 1.79 KB
/
Receiver.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
import java.net.*;
import java.util.ArrayList;
public class Receiver {
private final static int FIX_PORT = Sender.PORT;
private static Object recvObj;
public static void main(String... args) throws Exception {
// check argument number
if (args.length < 3) {
System.out.println("Usage: java Receiver <protocol selector> <window size> <ack percent>"); //make documentation
return;
}
// get input arguments
int protocolType = Integer.parseInt(args[0]);
int windowSize = Integer.parseInt(args[1]);
int percent = Integer.parseInt(args[2]);
DatagramSocket socket;
while(true) {
try {
socket = new DatagramSocket(FIX_PORT);
break;
} catch (SocketException e) {
e.printStackTrace(System.out);
return;
}
}
// use appropriate protocol type to receive
if (protocolType == 0) {
System.out.println("GBN protocol");
GBNReceiver receiver = new GBNReceiver(socket,percent);
receiver.start();
recvObj = receiver;
} else if (protocolType == 1) {
System.out.println("SR protocol");
SRReceiver receiver = new SRReceiver(socket,windowSize,percent);
receiver.start();
recvObj = receiver;
} else {
throw new Exception("invalid protocol type");
}
}
public static final ArrayList<byte[]> getData(){
if(recvObj == null) {
return null;
}
if(recvObj instanceof GBNReceiver) {
return ((GBNReceiver) recvObj).data;
} else if(recvObj instanceof SRReceiver) {
return ((SRReceiver) recvObj).data;
}
return null;
}
}