|
@@ -7,6 +7,7 @@ using System.Configuration;
|
|
|
using System.Data;
|
|
|
using System.Drawing;
|
|
|
using System.IO;
|
|
|
+using System.Linq;
|
|
|
using System.Runtime.InteropServices;
|
|
|
using System.Threading;
|
|
|
using System.Windows.Forms;
|
|
@@ -150,7 +151,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -436,7 +437,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
return HandleResult.Ignore;
|
|
|
}
|
|
|
}
|
|
@@ -445,26 +446,45 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
#region OnClose(IServer sender, IntPtr connId, SocketOperation enOperation, int errorCode)
|
|
|
HandleResult OnClose(IServer sender, IntPtr connId, SocketOperation enOperation, int errorCode)
|
|
|
{
|
|
|
- if (errorCode == 0)
|
|
|
- AddMsg($" > [{connId},OnClose]", lbReceiveData);
|
|
|
- else
|
|
|
- AddMsg($" > [{connId},OnError] -> OP:{enOperation},CODE:{errorCode}", lbReceiveData);
|
|
|
-
|
|
|
- // 移除设备的链接关联关系
|
|
|
- foreach (KeyValuePair<string, IntPtr> conn in deveiceConnId)
|
|
|
+ try
|
|
|
{
|
|
|
- IntPtr deviceConnId = conn.Value;
|
|
|
- if (connId == deviceConnId)
|
|
|
+ if (errorCode == 0)
|
|
|
+ AddMsg($" > [{connId},OnClose]", lbReceiveData);
|
|
|
+ else
|
|
|
+ AddMsg($" > [{connId},OnError] -> OP:{enOperation},CODE:{errorCode}", lbErrorData);
|
|
|
+
|
|
|
+ if (deveiceConnId != null && deveiceConnId.Count > 0)
|
|
|
{
|
|
|
- deveiceConnId.Remove(conn.Key);
|
|
|
- break;
|
|
|
+ KeyValuePair<string, IntPtr>[] nowDeveiceConnId = new KeyValuePair<string, IntPtr>[0];
|
|
|
+
|
|
|
+ nowDeveiceConnId = new KeyValuePair<string, IntPtr>[deveiceConnId.Count];
|
|
|
+ deveiceConnId.ToArray().CopyTo(nowDeveiceConnId, 0);
|
|
|
+
|
|
|
+ // 移除设备的链接关联关系
|
|
|
+ foreach (KeyValuePair<string, IntPtr> conn in nowDeveiceConnId)
|
|
|
+ {
|
|
|
+ IntPtr deviceConnId = conn.Value;
|
|
|
+ if (connId == deviceConnId)
|
|
|
+ {
|
|
|
+ if (deveiceConnId.Count > 0 && deveiceConnId.ContainsKey(conn.Key))
|
|
|
+ {
|
|
|
+ deveiceConnId.Remove(conn.Key);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- // 移除附加数据
|
|
|
- if (server.RemoveExtra(connId) == false)
|
|
|
+ // 移除附加数据
|
|
|
+ if (server.RemoveExtra(connId) == false)
|
|
|
+ {
|
|
|
+ AddMsg($" > [{connId},OnClose] -> SetConnectionExtra({connId}, null) fail", lbErrorData);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg($" > [{connId},OnClose] -> SetConnectionExtra({connId}, null) fail", lbErrorData);
|
|
|
+ LogUtil.WriteLog(ex.Message + ">>>" + ex.StackTrace);
|
|
|
}
|
|
|
|
|
|
return HandleResult.Ok;
|
|
@@ -582,7 +602,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
/// </summary>
|
|
|
private void DisconnectConnections()
|
|
|
{
|
|
|
- while (true)
|
|
|
+ while (this.Visible)
|
|
|
{
|
|
|
if (!isHeartBeatRuning)
|
|
|
{
|
|
@@ -595,8 +615,14 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
|
|
|
List<string> disconnectId = new List<string>();
|
|
|
|
|
|
+ KeyValuePair<string, IntPtr>[] nowDeveiceConnId = new KeyValuePair<string, IntPtr>[0];
|
|
|
+ if (deveiceConnId != null && deveiceConnId.Count > 0)
|
|
|
+ {
|
|
|
+ nowDeveiceConnId = new KeyValuePair<string, IntPtr>[deveiceConnId.Count];
|
|
|
+ deveiceConnId.ToArray().CopyTo(nowDeveiceConnId , 0);
|
|
|
+ }
|
|
|
// 处理设备对应的链接,如果超时则断开链接并移除设备-链接对应关系
|
|
|
- foreach (KeyValuePair<string, IntPtr> conn in deveiceConnId)
|
|
|
+ foreach (KeyValuePair<string, IntPtr> conn in nowDeveiceConnId)
|
|
|
{
|
|
|
IntPtr connId = conn.Value;
|
|
|
if (allConnIds == null || Array.IndexOf(allConnIds, connId) == -1)
|
|
@@ -626,18 +652,24 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // 关闭所有静默链接
|
|
|
+ server.DisconnectSilenceConnections(Convert.ToUInt32(ConfigurationManager.AppSettings["ConnectionTimeOut"]));
|
|
|
+
|
|
|
foreach (string key in disconnectId)
|
|
|
{
|
|
|
- deveiceConnId.Remove(key);
|
|
|
+ if (deveiceConnId != null && deveiceConnId.Count > 0 && deveiceConnId.ContainsKey(key))
|
|
|
+ {
|
|
|
+ deveiceConnId.Remove(key);
|
|
|
+ }
|
|
|
}
|
|
|
- // 关闭所有静默链接(主要是只建立链接没有上报过数据的链接)
|
|
|
- server.DisconnectSilenceConnections(Convert.ToUInt32(ConfigurationManager.AppSettings["ConnectionTimeOut"]));
|
|
|
|
|
|
isHeartBeatRuning = false;
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
+ // 关闭所有静默链接(主要是只建立链接没有上报过数据的链接)
|
|
|
+ server.DisconnectSilenceConnections(Convert.ToUInt32(ConfigurationManager.AppSettings["ConnectionTimeOut"]));
|
|
|
isHeartBeatRuning = false;
|
|
|
}
|
|
|
}
|
|
@@ -741,7 +773,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
continue;
|
|
|
}
|
|
|
}
|
|
@@ -749,7 +781,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
isTimeRuning = false;
|
|
|
}
|
|
|
|
|
@@ -761,7 +793,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
/// </summary>
|
|
|
private void DealWithSendThread()
|
|
|
{
|
|
|
- while (true)
|
|
|
+ while (this.Visible)
|
|
|
{
|
|
|
try
|
|
|
{
|
|
@@ -1042,7 +1074,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg(ex.Message, lbErrorData);
|
|
|
+ AddMsg(ex.Message + ">>>" + ex.StackTrace, lbErrorData);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1052,7 +1084,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
/// </summary>
|
|
|
private void InsourcingProcess()
|
|
|
{
|
|
|
- while (true)
|
|
|
+ while (this.Visible)
|
|
|
{
|
|
|
try
|
|
|
{
|
|
@@ -1267,7 +1299,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
/// </summary>
|
|
|
private void SetParamThread()
|
|
|
{
|
|
|
- while (true)
|
|
|
+ while (this.Visible)
|
|
|
{
|
|
|
// 获取所有链接ID
|
|
|
IntPtr[] allConnIds = server.GetAllConnectionIDs();
|
|
@@ -1306,7 +1338,7 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
- AddMsg($" > [{clientInfo.ConnId},OnSend] -> {clientInfo.IpAddress}:{clientInfo.Port} {sourceNumber} CD_CellMonitor最后发送设参指令失败 \n {ex.Message}", lbErrorData);
|
|
|
+ AddMsg($" > [{clientInfo.ConnId},OnSend] -> {clientInfo.IpAddress}:{clientInfo.Port} {sourceNumber} CD_CellMonitor最后发送设参指令失败 \n {ex.StackTrace}", lbErrorData);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1526,6 +1558,11 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
DeviceControlForm deviceControlForm = new DeviceControlForm();
|
|
|
deviceControlForm.ShowDialog();
|
|
|
}
|
|
|
+
|
|
|
+ private void MainForm_TCP_FormClosing(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+ System.Environment.Exit(0);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|