Administrator
2021-04-16 c5c5b12e9d2addebe190820375d9f92e3afcc9d7
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net;
using System.Net.Sockets;
using System.Threading;
 
namespace Bro.Common.Link
{
    // 客户端动作代理
    public delegate void OnClientOpen(TcpClient client);
    public delegate void OnClientClose(TcpClient client);
    public delegate void OnClientRecv(TcpClient client);
 
    /// <summary>
    /// TCP服务器
    /// </summary>
    public class TCPSvr
    {
        private static object synObj = new object();
        public OnClientOpen       ClientOpen;
        public OnClientClose      ClientClose;
        public OnClientRecv       ClientRecv;
 
        // 服务器描述
        public string   Desp {get;set;}
        // 服务器IP
        public string   ServerIP { get;set; }
        // 服务器端口
        public int      ServerPort { get; set; }
        // 服务器监听
        private TcpListener tcpSvr  = null;
        // 停止标示
        private bool bStop = false;
        // 监听线程
        private Thread listenThread;
        private Thread pollThread;
 
        private Dictionary<Socket,TcpClient> clientsMap = new Dictionary<Socket,TcpClient>();
 
        public TCPSvr()
        {
        }
 
        public TCPSvr(string ip, int port)
        {
            ServerIP    = ip;
            ServerPort = port;
        }
 
        /// <summary>
        /// 初始化
        /// </summary>
        /// <returns></returns>
        public bool Init()
        {
            try
            {
                var ip = IPAddress.Parse(ServerIP);
 
                tcpSvr = new TcpListener(ip, ServerPort);
 
                bStop = false;
            }
            catch(Exception ex)
            {
                Trace.TraceError("TCP server init fail,ex:{0}", ex);
                return false;
            }
 
            return true;
        }
 
        /// <summary>
        /// 启动监听
        /// </summary>
        /// <returns></returns>
        public bool Start()
        {
            try
            {
                clientsMap.Clear();
 
                tcpSvr.Start();
 
                listenThread = new Thread(new ThreadStart(DoAcceptCallBack));
                listenThread.Start();
                
                pollThread = new Thread(new ThreadStart(PollThread));
                pollThread.Start();
 
                bStop = false;
            }
            catch(Exception ex)
            {
                Trace.TraceError("TCP server start listen fail,ex:{0}", ex);
                return false;
            }
 
            return true;
        }
 
        /// <summary>
        /// 停止监听
        /// </summary>
        public void Stop()
        {
            bStop = true;
 
            try
            {
                tcpSvr.Stop();
 
                listenThread.Join();
                pollThread.Join();
 
            }
            catch(Exception ex)
            {
                Trace.TraceError("TCP server stop listen fail,ex:{0}", ex);
            }
 
            bStop = true;
        }
 
        /// <summary>
        /// 关闭客户端
        /// </summary>
        /// <param name="client"></param>
        public void Close(TcpClient client)
        {
            lock(synObj)
            {
                clientsMap.Remove(client.Client);
 
                client.Close();
            }
        }
 
        /// <summary>
        /// 移除客户端监听
        /// </summary>
        /// <param name="client"></param>
        public void Remove(TcpClient client)
        {
            lock (synObj)
            {
                clientsMap.Remove(client.Client);
            }
        }
 
        /// <summary>
        /// 监听线程
        /// </summary>
        private void PollThread()
        {
            for(;;)
            {
                if (bStop)
                {
                    CloseAllClient();
 
                    Trace.TraceInformation("{0} tcp server stop trigger", Desp);
                    break;
                }
 
                lock(synObj)
                {
                    PollRecv();
                }
 
            }
 
            Trace.TraceInformation("{0} tcp server stop finish", Desp);
        }
 
        /// <summary>
        /// 新接入客户端连接
        /// </summary>
        /// <param name="ar"></param>
        private void DoAcceptCallBack()
        {
            for (; ; )
            {
                TcpClient client = null;
 
                try
                {
                    if (!tcpSvr.Pending())
                    {
                        Thread.Sleep(100);
                        continue;
                    }
                        
 
                    client = tcpSvr.AcceptTcpClient();
 
                    // 接收发送缓存大小
                    client.ReceiveBufferSize = 2048;
                    client.SendBufferSize = 2048;
 
                    // 读写超时
                    client.SendTimeout = 2000;
                    client.ReceiveTimeout = 200;
 
                    lock (synObj)
                    {
                        clientsMap.Add(client.Client, client);
 
                        // 通知客户端连接进入
                        if (null != ClientOpen)
                        {
                            Trace.TraceInformation("DoAcceptCallBack {0} tcp server, accept client{1}", Desp, client.Client.RemoteEndPoint);
 
                            ClientOpen(client);
                        }
                    }
                }
                catch (Exception ex)
                {
                    client?.Close();
                    Trace.TraceInformation("DoAcceptCallBack fail, ex:{0},{1} tcp server, accept client{2}", ex.Message,
                        Desp, client?.Client.RemoteEndPoint.ToString());
                    return;
                }
            }
        }
 
        /// <summary>
        /// 检查数据接收
        /// </summary>
        private void PollRecv()
        {
            var rList = new ArrayList();
            var eList = new ArrayList();
 
            foreach(var item in clientsMap)
            {
                var socket  = item.Key;
 
                rList.Add(socket);
                eList.Add(socket);
            }
 
            if (clientsMap.Count == 0)
            {
                Thread.Sleep(200);
                return;
            }
 
            try
            {
                Thread.Sleep(200);
                Socket.Select(rList, null, eList, 200);
 
                // 客户端异常则关闭
                foreach(var item in eList)
                {
                    Socket  socket = (Socket)item;
                    TcpClient client;
 
                    if ( clientsMap.TryGetValue(socket, out client) && null != ClientClose )
                    {
                        client.Close();
 
                        ClientClose(client);
                    }
 
                    clientsMap.Remove(socket);
                }
 
                // 客户端是否有数据
                foreach(var item in rList)
                {
                    Socket  socket = (Socket)item;
                    TcpClient client;
 
                    if ( clientsMap.TryGetValue(socket, out client) && null != ClientRecv )
                    {
                        ClientRecv(client);
                        
                    }
                }
            }
            catch(Exception ex)
            {
                Trace.TraceInformation("CloseAllClient except{0}, {1} tcp server", ex.Message, Desp);
            }
        }
 
        /// <summary>
        /// 关闭所有客户端连接
        /// </summary>
        private void CloseAllClient()
        {
            Trace.TraceInformation("CloseAllClient {0} tcp server, client cnt{0}", Desp, clientsMap.Count);
 
            foreach(var item in clientsMap)
            {
                var client  = item.Value;
                try
                {
                    client.Close();
 
                    if ( null != ClientClose )
                    {
                        ClientClose(client);
                    }
                }
                catch(Exception ex)
                {
                    Trace.TraceInformation("CloseAllClient except{0}, {1} tcp server, accept client{2}", ex.Message, Desp, client.Client.RemoteEndPoint);
                }
                
            }
 
            clientsMap.Clear();
        }
    }
}