-
Notifications
You must be signed in to change notification settings - Fork 8
/
Server.java
420 lines (288 loc) · 10.3 KB
/
Server.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
import java.io.File;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.net.Socket;
import java.util.ArrayList;
import java.net.ServerSocket;
/*
* A chat server that delivers public and private messages and files.
*/
public class Server {
// The server socket.
private static ServerSocket serverSocket = null;
// The client socket.
private static Socket clientSocket = null;
public static ArrayList<clientThread> clients = new ArrayList<clientThread>();
public static void main(String args[]) {
// The default port number.
int portNumber = 1234;
if (args.length < 1)
{
System.out.println("No port specified by user.\nServer is running using default port number=" + portNumber);
}
else
{
portNumber = Integer.valueOf(args[0]).intValue();
System.out.println("Server is running using specified port number=" + portNumber);
}
/*
* Open a server socket on the portNumber (default 1234).
*/
try {
serverSocket = new ServerSocket(portNumber);
} catch (IOException e) {
System.out.println("Server Socket cannot be created");
}
/*
* Create a client socket for each connection and pass it to a new client
* thread.
*/
int clientNum = 1;
while (true) {
try {
clientSocket = serverSocket.accept();
clientThread curr_client = new clientThread(clientSocket, clients);
clients.add(curr_client);
curr_client.start();
System.out.println("Client " + clientNum + " is connected!");
clientNum++;
} catch (IOException e) {
System.out.println("Client could not be connected");
}
}
}
}
/*
* This client thread class handles individual clients in their respective threads
* by opening a separate input and output streams.
*/
class clientThread extends Thread {
private String clientName = null;
private ObjectInputStream is = null;
private ObjectOutputStream os = null;
private Socket clientSocket = null;
private final ArrayList<clientThread> clients;
public clientThread(Socket clientSocket, ArrayList<clientThread> clients) {
this.clientSocket = clientSocket;
this.clients = clients;
}
public void run() {
ArrayList<clientThread> clients = this.clients;
try {
/*
* Create input and output streams for this client.
*/
is = new ObjectInputStream(clientSocket.getInputStream());
os = new ObjectOutputStream(clientSocket.getOutputStream());
String name;
while (true) {
synchronized(this)
{
this.os.writeObject("Please enter your name :");
this.os.flush();
name = ((String) this.is.readObject()).trim();
if ((name.indexOf('@') == -1) || (name.indexOf('!') == -1)) {
break;
} else {
this.os.writeObject("Username should not contain '@' or '!' characters.");
this.os.flush();
}
}
}
/* Welcome the new the client. */
System.out.println("Client Name is " + name);
this.os.writeObject("*** Welcome " + name + " to our chat room ***\nEnter /quit to leave the chat room");
this.os.flush();
this.os.writeObject("Directory Created");
this.os.flush();
synchronized(this)
{
for (clientThread curr_client : clients)
{
if (curr_client != null && curr_client == this) {
clientName = "@" + name;
break;
}
}
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this) {
curr_client.os.writeObject(name + " has joined");
curr_client.os.flush();
}
}
}
/* Start the conversation. */
while (true) {
this.os.writeObject("Please Enter command:");
this.os.flush();
String line = (String) is.readObject();
if (line.startsWith("/quit")) {
break;
}
/* If the message is private sent it to the given client. */
if (line.startsWith("@")) {
unicast(line,name);
}
/* If the message is blocked from a given client. */
else if(line.startsWith("!"))
{
blockcast(line,name);
}
else
{
broadcast(line,name);
}
}
/* Terminate the Session for a particluar user */
this.os.writeObject("*** Bye " + name + " ***");
this.os.flush();
System.out.println(name + " disconnected.");
clients.remove(this);
synchronized(this) {
if (!clients.isEmpty()) {
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this && curr_client.clientName != null) {
curr_client.os.writeObject("*** The user " + name + " disconnected ***");
curr_client.os.flush();
}
}
}
}
this.is.close();
this.os.close();
clientSocket.close();
} catch (IOException e) {
System.out.println("User Session terminated");
} catch (ClassNotFoundException e) {
System.out.println("Class Not Found");
}
}
/**** This function transfers message or files to all the client except a particular client connected to the server ***/
void blockcast(String line, String name) throws IOException, ClassNotFoundException {
String[] words = line.split(":", 2);
/* Transferring a File to all the clients except a particular client */
if (words[1].split(" ")[0].toLowerCase().equals("sendfile"))
{
byte[] file_data = (byte[]) is.readObject();
synchronized(this) {
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this && curr_client.clientName != null
&& !curr_client.clientName.equals("@"+words[0].substring(1)))
{
curr_client.os.writeObject("Sending_File:"+words[1].split(" ",2)[1].substring(words[1].split("\\s",2)[1].lastIndexOf(File.separator)+1));
curr_client.os.writeObject(file_data);
curr_client.os.flush();
}
}
/* Echo this message to let the user know the blocked file was sent.*/
this.os.writeObject(">>Blockcast File sent to everyone except "+words[0].substring(1));
this.os.flush();
System.out.println("File sent by "+ this.clientName.substring(1) + " to everyone except " + words[0].substring(1));
}
}
/* Transferring a message to all the clients except a particular client */
else
{
if (words.length > 1 && words[1] != null) {
words[1] = words[1].trim();
if (!words[1].isEmpty()) {
synchronized (this){
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this && curr_client.clientName != null
&& !curr_client.clientName.equals("@"+words[0].substring(1))) {
curr_client.os.writeObject("<" + name + "> " + words[1]);
curr_client.os.flush();
}
}
/* Echo this message to let the user know the blocked message was sent.*/
this.os.writeObject(">>Blockcast message sent to everyone except "+words[0].substring(1));
this.os.flush();
System.out.println("Message sent by "+ this.clientName.substring(1) + " to everyone except " + words[0].substring(1));
}
}
}
}
}
/**** This function transfers message or files to all the client connected to the server ***/
void broadcast(String line, String name) throws IOException, ClassNotFoundException {
/* Transferring a File to all the clients */
if (line.split("\\s")[0].toLowerCase().equals("sendfile"))
{
byte[] file_data = (byte[]) is.readObject();
synchronized(this){
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client.clientName != null && curr_client.clientName!=this.clientName)
{
curr_client.os.writeObject("Sending_File:"+line.split("\\s",2)[1].substring(line.split("\\s",2)[1].lastIndexOf(File.separator)+1));
curr_client.os.writeObject(file_data);
curr_client.os.flush();
}
}
this.os.writeObject("Broadcast file sent successfully");
this.os.flush();
System.out.println("Broadcast file sent by " + this.clientName.substring(1));
}
}
else
{
/* Transferring a message to all the clients */
synchronized(this){
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client.clientName != null && curr_client.clientName!=this.clientName)
{
curr_client.os.writeObject("<" + name + "> " + line);
curr_client.os.flush();
}
}
this.os.writeObject("Broadcast message sent successfully.");
this.os.flush();
System.out.println("Broadcast message sent by " + this.clientName.substring(1));
}
}
}
/**** This function transfers message or files to a particular client connected to the server ***/
void unicast(String line, String name) throws IOException, ClassNotFoundException {
String[] words = line.split(":", 2);
/* Transferring File to a particular client */
if (words[1].split(" ")[0].toLowerCase().equals("sendfile"))
{
byte[] file_data = (byte[]) is.readObject();
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this && curr_client.clientName != null
&& curr_client.clientName.equals(words[0]))
{
curr_client.os.writeObject("Sending_File:"+words[1].split(" ",2)[1].substring(words[1].split("\\s",2)[1].lastIndexOf(File.separator)+1));
curr_client.os.writeObject(file_data);
curr_client.os.flush();
System.out.println(this.clientName.substring(1) + " transferred a private file to client "+ curr_client.clientName.substring(1));
/* Echo this message to let the sender know the private message was sent.*/
this.os.writeObject("Private File sent to " + curr_client.clientName.substring(1));
this.os.flush();
break;
}
}
}
/* Transferring message to a particular client */
else
{
if (words.length > 1 && words[1] != null) {
words[1] = words[1].trim();
if (!words[1].isEmpty()) {
for (clientThread curr_client : clients) {
if (curr_client != null && curr_client != this && curr_client.clientName != null
&& curr_client.clientName.equals(words[0])) {
curr_client.os.writeObject("<" + name + "> " + words[1]);
curr_client.os.flush();
System.out.println(this.clientName.substring(1) + " transferred a private message to client "+ curr_client.clientName.substring(1));
/* Echo this message to let the sender know the private message was sent.*/
this.os.writeObject("Private Message sent to " + curr_client.clientName.substring(1));
this.os.flush();
break;
}
}
}
}
}
}
}