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.

685 line
41KB

  1. using dotnet_etcd;
  2. using Etcdserverpb;
  3. using Google.Protobuf.WellKnownTypes;
  4. using HealthMonitor.Common;
  5. using HealthMonitor.Common.helper;
  6. using HealthMonitor.Core.Common.Extensions;
  7. using HealthMonitor.Model.Config;
  8. using HealthMonitor.Model.Service;
  9. using HealthMonitor.Model.Service.Mapper;
  10. using HealthMonitor.Service.Biz;
  11. using HealthMonitor.Service.Biz.db;
  12. using HealthMonitor.Service.Etcd;
  13. using HealthMonitor.Service.Sub;
  14. using Microsoft.AspNetCore.Mvc.RazorPages;
  15. using Microsoft.EntityFrameworkCore.Metadata.Internal;
  16. using Microsoft.Extensions.Options;
  17. using Newtonsoft.Json;
  18. using Newtonsoft.Json.Linq;
  19. using System.Reflection;
  20. using System.Threading.Channels;
  21. using TDengineDriver;
  22. using TDengineTMQ;
  23. namespace HealthMonitor.WebApi
  24. {
  25. public class Worker : BackgroundService
  26. {
  27. private readonly ILogger<Worker> _logger;
  28. private readonly IServiceProvider _services;
  29. private readonly TDengineDataSubcribe _tdEngineDataSubcribe;
  30. private readonly PackageProcess _processor;
  31. private readonly TDengineService _serviceTDengine;
  32. private readonly EtcdService _serviceEtcd;
  33. private readonly HttpHelper _httpHelper = default!;
  34. private readonly IotWebApiService _serviceIotWebApi;
  35. private readonly BoodPressResolverConfig _configBoodPressResolver;
  36. private CancellationTokenSource _tokenSource=default!;
  37. public Worker(ILogger<Worker> logger, IServiceProvider services, IotWebApiService iotWebApiService, IOptions<BoodPressResolverConfig> optionBoodPressResolver, PackageProcess processor,TDengineDataSubcribe tdEngineDataSubcribe, TDengineService serviceDengine, HttpHelper httpHelper, EtcdService serviceEtcd)
  38. {
  39. _logger = logger;
  40. _tdEngineDataSubcribe = tdEngineDataSubcribe;
  41. _services = services;
  42. _serviceIotWebApi = iotWebApiService;
  43. _processor = processor;
  44. _serviceEtcd = serviceEtcd;
  45. _serviceTDengine = serviceDengine;
  46. _httpHelper = httpHelper;
  47. _configBoodPressResolver = optionBoodPressResolver.Value;
  48. }
  49. public override Task StartAsync(CancellationToken cancellationToken)
  50. {
  51. _logger.LogInformation("------StartAsync");
  52. _tokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
  53. // 创建消费者
  54. // _tdEngineDataSubcribe.CreateConsumer();
  55. return base.StartAsync(cancellationToken);
  56. }
  57. public override Task StopAsync(CancellationToken cancellationToken)
  58. {
  59. _logger.LogInformation("------StopAsync");
  60. _tokenSource.Cancel(); //停止工作线程
  61. // 关闭消费者
  62. // _tdEngineDataSubcribe.CloseConsumer();
  63. return base.StopAsync(cancellationToken);
  64. }
  65. protected override Task ExecuteAsync(CancellationToken stoppingToken)
  66. {
  67. // var processor = _services.GetService<PackageProcess>();
  68. TaskFactory factory = new(_tokenSource.Token);
  69. factory.StartNew(async () =>
  70. {
  71. if (_tokenSource.IsCancellationRequested)
  72. _logger.LogWarning("Worker exit");
  73. _logger.LogInformation("------ResolveAsync");
  74. while (!_tokenSource.IsCancellationRequested)
  75. {
  76. //
  77. await _processor.ResolveAsync().ConfigureAwait(false);
  78. // await _tdEngineDataSubcribe.ProcessMsg();
  79. }
  80. }, TaskCreationOptions.LongRunning);
  81. factory.StartNew(() =>
  82. {
  83. _logger.LogInformation("------_tdEngineDataSubcribe");
  84. while (!_tokenSource.IsCancellationRequested)
  85. {
  86. _tdEngineDataSubcribe.BeginListen(_tokenSource.Token);
  87. }
  88. }, TaskCreationOptions.LongRunning);
  89. Task.Run(() =>
  90. _serviceEtcd.WacthKeysWithPrefixResponseAsync($"health_moniter/schedule_push", WatchEvents)
  91. , stoppingToken);
  92. // watch
  93. //factory.StartNew(() =>
  94. //{
  95. // while (!_tokenSource.IsCancellationRequested)
  96. // {
  97. // //_serviceEtcd.WacthKeysWithPrefixAsync($"health_moniter/schedule_push", watchEvents => WatchEvents(watchEvents));
  98. // _serviceEtcd.WacthKeysWithPrefixResponseAsync($"health_moniter/schedule_push", WatchEvents);
  99. // }
  100. //}, TaskCreationOptions.LongRunning);
  101. // _serviceEtcd.WacthKeysWithPrefixResponseAsync($"health_moniter/schedule_push", WatchEvents);
  102. return Task.Delay(1000, _tokenSource.Token);
  103. }
  104. private void WatchEvents(WatchEvent[] response)
  105. {
  106. foreach (WatchEvent e1 in response)
  107. {
  108. // Console.WriteLine($"{nameof(WatchEventsAsync)} --- {e1.Key}:{e1.Value}:{e1.Type}");
  109. switch (e1.Type.ToString())
  110. {
  111. //case "Put":
  112. // // 获取时间点计算TTL
  113. // break;
  114. case "Delete":
  115. // TTL到了重新计算TTL,下发
  116. Console.WriteLine($"--- {e1.Key}:{e1.Value}:{e1.Type}");
  117. break;
  118. }
  119. }
  120. }
  121. private void WatchEvents(WatchResponse response)
  122. {
  123. response.Events.ToList().ForEach(async e =>
  124. {
  125. switch (e.Type.ToString())
  126. {
  127. case "Put":
  128. // 获取时间点计算TTL
  129. Console.BackgroundColor = ConsoleColor.Blue;
  130. Console.WriteLine($"--- {e.Type}--{e.Kv.Key.ToStringUtf8()}--{e.Kv.Value.ToStringUtf8()}---{DateTime.Now}");
  131. Console.BackgroundColor = ConsoleColor.Black;
  132. break;
  133. case "Delete":
  134. // TTL到了重新计算TTL,下发
  135. Console.BackgroundColor = ConsoleColor.Green;
  136. Console.WriteLine($"--- {e.Type}--{e.Kv.Key.ToStringUtf8()}--{e.Kv.Value.ToStringUtf8()}---{DateTime.Now}");
  137. // var key = $"health_moniter/schedule_push/imei/{bp.Serialno}";
  138. var key = e.Kv.Key.ToStringUtf8();
  139. var imeiDel = key.Split('/')[3];
  140. var schedule_push = await _serviceEtcd.GetValAsync(key).ConfigureAwait(false);
  141. if (string.IsNullOrWhiteSpace(schedule_push))
  142. {
  143. int systolicInc;
  144. int diastolicInc;
  145. int systolicRefValue;
  146. int diastolicRefValue;
  147. int systolicAvg;
  148. int diastolicAvg;
  149. int systolicMax = 0;
  150. int diastolicMax = 0;
  151. // 最小值
  152. int systolicMin = 0;
  153. int diastolicMin = 0;
  154. // 偏移参数
  155. var avgOffset = 0.25M;
  156. var systolicAvgOffset = avgOffset;
  157. var diastolicAvgOffset = avgOffset;
  158. // 最后一次下发值
  159. int lastPushSystolicInc = 0;
  160. int lastPushDiastolicInc = 0;
  161. var startTime = DateTime.Now;
  162. // 下发增量值
  163. #region 统计定时下发增量值
  164. //var last = await _serviceTDengine.GetLastAsync("stb_hm_bloodpress_stats_inc", $"serialno='{imeiDel}' order by last_update desc");
  165. //var ts = last?[0];
  166. // 最后一条血压数据
  167. var condition = $"serialno='{imeiDel}' order by last_update desc";
  168. var field = "last_row(*)";
  169. var lastHmBpResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bloodpress", condition, field);
  170. var lastHmBpParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressureModel>>(lastHmBpResponse!);
  171. var lastHmBp = lastHmBpParser?.Select().FirstOrDefault();
  172. //if (lastHmBpParser?.Select()?.ToList().Count < 2)
  173. //{
  174. // _logger.LogInformation($"{imeiDel} -- {nameof(Worker)} --{nameof(WatchEvents)} -- 血压数据条目不足");
  175. // break;
  176. //}
  177. // 7 天有效数据
  178. if (lastHmBp?.Timestamp.AddDays(7) > DateTime.Now)
  179. {
  180. // 计算增量值
  181. condition= $"serialno='{imeiDel}' order by ts desc";
  182. var lastPushResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bp_push_ref_inc_value", condition, field);
  183. if (lastPushResponse == null)
  184. {
  185. _logger.LogInformation($"{imeiDel}--没有下发记录");
  186. break;
  187. }
  188. var lastPushParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressurePushRefIncModel>>(lastPushResponse);
  189. var lastPush = lastPushParser!.Select().FirstOrDefault();
  190. systolicRefValue = lastPush!.SystolicRefValue;
  191. diastolicRefValue = lastPush!.DiastolicRefValue;
  192. lastPushSystolicInc = lastPush!.SystolicIncValue;
  193. lastPushDiastolicInc = lastPush!.DiastolicIncValue;
  194. condition = $"ts between '{lastPush?.Timestamp:yyyy-MM-dd HH:mm:ss.fff}' and '{startTime:yyyy-MM-dd HH:mm:ss.fff}' " +
  195. $"and serialno='{imeiDel}' " +
  196. $"and is_display = true";
  197. var hmBpResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bloodpress", condition);
  198. var hmBpParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressureModel>>(hmBpResponse!);
  199. var hmBp = hmBpParser?.Select();
  200. //if (hmBp?.ToList().Count < 2)
  201. // 1. 判断数据样本数量
  202. if(hmBpParser!.Rows < 5)
  203. {
  204. _logger.LogInformation($"{imeiDel} -- {nameof(Worker)} --{nameof(WatchEvents)} -- 统计定时下发,计算增量值的数据条目不足:{hmBpParser!.Rows} < 5");
  205. _logger.LogInformation($"{imeiDel} -- {nameof(Worker)} --{nameof(WatchEvents)} 没有足够的数据样本,不会定时下发");
  206. break;
  207. }
  208. // 最大值
  209. systolicMax = (int)hmBpParser?.Select(i => i.SystolicValue).Max()!;
  210. diastolicMax = (int)hmBpParser?.Select(i => i.DiastolicValue).Max()!;
  211. // 最小值
  212. systolicMin = (int)hmBpParser?.Select(i => i.SystolicValue).Min()!;
  213. diastolicMin = (int)hmBpParser?.Select(i => i.DiastolicValue).Min()!;
  214. systolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.SystolicValue, SafeType.SafeInt(systolicRefValue!)))!;
  215. diastolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.DiastolicValue, SafeType.SafeInt(diastolicRefValue!)))!;
  216. // 2. 判断能否计算增量值
  217. if (systolicAvg.Equals(0) || diastolicAvg.Equals(0))
  218. {
  219. _logger.LogInformation($"{imeiDel}--{nameof(Worker)}--计算平均值" +
  220. $"\n currentSystolicAvg:{systolicAvg} -- lastPushSystolicInc:{lastPushSystolicInc}" +
  221. $"\n currentDiastolicInc:{diastolicAvg} -- lastPushDiastolicInc:{lastPushDiastolicInc}");
  222. _logger.LogInformation($"{imeiDel}--{nameof(Worker)} 没有足够的数据样本计算平均值,不会定时下发");
  223. break;
  224. }
  225. // 增量值=(标定值-平均值)* 0.25
  226. var currentSystolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  227. var currentDiastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  228. // 累计增量
  229. systolicInc = currentSystolicInc + lastPushSystolicInc;
  230. diastolicInc = currentDiastolicInc + lastPushDiastolicInc;
  231. _logger.LogInformation($"{imeiDel}--{nameof(Worker)}--计算增量值" +
  232. $"\n systolicInc:{systolicInc}-- currentSystolicInc:{currentSystolicInc} -- lastPushSystolicInc:{lastPushSystolicInc}" +
  233. $"\n diastolicInc:{diastolicInc} --currentDiastolicInc:{currentDiastolicInc} -- lastPushDiastolicInc:{lastPushDiastolicInc}");
  234. _logger.LogInformation($"{imeiDel}--{nameof(Worker)}-- 定时校准,发给设备的绝对增量值=(上次绝对增量值+新数据的增量值)");
  235. _logger.LogInformation($"{nameof(Worker)} 开启血压标定值下发: {_configBoodPressResolver.EnableBPRefPush}");
  236. if (_configBoodPressResolver.EnableBPRefPush)
  237. // if (false) // 临时关闭
  238. {
  239. BloodPressCalibrationConfigModel bpIncData = new()
  240. {
  241. Imei = imeiDel,
  242. SystolicRefValue = SafeType.SafeInt(((int)systolicRefValue!)), //收缩压标定值,值为0 表示不生效
  243. DiastolicRefValue = SafeType.SafeInt(((int)diastolicRefValue!)), //舒张压标定值,值为0表示不生效
  244. SystolicIncValue = SafeType.SafeInt(((int)systolicInc!)), //收缩压显示增量,值为0 表示不生效
  245. DiastolicIncValue = SafeType.SafeInt(((int)diastolicInc!)) //舒张压显示增量,值为0 表示不生效
  246. };
  247. var pushedBP = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  248. if (pushedBP)
  249. {
  250. #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  251. var sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{imeiDel.Substring(imeiDel.Length - 2)} " +
  252. $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  253. $"TAGS ('{imeiDel.Substring(imeiDel.Length - 2)}') " +
  254. $"VALUES(" +
  255. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  256. $"'{imeiDel}'," +
  257. $"{bpIncData.SystolicRefValue}," +
  258. $"{bpIncData.DiastolicRefValue}," +
  259. $"{bpIncData.SystolicIncValue}," +
  260. $"{bpIncData.DiastolicIncValue}," +
  261. $"{false}," +
  262. $"{systolicAvg}," +
  263. $"{diastolicAvg}," +
  264. $"{systolicAvgOffset}," +
  265. $"{diastolicAvgOffset}," +
  266. $"'{lastPush?.Timestamp:yyyy-MM-dd HH:mm:ss.fff}'," +
  267. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'" +
  268. $")";
  269. _serviceTDengine.ExecuteInsertSQL(sql);
  270. #endregion
  271. #region 注册定时下发
  272. // 注册下次下推
  273. var endTime = DateTime.Now;
  274. #if DEBUG
  275. //long ttl = (long)((60 * 1000-(endTime-startTime).TotalMilliseconds)/1000);
  276. //await _serviceEtcd.PutValAsync(key, imeiDel,ttl, false).ConfigureAwait(false);
  277. var interval = 0;
  278. // 获取当前时间
  279. DateTime now = DateTime.Now;
  280. // 计算距离下一个$interval天后的8点的时间间隔
  281. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute + 2, 0).AddDays(interval);
  282. TimeSpan timeUntilNextRun = nextRunTime - now;
  283. // 如果当前时间已经超过了8点,将等待到明天后的8点
  284. if (timeUntilNextRun < TimeSpan.Zero)
  285. {
  286. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromMinutes(1));
  287. nextRunTime += timeUntilNextRun;
  288. }
  289. // var ttl = timeUntilNextRun.TotalMilliseconds;
  290. long ttl = (long)((timeUntilNextRun.TotalMilliseconds - (endTime - startTime).TotalMilliseconds) / 1000);
  291. var data = new
  292. {
  293. imei = imeiDel,
  294. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  295. ttl,
  296. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  297. };
  298. var result = JsonConvert.SerializeObject(data);
  299. await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  300. #else
  301. // 每$interval天,晚上8点
  302. var interval = 1;
  303. // 获取当前时间
  304. DateTime now = DateTime.Now;
  305. // 计算距离下一个$interval天后的8点的时间间隔
  306. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, 20, 0, 0).AddDays(interval);
  307. TimeSpan timeUntilNextRun = nextRunTime - now;
  308. // 如果当前时间已经超过了8点,将等待到明天后的8点
  309. if (timeUntilNextRun < TimeSpan.Zero)
  310. {
  311. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
  312. nextRunTime += timeUntilNextRun;
  313. }
  314. // var ttl = timeUntilNextRun.TotalMilliseconds;
  315. long ttl = (long)((timeUntilNextRun.TotalMilliseconds-(endTime-startTime).TotalMilliseconds)/1000);
  316. var data = new
  317. {
  318. imei = imeiDel,
  319. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  320. ttl,
  321. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  322. };
  323. var result = JsonConvert.SerializeObject(data);
  324. await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  325. #endif
  326. #endregion
  327. }
  328. else
  329. {
  330. _logger.LogInformation($"错误响应,没有下推数据");
  331. }
  332. }
  333. }
  334. else
  335. {
  336. _logger.LogInformation($"向{imeiDel}统计数据已经失效");
  337. }
  338. #endregion
  339. }
  340. break;
  341. }
  342. });
  343. }
  344. // private void WatchEvents(WatchResponse response)
  345. // {
  346. // response.Events.ToList().ForEach(async e =>
  347. // {
  348. // switch (e.Type.ToString())
  349. // {
  350. // case "Put":
  351. // // 获取时间点计算TTL
  352. // Console.BackgroundColor = ConsoleColor.Blue;
  353. // Console.WriteLine($"--- {e.Type}--{e.Kv.Key.ToStringUtf8()}--{e.Kv.Value.ToStringUtf8()}---{DateTime.Now}");
  354. // Console.BackgroundColor = ConsoleColor.Black;
  355. // break;
  356. // case "Delete":
  357. // // TTL到了重新计算TTL,下发
  358. // Console.BackgroundColor = ConsoleColor.Green;
  359. // Console.WriteLine($"--- {e.Type}--{e.Kv.Key.ToStringUtf8()}--{e.Kv.Value.ToStringUtf8()}---{DateTime.Now}");
  360. // // var key = $"health_moniter/schedule_push/imei/{bp.Serialno}";
  361. // var key = e.Kv.Key.ToStringUtf8();
  362. // var imeiDel = key.Split('/')[3];
  363. // var schedule_push = await _serviceEtcd.GetValAsync(key).ConfigureAwait(false);
  364. // if (string.IsNullOrWhiteSpace(schedule_push))
  365. // {
  366. // var startTime =DateTime.Now;
  367. // // 下发增量值
  368. // #region 定时下发增量值
  369. // var last= await _serviceTDengine.GetLastAsync("stb_hm_bloodpress_stats_inc", $"serialno='{imeiDel}' order by last_update desc");
  370. // var ts = last?[0];
  371. // if (DateTime.TryParse(ts?.ToString(),out DateTime newTs))
  372. // {
  373. // // 7 天有效数据
  374. // if (newTs.AddDays(7) > DateTime.Now)
  375. // {
  376. // Console.WriteLine(ts);
  377. // var systolic_ref_value = last?[5];
  378. // var diastolic_ref_value = last?[12];
  379. // var systolic_inc_value = last?[10];
  380. // var diastolic_inc_value = last?[17];
  381. // #region 判断是否初始化remark
  382. // // 判断是否初始化remark
  383. // /**
  384. // *
  385. // var imei = imeiDel;
  386. // var last_push = await _serviceTDengine.GetLastAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{imei}' order by ts desc");
  387. // if (last_push?.Count == 0)
  388. // {
  389. // var dataServiceBaseUrl = $"https://id.ssjlai.com/data";
  390. // var DataServicePersionGet = $"{dataServiceBaseUrl}/api/GpsCard/GpsPerson/GetFirst";
  391. // List<KeyValuePair<string, string>> Dataheaders = new()
  392. // {
  393. // new KeyValuePair<string, string>("requestId", $"{imei}")
  394. // };
  395. // var dataPersion = new
  396. // {
  397. // filters = new List<object>() { new { key = "serialno", value = $"{imei}", valueType = "string", @operator = "Equal" } },
  398. // orderBys = new List<object>() { new { key = "serialno", isDesc = true } }
  399. // };
  400. // var resRef = await _httpHelper.HttpToPostAsync(DataServicePersionGet, dataPersion, Dataheaders).ConfigureAwait(false);
  401. // var resObj = JsonConvert.DeserializeObject(resRef!) as JToken;
  402. // var remark = resObj?["remarks"]?.ToString();
  403. // // 修改数据库
  404. // if (string.IsNullOrWhiteSpace(remark))
  405. // {
  406. // var newRemarkData = new
  407. // {
  408. // imei,
  409. // time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  410. // commandValue = new
  411. // {
  412. // systolicCalibrationValue = systolic_ref_value, //收缩压标定值,值为0 表示不生效
  413. // diastolicCalibrationValue = diastolic_ref_value, //舒张压标定值,值为0表示不生效
  414. // systolicIncValue = 0, //收缩压显示增量,值为0 表示不生效
  415. // diastolicIncValue = 0 //舒张压显示增量,值为0 表示不生效
  416. // }
  417. // };
  418. // resObj!["remarks"] = $"is_blood_press:{JsonConvert.SerializeObject(newRemarkData)}|";
  419. // var DataServicePersionUpdate = $"{dataServiceBaseUrl}/api/GpsCard/GpsPerson/Update";
  420. // var resUpdate = await _httpHelper.HttpToPostAsync(DataServicePersionUpdate, resObj, Dataheaders).ConfigureAwait(false);
  421. // _logger.LogInformation($"更新Person数据库|{resUpdate}");
  422. // //更新缓存
  423. // List<KeyValuePair<string, string>> headersCache = new()
  424. // {
  425. // new KeyValuePair<string, string>("AuthKey", "key1")
  426. // };
  427. // var cacheUrl = $"http://id.ssjlai.com/webapi/api/Device/UpdatePersonInfoCache?imei={imei}";
  428. // var updateCache = await _httpHelper.HttpToGetAsync(cacheUrl, headersCache);
  429. // _logger.LogInformation($"更新Person缓存|{updateCache}");
  430. // }
  431. // }
  432. // */
  433. // #endregion
  434. // //var bpData = new
  435. // //{
  436. // // imei = imeiDel,
  437. // // //systolicCalibrationValue = last?[5], //收缩压标定值,值为0 表示不生效
  438. // // //diastolicCalibrationValue = last?[12], //舒张压标定值,值为0表示不生效
  439. // // //systolicIncValue = last?[10], //收缩压显示增量,值为0 表示不生效
  440. // // //diastolicIncValue = last?[17] //舒张压显示增量,值为0 表示不生效
  441. // // systolicCalibrationValue = systolic_ref_value, //收缩压标定值,值为0 表示不生效
  442. // // diastolicCalibrationValue = diastolic_ref_value, //舒张压标定值,值为0表示不生效
  443. // // systolicIncValue = systolic_inc_value, //收缩压显示增量,值为0 表示不生效
  444. // // diastolicIncValue = diastolic_inc_value //舒张压显示增量,值为0 表示不生效
  445. // //};
  446. // //var str = JsonConvert.SerializeObject(bpData);
  447. // //var url = $"http://id.ssjlai.com/webapi/api/Command/SetBloodPressCalibrationConfig";
  448. // //List<KeyValuePair<string, string>> headers = new()
  449. // //{
  450. // // new KeyValuePair<string, string>("AuthKey", "key1")
  451. // //};
  452. // //var res = await _httpHelper.HttpToPostAsync(url, bpData, headers).ConfigureAwait(false);
  453. // //_logger.LogInformation($"向{imeiDel}下发增量值数据:{str},响应:{res}");
  454. // //var resJToken = JsonConvert.DeserializeObject(res!) as JToken;
  455. // //if (resJToken!["message"]!.ToString().Equals("ok"))
  456. // Console.WriteLine($"{nameof(Worker)} 开启血压标定值下发: {_configBoodPressResolver.EnableBPRefPush}");
  457. // // if (_configBoodPressResolver.EnableBPRefPush)
  458. // if (false) // 临时关闭
  459. // {
  460. // BloodPressCalibrationConfigModel bpIncData = new()
  461. // {
  462. // Imei = imeiDel,
  463. // SystolicRefValue = SafeType.SafeInt(((int)systolic_ref_value!)), //收缩压标定值,值为0 表示不生效
  464. // DiastolicRefValue = SafeType.SafeInt(((int)diastolic_ref_value!)), //舒张压标定值,值为0表示不生效
  465. // SystolicIncValue = SafeType.SafeInt(((int)systolic_inc_value!)), //收缩压显示增量,值为0 表示不生效
  466. // DiastolicIncValue = SafeType.SafeInt(((int)diastolic_inc_value!)) //舒张压显示增量,值为0 表示不生效
  467. // };
  468. // var pushedBP = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  469. // if (pushedBP)
  470. // {
  471. // #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  472. // var sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{imeiDel.Substring(imeiDel.Length - 2)} " +
  473. // $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  474. // $"TAGS ('{imeiDel.Substring(imeiDel.Length - 2)}') " +
  475. // $"VALUES(" +
  476. // $"'{DateTime.Now:yyyy-MM-dd HH:mm:ss.fff}'," +
  477. // $"'{imeiDel}'," +
  478. // $"{systolic_ref_value}," +
  479. // $"{diastolic_ref_value}," +
  480. // $"{systolic_inc_value}," +
  481. // $"{diastolic_inc_value}," +
  482. // $"{false})";
  483. // _serviceTDengine.ExecuteInsertSQL(sql);
  484. // #endregion
  485. // // 注册下次下推
  486. // var endTime = DateTime.Now;
  487. //#if DEBUG
  488. // //long ttl = (long)((60 * 1000-(endTime-startTime).TotalMilliseconds)/1000);
  489. // //await _serviceEtcd.PutValAsync(key, imeiDel,ttl, false).ConfigureAwait(false);
  490. // var interval = 0;
  491. // // 获取当前时间
  492. // DateTime now = DateTime.Now;
  493. // // 计算距离下一个$interval天后的8点的时间间隔
  494. // DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute + 2, 0).AddDays(interval);
  495. // TimeSpan timeUntilNextRun = nextRunTime - now;
  496. // // 如果当前时间已经超过了8点,将等待到明天后的8点
  497. // if (timeUntilNextRun < TimeSpan.Zero)
  498. // {
  499. // timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromMinutes(1));
  500. // nextRunTime += timeUntilNextRun;
  501. // }
  502. // // var ttl = timeUntilNextRun.TotalMilliseconds;
  503. // long ttl = (long)((timeUntilNextRun.TotalMilliseconds - (endTime - startTime).TotalMilliseconds) / 1000);
  504. // var data = new
  505. // {
  506. // imei = imeiDel,
  507. // create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  508. // ttl,
  509. // next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  510. // };
  511. // var result = JsonConvert.SerializeObject(data);
  512. // await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  513. //#else
  514. // // 每$interval天,晚上8点
  515. // var interval = 1;
  516. // // 获取当前时间
  517. // DateTime now = DateTime.Now;
  518. // // 计算距离下一个$interval天后的8点的时间间隔
  519. // DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, 20, 0, 0).AddDays(interval);
  520. // TimeSpan timeUntilNextRun = nextRunTime - now;
  521. // // 如果当前时间已经超过了8点,将等待到明天后的8点
  522. // if (timeUntilNextRun < TimeSpan.Zero)
  523. // {
  524. // timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
  525. // nextRunTime += timeUntilNextRun;
  526. // }
  527. // // var ttl = timeUntilNextRun.TotalMilliseconds;
  528. // long ttl = (long)((timeUntilNextRun.TotalMilliseconds-(endTime-startTime).TotalMilliseconds)/1000);
  529. // var data = new
  530. // {
  531. // imei = imeiDel,
  532. // create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  533. // ttl,
  534. // next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  535. // };
  536. // var result = JsonConvert.SerializeObject(data);
  537. // await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  538. //#endif
  539. // }
  540. // else
  541. // {
  542. // _logger.LogInformation($"错误响应,没有下推数据");
  543. // }
  544. // }
  545. // }
  546. // }
  547. // else
  548. // {
  549. // _logger.LogInformation($"向{imeiDel}准备下推的数据已经失效ts,{ts}");
  550. // }
  551. // #endregion
  552. // //if (imeiDel.Equals("861281060086216"))
  553. // //{
  554. // // var result = await _httpHelper.HttpToPostAsync(url, data, headers).ConfigureAwait(false);
  555. // // _logger.LogInformation($"向{imeiDel}下发增量值数据:{str},响应:{result}");
  556. // // Console.WriteLine(str);
  557. // //}
  558. // //Console.BackgroundColor = ConsoleColor.Black;
  559. // }
  560. // break;
  561. // }
  562. // });
  563. // //if (response.Events.Count == 0)
  564. // //{
  565. // // Console.WriteLine(response);
  566. // //}
  567. // //else
  568. // //{
  569. // // Console.WriteLine($"{response.Events[0].Kv.Key.ToStringUtf8()}:{response.Events.Kv.Value.ToStringUtf8()}");
  570. // //}
  571. // }
  572. }
  573. }