-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerThread.java
427 lines (355 loc) · 14.4 KB
/
ServerThread.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
package chattingprogramming;
import java.io.*;
import java.net.*;
import java.text.SimpleDateFormat;
import java.util.*;
public class ServerThread extends Thread
{
private Socket st_sock;
private DataInputStream st_in;
private DataOutputStream st_out;
private StringBuffer st_buffer;
private static Hashtable<String,ServerThread> logonHash;
private static Vector<String> logonVector;
private static Hashtable<String,ServerThread> roomHash;
private static Vector<String> roomVector;
private static int isOpenRoom = 0;
private static final String SEPARATOR = "|";
private static final String DELIMETER = "`";
private static Date starttime;
public String st_ID;
private static final int REQ_LOGON = 1001;
private static final int REQ_ENTERROOM = 1011;
private static final int REQ_SENDWORDS = 1021;
private static final int REQ_LOGOUT = 1031;
private static final int REQ_QUITROOM = 1041;
private static final int REQ_EXIT = 1050;
private static final int REQ_EXITROOM = 1051;
private static final int REC_ROOMLIST = 2050;
private static final int REC_LOGONLIST = 2051;
private static final int REC__WHISPERMESSAGE = 3001;
private static final int REC_GAME = 3333;
private static final int YES_GAME = 3334;
private static final int NO_GAME = 3335;
private static final int YES_LOGON = 2001;
private static final int NO_LOGON = 2002;
private static final int YES_ENTERROOM = 2011;
private static final int NO_ENTERROOM = 2012;
private static final int MDY_USERIDS = 2013;
private static final int YES_SENDWORDS = 2021;
private static final int NO_SENDWORDS = 2022;
private static final int YES_LOGOUT = 2031;
private static final int NO_LOGOUT = 2032;
private static final int YES_QUITROOM = 2041;
private static final int roomstate = 2050;
private static final int YES_EXIT = 2060;
private static final int NO_EXIT = 20601;
private static final int YES_WHISPERMESSAGE = 2070;
private static final int NO_WHISPERMESSAGE = 2071;
private static final int MSG_ALREADYUSER = 3001;
private static final int MSG_SERVERFULL = 3002;
private static final int MSG_CANNOTOPEN = 3011;
static{
logonHash = new Hashtable<String,ServerThread>(ChatServer.cs_maxclient);
logonVector = new Vector<String>(ChatServer.cs_maxclient);
roomHash = new Hashtable<String,ServerThread>(ChatServer.cs_maxclient);
roomVector = new Vector<String>(ChatServer.cs_maxclient);
}
public ServerThread(Socket sock){
try{
st_sock = sock;
st_in = new DataInputStream(sock.getInputStream());
st_out = new DataOutputStream(sock.getOutputStream());
st_buffer = new StringBuffer(2048);
}catch(IOException e){
System.out.println(e);
}
}
public void run(){
try{
while(true){
String recvData = st_in.readUTF();
StringTokenizer st = new StringTokenizer(recvData, SEPARATOR);
int command = Integer.parseInt(st.nextToken());
switch(command){
case REQ_LOGON:{
int result;
String id = st.nextToken();
result = addUser(id, this);
st_buffer.setLength(0);
if(result ==0){
starttime = new Date();
String time = starttime.toString();
st_buffer.append(YES_LOGON);
st_buffer.append(SEPARATOR);
st_buffer.append(time);
st_buffer.append(SEPARATOR);
st_buffer.append(id);
st_buffer.append(SEPARATOR);
send(st_buffer.toString());
st_buffer.setLength(0);
st_buffer.append(REC_LOGONLIST);
st_buffer.append(SEPARATOR);
String userIDs = getUsers();
st_buffer.append(userIDs);
logonbroadcast(st_buffer.toString());
}else{
st_buffer.append(NO_LOGON);
st_buffer.append(SEPARATOR);
st_buffer.append(result);
send(st_buffer.toString());
}
break;
}
case REQ_ENTERROOM:{
st_buffer.setLength(0);
String id = st.nextToken();
if(checkUserID(id) == null){
st_buffer.append(NO_ENTERROOM);
st_buffer.append(SEPARATOR);
st_buffer.append(MSG_CANNOTOPEN);
send(st_buffer.toString());
break;
}
roomVector.addElement(id);
roomHash.put(id, this);
st_buffer.append(YES_ENTERROOM);
send(st_buffer.toString());
st_buffer.setLength(0);
st_buffer.append(MDY_USERIDS);
st_buffer.append(SEPARATOR);
String userIDs2 = getRoomUsers();
st_buffer.append(userIDs2);
roombroadcast(st_buffer.toString());
st_buffer.setLength(0);
st_buffer.append(roomstate);
st_buffer.append(SEPARATOR);
String message = ">>"+id+"님 입장했습니다.\r\n";
st_buffer.append(message);
roombroadcast(st_buffer.toString());
break;
}
case REQ_QUITROOM:{
String id = st.nextToken();
id.replaceAll(" ", "");
System.out.println("quit id="+id);
roomHash.remove(id);
roomVector.remove(id);
ServerThread s = logonHash.get(id);
st_buffer.setLength(0);
st_buffer.append(YES_QUITROOM);
st_buffer.append(SEPARATOR);
if(!roomVector.isEmpty()) {
String userIDs = getRoomUsers();
st_buffer.append(userIDs);
roombroadcast(st_buffer.toString());
}else {
send(st_buffer.toString());
}
break;
}
case REC_GAME:{
st_buffer.setLength(0);
//String id = st.nextToken();
/*if(checkUserID(id) == null){
st_buffer.append(NO_GAME);
st_buffer.append(SEPARATOR);
st_buffer.append(MSG_CANNOTOPEN);
send(st_buffer.toString());
break;
}*/
//roomVector.addElement(id);
//roomHash.put(id, this);
st_buffer.append(YES_GAME);
send(st_buffer.toString());
/*st_buffer.setLength(0);
st_buffer.append(MDY_USERIDS);
st_buffer.append(SEPARATOR);
String userIDs2 = getRoomUsers();
st_buffer.append(userIDs2);
roombroadcast(st_buffer.toString());
st_buffer.setLength(0);
st_buffer.append(roomstate);
st_buffer.append(SEPARATOR);
String message = ">>"+id+"님 입장했습니다.\r\n";
st_buffer.append(message);
roombroadcast(st_buffer.toString());
break;*/
}
case REQ_SENDWORDS:{
st_buffer.setLength(0);
st_buffer.append(YES_SENDWORDS);
st_buffer.append(SEPARATOR);
String id = st.nextToken();
st_buffer.append(id);
st_buffer.append(SEPARATOR);
try{
String data = st.nextToken();
st_buffer.append(data);
}catch(NoSuchElementException e){}
roombroadcast(st_buffer.toString());
break;
}
case REQ_LOGOUT:{
String id = st.nextToken();
id.replaceAll(" ", "");
System.out.println("logout ID="+id);
ServerThread thread = (ServerThread)logonHash.get(id);
logonVector.remove(id);
logonHash.remove(id);
if(logonVector.contains(id)||logonHash.containsKey(id)) {
System.out.println("logout not normal...");
}else {
if(!logonVector.isEmpty()) {
st_buffer.setLength(0);
st_buffer.append(REC_LOGONLIST);
st_buffer.append(SEPARATOR);
String logongroup = getUsers();
st_buffer.append(logongroup);
send(st_buffer.toString());
logonbroadcast(st_buffer.toString());
}
st_buffer.setLength(0);
st_buffer.append(YES_LOGOUT);
st_buffer.append(SEPARATOR);
send(st_buffer.toString());
}
break;
}
case REC__WHISPERMESSAGE:{
String userid = st.nextToken();
String whisperid = st.nextToken();
if(userid.equals(whisperid)) {
String errormessage = "Error.";
st_buffer.setLength(0);
st_buffer.append(NO_WHISPERMESSAGE);
st_buffer.append(SEPARATOR);
st_buffer.append(errormessage);
send(st_buffer.toString());
}
else {
String message = st.nextToken();
message = userid + " -> " +whisperid+ ":" +message +"\r\n";
ServerThread client;
client = (ServerThread) roomHash.get(whisperid);
st_buffer.setLength(0);
st_buffer.append(YES_WHISPERMESSAGE);//
st_buffer.append(SEPARATOR);
st_buffer.append(message);
client.send(st_buffer.toString());
}
break;
}
case REQ_EXIT:{
st_buffer.setLength(0);
st_buffer.append(YES_EXIT);
st_buffer.append(SEPARATOR);
send(st_buffer.toString());
release();
break;
}
case REQ_EXITROOM:{
String id = st.nextToken();
roomHash.remove(id);//룸
roomVector.remove(id);
logonHash.remove(id);
logonVector.remove(id);
st_buffer.setLength(0);
st_buffer.append(REC_LOGONLIST);
st_buffer.append(SEPARATOR);
String userIDs = getUsers();
st_buffer.append(userIDs);
logonbroadcast(st_buffer.toString());
st_buffer.setLength(0);
st_buffer.append(MDY_USERIDS);
st_buffer.append(SEPARATOR);
String userIDs2 = getRoomUsers();
st_buffer.append(userIDs2);
roombroadcast(st_buffer.toString());
break;
}
}
Thread.sleep(100);
}
}catch(NullPointerException e){
}catch(InterruptedException e){
}catch(IOException e){
}
}
public void release(){
}
private static synchronized int addUser(String id, ServerThread client){
if(checkUserID(id) != null){
return MSG_ALREADYUSER;
}
if(logonHash.size() >= ChatServer.cs_maxclient){
return MSG_SERVERFULL;
}
logonVector.addElement(id);
logonHash.put(id, client);
client.st_ID = id;
System.out.println("logon complete\n");
return 0;
}
private static ServerThread checkUserID(String id){
ServerThread alreadyClient = null;
alreadyClient = (ServerThread) logonHash.get(id);
return alreadyClient;
}
// 로그온에 참여한 사용자 ID를 구한다.
private String getUsers(){
StringBuffer id = new StringBuffer();
String ids;
Enumeration<String> enu = logonVector.elements();
while(enu.hasMoreElements()){
id.append(enu.nextElement());
id.append(DELIMETER);
}
try{
ids = new String(id);
ids = ids.substring(0, ids.length()-1);
}catch(StringIndexOutOfBoundsException e){
return "";
}
return ids;
}
private String getRoomUsers(){
StringBuffer id = new StringBuffer();
String ids;
Enumeration<String> enu = roomVector.elements();
while(enu.hasMoreElements()){
id.append(enu.nextElement());
id.append(DELIMETER);
}
try{
ids = new String(id);
ids = ids.substring(0, ids.length()-1);
}catch(StringIndexOutOfBoundsException e){
return "";
}
return ids;
}
public synchronized void roombroadcast(String sendData) throws IOException{
ServerThread client;
Enumeration<String> enu = roomVector.elements();
while(enu.hasMoreElements()){
client = (ServerThread) roomHash.get(enu.nextElement());
client.send(sendData);
}
}
public synchronized void logonbroadcast(String sendData) throws IOException{
ServerThread client;
Enumeration<String> enu = logonVector.elements();
while(enu.hasMoreElements()){
client = (ServerThread) logonHash.get(enu.nextElement());
client.send(sendData);
}
}
// 데이터를 전송한다.
public void send(String sendData) throws IOException{
synchronized(st_out){
st_out.writeUTF(sendData);
st_out.flush();
}
}
}