選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BloodpressResolver.cs 27KB

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