|
|
|
|
#region << 版 本 注 释 >>
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
|
* 版权所有 (c) 2025 WenJY 保留所有权利。
|
|
|
|
|
* CLR版本:4.0.30319.42000
|
|
|
|
|
* 机器名称:Mr.Wen's MacBook Pro
|
|
|
|
|
* 命名空间:Sln.Iot.Business
|
|
|
|
|
* 唯一标识:7C26094C-5352-4997-866A-FA618F2E5D27
|
|
|
|
|
*
|
|
|
|
|
* 创建者:WenJY
|
|
|
|
|
* 电子邮箱:
|
|
|
|
|
* 创建时间:2025-04-11 15:47:06
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
* 描述:
|
|
|
|
|
*
|
|
|
|
|
*--------------------------------------------------------------------
|
|
|
|
|
* 修改人:
|
|
|
|
|
* 时间:
|
|
|
|
|
* 修改说明:
|
|
|
|
|
*
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
*--------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#endregion << 版 本 注 释 >>
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Sln.Iot.Business.@base;
|
|
|
|
|
using Sln.Iot.Common;
|
|
|
|
|
using Sln.Iot.Config;
|
|
|
|
|
using Sln.Iot.Model.dao;
|
|
|
|
|
using Sln.Iot.Model.dto;
|
|
|
|
|
using Sln.Iot.Repository.service;
|
|
|
|
|
using Sln.Iot.Serilog;
|
|
|
|
|
using Sln.Iot.Socket.Adapter;
|
|
|
|
|
using TouchSocket.Core;
|
|
|
|
|
using TouchSocket.Sockets;
|
|
|
|
|
|
|
|
|
|
namespace Sln.Iot.Business
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物联网环境:温度、湿度、照度、噪音、振动
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class IotEnvBusiness:BaseBusiness
|
|
|
|
|
{
|
|
|
|
|
private readonly IRecordIotEnvInstantService? _service;
|
|
|
|
|
|
|
|
|
|
public IotEnvBusiness(SerilogHelper logger, AppConfig appConfig, StringChange stringChange, IRecordIotEnvInstantService? service) : base(logger, appConfig, stringChange)
|
|
|
|
|
{
|
|
|
|
|
_service = service;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override FilterResult BufferAnalysis(ISocketClient client, BufferRequestInfo requestInfo, int bodyLength)
|
|
|
|
|
{
|
|
|
|
|
ByteBlock byteBlock = new ByteBlock(requestInfo.Body);
|
|
|
|
|
|
|
|
|
|
if (byteBlock.CanReadLen < 1)
|
|
|
|
|
{
|
|
|
|
|
return FilterResult.Cache;
|
|
|
|
|
}
|
|
|
|
|
int pos = byteBlock.Pos;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
List<RecordIotEnvInstant> result = new List<RecordIotEnvInstant>();
|
|
|
|
|
|
|
|
|
|
var amount = requestInfo.BufferLength / bodyLength;
|
|
|
|
|
|
|
|
|
|
_logger.Info($"收到{amount}个物联网环境数据,开始循环解析......");
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < amount; i++)
|
|
|
|
|
{
|
|
|
|
|
RecordIotEnvInstant iotEnvInstant = new RecordIotEnvInstant();
|
|
|
|
|
|
|
|
|
|
#region 表号解析 Add By Wenjy 2024-04-18
|
|
|
|
|
|
|
|
|
|
byteBlock.Read(out byte[] b_MeterID, 2);
|
|
|
|
|
var MeterID_1 = "00" + Convert.ToInt32(b_MeterID[0]).ToString();
|
|
|
|
|
MeterID_1 = MeterID_1.Substring(MeterID_1.Length - 2, 2);
|
|
|
|
|
var MeterID_2 = "00" + Convert.ToInt32(b_MeterID[1]).ToString();
|
|
|
|
|
MeterID_2 = MeterID_2.Substring(MeterID_2.Length - 2, 2);
|
|
|
|
|
var equipId = requestInfo.ColletEquipCOde + "_" + MeterID_1 + MeterID_2;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.monitorId = equipId;
|
|
|
|
|
|
|
|
|
|
#region 物联网参数解析 Add By Wenjy 2024-09-19
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
byteBlock.Read(out byte[] b_UA_flag, 2);
|
|
|
|
|
base._stringChange.ConvertBytesToUInt16(b_UA_flag, out uint flag);
|
|
|
|
|
switch (flag)
|
|
|
|
|
{
|
|
|
|
|
case CommParams.TTempreture: //温度
|
|
|
|
|
byteBlock.Read(out byte[] tempreture, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref tempreture);
|
|
|
|
|
float f_tempreture = BitConverter.ToSingle(tempreture, 0);
|
|
|
|
|
if (double.IsNaN(f_tempreture))
|
|
|
|
|
{
|
|
|
|
|
f_tempreture = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.tempreture = (decimal) f_tempreture;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CommParams.Humidity: //湿度
|
|
|
|
|
byteBlock.Read(out byte[] humidity, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref humidity);
|
|
|
|
|
float f_humidity = BitConverter.ToSingle(humidity, 0);
|
|
|
|
|
if (double.IsNaN(f_humidity))
|
|
|
|
|
{
|
|
|
|
|
f_humidity = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.humidity = (decimal) f_humidity;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CommParams.Noise: //噪音
|
|
|
|
|
byteBlock.Read(out byte[] noise, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref noise);
|
|
|
|
|
float f_noise = BitConverter.ToSingle(noise, 0);
|
|
|
|
|
if (double.IsNaN(f_noise))
|
|
|
|
|
{
|
|
|
|
|
f_noise = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.noise = (decimal) f_noise;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CommParams.VibrationSpeed: //振动-速度
|
|
|
|
|
byteBlock.Read(out byte[] vibrationSpeed, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref vibrationSpeed);
|
|
|
|
|
float f_vibrationSpeed = BitConverter.ToSingle(vibrationSpeed, 0);
|
|
|
|
|
if (double.IsNaN(f_vibrationSpeed))
|
|
|
|
|
{
|
|
|
|
|
f_vibrationSpeed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.VibrationSpeed = (decimal) f_vibrationSpeed;
|
|
|
|
|
break;
|
|
|
|
|
case CommParams.VibrationDisplacement: //振动-位移
|
|
|
|
|
bodyLength = 58;
|
|
|
|
|
byteBlock.Read(out byte[] vibrationDisplacement, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref vibrationDisplacement);
|
|
|
|
|
float f_vibrationDisplacement = BitConverter.ToSingle(vibrationDisplacement, 0);
|
|
|
|
|
if (double.IsNaN(f_vibrationDisplacement))
|
|
|
|
|
{
|
|
|
|
|
f_vibrationDisplacement = 0;
|
|
|
|
|
}
|
|
|
|
|
iotEnvInstant.VibrationDisplacement = (decimal)f_vibrationDisplacement;
|
|
|
|
|
break;
|
|
|
|
|
case CommParams.VibrationAcceleration: //振动-加速度
|
|
|
|
|
byteBlock.Read(out byte[] vibrationAcceleration, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref vibrationAcceleration);
|
|
|
|
|
float f_vibrationAcceleration = BitConverter.ToSingle(vibrationAcceleration, 0);
|
|
|
|
|
if (double.IsNaN(f_vibrationAcceleration))
|
|
|
|
|
{
|
|
|
|
|
f_vibrationAcceleration = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.VibrationAcceleration = (decimal)f_vibrationAcceleration;
|
|
|
|
|
break;
|
|
|
|
|
case CommParams.VibrationTemp: //振动-温度
|
|
|
|
|
byteBlock.Read(out byte[] vibrationTemp, 4);
|
|
|
|
|
base._stringChange.SwapBytes(ref vibrationTemp);
|
|
|
|
|
float f_vibrationTemp = BitConverter.ToSingle(vibrationTemp, 0);
|
|
|
|
|
if (double.IsNaN(f_vibrationTemp))
|
|
|
|
|
{
|
|
|
|
|
f_vibrationTemp = 0;
|
|
|
|
|
}
|
|
|
|
|
iotEnvInstant.VibrationTemp = (decimal)f_vibrationTemp;
|
|
|
|
|
break;
|
|
|
|
|
case CommParams.CJSJ:
|
|
|
|
|
byteBlock.Read(out byte[] b_CJSJ, 6);
|
|
|
|
|
string strDateTime = "20" + b_CJSJ[5].ToString("x2")
|
|
|
|
|
+ "-" + b_CJSJ[4].ToString("x2")
|
|
|
|
|
+ "-" + b_CJSJ[3].ToString("x2")
|
|
|
|
|
+ " " + b_CJSJ[2].ToString("x2")
|
|
|
|
|
+ ":" + b_CJSJ[1].ToString("x2")
|
|
|
|
|
+ ":" + b_CJSJ[0].ToString("x2");
|
|
|
|
|
iotEnvInstant.collectTime = Convert.ToDateTime(strDateTime);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} while (byteBlock.Pos % bodyLength != 0);
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
iotEnvInstant.recordTime = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
var serializeObject = JsonConvert.SerializeObject(iotEnvInstant);
|
|
|
|
|
|
|
|
|
|
_logger.Info($"第{i+1}个物联网表{iotEnvInstant.monitorId}解析完成:{serializeObject}");
|
|
|
|
|
|
|
|
|
|
result.Add(iotEnvInstant);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
//var inRes = _service.Insert(result);
|
|
|
|
|
|
|
|
|
|
/*Task.Run(() => //保存至TD引擎
|
|
|
|
|
{
|
|
|
|
|
base.SaveDnbToTDengine(result);
|
|
|
|
|
|
|
|
|
|
this.RefreshMonitorInfo(result);
|
|
|
|
|
});*/
|
|
|
|
|
|
|
|
|
|
//_logger.Info($"{amount}个物联网数据解析处理完成,数据保存{(inRes ? "成功" : "失败")}");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_logger.Info($"{amount}个物联网数据解析处理完成,没有需要保存的数据");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FilterResult.Success;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
base._logger.Error($"物联网数据解析异常:{e.Message}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FilterResult.Cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 回复指令
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="client"></param>
|
|
|
|
|
/// <param name="buffer"></param>
|
|
|
|
|
public override void ResponseHandle(ISocketClient client, byte[] buffer)
|
|
|
|
|
{
|
|
|
|
|
MessagePack SendMessagePackInfo = new MessagePack()
|
|
|
|
|
{
|
|
|
|
|
m_MessageType = 0xB5
|
|
|
|
|
};
|
|
|
|
|
base.GetMessagePack(ref SendMessagePackInfo, buffer);
|
|
|
|
|
|
|
|
|
|
base.SendMessageAsync(client,SendMessagePackInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|