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.

530 líneas
27KB

  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. decimal systolicAvg;
  96. decimal 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 if (person.Person.Remarks.Contains("lastPushRefValue"))
  203. {
  204. _logger.LogInformation($"{bp.Serialno},有新标定值(lastPushRefValue),使用最近一次下推的标定值和增量值(测量值=平均值计算得出的)");
  205. var lastPushResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc", "last_row(*)");
  206. var lastPushParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressurePushRefIncModel>>(lastPushResponse!);
  207. var lastPush = lastPushParser!.Select().FirstOrDefault();
  208. var lastPushSystolicRefValue = lastPush!.SystolicRefValue;
  209. var lastPushDiastolicRefValue = lastPush!.DiastolicRefValue;
  210. //使用最后一次设备下发校准值作为新的标定值
  211. systolicRefValue = lastPushSystolicRefValue;
  212. diastolicRefValue = lastPushDiastolicRefValue;
  213. // 测量值当作平均值
  214. systolicAvg = bp.SystolicValue;
  215. diastolicAvg = bp.DiastolicValue;
  216. systolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  217. diastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  218. #region 更新 gps_persoon remarks 下发增量值到iot
  219. // 更新
  220. remarkFlag = await _serviceIotWebApi.UpdatePersonRemarksAsync(bp.Serialno, (int)systolicRefValue!, (int)diastolicRefValue!, systolicInc, diastolicInc).ConfigureAwait(false);
  221. if (remarkFlag)
  222. {
  223. _logger.LogInformation($"{nameof(BloodpressResolver)} 开启血压标定值下发: {_configBoodPressResolver.EnableBPRefPush}");
  224. // 启血压标定值下发开关
  225. if (_configBoodPressResolver.EnableBPRefPush)
  226. {
  227. // 下推
  228. BloodPressCalibrationConfigModel bpIncData = new()
  229. {
  230. Imei = bp.Serialno,
  231. SystolicRefValue = (int)systolicRefValue!, //收缩压标定值,值为0 表示不生效
  232. DiastolicRefValue = (int)diastolicRefValue!, //舒张压标定值,值为0表示不生效
  233. SystolicIncValue = systolicInc, //收缩压显示增量,值为0 表示不生效
  234. DiastolicIncValue = diastolicInc //舒张压显示增量,值为0 表示不生效
  235. };
  236. // 下发 IOT 增量值
  237. var flagIot = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  238. if (flagIot)
  239. {
  240. startTime = (DateTime)bp.LastUpdate!;
  241. endTime = DateTime.Now;
  242. #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  243. sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  244. $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  245. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  246. $"VALUES(" +
  247. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  248. $"'{bp.Serialno}'," +
  249. $"{systolicRefValue}," +
  250. $"{diastolicRefValue}," +
  251. $"{systolicInc}," +
  252. $"{diastolicInc}," +
  253. $"{true}," +
  254. $"{systolicAvg}," +
  255. $"{diastolicAvg}," +
  256. $"{systolicAvgOffset}," +
  257. $"{diastolicAvgOffset}," +
  258. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  259. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'" +
  260. $")";
  261. _serviceTDengine.ExecuteInsertSQL(sql);
  262. #endregion
  263. }
  264. }
  265. }
  266. #endregion
  267. }
  268. else
  269. {
  270. #region (暂时取消)正常计算增量值
  271. /**
  272. // var lastPush = await _serviceTDengine.GetLastAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc");
  273. var lastPushResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc", "last_row(*)");
  274. if (lastPushResponse == null)
  275. {
  276. return;
  277. }
  278. var lastPushParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressurePushRefIncModel>>(lastPushResponse);
  279. var lastPush = lastPushParser!.Select().FirstOrDefault();
  280. //var ts = last?[0];
  281. // 曾经有下发记录
  282. if (lastPushParser?.Rows != 0)
  283. {
  284. // 重置设备,取正常值标定值
  285. if (
  286. lastPush!.SystolicRefValue == 0
  287. && lastPush!.DiastolicRefValue == 0
  288. && lastPush!.SystolicIncValue == 0
  289. && lastPush!.DiastolicIncValue == 0
  290. )
  291. {
  292. systolicRefValue = bpRef!.Systolic;//?
  293. diastolicRefValue = bpRef!.Diastolic;//?
  294. }
  295. // 取最后一条下推的标定值
  296. else
  297. {
  298. systolicRefValue = lastPush!.SystolicRefValue;
  299. diastolicRefValue = lastPush!.DiastolicRefValue;
  300. }
  301. duration = SafeType.SafeInt64(((DateTime)bp.LastUpdate! - lastPush!.Timestamp).TotalMilliseconds);
  302. lastPushSystolicInc = lastPush!.SystolicIncValue;
  303. lastPushDiastolicInc = lastPush!.DiastolicIncValue;
  304. }
  305. TimeSpan ts = TimeSpan.FromMilliseconds(duration);
  306. // 获取历史数据
  307. ////DateTime now = DateTime.Now;
  308. //DateTime now = (DateTime)bp.LastUpdate!; //测试
  309. //DateTime startTime = now.AddDays(-duration);
  310. //DateTime endTime = now;
  311. endTime = (DateTime)bp.LastUpdate!; //测试
  312. startTime = endTime - ts;
  313. 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}'";
  314. var hmBpResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bloodpress", condition);
  315. var hmBpParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressureModel>>(hmBpResponse!);
  316. var hmBp = hmBpParser?.Select();
  317. if (hmBp?.ToList().Count < 2)
  318. {
  319. _logger.LogInformation($"{bp.Serialno} 数据值不足");
  320. return;
  321. }
  322. // 最大值
  323. systolicMax = (int)hmBpParser?.Select(i => i.SystolicValue).Max()!;
  324. diastolicMax = (int)hmBpParser?.Select(i => i.DiastolicValue).Max()!;
  325. // 最小值
  326. systolicMin = (int)hmBpParser?.Select(i => i.SystolicValue).Min()!;
  327. diastolicMin = (int)hmBpParser?.Select(i => i.DiastolicValue).Min()!;
  328. // 计算去除最大值和最小值和异常值的平均值
  329. //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} ");
  330. //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}");
  331. systolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.SystolicValue, SafeType.SafeInt(systolicRefValue!)))!;
  332. diastolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.DiastolicValue, SafeType.SafeInt(diastolicRefValue!)))!;
  333. if (systolicAvg.Equals(0) || diastolicAvg.Equals(0))
  334. {
  335. _logger.LogWarning($"{bp.Serialno} 历史数据{startTime}---{endTime}除最大值和最小值和异常值的平均值为0,使用测试量当做平均值");
  336. systolicAvg = bp.SystolicValue;
  337. diastolicAvg = bp.DiastolicValue;
  338. }
  339. //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} ");
  340. //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}");
  341. // 增量值=(标定值-平均值)* 0.25
  342. var currentSystolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  343. var currentDiastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  344. // 累计增量
  345. systolicInc = currentSystolicInc + lastPushSystolicInc;
  346. diastolicInc = currentDiastolicInc + lastPushDiastolicInc;
  347. */
  348. #endregion
  349. }
  350. #region (暂时取消)插入BP增量值 hm_bloodpress_stats_inc
  351. // 自动建表
  352. /** sql = $"INSERT INTO health_monitor.hm_bp_stats_inc_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  353. $"USING health_monitor.stb_hm_bloodpress_stats_inc " +
  354. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  355. $"VALUES(" +
  356. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  357. $"'{bp.BloodPressId}'," +
  358. $"'{bp.MessageId}'," +
  359. $"'{bp.Serialno}'," +
  360. $"{bp.SystolicValue}," +
  361. $"{systolicRefValue}," +
  362. $"{systolicAvg}," +
  363. $"{systolicMax}," +
  364. $"{systolicMin}," +
  365. $"{systolicAvgOffset}," +
  366. $"{systolicInc}," +
  367. $"{bp.DiastolicValue}," +
  368. $"{diastolicRefValue}," +
  369. $"{diastolicAvg}," +
  370. $"{diastolicMax}," +
  371. $"{diastolicMin}," +
  372. $"{diastolicAvgOffset}," +
  373. $"{diastolicInc}," +
  374. $"{gender}," +
  375. $"{age}," +
  376. $"{height}," +
  377. $"{weight}," +
  378. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  379. $"{duration}," +
  380. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  381. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  382. $"'{string.Empty}'," +
  383. $"{isHypertension})";
  384. _serviceTDengine.ExecuteInsertSQL(sql);
  385. */
  386. // 发送到 设置设备血压标定参数
  387. #endregion
  388. #region 定时下发触发器
  389. var key = $"health_moniter/schedule_push/imei/{bp.Serialno}";
  390. var schedule_push = await _serviceEtcd.GetValAsync(key).ConfigureAwait(false);
  391. if (string.IsNullOrWhiteSpace(schedule_push))
  392. {
  393. // 注册首次下推
  394. #if DEBUG
  395. // await _serviceEtcd.PutValAsync(key, result, 60*1, false).ConfigureAwait(false);
  396. var interval = 0;
  397. // 获取当前时间
  398. DateTime now = DateTime.Now;
  399. // 计算距离下一个$interval天后的8点的时间间隔
  400. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute + 1, 58).AddDays(interval);
  401. TimeSpan timeUntilNextRun = nextRunTime - now;
  402. // 如果当前时间已经超过了8点,将等待到明天后的8点
  403. if (timeUntilNextRun < TimeSpan.Zero)
  404. {
  405. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromMinutes(1));
  406. nextRunTime += timeUntilNextRun;
  407. }
  408. var ttl = (long)timeUntilNextRun.TotalSeconds;
  409. var data = new
  410. {
  411. imei = bp.Serialno,
  412. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  413. ttl,
  414. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  415. };
  416. var result = JsonConvert.SerializeObject(data);
  417. await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  418. #else
  419. //DateTime sNow = DateTime.Now;
  420. //// 计算距离19:59:55点的时间间隔
  421. //TimeSpan timeUntil = new DateTime(sNow.Year, sNow.Month, sNow.Day, 19, 59, 55) - sNow;
  422. //// 如果当前时间已经超过了12点,将等待到明天
  423. //if (timeUntil < TimeSpan.Zero)
  424. //{
  425. // timeUntil = timeUntil.Add(TimeSpan.FromHours(24));
  426. //}
  427. //var ttl = (long)timeUntil.TotalSeconds;
  428. var interval = 0;
  429. // 获取当前时间
  430. DateTime now = DateTime.Now;
  431. // 计算距离下一个$interval天后的8点的时间间隔
  432. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, 19, 59, 58).AddDays(interval);
  433. TimeSpan timeUntilNextRun = nextRunTime - now;
  434. // 如果当前时间已经超过了8点,将等待到明天后的8点
  435. if (timeUntilNextRun < TimeSpan.Zero)
  436. {
  437. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
  438. // nextRunTime += timeUntilNextRun;
  439. nextRunTime += TimeSpan.FromDays(1);
  440. }
  441. var ttl =(long)timeUntilNextRun.TotalSeconds;
  442. var data = new
  443. {
  444. imei = bp.Serialno,
  445. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  446. ttl,
  447. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  448. };
  449. var result = JsonConvert.SerializeObject(data);
  450. await _serviceEtcd.PutValAsync(key, result,ttl, false).ConfigureAwait(false);
  451. #endif
  452. }
  453. #endregion
  454. }
  455. catch (Exception ex)
  456. {
  457. _logger.LogError($"解析血压出错, {ex.Message}\n{ex.StackTrace}");
  458. }
  459. }
  460. }
  461. }