You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

454 line
22KB

  1. using HealthMonitor.Common;
  2. using HealthMonitor.Common.helper;
  3. using HealthMonitor.Service.Biz.db;
  4. using HealthMonitor.Service.Cache;
  5. using HealthMonitor.Service.Etcd;
  6. using HealthMonitor.Service.Resolver.Interface;
  7. using HealthMonitor.Service.Sub;
  8. using HealthMonitor.Service.Sub.Topic.Model;
  9. using Microsoft.EntityFrameworkCore.Metadata;
  10. using Microsoft.Extensions.Logging;
  11. using Newtonsoft.Json;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Data.Common;
  15. using System.Linq;
  16. using System.Text;
  17. using System.Text.Json.Serialization;
  18. using System.Threading.Tasks;
  19. using TDengineTMQ;
  20. using TelpoDataService.Util.Entities.GpsCard;
  21. using TelpoDataService.Util;
  22. using TelpoDataService.Util.Entities.GpsLocationHistory;
  23. using HealthMonitor.Service.Biz;
  24. using HealthMonitor.Model.Service;
  25. using Microsoft.Extensions.Options;
  26. using HealthMonitor.Model.Config;
  27. using HealthMonitor.Model.Service.Mapper;
  28. using Mvccpb;
  29. namespace HealthMonitor.Service.Resolver
  30. {
  31. public class BloodpressResolver: IResolver
  32. {
  33. private readonly ILogger<BloodpressResolver> _logger;
  34. private readonly BoodPressResolverConfig _configBoodPressResolver;
  35. private readonly PersonCacheManager _personCacheMgr;
  36. private readonly TDengineService _serviceTDengine;
  37. private readonly BloodPressReferenceValueCacheManager _bpRefValCacheManager;
  38. private readonly HttpHelper _httpHelper = default!;
  39. private readonly GpsCardAccessorClient<GpsPerson> _gpsPersonApiClient;
  40. private readonly IotWebApiService _serviceIotWebApi;
  41. private readonly AsyncLocal<string> _messageId = new();
  42. private readonly AsyncLocal<HisGpsBloodPress> _msgData = new();
  43. private readonly EtcdService _serviceEtcd;
  44. public BloodpressResolver(
  45. TDengineService serviceDengine,
  46. BloodPressReferenceValueCacheManager bpRefValCacheManager,
  47. PersonCacheManager personCacheMgr, HttpHelper httpHelper,
  48. GpsCardAccessorClient<GpsPerson> gpsPersonApiClient,
  49. IotWebApiService iotWebApiService,
  50. EtcdService serviceEtcd,
  51. IOptions<BoodPressResolverConfig> optionBoodPressResolver,
  52. ILogger<BloodpressResolver> logger)
  53. {
  54. _httpHelper = httpHelper;
  55. _serviceTDengine = serviceDengine;
  56. _bpRefValCacheManager = bpRefValCacheManager;
  57. _gpsPersonApiClient = gpsPersonApiClient;
  58. _serviceIotWebApi = iotWebApiService;
  59. _logger = logger;
  60. _personCacheMgr = personCacheMgr;
  61. _serviceEtcd = serviceEtcd;
  62. _configBoodPressResolver= optionBoodPressResolver.Value;
  63. }
  64. public void SetResolveInfo(PackageMsgModel msg)
  65. {
  66. var topicHmBloodPress = JsonConvert.DeserializeObject<TopicHmBloodPress>(msg.DetailData.ToString()!);
  67. _messageId.Value = msg.MessageId;
  68. _msgData.Value = new HisGpsBloodPress()
  69. {
  70. BloodPressId = topicHmBloodPress!.BloodPressId,
  71. MessageId = topicHmBloodPress!.MessageId,
  72. Serialno= topicHmBloodPress!.Serialno,
  73. SystolicValue = topicHmBloodPress!.SystolicValue,
  74. DiastolicValue= topicHmBloodPress!.DiastolicValue,
  75. LastUpdate= DateTimeUtil.GetDateTimeFromUnixTimeMilliseconds(SafeType.SafeInt64(topicHmBloodPress.LastUpdate) / 1000000),
  76. CreateTime= DateTimeUtil.GetDateTimeFromUnixTimeMilliseconds(SafeType.SafeInt64(topicHmBloodPress.CreateTime) / 1000000),
  77. Method= topicHmBloodPress!.Method,
  78. IsDisplay=topicHmBloodPress!.IsDisplay ? 1 : 0
  79. };
  80. }
  81. public override string ToString()
  82. {
  83. return $"{nameof(BloodpressResolver)}[{_messageId.Value}]";
  84. }
  85. public async Task ExecuteMessageAsync()
  86. {
  87. try
  88. {
  89. var messageId = _messageId.Value;
  90. var bp = _msgData.Value!;
  91. int systolicRefValue;
  92. int diastolicRefValue;
  93. int systolicInc;
  94. int diastolicInc;
  95. int systolicAvg;
  96. int diastolicAvg;
  97. int systolicMax = 0;
  98. int diastolicMax = 0;
  99. // 最小值
  100. int systolicMin = 0;
  101. int diastolicMin = 0;
  102. // 偏移参数
  103. var avgOffset = 0.25M;
  104. var systolicAvgOffset = avgOffset;
  105. var diastolicAvgOffset = avgOffset;
  106. // 统计时间
  107. DateTime endTime = DateTime.Now; //测试
  108. DateTime startTime = DateTime.Now;
  109. // 最后一次下发值
  110. //int lastPushSystolicInc = 0;
  111. //int lastPushDiastolicInc = 0;
  112. bool remarkFlag = false;
  113. //long duration = 7 * 24 * 3600 * 1000;
  114. string sql = string.Empty;
  115. #region 获取个人信息
  116. var person = await _personCacheMgr.GetDeviceGpsPersonCacheBySerialNoAsync(bp.MessageId, bp.Serialno).ConfigureAwait(false);
  117. //验证这个信息是否存在
  118. if (person == null || person?.Person.BornDate == null)
  119. {
  120. _logger.LogWarning($"{bp.Serialno}--{bp.MessageId} 验证个人信息,找不到个人信息,跳过此消息");
  121. return;
  122. }
  123. // 验证年龄是否在范围 (2 - 120)
  124. var age = SafeType.SafeInt(DateTime.Today.Year - person?.Person.BornDate!.Value.Year!);
  125. if (age < 2 || age > 120)
  126. {
  127. _logger.LogWarning($"{bp.Serialno}--{bp.MessageId} 验证年龄,不在范围 (2 - 120)岁,跳过此消息");
  128. return;
  129. }
  130. var gender = person?.Person.Gender == true ? 1 : 2;
  131. var isHypertension = SafeType.SafeBool(person?.Person.Ishypertension!);
  132. var height = SafeType.SafeDouble(person?.Person.Height!);
  133. var weight = SafeType.SafeDouble(person?.Person.Weight!);
  134. #endregion
  135. #region 初始化常规血压标定值标定值
  136. var bpRef = await _bpRefValCacheManager.GetBloodPressReferenceValueAsync(age, gender, isHypertension);
  137. systolicRefValue = bpRef!.Systolic;//?
  138. diastolicRefValue = bpRef!.Diastolic;//?
  139. #endregion
  140. _logger.LogInformation($"{bp.Serialno} -- Person 值:{JsonConvert.SerializeObject(person)}");
  141. _logger.LogInformation($"{bp.Serialno} -- Person Remarks 值:{person?.Person.Remarks}");
  142. if (string.IsNullOrWhiteSpace(person?.Person.Remarks))
  143. {
  144. _logger.LogInformation($"{bp.Serialno},设备解绑后绑定,首次手工测量了血压值,下发年龄标定值和增量值(测量值=平均值计算得出的)");
  145. #region 初始化计算增量值(个人血压信息)
  146. // 测量值当作平均值
  147. systolicAvg = bp.SystolicValue;
  148. diastolicAvg = bp.DiastolicValue;
  149. systolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  150. diastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  151. #region 更新 gps_persoon remarks 下发增量值到iot
  152. // 更新
  153. remarkFlag = await _serviceIotWebApi.UpdatePersonRemarksAsync(bp.Serialno, (int)systolicRefValue!, (int)diastolicRefValue!, systolicInc, diastolicInc).ConfigureAwait(false);
  154. if (remarkFlag)
  155. {
  156. _logger.LogInformation($"{nameof(BloodpressResolver)} 开启血压标定值下发: {_configBoodPressResolver.EnableBPRefPush}");
  157. // 启血压标定值下发开关
  158. if (_configBoodPressResolver.EnableBPRefPush)
  159. {
  160. // 下推
  161. BloodPressCalibrationConfigModel bpIncData = new()
  162. {
  163. Imei = bp.Serialno,
  164. SystolicRefValue = (int)systolicRefValue!, //收缩压标定值,值为0 表示不生效
  165. DiastolicRefValue = (int)diastolicRefValue!, //舒张压标定值,值为0表示不生效
  166. SystolicIncValue = systolicInc, //收缩压显示增量,值为0 表示不生效
  167. DiastolicIncValue = diastolicInc //舒张压显示增量,值为0 表示不生效
  168. };
  169. // 下发 IOT 增量值
  170. var flagIot = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  171. if (flagIot)
  172. {
  173. startTime = (DateTime)bp.LastUpdate!;
  174. endTime = DateTime.Now;
  175. #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  176. sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  177. $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  178. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  179. $"VALUES(" +
  180. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  181. $"'{bp.Serialno}'," +
  182. $"{systolicRefValue}," +
  183. $"{diastolicRefValue}," +
  184. $"{systolicInc}," +
  185. $"{diastolicInc}," +
  186. $"{true}," +
  187. $"{systolicAvg}," +
  188. $"{diastolicAvg}," +
  189. $"{systolicAvgOffset}," +
  190. $"{diastolicAvgOffset}," +
  191. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  192. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'" +
  193. $")";
  194. _serviceTDengine.ExecuteInsertSQL(sql);
  195. #endregion
  196. }
  197. }
  198. }
  199. #endregion
  200. #endregion
  201. }
  202. else
  203. {
  204. #region (暂时取消)正常计算增量值
  205. /**
  206. // var lastPush = await _serviceTDengine.GetLastAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc");
  207. var lastPushResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc", "last_row(*)");
  208. if (lastPushResponse == null)
  209. {
  210. return;
  211. }
  212. var lastPushParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressurePushRefIncModel>>(lastPushResponse);
  213. var lastPush = lastPushParser!.Select().FirstOrDefault();
  214. //var ts = last?[0];
  215. // 曾经有下发记录
  216. if (lastPushParser?.Rows != 0)
  217. {
  218. // 重置设备,取正常值标定值
  219. if (
  220. lastPush!.SystolicRefValue == 0
  221. && lastPush!.DiastolicRefValue == 0
  222. && lastPush!.SystolicIncValue == 0
  223. && lastPush!.DiastolicIncValue == 0
  224. )
  225. {
  226. systolicRefValue = bpRef!.Systolic;//?
  227. diastolicRefValue = bpRef!.Diastolic;//?
  228. }
  229. // 取最后一条下推的标定值
  230. else
  231. {
  232. systolicRefValue = lastPush!.SystolicRefValue;
  233. diastolicRefValue = lastPush!.DiastolicRefValue;
  234. }
  235. duration = SafeType.SafeInt64(((DateTime)bp.LastUpdate! - lastPush!.Timestamp).TotalMilliseconds);
  236. lastPushSystolicInc = lastPush!.SystolicIncValue;
  237. lastPushDiastolicInc = lastPush!.DiastolicIncValue;
  238. }
  239. TimeSpan ts = TimeSpan.FromMilliseconds(duration);
  240. // 获取历史数据
  241. ////DateTime now = DateTime.Now;
  242. //DateTime now = (DateTime)bp.LastUpdate!; //测试
  243. //DateTime startTime = now.AddDays(-duration);
  244. //DateTime endTime = now;
  245. endTime = (DateTime)bp.LastUpdate!; //测试
  246. startTime = endTime - ts;
  247. var condition = $"ts between '{startTime:yyyy-MM-dd HH:mm:ss.fff}' and '{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}'";
  248. var hmBpResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bloodpress", condition);
  249. var hmBpParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressureModel>>(hmBpResponse!);
  250. var hmBp = hmBpParser?.Select();
  251. if (hmBp?.ToList().Count < 2)
  252. {
  253. _logger.LogInformation($"{bp.Serialno} 数据值不足");
  254. return;
  255. }
  256. // 最大值
  257. systolicMax = (int)hmBpParser?.Select(i => i.SystolicValue).Max()!;
  258. diastolicMax = (int)hmBpParser?.Select(i => i.DiastolicValue).Max()!;
  259. // 最小值
  260. systolicMin = (int)hmBpParser?.Select(i => i.SystolicValue).Min()!;
  261. diastolicMin = (int)hmBpParser?.Select(i => i.DiastolicValue).Min()!;
  262. // 计算去除最大值和最小值和异常值的平均值
  263. //var systolicAvg = await _serviceTDengine.GetAvgExceptMaxMinValueAsync("systolic_value", "stb_hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and systolic_value < {systolicRefValue} ");
  264. //var diastolicAvg = await _serviceTDengine.GetAvgExceptMaxMinValueAsync("diastolic_value", "stb_hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and diastolic_value < {diastolicRefValue}");
  265. systolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.SystolicValue, SafeType.SafeInt(systolicRefValue!)))!;
  266. diastolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.DiastolicValue, SafeType.SafeInt(diastolicRefValue!)))!;
  267. if (systolicAvg.Equals(0) || diastolicAvg.Equals(0))
  268. {
  269. _logger.LogWarning($"{bp.Serialno} 历史数据{startTime}---{endTime}除最大值和最小值和异常值的平均值为0,使用测试量当做平均值");
  270. systolicAvg = bp.SystolicValue;
  271. diastolicAvg = bp.DiastolicValue;
  272. }
  273. //var systolicAvg = _serviceTDengine.GetAvgExceptMaxMinValue("systolic_value", "hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and systolic_value < {systolicRefValue} ");
  274. //var diastolicAvg = _serviceTDengine.GetAvgExceptMaxMinValue("diastolic_value", "hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and diastolic_value < {diastolicRefValue}");
  275. // 增量值=(标定值-平均值)* 0.25
  276. var currentSystolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  277. var currentDiastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  278. // 累计增量
  279. systolicInc = currentSystolicInc + lastPushSystolicInc;
  280. diastolicInc = currentDiastolicInc + lastPushDiastolicInc;
  281. */
  282. #endregion
  283. }
  284. #region (暂时取消)插入BP增量值 hm_bloodpress_stats_inc
  285. // 自动建表
  286. /** sql = $"INSERT INTO health_monitor.hm_bp_stats_inc_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  287. $"USING health_monitor.stb_hm_bloodpress_stats_inc " +
  288. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  289. $"VALUES(" +
  290. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  291. $"'{bp.BloodPressId}'," +
  292. $"'{bp.MessageId}'," +
  293. $"'{bp.Serialno}'," +
  294. $"{bp.SystolicValue}," +
  295. $"{systolicRefValue}," +
  296. $"{systolicAvg}," +
  297. $"{systolicMax}," +
  298. $"{systolicMin}," +
  299. $"{systolicAvgOffset}," +
  300. $"{systolicInc}," +
  301. $"{bp.DiastolicValue}," +
  302. $"{diastolicRefValue}," +
  303. $"{diastolicAvg}," +
  304. $"{diastolicMax}," +
  305. $"{diastolicMin}," +
  306. $"{diastolicAvgOffset}," +
  307. $"{diastolicInc}," +
  308. $"{gender}," +
  309. $"{age}," +
  310. $"{height}," +
  311. $"{weight}," +
  312. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  313. $"{duration}," +
  314. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  315. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  316. $"'{string.Empty}'," +
  317. $"{isHypertension})";
  318. _serviceTDengine.ExecuteInsertSQL(sql);
  319. */
  320. // 发送到 设置设备血压标定参数
  321. #endregion
  322. #region 定时下发触发器
  323. var key = $"health_moniter/schedule_push/imei/{bp.Serialno}";
  324. var schedule_push = await _serviceEtcd.GetValAsync(key).ConfigureAwait(false);
  325. if (string.IsNullOrWhiteSpace(schedule_push))
  326. {
  327. // 注册首次下推
  328. #if DEBUG
  329. // await _serviceEtcd.PutValAsync(key, result, 60*1, false).ConfigureAwait(false);
  330. var interval = 0;
  331. // 获取当前时间
  332. DateTime now = DateTime.Now;
  333. // 计算距离下一个$interval天后的8点的时间间隔
  334. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute + 1, 58).AddDays(interval);
  335. TimeSpan timeUntilNextRun = nextRunTime - now;
  336. // 如果当前时间已经超过了8点,将等待到明天后的8点
  337. if (timeUntilNextRun < TimeSpan.Zero)
  338. {
  339. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromMinutes(1));
  340. nextRunTime += timeUntilNextRun;
  341. }
  342. var ttl = (long)timeUntilNextRun.TotalSeconds;
  343. var data = new
  344. {
  345. imei = bp.Serialno,
  346. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  347. ttl,
  348. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  349. };
  350. var result = JsonConvert.SerializeObject(data);
  351. await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  352. #else
  353. //DateTime sNow = DateTime.Now;
  354. //// 计算距离19:59:55点的时间间隔
  355. //TimeSpan timeUntil = new DateTime(sNow.Year, sNow.Month, sNow.Day, 19, 59, 55) - sNow;
  356. //// 如果当前时间已经超过了12点,将等待到明天
  357. //if (timeUntil < TimeSpan.Zero)
  358. //{
  359. // timeUntil = timeUntil.Add(TimeSpan.FromHours(24));
  360. //}
  361. //var ttl = (long)timeUntil.TotalSeconds;
  362. var interval = 0;
  363. // 获取当前时间
  364. DateTime now = DateTime.Now;
  365. // 计算距离下一个$interval天后的8点的时间间隔
  366. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, 19, 59, 58).AddDays(interval);
  367. TimeSpan timeUntilNextRun = nextRunTime - now;
  368. // 如果当前时间已经超过了8点,将等待到明天后的8点
  369. if (timeUntilNextRun < TimeSpan.Zero)
  370. {
  371. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
  372. // nextRunTime += timeUntilNextRun;
  373. nextRunTime += TimeSpan.FromDays(1);
  374. }
  375. var ttl =(long)timeUntilNextRun.TotalSeconds;
  376. var data = new
  377. {
  378. imei = bp.Serialno,
  379. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  380. ttl,
  381. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  382. };
  383. var result = JsonConvert.SerializeObject(data);
  384. await _serviceEtcd.PutValAsync(key, result,ttl, false).ConfigureAwait(false);
  385. #endif
  386. }
  387. #endregion
  388. }
  389. catch (Exception ex)
  390. {
  391. _logger.LogError($"解析血压出错, {ex.Message}\n{ex.StackTrace}");
  392. }
  393. }
  394. }
  395. }