blob: de1fc66859c838b2a8c3ae346e7d7cdf1cee81fe (
plain)
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
|
package com.lumaserv.bgp;
import com.lumaserv.bgp.protocol.BGPPacket;
import com.lumaserv.bgp.protocol.message.BGPUpdate;
import lombok.Getter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
public class BGPSession implements Runnable {
@Getter
final BGPSessionConfiguration configuration;
final InputStream inputStream;
final OutputStream outputStream;
public BGPSession(Socket socket, BGPSessionConfiguration configuration) throws IOException {
this.configuration = configuration;
this.inputStream = socket.getInputStream();
this.outputStream = socket.getOutputStream();
}
public void keepAlive() {
try {
outputStream.write(new BGPPacket().setType(BGPPacket.Type.KEEPALIVE).setMessage(new byte[0]).build());
} catch (IOException e) {
e.printStackTrace();
}
}
private void handle(BGPPacket packet) {
switch (packet.getType()) {
case KEEPALIVE:
keepAlive();
break;
case UPDATE: {
configuration.getListener().onUpdate(this, new BGPUpdate(packet.getMessage()));
break;
}
}
}
public void run() {
try {
while (true)
handle(BGPPacket.read(inputStream));
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
|