No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

BloodpressResolver.cs 25KB

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