|
@@ -908,18 +908,21 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
|
|
|
string agreement = "";
|
|
|
string agreementParam = "";
|
|
|
+ string agreementAddress = "";
|
|
|
Dictionary<string, string> trandevice = new Dictionary<string, string>();
|
|
|
for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
{
|
|
|
|
|
|
string agreementTmp = dt.Rows[i]["设备协议"].ToString();
|
|
|
string agreementParamTmp = dt.Rows[i]["设备协议参数"].ToString();
|
|
|
+ string agreementAddressTmp = dt.Rows[i]["设备地址"].ToString();
|
|
|
trandevice[dt.Rows[i]["transId"].ToString()] = dt.Rows[i]["名称"].ToString();
|
|
|
|
|
|
if ("".Equals(agreement) && "".Equals(agreementParam))
|
|
|
{
|
|
|
agreement = agreementTmp;
|
|
|
agreementParam = agreementParamTmp;
|
|
|
+ agreementAddress = agreementAddressTmp;
|
|
|
}
|
|
|
else if (!string.IsNullOrEmpty(agreement) && !string.IsNullOrEmpty(agreementParam) && (!agreement.Equals(agreementTmp) || !agreementParam.Equals(agreementParamTmp)))
|
|
|
{
|
|
@@ -1110,7 +1113,17 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
sendGetParamComm.Remove(maxKey);
|
|
|
}
|
|
|
}
|
|
|
- else
|
|
|
+
|
|
|
+ else if (code == Modbus.FunctionCode.F3A)
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ modbus.Id = Convert.ToUInt16(agreementAddress);
|
|
|
+ modbus.FunCode = Modbus.FunctionCode.F3A;
|
|
|
+ msg = Modbus.UnPack(psp.Data, modbus);
|
|
|
+ }
|
|
|
+ else
|
|
|
{
|
|
|
modbus = sendComm[keyValuePair.Key][code.ToString()];
|
|
|
msg = Modbus.UnPack(psp.Data, modbus);
|
|
@@ -1363,6 +1376,8 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
|
|
|
else if ("1".Equals(insourcingData.DataType))
|
|
|
{
|
|
|
+ List<HistoryRecord> list = new List<HistoryRecord>();
|
|
|
+
|
|
|
Modbus modbus = insourcingData.Modbus;
|
|
|
|
|
|
ModBusDeviceType modBusDeviceType = new ModBusDeviceType(insourcingData.AgreementParam);
|
|
@@ -1375,18 +1390,49 @@ namespace NB_IOT_TCP_HP_SOCKET
|
|
|
if (modbus.FunCode == Modbus.FunctionCode.F04)
|
|
|
{
|
|
|
ProtocolAnalysisTools.OrganizeAnalogData(modbus.UpDataArea, _analogData, Convert.ToInt32(modBusDeviceType.AnalogStartAddress));
|
|
|
+
|
|
|
+
|
|
|
+ List<HistoryRecord> item = this.UpdateHistoryData(insourcingData.Recordtime, null, dt, _analogData, _switchData);
|
|
|
+
|
|
|
+ if (item != null && item.Count > 0)
|
|
|
+ {
|
|
|
+ list.AddRange(item);
|
|
|
+ }
|
|
|
}
|
|
|
else if (modbus.FunCode == Modbus.FunctionCode.F02)
|
|
|
{
|
|
|
ProtocolAnalysisTools.OrganizeSwitchData(modbus.UpDataArea, _switchData, Convert.ToInt32(modBusDeviceType.SwitchStartAddress));
|
|
|
+
|
|
|
+
|
|
|
+ List<HistoryRecord> item = this.UpdateHistoryData(insourcingData.Recordtime, null, dt, _analogData, _switchData);
|
|
|
+ if (item != null && item.Count > 0)
|
|
|
+ {
|
|
|
+ list.AddRange(item);
|
|
|
+ }
|
|
|
}
|
|
|
- #endregion
|
|
|
+ else if (modbus.FunCode == Modbus.FunctionCode.F3A)
|
|
|
+ {
|
|
|
+ TimeSpan ts = modbus.HistoryRecordEnd - modbus.HistoryRecordStart;
|
|
|
+ int invertSecond = modbus.HistoryRecordNum == 1 ? 0 : (Int32) ts.TotalSeconds / (modbus.HistoryRecordNum - 1);
|
|
|
+ for (int i = 0; i < modbus.HistoryRecordNum; i++)
|
|
|
+ {
|
|
|
+ byte[] ReturnData = new byte[modbus.BytNumPerRecord - 6];
|
|
|
+ DateTime recordTime = modbus.HistoryRecordStart.AddSeconds(invertSecond * i);
|
|
|
+ Array.ConstrainedCopy(modbus.UpDataArea, i * modbus.BytNumPerRecord + 6, ReturnData, 0, modbus.BytNumPerRecord - 6);
|
|
|
+ ProtocolAnalysisTools.OrganizeAnalogData(ReturnData, _analogData, Convert.ToInt32(modBusDeviceType.AnalogStartAddress));
|
|
|
+
|
|
|
+ List<HistoryRecord> item = this.UpdateHistoryData(recordTime, null, dt, _analogData, _switchData);
|
|
|
+ if (item != null && item.Count > 0)
|
|
|
+ {
|
|
|
+ list.AddRange(item);
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- List<HistoryRecord> item = this.UpdateHistoryData(insourcingData.Recordtime, null, dt, _analogData, _switchData);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ #endregion
|
|
|
|
|
|
|
|
|
- ProtocolAnalysisTools.SaveRecord(item);
|
|
|
+ ProtocolAnalysisTools.SaveRecord(list);
|
|
|
}
|
|
|
}
|
|
|
|