-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerListener.java
79 lines (69 loc) · 2.45 KB
/
ServerListener.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
package servers;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import java.util.concurrent.LinkedBlockingQueue;
public class ServerListener implements Runnable
{
private ServerSocket serverSocket;
private int port;
private int backlog;
private boolean serverIsRunning;
private ArrayList<ClientConnection> clientConnectionList;
private LinkedBlockingQueue<String> clientMessageList;
public ServerListener(int port, int backlog,
ArrayList<ClientConnection> clientConnectionList,
LinkedBlockingQueue<String> clientMessageList)
{
this.port = port;
this.backlog = backlog;
this.clientConnectionList = clientConnectionList;
this.clientMessageList = clientMessageList;
}
@Override
public void run()
{
openServerSocket();
while (serverIsRunning)
connectClients();
closeServerSocket();
}
private void openServerSocket()
{
try {
serverSocket = new ServerSocket( port, backlog, InetAddress.getLocalHost() );
serverIsRunning = true;
}
catch (Exception e) {
System.out.println("ERROR: Couldn't open ServerSocket with: " +
"\nPort: " + String.valueOf(port) +
"\nBacklog" + String.valueOf(backlog) +
"\nIP Address: Local Host IP Address.\nThe program will now exit.");
e.printStackTrace();
System.exit(-1);
}
}
private void closeServerSocket() {
try {
serverSocket.close();
}
catch (Exception e) {
System.out.println("ERROR: Server's socket couldn't not be closed. It might still be in use.");
e.printStackTrace();
}
}
private void connectClients()
{
System.out.println("Waiting for a new connection...");
try {
Socket clientSocket = serverSocket.accept();
clientConnectionList.add( new ClientConnection(clientSocket, clientMessageList) );
System.out.println( "Started connection with client " + clientSocket.getLocalAddress() );
}
catch (Exception e) {
System.out.println("ERROR: Server couldn't accept a client.");
e.printStackTrace();
}
}
}