jace.tang
2023-02-11 ed8d469ccdc0e627d8f180bb92a9d78dbdb008b1
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
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using EventTool;
 
public class SocketTools
{
    private int clientPort;
    private NetworkStream clientStream;
    private TcpListener listener;
    private int listenPort;
    private IPAddress localIp;
    //private LogManager loger = new LogManager(Type.GetType("Vision.Socket"), Environment.CurrentDirectory + @"\Socket.log");
    private TcpClient remoteClient;
    private IPAddress remoteIp;
    private NetworkStream remoteStream;
    //电脑的监听端口,接收方端口,机械手IP,本地IP
    public SocketTools(int listenPort, int clientPort, IPAddress remoteIp, IPAddress localIp)
    {
        this.remoteIp = remoteIp;
        this.listenPort = listenPort;
        this.clientPort = clientPort;
        this.listener = new TcpListener(localIp, listenPort);
        this.LocalIp = localIp;
    }
 
    public void CloseAll()
    {
        this.CloseListener();
    }
 
    public void CloseListener()
    {
        if (this != null)
        {
            if (this.remoteStream != null)
            {
                this.remoteStream.Close();
                this.remoteStream.Dispose();
            }
            if (this.remoteClient != null)
            {
                this.remoteClient.Close();
                this.remoteClient = null;
            }
            if (this.listener != null)
            {
                this.listener.Stop();
                this.listener = null;
            }
        }
    }
 
    protected string GetIP()
    {
        IPAddress[] hostAddresses = Dns.GetHostAddresses(Dns.GetHostName());
        for (int i = 0; i < hostAddresses.Length; i++)
        {
            if (hostAddresses[i].ToString().Length > 3)
            {
                return hostAddresses[i].ToString();
            }
        }
        return "";
    }
 
    public void Listening(ListenEventCreater creater)
    {
        this.listener.Start();
        while (true)
        {
            try
            {
                if (this.listener == null)
                {
                    this.listener = new TcpListener(this.LocalIp, this.listenPort);
                    this.listener.Start();
                }
                if (!this.listener.Pending()) continue;
                this.remoteClient = this.listener.AcceptTcpClient();
                this.remoteStream = this.remoteClient.GetStream();
                if (this.remoteStream.CanRead)
                {
                    byte[] buffer = new byte[this.remoteClient.ReceiveBufferSize];
                    this.remoteStream.Read(buffer, 0, this.remoteClient.ReceiveBufferSize);
                    string str = Encoding.Default.GetString(buffer);
                    if (str.Contains("CLOSELISTENER"))
                    {
                        return;
                    }
                    EventData iData = new EventData(str.Trim(new char[1]));
                    creater.ChangeValue(iData);
                }
            }
            catch (Exception)
            {
                //this.loger.WriteLog(string.Concat(new object[] { "监听问题:", exception.Source, exception.TargetSite, exception.ToString(), "\r\n" }), LogType.Info);
            }
            finally
            {
                if (this.remoteStream != null)
                {
                    this.remoteStream.Close();
                    this.remoteStream.Dispose();
                }
                if (this.remoteClient != null)
                {
                    this.remoteClient.Close();
                }
            }
        }
    }
 
    public bool SendMessage(string messsge)
    {
        return this.SendMessage(this.remoteIp, this.clientPort, messsge);
    }
 
    public bool SendMessage(IPAddress ip, int port, string messsge)
    {
        bool flag;
        TcpClient client = new TcpClient();
        NetworkStream stream = null;
        try
        {
            client.Connect(ip, port);
            stream = client.GetStream();
            if (stream.CanWrite)
            {
                byte[] bytes = Encoding.ASCII.GetBytes(messsge + "\r\n");
                stream.Write(bytes, 0, bytes.Length);
                return true;
            }
            flag = false;
        }
        catch (Exception)
        {
            //this.loger.WriteLog(string.Concat(new object[] { "发送Socket数据问题:", exception.Source, exception.TargetSite, exception.ToString(), "\r\n" }), LogType.Info);
            flag = false;
        }
        finally
        {
            if (stream != null)
            {
                stream.Close();
            }
            if (client != null)
            {
                client.Close();
            }
        }
        return flag;
    }
 
    //System.Threading.Thread receiveThread;
    NetworkStream stm = null;
 
    public bool SendAndReceiveMessage(IPAddress ip, int port, ref string messsge)
    {
        bool flag = false;
        TcpClient tcpClient = new TcpClient();
 
        try
        {
            //tcpClient = TimeOutSocket.TryConnect(new IPEndPoint(ip, port), 3000);// new TcpClient();
            tcpClient.Connect(ip, port);
            stm = tcpClient.GetStream();
            //receiveThread = new System.Threading.Thread(ReceiveMessage);
            //receiveThread.Start();
 
            if (stm.CanWrite)
            {
                byte[] bytes = Encoding.ASCII.GetBytes(messsge + "\n");
                byte[] readBytes = new byte[40];
 
                stm.Write(bytes, 0, bytes.Length);
 
                System.Threading.Thread.Sleep(100);
                stm.Read(readBytes, 0, readBytes.Length);
 
                messsge = Encoding.GetEncoding("gb2312").GetString(readBytes);
            }
        }
        catch (Exception)
        {
            //this.loger.WriteLog(string.Concat(new object[] { "发送接收Socket数据问题:", exception.Source, exception.TargetSite, exception.ToString(), "\r\n" }), LogType.Info);
            flag = false;
        }
        finally
        {
            if (stm != null)
            {
                stm.Close();
            }
            if (tcpClient != null)
            {
                tcpClient.Close();
            }
        }
        return flag;
    }
 
    // 接收消息方法
    private void ReceiveMessage()
    {
        IPEndPoint remoteIpEndPoint = new IPEndPoint(IPAddress.Any, 0);
        while (true)
        {
            try
            {
                // 关闭receiveUdpClient时此时会产生异常
                Encoding gb2312 = Encoding.GetEncoding("gb2312");//Encoding.Default ,936                    
                byte[] receiveBytes;
                byte[] tcpreceiveBytes = new byte[4096];
                int count = 0;
 
 
                //if (netSelected == 0)
                //{
                //    receiveBytes = receiveUpdClient.Receive(ref remoteIpEndPoint);
                //}
                //else
                {
 
                    count = stm.Read(tcpreceiveBytes, 0, 2048);
                    receiveBytes = tcpreceiveBytes;
 
                }
 
                string message = gb2312.GetString(receiveBytes);
 
                // 显示消息内容
                //ShowMessageforView(texboxMessageView, string.Format("{0}", message));
 
            }
            catch (Exception)
            {
                break;
            }
        }
    }
 
 
    public void Stop()
    {
        this.SendMessage(this.localIp, this.listenPort, "CLOSELISTENER");
    }
 
    public int ClientPort
    {
        get
        {
            return this.clientPort;
        }
        set
        {
            this.clientPort = value;
        }
    }
 
    public NetworkStream ClientStream
    {
        get
        {
            return this.clientStream;
        }
        set
        {
            this.clientStream = value;
        }
    }
 
    public int ListenPort
    {
        get
        {
            return this.listenPort;
        }
        set
        {
            this.listenPort = value;
        }
    }
 
    public TcpListener Listerner
    {
        get
        {
            return this.listener;
        }
        set
        {
            this.listener = value;
        }
    }
 
    public IPAddress LocalIp
    {
        get
        {
            return this.localIp;
        }
        set
        {
            this.localIp = value;
        }
    }
 
    public TcpClient RemoteClient
    {
        get
        {
            return this.remoteClient;
        }
        set
        {
            this.remoteClient = value;
        }
    }
 
    public IPAddress RemoteIp
    {
        get
        {
            return this.remoteIp;
        }
        set
        {
            this.remoteIp = value;
        }
    }
 
    public NetworkStream RemoteStream
    {
        get
        {
            return this.remoteStream;
        }
        set
        {
            this.remoteStream = value;
        }
    }
}