-
Notifications
You must be signed in to change notification settings - Fork 0
/
LibTcpSocket.js
357 lines (330 loc) · 14.4 KB
/
LibTcpSocket.js
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
/**
* @file : SocketProcess.js
* @date : 2013. 5. 6
* @version : 0.5
* @author : "Ko Bongjin"<kbjin86#gmail.com>
* @copyright KT. All right reserved.
* @brief : ClientSocket 를 발전시켜 Client/Server 공희 TCP Socket 처리를 담당하는 모듈
*/
//======================================================================================================================
var kLib = require('./LibCommon');
var net = require('net');
//======================================================================================================================
var ClientList = [];
var MaxConnect = 1;
var RecvEvent = null;
//======================================================================================================================
function CreateSocket(take_id, json_obj, nn) {
if(nn<0) nn = GetSocketIndex(null,null);
if(nn<0) {
kLib.clog('TakeSocket() no room ...');
// create socket , manage ...
ConnectServerExec(2);
nn = GetSocketIndex(null,null);
if(nn<0) {
return(-1);
}
}
ClientList[nn].take_id = take_id;
ClientList[nn].json_obj = json_obj;
ClientList[nn].val = 1;
kLib.log('.. CreateSocket() idx:'+nn+', take_id:'+take_id);
return(nn);
}
//==============================================================================
function ReleaseSocket() {
// 적당히 세션 정리를 하자 ...
}
//==============================================================================
function RemoveSocket(take_id, json_obj, nn) {
if(nn<0) {
// 이상한 일이 벌어진거지 ..
kLib.clog('RemoveSocket() not found socket ...');
return(-1);
}
ClientList[nn].take_id = null;
ClientList[nn].json_obj = null;
ClientList[nn].val = 0;
kLib.log('.. RemoveSocket() idx:'+nn+', take_id:'+take_id);
ReleaseSocket();
return(nn);
}
//======================================================================================================================
//======================================================================================================================
exports.TakeSocket = function (take_id, json_obj, on_off) {
var nn = GetSocketIndex(null,take_id);
kLib.flog('==>> TakeSocket() idx:'+nn+', take_id:'+take_id+', on_off:'+on_off);
if(on_off)
return CreateSocket(take_id,json_obj,nn);
return RemoveSocket(take_id,json_obj,nn);
};
//==============================================================================
function GetTakeDataExec(socket,take_id) {
var ii = GetSocketIndex(socket,take_id);
kLib.flog('==>> GetTakeData() idx:'+ii+', take_id:'+take_id);
if(ii<0) {
kLib.clog('GetTakeData() no socket ...');
return(null);
}
return ClientList[ii].json_obj;
};
//==============================================================================
exports.GetTakeData = function (socket,take_id) {
return GetTakeDataExec(socket,take_id);
};
//======================================================================================================================
//======================================================================================================================
var ServerList = [];
function GetServerSocketExec(remote_addr) {
for(var i in ServerList) {
if(ServerList[i].remoteAddress == remote_addr) return(i);
}
kLib.clog('GetServerSocketExec('+remote_addr+') not found');
return(-1);
}
//==============================================================================
exports.GetServerSocket = function (id) {
var idx = GetServerSocketExec(id);
if(idx<0) return(null);
return(ServerList[idx]);
}
//==============================================================================
exports.GetSocketCount = function (a) {
return(ClientList.length);
};
//======================================================================================================================
function SizeString(num) {
var form = "00000";
var str_num = num.toString();
var num_len = str_num.length;
var form_len = form.length;
var result = str_num;
if(form_len > num_len)
result = form.substring(0,form_len-num_len) + str_num;
// kLib.log("form["+form+"] num["+str_num+"] "+form_len+"/"+num_len+" -> ["+result+"]");
return "size:"+result;
}
//======================================================================================================================
//======================================================================================================================
function SendTcpSocketExec(socket, send_data) {
var buff = send_data;
if(typeof send_data == 'object') {
buff = JSON.stringify(send_data);
buff = SizeString(buff.length) + buff;
}
var res = socket.write(buff);
kLib.log('socket write() buff:'+buff);
kLib.log('socket write() buff:'+buff.length +'/ res = '+ res +", write : "+ socket.bytesWritten);
return res;
}
exports.SendTcpSocket = function (socket, data) {
return SendTcpSocketExec(socket, data);
}
exports.SendTcpAllSocket = function (send_data) {
var buff = send_data;
if(typeof send_data == 'object') {
buff = JSON.stringify(send_data);
buff = SizeString(buff.length) + buff;
}
for(var i in ServerList) {
var res = ServerList[i].write(buff);
kLib.clog('SendTcpAllSocket('+ServerList[i].remote_addr+') res : '+res);
}
}
//======================================================================================================================
exports.SendTcpTakeSocket = function (take_id, keep_obj, send_data) {
// console.log('take_id : '+ typeof take_id+' ------------------------- ');
// console.log(take_id);
// console.log('keep_obj : '+ typeof keep_obj+' -------------------------');
// console.log(keep_obj);
if(typeof take_id=="object" && typeof keep_obj=="undefined") {
keep_obj = take_id;
take_id = null;
// console.log('keep_obj : '+ typeof keep_obj+' -------------------------');
// console.log('take_id : '+ typeof take_id+' ------------------------- ');
}
var nn = GetSocketIndex(null,take_id);
kLib.log('SendServerExec() nn:'+nn+', take_id['+take_id+"] commend:"+keep_obj.header.commend);
if(nn<0) {
return(-1);
}
ClientList[nn].json_obj = keep_obj;
return SendTcpSocketExec(ClientList[nn].socket, send_data);
};
//======================================================================================================================
exports.SendToTcpServer = function (send_data) {
return SendTcpSocketExec(ClientList[0].socket, send_data);
};
//======================================================================================================================
//======================================================================================================================
function RecvEventTcpSocket(socket, data, recv_func) {
var recv_data = data.toString();
kLib.log('-->> recv_data['+recv_data.length+'] recv_10_byte['+recv_data.substring(0,10) + '], bytesRead : '+socket.bytesRead);
for(var i=0; recv_data.length>0; i++) {
var one_mesg = recv_data;
if (one_mesg.substring(0,5) == 'size:') {
var one_size = Number(one_mesg.substring(6,10));
one_mesg = recv_data.substring(10,one_size+10);
recv_data = recv_data.substring(10+one_size);
}
else recv_data = "";
var json_obj = null;
var json_type = (one_mesg.substring(0,10) == '{"header":');
if(json_type) {
json_obj = JSON.parse(one_mesg);
}
else {
// 일반소켓에서 메세지를 받는 경우
json_obj = GetTakeDataExec(socket,null);
if(json_obj)
json_obj.response = { code:200, data:one_mesg };
}
if(i>0) {
kLib.log('-------------------------------------------------------------------------');
kLib.log('recv_cnt['+i+'] recv_10_byte['+recv_data.substring(0,10) + '], bytesRead : '+socket.bytesRead);
kLib.log('one_mesg : '+one_mesg);
}
recv_func(socket, json_obj);
}
}
exports.RecvTcpSocket = function (socket, data, recv_func) {
RecvEventTcpSocket(socket, data, recv_func);
}
//======================================================================================================================
//======================================================================================================================
function ListenServerExec(ip,port,recv_func) {
var server = net.createServer(function(socket) {
ServerList.push(socket);
kLib.flog('>> new connection['+ServerList.length+"] "+ socket.remoteAddress+":"+socket.remotePort);
// console.log(socket);
socket.on('close', function() {
var idx = ServerList.indexOf(socket);
ServerList.splice(idx,1);
kLib.clog('-> close socket index::'+idx+'/'+ServerList.length);
});
socket.on('data', function(data) {
kLib.flog("==>> Server socket recv-msg ["+data.length+"] data_type:"+typeof data);
RecvEventTcpSocket(socket,data,recv_func);
});
}).listen(port);
}
exports.ListenServer = function (ip,port, recv_func) {
ListenServerExec(ip,port,recv_func);
}
//======================================================================================================================
/*
function ConnectTcpServer(ip,port,idx,recv_func) {
var socket = net.connect(port,ip, function() { //'connect' listener
AddClientList(socket, null, null,0);
console.log('client connected');
});
socket.on('data', function(data) {
kLib.flog("-->> Client socket recv-msg ["+data.length+"] data_type:"+typeof data);
RecvEventTcpSocket(socket,data,recv_func);
});
socket.on('end', function() {
console.log('client disconnected');
RemoveClientList(socket);
});
}
*/
exports.ConnectServer = function (ip_addr, port_no, conn_cnt, recv_func) {
// for(var i=0;i<conn_cnt;i++) {
// ConnectTcpServer(ip_addr, port_no, 0, recv_func);
// }
for(var i=0;i<conn_cnt;i++) {
ConnectServerExec(ip_addr, port_no, 0, recv_func);
}
}
//======================================================================================================================
//======================================================================================================================
var try_cnt = 0;
var recv_cnt = 0;
function ConnectServerExec(ip,port,idx, recv_func) {
try_cnt++;
var cur_conn_cnt = ClientList.length;
var connTxt = 'try '+try_cnt+' ('+idx+'/'+MaxConnect+') connect to '+ ip +':'+ port;
var socket = net.connect(port,ip);
socket.setEncoding('utf8');
// --------------------------------------------------------------------------------------------------
socket.on('error', function(err) {
if(try_cnt<5 || (try_cnt>300 && (try_cnt%300)==0))
kLib.clog('** ' + connTxt + ' error '+err.code + " "+err.message);
});
socket.on('close', function() {
RemoveClientList(socket);
setTimeout(ConnectServerExec(ip,port,idx,recv_func),1000);
});
// --------------------------------------------------------------------------------------------------
socket.on('connect', function() {
AddClientList(socket, null, null,0);
kLib.flog(connTxt + ' OK socket_count::' + ClientList.length + ','+socket.remoteUser);
});
// --------------------------------------------------------------------------------------------------
socket.on('data',function(data) {
kLib.flog('>> ClientSocket.RecvEventTcpSocket socket on');
kLib.klog(data.toString());
RecvEventTcpSocket(socket,data,recv_func);
});
// --------------------------------------------------------------------------------------------------
};
//======================================================================================================================
function AddClientList(socket, take_id, json_obj, val) {
ClientList.push({socket:socket, take_id:take_id, json_obj:json_obj, val:val});
PrintClientList('connect');
// console.log(socket);
}
function RemoveClientList(socket) {
for(var i in ClientList) {
// console.log("GetSocketIndexExec() "+i+" : "+ClientList[i].take_id);
if(ClientList[i].socket == socket) {
ClientList.splice(i,1);
return(true);
}
}
return(false)
}
//======================================================================================================================
//======================================================================================================================
function GetSocketIndex(socket,take_id, log_on) {
var idx= GetSocketIndexExec(socket,take_id);
if(log_on)
kLib.log("GetSocketIndex(socket:"+typeof socket+", take_id:"+typeof take_id+") --> idx:"+idx+"/"+ClientList.length);
return(idx);
}
function GetSocketIndexExec(socket,take_id) {
// kLib.log("GetSocketIndex(socket:"+typeof socket+", take_id["+typeof take_id+"]) ==> cnt:"+ClientList.length);
// kLib.log(" take_id["+take_id+"]");
if(socket==null && take_id==null) {
// kLib.log(" socket==null && take_id==null");
for(var i in ClientList) {
if(ClientList[i].take_id == null) return(i);
}
}
else if(socket) {
for(var i in ClientList) {
// console.log("GetSocketIndexExec() "+i+" : "+ClientList[i].take_id);
if(ClientList[i].socket == socket) return(i);
}
}
else if(take_id) {
for(var i in ClientList) {
// console.log("GetSocketIndexExec() "+i+" : "+ClientList[i].take_id+"/"+take_id);
if(ClientList[i].take_id == take_id) return(i);
}
}
return(-1);
}
//======================================================================================================================
function PrintClientList(msg) {
kLib.flog("=========> PrintClientList() "+msg+" count::"+ClientList.length);
for(var i in ClientList) {
kLib.log(" Sock["+i+"] take_id:"+ClientList[i].take_id+", sock_id:"+ClientList[i].socket.toString());
}
// console.log(ClientList[0].socket);
kLib.log("------------------------------------------------------------------------------");
}
exports.PrintSocketList = function (msg) {
PrintClientList(msg);
}
//======================================================================================================================