RyTask.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. package com.slibra.quartz.task;
  2. import cn.hutool.core.date.DateUtil;
  3. import cn.hutool.http.HttpRequest;
  4. import com.alibaba.fastjson2.JSON;
  5. import com.alibaba.fastjson2.JSONArray;
  6. import com.slibra.business.domain.TXinyiIndustry;
  7. import com.slibra.business.domain.TXinyiRobot;
  8. import com.slibra.business.mapper.TXinyiIndustryMapper;
  9. import com.slibra.business.mapper.TXinyiRobotMapper;
  10. import com.slibra.common.enums.DataSourceType;
  11. import com.slibra.common.utils.DateUtils;
  12. import com.slibra.framework.datasource.DynamicDataSourceContextHolder;
  13. import lombok.extern.slf4j.Slf4j;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.stereotype.Component;
  16. import com.slibra.common.utils.StringUtils;
  17. import org.springframework.util.CollectionUtils;
  18. import org.springframework.util.StopWatch;
  19. import java.math.BigDecimal;
  20. import java.time.LocalDateTime;
  21. import java.time.format.DateTimeFormatter;
  22. import java.util.*;
  23. import java.util.concurrent.TimeUnit;
  24. /**
  25. * 定时任务调度测试
  26. *
  27. *
  28. */
  29. @Component("ryTask")
  30. @Slf4j
  31. public class RyTask
  32. {
  33. public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i)
  34. {
  35. System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i));
  36. }
  37. public void ryParams(String params)
  38. {
  39. System.out.println("执行有参方法:" + params);
  40. }
  41. public void ryNoParams()
  42. {
  43. System.out.println("执行无参方法");
  44. }
  45. //----------------------------------------------下面是新增的方法----------------------------------------------
  46. @Autowired
  47. private TXinyiIndustryMapper xinyiIndustryMapper;
  48. @Autowired
  49. private TXinyiRobotMapper xinyiRobotMapper;
  50. // public final static StopWatch watch = new StopWatch("task");
  51. public static final String[] queryTags = {"信义污水厂JS_COD_Value","信义污水厂JS_PH_Value","信义污水厂JS_SS_Value","信义污水厂JS_ZL_Value","信义污水厂JS_ZA_Value","信义污水厂JS_AD_Value","信义污水厂JS_T_Value","信义污水厂进水泵房液位","信义污水厂出水瞬时流量","信义污水厂升级出水COD","信义污水厂升级出水PH","信义污水厂升级出水SS","信义污水厂升级出水TN","信义污水厂升级出水TP","信义污水厂升级出水氨氮","信义污水厂AIT202_Value","信义污水厂AIT203_Value","信义污水厂AIT207_Value","信义污水厂AIT206_Value","信义污水厂AIT209_Value","信义污水厂AIT210_Value","信义污水厂进水TDS","信义污水厂FT101_Value","信义污水厂SWCHHYHLB1_R_Value","信义污水厂SWCHHYHLB2_R_Value","信义污水厂SWCHHYHLB3_R_Value","信义污水厂SWCHHYHLB4_R_Value","信义污水厂SWCHHYHLB5_R_Value","信义污水厂SWCHHYHLB6_R_Value","信义污水厂SWCWNHLB1_R_Value","信义污水厂SWCWNHLB2_R_Value","信义污水厂SWCWNHLB3_R_Value","信义污水厂SWCWNHLB4_R_Value","信义污水厂SWCWNHLB5_R_Value","信义污水厂GFJ1_R_Value","信义污水厂GFJ2_R_Value","信义污水厂GFJ3_R_Value","信义污水厂GFJ4_R_Value","信义污水厂GFJ5_R_Value","信义污水厂GFJ6_R_Value","信义污水厂GFJ1_KQLL_Value","信义污水厂GFJ2_KQLL_Value","信义污水厂GFJ3_KQLL_Value","信义污水厂GFJ4_KQLL_Value","信义污水厂GFJ5_KQLL_Value","信义污水厂GFJ6_KQLL_Value","信义污水厂实际碳源加药量","信义污水厂除磷加药瞬时流量"};
  52. /**
  53. * 定时从工业库获取数据
  54. *
  55. * 2024年4月17日17:44:15 调整逻辑:考虑到因断电等情况导致服务断电,所以不再同步最近一小时,而是同步从上次成功的最后一条数据开始。
  56. */
  57. public void getIndustryData(){
  58. log.info("进入了定时同步工业库数据的任务");
  59. //耗时工具
  60. // watch.start("parseJob");
  61. // 给定时间段的起始时间和结束时间
  62. LocalDateTime endTime = LocalDateTime.now();
  63. //todo
  64. // LocalDateTime startTime = endTime.plusMinutes(-60);
  65. //获取上次最后一条同步的数据的日期到 分钟维度
  66. String lastDateHour = this.xinyiIndustryMapper.getLastMinute();
  67. log.info("获取上次同步工业库的最后一条记录的时间是{}", lastDateHour);
  68. lastDateHour = lastDateHour + ":00";
  69. //开始时间
  70. LocalDateTime startTime = LocalDateTime.parse(lastDateHour.replaceAll("/", "-").replace(" ", "T"));
  71. startTime = startTime.plusMinutes(1L);//加一分钟 从上次最后一条记录的下一分钟开始
  72. /*LocalDateTime startTime = LocalDateTime.parse("2024-02-26T00:00:00");
  73. LocalDateTime endTime = LocalDateTime.parse("2024-02-27T00:00:00");*/
  74. // 每个小时的时间格式
  75. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
  76. // 循环按小时分割
  77. LocalDateTime currentHour = startTime;
  78. while (currentHour.isBefore(endTime)) {
  79. String begin = currentHour.format(formatter);
  80. String end = currentHour.plusMinutes(5).format(formatter);
  81. // 输出当前小时的起始时间和结束时间
  82. System.out.println("起始时间:" + begin);
  83. System.out.println("结束时间:" + end);
  84. // 当前小时加一小时,作为下一个小时的起始时间
  85. currentHour = currentHour.plusMinutes(5);
  86. //每个小时查询一次数据
  87. String url = "http://10.0.0.27:4568/api/v1/khquerydata";
  88. HashMap<String, Object> req = new HashMap<>();
  89. req.put("tagNames", queryTags);
  90. req.put("startTime", begin);
  91. req.put("endTime", end);
  92. req.put("recordNumbers", 100000);
  93. String body = HttpRequest.post(url).header("Authorization", "c2E6c2E=").header("clientName", "hongshan").body(JSON.toJSONString(req)).execute().body();
  94. // System.out.println("body = " + body);
  95. List<HashMap<String, String>> list = new ArrayList<>();
  96. //行转列数据处理
  97. for (String queryTag : queryTags) {
  98. JSONArray array = JSON.parseObject(body).getJSONArray(queryTag);
  99. //特殊数据处理一
  100. if(Objects.isNull(array) || array.isEmpty()){
  101. System.out.println(queryTag + "查询到了空的数据,跳过本次循环");
  102. continue;
  103. }
  104. int size = array.size();
  105. //特殊数据处理二
  106. if("0".equals(array.get(1) + "")){
  107. System.out.println(queryTag + "查询到了数据,但是数据集合只有一条,且都是0");
  108. continue;
  109. }
  110. //结合至少62个数据才满足条件(有可能获取不到)
  111. /*if(size < 62){
  112. System.out.println(queryTag + "查询到了不符合条件的数据,跳过本次循环");
  113. continue;
  114. }*/
  115. //存放的数据集
  116. //利用map去重
  117. HashMap<String, String> map = new LinkedHashMap<>();
  118. for (int i = 2; i < size; i++) {
  119. // System.out.println(i + "" + array.get(i));
  120. JSONArray oneRecord = JSON.parseArray(JSON.toJSONString(array.get(i)));
  121. //处理为空或者为0的数据
  122. Object timeStampValue = oneRecord.get(2);
  123. if(Objects.isNull(timeStampValue) || "0".equals(timeStampValue + ""))
  124. continue;
  125. BigDecimal value = Objects.isNull(oneRecord.get(0)) ? null : new BigDecimal(oneRecord.get(0) + "");
  126. long timestamp = (long) timeStampValue;
  127. String format = DateUtil.format(new Date(timestamp), DateUtils.YYYYMMDDHHMM_TS);
  128. map.put(format, queryTag + "-" + value);
  129. }
  130. list.add(map);
  131. }
  132. Set<String> recordTimeSet = new HashSet<>();
  133. Map<String, TXinyiIndustry> recordMap = new HashMap<>();
  134. for (int i = 0; i < list.size(); i++) {
  135. HashMap<String, String> map = list.get(i);
  136. int finalJ = i;
  137. map.forEach((k, v) ->{
  138. TXinyiIndustry industry = null;
  139. if(!recordTimeSet.contains(k)){//第一次
  140. industry = new TXinyiIndustry();
  141. recordTimeSet.add(k);
  142. recordMap.put(k, industry);
  143. }else{
  144. industry = recordMap.get(k);
  145. }
  146. industry.setTestTime(k);
  147. //2024年4月15日11:19:52 额外增加2个字段
  148. industry.setTestDate(k.substring(0,10));
  149. industry.setTestHour(k.substring(0,13));
  150. //解析值
  151. String[] split = v.split("-");
  152. String type = split[0];
  153. BigDecimal value = new BigDecimal(split[1]);
  154. if ("信义污水厂JS_COD_Value".equals(type)) {
  155. industry.setJsCod(value);
  156. } else if ("信义污水厂JS_PH_Value".equals(type)) {
  157. industry.setJsPh(value);
  158. } else if ("信义污水厂JS_SS_Value".equals(type)) {
  159. industry.setJsSs(value);
  160. } else if ("信义污水厂JS_ZL_Value".equals(type)) {
  161. industry.setJsTp(value);
  162. } else if ("信义污水厂JS_ZA_Value".equals(type)) {
  163. industry.setJsTn(value);
  164. } else if ("信义污水厂JS_AD_Value".equals(type)) {
  165. industry.setJsNh3(value);
  166. } else if ("信义污水厂JS_T_Value".equals(type)) {
  167. industry.setJsSwPh(value);
  168. } else if ("信义污水厂进水泵房液位".equals(type)) {
  169. industry.setJsBfyw(value);
  170. } else if ("信义污水厂出水瞬时流量".equals(type)) {
  171. industry.setCsSlqc(value);
  172. } else if ("信义污水厂升级出水COD".equals(type)) {
  173. industry.setCsCod(value);
  174. } else if ("信义污水厂升级出水PH".equals(type)) {
  175. industry.setCsPh(value);
  176. } else if ("信义污水厂升级出水SS".equals(type)) {
  177. industry.setCsSs(value);
  178. } else if ("信义污水厂升级出水TN".equals(type)) {
  179. industry.setCsTn(value);
  180. } else if ("信义污水厂升级出水TP".equals(type)) {
  181. industry.setCsTp(value);
  182. } else if ("信义污水厂升级出水氨氮".equals(type)) {
  183. industry.setCsNh3(value);
  184. } else if ("信义污水厂AIT202_Value".equals(type)) {
  185. industry.setOneHyzdDo(value);
  186. } else if ("信义污水厂AIT203_Value".equals(type)) {
  187. industry.setOneHymdDo(value);
  188. } else if ("信义污水厂AIT207_Value".equals(type)) {
  189. industry.setTwoHyzdDo(value);
  190. } else if ("信义污水厂AIT206_Value".equals(type)) {
  191. industry.setTwoHymdDo(value);
  192. } else if ("信义污水厂AIT209_Value".equals(type)) {
  193. industry.setOneMlss(value);
  194. } else if ("信义污水厂AIT210_Value".equals(type)) {
  195. industry.setTwoMlss(value);
  196. } else if ("信义污水厂进水TDS".equals(type)) {
  197. industry.setJsTds(value);
  198. } else if ("信义污水厂FT101_Value".equals(type)) {
  199. industry.setJsSlq(value);
  200. } else if ("信义污水厂SWCHHYHLB1_R_Value".equals(type)) {
  201. industry.setNHlbOneGp(value);
  202. } else if ("信义污水厂SWCHHYHLB2_R_Value".equals(type)) {
  203. industry.setNHlbTwoGp(value);
  204. } else if ("信义污水厂SWCHHYHLB3_R_Value".equals(type)) {
  205. industry.setNHlbThreeGp(value);
  206. } else if ("信义污水厂SWCHHYHLB4_R_Value".equals(type)) {
  207. industry.setNHlbFourGp(value);
  208. } else if ("信义污水厂SWCHHYHLB5_R_Value".equals(type)) {
  209. industry.setNhlBFiveGp(value);
  210. } else if ("信义污水厂SWCHHYHLB6_R_Value".equals(type)) {
  211. industry.setNHlbSixGp(value);
  212. } else if ("信义污水厂SWCWNHLB1_R_Value".equals(type)) {
  213. industry.setWHlbOneGp(value);
  214. } else if ("信义污水厂SWCWNHLB2_R_Value".equals(type)) {
  215. industry.setWHlbTwoGp(value);
  216. } else if ("信义污水厂SWCWNHLB3_R_Value".equals(type)) {
  217. industry.setWHlbThreeGp(value);
  218. } else if ("信义污水厂SWCWNHLB4_R_Value".equals(type)) {
  219. industry.setWHlbFourGp(value);
  220. } else if ("信义污水厂SWCWNHLB5_R_Value".equals(type)) {
  221. industry.setWHlbFiveGp(value);
  222. } else if ("信义污水厂GFJ1_R_Value".equals(type)) {
  223. industry.setFjOne(value);
  224. } else if ("信义污水厂GFJ2_R_Value".equals(type)) {
  225. industry.setFjTwo(value);
  226. } else if ("信义污水厂GFJ3_R_Value".equals(type)) {
  227. industry.setFjThree(value);
  228. } else if ("信义污水厂GFJ4_R_Value".equals(type)) {
  229. industry.setFjFour(value);
  230. } else if ("信义污水厂GFJ5_R_Value".equals(type)) {
  231. industry.setFjFive(value);
  232. } else if ("信义污水厂GFJ6_R_Value".equals(type)) {
  233. industry.setFjSix(value);
  234. } else if ("信义污水厂GFJ1_KQLL_Value".equals(type)) {
  235. industry.setKqllOne(value);
  236. } else if ("信义污水厂GFJ2_KQLL_Value".equals(type)) {
  237. industry.setKqllTwo(value);
  238. } else if ("信义污水厂GFJ3_KQLL_Value".equals(type)) {
  239. industry.setKqllThree(value);
  240. } else if ("信义污水厂GFJ4_KQLL_Value".equals(type)) {
  241. industry.setKqllFour(value);
  242. } else if ("信义污水厂GFJ5_KQLL_Value".equals(type)) {
  243. industry.setKqllFive(value);
  244. } else if ("信义污水厂GFJ6_KQLL_Value".equals(type)) {
  245. industry.setKqllSix(value);
  246. }else if ("信义污水厂实际碳源加药量".equals(type)) {
  247. industry.setSJTYJLY(value);
  248. }else if ("信义污水厂除磷加药瞬时流量".equals(type)) {
  249. industry.setCLJYSSLL(value);
  250. }
  251. //2024年4月22日15:45:24 额外保存两个字段 数组
  252. List<BigDecimal> extraList = new ArrayList<>();
  253. extraList.add(industry.getOneHyzdDo());
  254. extraList.add(industry.getOneHymdDo());
  255. extraList.add(industry.getTwoHyzdDo());
  256. extraList.add(industry.getTwoHymdDo());
  257. industry.setHycRjyAll(JSON.toJSONString(extraList));
  258. extraList.clear();
  259. extraList.add(industry.getOneMlss());
  260. extraList.add(industry.getTwoMlss());
  261. industry.setHycWnndAll(JSON.toJSONString(extraList));
  262. //只有最后一次才执行数据库添加
  263. if(finalJ == list.size()-1){
  264. //插入数据库
  265. xinyiIndustryMapper.insertTXinyiIndustry(industry);
  266. }
  267. });
  268. }
  269. }
  270. //执行完成 测试执行时间
  271. //计时结束
  272. // watch.stop();
  273. // System.out.println(watch.getLastTaskName() + " 执行耗时:" + watch.getLastTaskTimeMillis() + " ms");
  274. }
  275. /**
  276. * 定时从sqlserver获取数据
  277. */
  278. public void sqlserverData(){
  279. log.info("进入了定时同步SqlServer的任务");
  280. //主库获取上次最新的同步日期
  281. String lastTime = this.xinyiRobotMapper.selectLastTime();
  282. log.info("上次同步的日期是{}", lastTime);
  283. //从
  284. DynamicDataSourceContextHolder.setDataSourceType(DataSourceType.SLAVE.name());
  285. List<TXinyiRobot> tXinyiRobots = xinyiRobotMapper.selectTXinyiRobotListByTime(lastTime);
  286. DynamicDataSourceContextHolder.clearDataSourceType();
  287. // System.out.println(JSON.toJSONString(tXinyiRobots));
  288. // System.out.println("-------------");
  289. //主
  290. if(!CollectionUtils.isEmpty(tXinyiRobots)){
  291. for (TXinyiRobot tXinyiRobot : tXinyiRobots) {
  292. String date = handleDate(tXinyiRobot.getVDate().replaceAll(" ", ""));//有空格
  293. String time = handleDate(tXinyiRobot.getVTime().replaceAll(" ", ""));//有空格
  294. tXinyiRobot.setVDate(date);
  295. tXinyiRobot.setVTime(time);
  296. tXinyiRobot.setVDateTime(date + " " + time);
  297. //处理给前端展示的字段
  298. tXinyiRobot.setTestDate(date);//日期
  299. tXinyiRobot.setTestHour(date + " " + time.substring(0, 2));//小时
  300. tXinyiRobot.setTestTime(date + " " + time.substring(0, 5));//分钟
  301. tXinyiRobot.setCreatedTime(new Date());
  302. this.xinyiRobotMapper.insertTXinyiRobot(tXinyiRobot);
  303. }
  304. }
  305. }
  306. public static String handleDate(String str){
  307. StringBuilder sb = new StringBuilder();
  308. if(str.contains(" ")){//包含空格 就是年月日时分秒了
  309. String[] split = str.split(" ");
  310. addBeforeZero(sb, split[0], "/");
  311. sb.append(" ");
  312. addBeforeZero(sb, split[1], ":");
  313. }else{
  314. if(str.contains("/")){//年月日
  315. addBeforeZero(sb, str, "/");
  316. }else if(str.contains(":")){//时分秒
  317. addBeforeZero(sb, str, ":");
  318. }else {
  319. sb.append(str);
  320. }
  321. }
  322. return sb.toString();
  323. }
  324. public static StringBuilder addBeforeZero(StringBuilder sb, String str, String tag){
  325. String[] split = str.split(tag);
  326. int length = split.length;
  327. for (int i = 0; i < length; i++) {
  328. String value = split[i];
  329. Integer intValue = Integer.parseInt(value);
  330. if(intValue < 10 && value.length() == 1){////防止有正确的情况 额外再补充字符串
  331. sb.append(0).append(value);
  332. }else{
  333. sb.append(value);
  334. }
  335. if(i < length-1){
  336. sb.append(tag);
  337. }
  338. }
  339. return sb;
  340. }
  341. public static void main(String[] args) {
  342. /*LocalDateTime endTime = LocalDateTime.now();
  343. System.out.println("endTime = " + endTime);
  344. endTime = endTime.plusMinutes(60);
  345. System.out.println("endTime = " + endTime);*/
  346. /*String str = "2024/04/15 09:55";
  347. System.out.println(str);
  348. System.out.println(str.substring(0,10));
  349. System.out.println(str.substring(0,13));*/
  350. /*String str = "2024/04/18 08:00";
  351. str = str + ":00";
  352. System.out.println(str);
  353. LocalDateTime startTime = LocalDateTime.parse(str.replaceAll("/", "-").replace(" ", "T"));
  354. System.out.println(startTime.plusMinutes(1L).format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));*/
  355. ArrayList<Integer> objects = new ArrayList<>();
  356. objects.add(1);
  357. objects.add(2);
  358. objects.add(3);
  359. System.out.println(objects);
  360. objects.clear();
  361. System.out.println(objects);
  362. }
  363. }