EdosUtil.java 74 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556
  1. package com.gyee.generation.util.realtimesource;
  2. import com.alibaba.fastjson.JSONArray;
  3. import com.alibaba.fastjson.JSONObject;
  4. import com.gyee.common.model.DNAStatVal;
  5. import com.gyee.common.model.DNAVal;
  6. import com.gyee.common.model.PointData;
  7. import com.gyee.common.model.StringUtils;
  8. import com.gyee.generation.model.auto.ProBasicEquipmentPoint;
  9. import com.gyee.generation.model.auto.ProBasicPowerstationPoint;
  10. import com.gyee.generation.model.vo.RealTimeParameterVo;
  11. import com.gyee.generation.util.realtimesource.timeseries.ErrorRequest;
  12. import com.gyee.generation.util.realtimesource.timeseries.JsonObjectHelper;
  13. import org.springframework.beans.factory.annotation.Value;
  14. import org.springframework.http.*;
  15. import org.springframework.stereotype.Component;
  16. import org.springframework.web.client.HttpClientErrorException;
  17. import org.springframework.web.client.RestTemplate;
  18. import java.time.LocalDateTime;
  19. import java.time.ZoneOffset;
  20. import java.util.*;
  21. /**
  22. *
  23. */
  24. @Component
  25. public class EdosUtil implements IEdosUtil {
  26. private RestTemplate restTemplate = new RestTemplate();
  27. @Value("${db.url1}")
  28. private String baseURL;
  29. @Value("${db.url2}")
  30. private String baseURL2;
  31. @Value("${initialcode}")
  32. private String initialcode;
  33. @Override
  34. public PointData getRealData(ProBasicPowerstationPoint point) throws Exception {
  35. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  36. try {
  37. Optional<String> keys = Optional.ofNullable(point.getNemCode());
  38. Optional<String> thingType = Optional.ofNullable("station");
  39. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  40. Optional<String> uniformCodes = Optional.ofNullable(point.getUniformCode());
  41. String url = baseURL + "/latest?null=0";
  42. if (point.getNemCode().startsWith("GF-")) {
  43. url = baseURL2 + "/latest?null=0";
  44. }
  45. if (keys.isPresent())
  46. url = url + "&keys=" + keys.get();
  47. if (thingType.isPresent())
  48. url = url + "&thingType=" + thingType.get();
  49. if (thingId.isPresent())
  50. url = url + "&thingId=" + thingId.get();
  51. if (uniformCodes.isPresent())
  52. url = url + "&uniformCodes=" + uniformCodes.get();
  53. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  54. JSONObject jsonArray = resp.getBody();
  55. if (StringUtils.isNotEmpty(jsonArray)) {
  56. List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
  57. if (list.size() > 0) {
  58. PointData po = list.get(0);
  59. po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4));
  60. return po;
  61. } else {
  62. return ErrorRequest.RequestError(point.getNemCode());
  63. }
  64. } else {
  65. return ErrorRequest.RequestError(point.getNemCode());
  66. }
  67. } catch (HttpClientErrorException exception) {
  68. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  69. //System.out.println("404请求错误");
  70. return ErrorRequest.RequestError(point.getNemCode());
  71. } else {
  72. throw exception;
  73. }
  74. }
  75. } else {
  76. PointData po = new PointData();
  77. if (null != point){
  78. po.setEdnaId(point.getNemCode());
  79. }
  80. po.setPointValueInDouble(0.0);
  81. po.setPointTime(0l);
  82. return po;
  83. }
  84. }
  85. @Override
  86. public PointData getSectionData(String point, Long date) throws Exception {
  87. if (StringUtils.notEmp(point)) {
  88. Optional<String> tagName = Optional.ofNullable(point);
  89. String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  90. if (point.startsWith("GF-")) {
  91. url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  92. }
  93. try {
  94. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  95. JSONObject jsonObject = resp.getBody();
  96. if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
  97. return JsonObjectHelper.phrasePointData(jsonObject, point);
  98. } else {
  99. return new PointData();
  100. }
  101. } catch (Exception e) {
  102. return new PointData();
  103. }
  104. } else {
  105. PointData data = new PointData();
  106. data.setEdnaId(point);
  107. data.setPointTime(date);
  108. data.setPointValue("0");
  109. data.setPointName("1");
  110. data.setPointValueInDouble(0.0);
  111. return data;
  112. }
  113. }
  114. @Override
  115. public PointData getSectionData(ProBasicPowerstationPoint point, Long date) throws Exception {
  116. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  117. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  118. String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  119. if (point.getNemCode().startsWith("GF-")) {
  120. url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  121. }
  122. try {
  123. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  124. JSONObject jsonObject = resp.getBody();
  125. if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
  126. return JsonObjectHelper.phrasePointData(jsonObject, point.getNemCode());
  127. } else {
  128. return new PointData();
  129. }
  130. } catch (Exception e) {
  131. return new PointData();
  132. }
  133. } else {
  134. PointData data = new PointData();
  135. data.setEdnaId(point.getNemCode());
  136. data.setPointTime(date);
  137. data.setPointValue("0");
  138. data.setPointName("1");
  139. data.setPointValueInDouble(0.0);
  140. return data;
  141. }
  142. }
  143. @Override
  144. public PointData getSectionData(ProBasicEquipmentPoint point, Long date) throws Exception {
  145. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  146. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  147. String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  148. if (point.getNemCode().startsWith("GF-")) {
  149. url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date;
  150. }
  151. try {
  152. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  153. JSONObject jsonObject = resp.getBody();
  154. if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
  155. return JsonObjectHelper.phrasePointData(jsonObject, point.getNemCode());
  156. } else {
  157. return new PointData();
  158. }
  159. } catch (Exception e) {
  160. return new PointData();
  161. }
  162. } else {
  163. PointData data = new PointData();
  164. data.setEdnaId(point.getNemCode());
  165. data.setPointTime(date);
  166. data.setPointValue("0");
  167. data.setPointName("1");
  168. data.setPointValueInDouble(0.0);
  169. return data;
  170. }
  171. }
  172. @Override
  173. public List<PointData> getHistoryDatasSnap(ProBasicPowerstationPoint point, Long beginDate, Long endDate, Long count, Long pried) throws Exception {
  174. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  175. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  176. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  177. Optional<String> thingType = Optional.ofNullable(point.getModelId());
  178. Optional<String> uniformCode = Optional.ofNullable(point.getUniformCode());
  179. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  180. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  181. //通过时间区间和时间间隔获取点数
  182. Long finalInterval;
  183. if (pried != null)
  184. finalInterval = pried;
  185. else if (count != null)
  186. finalInterval = (endDate - beginDate) / count;
  187. else
  188. return ErrorRequest.RequestListError(point.getNemCode());
  189. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  190. try {
  191. String url = baseURL + "/history/snap?null=0";
  192. if (point.getNemCode().startsWith("GF-")) {
  193. url = baseURL2 + "/history/snap?null=0";
  194. }
  195. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  196. if (tagName.isPresent())
  197. url = url + "&tagName=" + tagName.get();
  198. else {
  199. if (thingType.isPresent())
  200. url = url + "&thingType=" + thingType.get();
  201. if (thingId.isPresent())
  202. url = url + "&thingId=" + thingId.get();
  203. if (uniformCode.isPresent())
  204. url = url + "&uniformCodes=" + uniformCode.get();
  205. }
  206. if (startTs.isPresent())
  207. url = url + "&startTs=" + startTs.get();
  208. if (endTs.isPresent())
  209. url = url + "&endTs=" + endTs.get();
  210. if (interval.isPresent())
  211. url = url + "&interval=" + interval.get();
  212. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  213. JSONArray jsonArray = resp.getBody();
  214. if (jsonArray != null) {
  215. List<PointData> snapList = JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode());
  216. List<PointData> resultList = new ArrayList<>();
  217. if (snapList.isEmpty()) {
  218. // for (PointData snapItem : resultList) {
  219. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  220. // }
  221. getHistsnapSameTiem(point.getNemCode(), beginDate, pried, resultList);
  222. } else {
  223. resultList = snapList;
  224. // for (PointData snapItem : snapList) {
  225. //
  226. // long subTime = snapItem.getPointTime() - pried;
  227. // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间),
  228. // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中,
  229. // // 则代表该时间节点快照有效,否则为0
  230. // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  231. // if (point.getNemCode().startsWith("GF-")){
  232. // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  233. // }
  234. // ResponseEntity<JSONObject> sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class);
  235. // JSONObject jsonObjectSection = sectionResp.getBody();
  236. //
  237. // if (jsonObjectSection != null) {
  238. // List<PointData> sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection);
  239. // if (sectionlist.size() > 0) {
  240. // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){
  241. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  242. // resultList.add(snapItem);
  243. // }
  244. // else{
  245. // PointData data = new PointData();
  246. // data.setEdnaId(point.getNemCode());
  247. // data.setPointTime(snapItem.getPointTime());
  248. // data.setPointValue("0");
  249. // data.setPointName("1");
  250. // data.setPointValueInDouble(0.0);
  251. // resultList.add(data);
  252. // }
  253. // } else {
  254. // PointData data = new PointData();
  255. // data.setEdnaId(point.getNemCode());
  256. // data.setPointTime(0l);
  257. // data.setPointValue("0");
  258. // data.setPointName("1");
  259. // data.setPointValueInDouble(0.0);
  260. // resultList.add(data);
  261. // }
  262. // } else {
  263. // PointData data = new PointData();
  264. // data.setEdnaId(point.getNemCode());
  265. // data.setPointTime(0l);
  266. // data.setPointValue("0");
  267. // data.setPointName("1");
  268. // data.setPointValueInDouble(0.0);
  269. // resultList.add(data);
  270. // }
  271. // }
  272. }
  273. return resultList;
  274. } else {
  275. return ErrorRequest.RequestListError(point.getNemCode());
  276. }
  277. } catch (HttpClientErrorException exception) {
  278. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  279. //System.out.println("404请求错误");
  280. return ErrorRequest.RequestListError(point.getNemCode());
  281. } else {
  282. throw exception;
  283. }
  284. }
  285. } else {
  286. List<PointData> pols = new ArrayList<>();
  287. PointData po = new PointData();
  288. po.setEdnaId(point.getNemCode());
  289. po.setPointValueInDouble(0.0);
  290. po.setPointTime(0l);
  291. pols.add(po);
  292. return pols;
  293. }
  294. }
  295. private void getHistsnapSameTiem(String pointid, Long beginDate, Long pried,
  296. List<PointData> resultList) {
  297. long subTime = beginDate - pried;
  298. String rawUrl = baseURL + "/history/section?null=0&tagNames=" + pointid + "&ts=" + beginDate;
  299. if (pointid.startsWith("GF-")) {
  300. rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + pointid + "&ts=" + beginDate;
  301. }
  302. ResponseEntity<JSONObject> sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class);
  303. JSONObject jsonObjectSection = sectionResp.getBody();
  304. if (jsonObjectSection != null) {
  305. List<PointData> sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection);
  306. if (sectionlist.size() > 0) {
  307. if (sectionlist.get(0).getPointTime() <= beginDate) {
  308. resultList.add(sectionlist.get(0));
  309. } else {
  310. PointData data = new PointData();
  311. data.setEdnaId(pointid);
  312. data.setPointTime(sectionlist.get(0).getPointTime());
  313. data.setPointValue("0");
  314. data.setPointName("1");
  315. data.setPointValueInDouble(0.0);
  316. resultList.add(data);
  317. }
  318. } else {
  319. PointData data = new PointData();
  320. data.setEdnaId(pointid);
  321. data.setPointTime(0l);
  322. data.setPointValue("0");
  323. data.setPointName("1");
  324. data.setPointValueInDouble(0.0);
  325. resultList.add(data);
  326. }
  327. } else {
  328. PointData data = new PointData();
  329. data.setEdnaId(pointid);
  330. data.setPointTime(beginDate);
  331. data.setPointValue("0");
  332. data.setPointName("1");
  333. data.setPointValueInDouble(0.0);
  334. resultList.add(data);
  335. }
  336. }
  337. @Override
  338. public List<PointData> getHistoryDatasRaw(ProBasicPowerstationPoint point, Long beginDate, Long endDate) throws Exception {
  339. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  340. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  341. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  342. Optional<String> thingType = Optional.ofNullable(point.getModelId());
  343. Optional<String> uniformCode = Optional.ofNullable(point.getUniformCode());
  344. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  345. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  346. try {
  347. String url = baseURL + "/history/snap?null=0";
  348. if (point.getNemCode().startsWith("GF-")) {
  349. url = baseURL2 + "/history/snap?null=0";
  350. }
  351. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  352. if (tagName.isPresent())
  353. url = url + "&tagName=" + tagName.get();
  354. else {
  355. if (thingType.isPresent())
  356. url = url + "&thingType=" + thingType.get();
  357. if (thingId.isPresent())
  358. url = url + "&thingId=" + thingId.get();
  359. if (uniformCode.isPresent())
  360. url = url + "&uniformCodes=" + uniformCode.get();
  361. }
  362. if (startTs.isPresent())
  363. url = url + "&startTs=" + startTs.get();
  364. if (endTs.isPresent())
  365. url = url + "&endTs=" + endTs.get();
  366. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  367. JSONArray jsonArray = resp.getBody();
  368. if (jsonArray != null)
  369. return JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode());
  370. else {
  371. return ErrorRequest.RequestListError(point.getNemCode());
  372. }
  373. } catch (HttpClientErrorException exception) {
  374. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  375. //System.out.println("404请求错误");
  376. return ErrorRequest.RequestListError(point.getNemCode());
  377. } else {
  378. throw exception;
  379. }
  380. }
  381. } else {
  382. List<PointData> pols = new ArrayList<>();
  383. PointData po = new PointData();
  384. po.setEdnaId(point.getNemCode());
  385. po.setPointValueInDouble(0.0);
  386. po.setPointTime(0l);
  387. pols.add(po);
  388. return pols;
  389. }
  390. }
  391. // @Override
  392. // public PointData getRealData(ProBasicEquipmentPoint point) throws Exception {
  393. //
  394. // if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  395. // Optional<String> keys = Optional.ofNullable(point.getNemCode());
  396. // Optional<String> thingType = Optional.ofNullable(point.getModelId());
  397. // Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  398. // Optional<String> uniformCodes = Optional.ofNullable(point.getUniformCode());
  399. //
  400. // try {
  401. // String url = "";
  402. // if (point.getNemCode().startsWith("GF-")) {
  403. // url = baseURL2 + "/latest?null=0";
  404. // } else {
  405. // url = baseURL + "/latest?null=0";
  406. // }
  407. //
  408. // //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  409. // if (keys.isPresent())
  410. // url = url + "&keys=" + keys.get();
  411. // else {
  412. // if (thingType.isPresent())
  413. // url = url + "&thingType=" + thingType.get();
  414. // if (thingId.isPresent())
  415. // url = url + "&thingId=" + thingId.get();
  416. // if (uniformCodes.isPresent())
  417. // url = url + "&uniformCodes=" + uniformCodes.get();
  418. // }
  419. // ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  420. // JSONObject jsonArray = resp.getBody();
  421. // if (StringUtils.isNotEmpty(jsonArray)) {
  422. // List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
  423. // if (list.size() > 0) {
  424. // PointData po = list.get(0);
  425. // po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4));
  426. // return po;
  427. // } else {
  428. // return ErrorRequest.RequestError(point.getNemCode());
  429. // }
  430. // } else {
  431. // return ErrorRequest.RequestError(point.getNemCode());
  432. // }
  433. //
  434. // } catch (HttpClientErrorException exception) {
  435. // if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  436. // //System.out.println("404请求错误");
  437. // return ErrorRequest.RequestError(point.getNemCode());
  438. // } else {
  439. // throw exception;
  440. // }
  441. // }
  442. // } else {
  443. // PointData po = new PointData();
  444. // po.setEdnaId(point.getNemCode());
  445. // po.setPointValueInDouble(0.0);
  446. // po.setPointTime(0l);
  447. // return po;
  448. // }
  449. //
  450. // }
  451. @Override
  452. public PointData getRealData(ProBasicEquipmentPoint point) throws Exception {
  453. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  454. Optional<String> keys = Optional.ofNullable(point.getNemCode());
  455. List<String> ls = keys.map(Collections::singletonList)
  456. .orElse(Collections.emptyList());
  457. List<PointData> realData = getRealData(ls);
  458. return realData.get(0);
  459. } else {
  460. PointData po = new PointData();
  461. po.setEdnaId(point.getNemCode());
  462. po.setPointValueInDouble(0.0);
  463. po.setPointTime(0l);
  464. return po;
  465. }
  466. }
  467. @Override
  468. public List<PointData> getHistoryDatasSnap(ProBasicEquipmentPoint point, Long beginDate, Long endDate, Long count, Long pried) throws Exception {
  469. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  470. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  471. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  472. Optional<String> thingType = Optional.ofNullable(point.getModelId());
  473. Optional<String> uniformCode = Optional.ofNullable(point.getUniformCode());
  474. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  475. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  476. //通过时间区间和时间间隔获取点数
  477. Long finalInterval;
  478. if (pried != null)
  479. finalInterval = pried;
  480. else if (count != null)
  481. finalInterval = (endDate - beginDate) / count;
  482. else
  483. return ErrorRequest.RequestListError(point.getNemCode());
  484. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  485. try {
  486. String url = "";
  487. if (point.getNemCode().startsWith("GF-")) {
  488. url = baseURL2 + "/history/snap?null=0";
  489. } else {
  490. url = baseURL + "/history/snap?null=0";
  491. }
  492. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  493. if (tagName.isPresent())
  494. url = url + "&tagName=" + tagName.get();
  495. else {
  496. if (thingType.isPresent())
  497. url = url + "&thingType=" + thingType.get();
  498. if (thingId.isPresent())
  499. url = url + "&thingId=" + thingId.get();
  500. if (uniformCode.isPresent())
  501. url = url + "&uniformCodes=" + uniformCode.get();
  502. }
  503. if (startTs.isPresent())
  504. url = url + "&startTs=" + startTs.get();
  505. if (endTs.isPresent())
  506. url = url + "&endTs=" + endTs.get();
  507. if (interval.isPresent())
  508. url = url + "&interval=" + interval.get();
  509. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  510. JSONArray jsonArray = resp.getBody();
  511. if (jsonArray != null) {
  512. List<PointData> snapList = JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode());
  513. List<PointData> resultList = new ArrayList<>();
  514. if (snapList.isEmpty()) {
  515. // for (PointData snapItem : resultList) {
  516. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  517. // }
  518. getHistsnapSameTiem(point.getNemCode(), beginDate, pried, resultList);
  519. } else {
  520. resultList = snapList;
  521. //
  522. //
  523. // for (PointData snapItem : snapList) {
  524. // long subTime = snapItem.getPointTime() - pried;
  525. // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间),
  526. // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中,
  527. // // 则代表该时间节点快照有效,否则为0
  528. //
  529. // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  530. // if (point.getNemCode().startsWith("GF-")){
  531. // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  532. // }
  533. //
  534. // ResponseEntity<JSONObject> sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class);
  535. // JSONObject jsonObjectSection = sectionResp.getBody();
  536. //
  537. // if (jsonObjectSection != null) {
  538. // List<PointData> sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection);
  539. // if (sectionlist.size() > 0) {
  540. // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){
  541. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  542. // resultList.add(snapItem);
  543. // }
  544. // else{
  545. // PointData data = new PointData();
  546. // data.setEdnaId(point.getNemCode());
  547. // data.setPointTime(snapItem.getPointTime());
  548. // data.setPointValue("0");
  549. // data.setPointName("1");
  550. // data.setPointValueInDouble(0.0);
  551. // resultList.add(data);
  552. // }
  553. // } else {
  554. // PointData data = new PointData();
  555. // data.setEdnaId(point.getNemCode());
  556. // data.setPointTime(0l);
  557. // data.setPointValue("0");
  558. // data.setPointName("1");
  559. // data.setPointValueInDouble(0.0);
  560. // resultList.add(data);
  561. // }
  562. // } else {
  563. // PointData data = new PointData();
  564. // data.setEdnaId(point.getNemCode());
  565. // data.setPointTime(0l);
  566. // data.setPointValue("0");
  567. // data.setPointName("1");
  568. // data.setPointValueInDouble(0.0);
  569. // resultList.add(data);
  570. // }
  571. // }
  572. }
  573. return resultList;
  574. } else {
  575. return ErrorRequest.RequestListError(point.getNemCode());
  576. }
  577. } catch (HttpClientErrorException exception) {
  578. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  579. //System.out.println("404请求错误");
  580. return ErrorRequest.RequestListError(point.getNemCode());
  581. } else {
  582. throw exception;
  583. }
  584. }
  585. } else {
  586. List<PointData> pols = new ArrayList<>();
  587. PointData po = new PointData();
  588. po.setEdnaId(point.getNemCode());
  589. po.setPointValueInDouble(0.0);
  590. po.setPointTime(0l);
  591. pols.add(po);
  592. return pols;
  593. }
  594. }
  595. // @Override
  596. // public PointData getRealData(String pointid) throws Exception {
  597. //
  598. // if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) {
  599. // Optional<String> keys = Optional.ofNullable(pointid);
  600. // String url = baseURL + "/latest?null=0";
  601. // if (pointid.startsWith("GF-")) {
  602. // url = baseURL2 + "/latest?null=0";
  603. // }
  604. //
  605. // try {
  606. // if (keys.isPresent())
  607. // url = url + "&keys=" + keys.get();
  608. // else
  609. // return null;
  610. //
  611. // ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  612. // JSONObject jsonArray = resp.getBody();
  613. // if (StringUtils.isNotEmpty(jsonArray)) {
  614. // List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
  615. // if (list.size() > 0) {
  616. // PointData po = list.get(0);
  617. // po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4));
  618. // return po;
  619. // } else {
  620. // return ErrorRequest.RequestError(pointid);
  621. // }
  622. // } else {
  623. // return ErrorRequest.RequestError(pointid);
  624. // }
  625. //
  626. // } catch (HttpClientErrorException exception) {
  627. // if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  628. // //System.out.println("404请求错误");
  629. // return ErrorRequest.RequestError(pointid);
  630. // } else {
  631. // return ErrorRequest.RequestError(pointid);
  632. // }
  633. // }
  634. // } else {
  635. // PointData po = new PointData();
  636. // po.setEdnaId(pointid);
  637. // po.setPointValueInDouble(0.0);
  638. // po.setPointTime(0l);
  639. // return po;
  640. // }
  641. //
  642. // }
  643. @Override
  644. public PointData getRealData(String pointid) throws Exception {
  645. List<String> pointids = new ArrayList<>();
  646. pointids.add(pointid);
  647. List<PointData> realData = getRealData(pointids);
  648. return realData.get(0);
  649. }
  650. @Override
  651. public List<PointData> getRealData(List<String> pointids) throws Exception {
  652. String join = String.join(",", pointids);
  653. String url = baseURL + "/latests";
  654. try {
  655. HttpHeaders headers = new HttpHeaders();
  656. headers.setContentType(MediaType.APPLICATION_JSON);
  657. // 将请求体和头部信息整合到HttpEntity中
  658. HttpEntity<String> requestEntity = new HttpEntity<>(join,headers);
  659. // 发起POST请求
  660. ResponseEntity<JSONObject> resp = restTemplate.exchange(url,HttpMethod.POST,requestEntity,JSONObject.class);
  661. JSONObject jsonObject = resp.getBody();
  662. if (jsonObject != null&&!jsonObject.isEmpty()) {
  663. //对结果进行有序返回
  664. int len = pointids.size();
  665. List<PointData> result = new ArrayList<>();
  666. HashMap<String, PointData> pointDataHashMap = new HashMap<>();
  667. for (int i = 0; i < len; i++) {
  668. if (pointDataHashMap.containsKey(pointids.get(i)) == false) {
  669. PointData pd = new PointData();
  670. pd.setPointName(pointids.get(i));
  671. pd.setEdnaId(pointids.get(i));
  672. result.add(pd);
  673. pointDataHashMap.put(pd.getPointName(), pd);
  674. } else {
  675. result.add(pointDataHashMap.get(pointids.get(i)));
  676. }
  677. }
  678. Iterator<String> sIterator = jsonObject.keySet().iterator();
  679. while (sIterator.hasNext()) {
  680. // 获得key
  681. String key = sIterator.next();
  682. PointData pointData = pointDataHashMap.get(key);
  683. if (pointData == null||null==pointData.getPointTime())
  684. continue;
  685. // 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可
  686. JSONObject jsonData = jsonObject.getJSONObject(key);
  687. Long ts = jsonData.getLong("ts");
  688. pointData.setPointTime(ts);
  689. String pointValue = null;
  690. if (jsonData.containsKey("doubleValue")) {
  691. pointValue = jsonData.getString("doubleValue");
  692. } else if (jsonData.containsKey("booleanValue")) {
  693. pointValue = jsonData.getString("booleanValue");
  694. } else if (jsonData.containsKey("longValue")) {
  695. pointValue = jsonData.getString("longValue");
  696. } else if (jsonData.containsKey("stringValue")) {
  697. pointValue = jsonData.getString("stringValue");
  698. }
  699. if (pointValue.equals("true")) {
  700. pointData.setPointValueInDouble(1.0);
  701. } else if (pointValue.equals("false")) {
  702. pointData.setPointValueInDouble(0.0);
  703. } else {
  704. double value = Double.parseDouble(pointValue);
  705. pointData.setPointValueInDouble(StringUtils.round(value, 4));
  706. }
  707. pointData.setPointValue(pointValue);
  708. }
  709. return result;
  710. } else {
  711. return ErrorRequest.RequestListError(pointids.toString());
  712. }
  713. } catch (HttpClientErrorException exception) {
  714. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  715. //System.out.println("404请求错误");
  716. return ErrorRequest.RequestListError(pointids.toString());
  717. } else {
  718. throw exception;
  719. }
  720. }
  721. }
  722. //@Override
  723. public List<PointData> getRealData2(List<String> pointids) throws Exception {
  724. String pointIdString = StringUtil.join(pointids.toArray(), ",");
  725. Optional<String> keys = Optional.ofNullable(pointIdString);
  726. String url = baseURL + "/latest?null=0";
  727. if (pointIdString.startsWith("GF-")) {
  728. url = baseURL2 + "/latest?null=0";
  729. }
  730. try {
  731. if (keys.isPresent())
  732. url = url + "&keys=" + keys.get();
  733. else {
  734. String[] arr = new String[pointids.size()];
  735. return ErrorRequest.RequestListError(pointids.toArray(arr));
  736. }
  737. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  738. JSONObject jsonObject = resp.getBody();
  739. if (jsonObject != null) {
  740. //对结果进行有序返回
  741. int len = pointids.size();
  742. List<PointData> result = new ArrayList<>();
  743. HashMap<String, PointData> pointDataHashMap = new HashMap<>();
  744. for (int i = 0; i < len; i++) {
  745. if (pointDataHashMap.containsKey(pointids.get(i)) == false) {
  746. PointData pd = new PointData();
  747. pd.setPointName(pointids.get(i));
  748. pd.setEdnaId(pointids.get(i));
  749. result.add(pd);
  750. pointDataHashMap.put(pd.getPointName(), pd);
  751. } else {
  752. result.add(pointDataHashMap.get(pointids.get(i)));
  753. }
  754. }
  755. Iterator<String> sIterator = jsonObject.keySet().iterator();
  756. while (sIterator.hasNext()) {
  757. // 获得key
  758. String key = sIterator.next();
  759. PointData pointData = pointDataHashMap.get(key);
  760. if (pointData == null)
  761. continue;
  762. // 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可
  763. JSONObject jsonData = jsonObject.getJSONObject(key);
  764. Long ts = jsonData.getLong("ts");
  765. String pointValue = null;
  766. if (jsonData.containsKey("doubleValue")) {
  767. pointValue = jsonData.getString("doubleValue");
  768. } else if (jsonData.containsKey("booleanValue")) {
  769. pointValue = jsonData.getString("booleanValue");
  770. } else if (jsonData.containsKey("longValue")) {
  771. pointValue = jsonData.getString("longValue");
  772. } else if (jsonData.containsKey("stringValue")) {
  773. pointValue = jsonData.getString("stringValue");
  774. }
  775. if (pointValue.equals("true")) {
  776. pointData.setPointValueInDouble(1.0);
  777. } else if (pointValue.equals("false")) {
  778. pointData.setPointValueInDouble(0.0);
  779. } else {
  780. double value = Double.parseDouble(pointValue);
  781. pointData.setPointValueInDouble(StringUtils.round(value, 4));
  782. }
  783. pointData.setPointValue(pointValue);
  784. pointData.setPointTime(ts);
  785. // //System.out.println("key= " + key + ", ts = " + ts + ", value = " + pointValue);
  786. }
  787. return result;
  788. } else {
  789. String[] arr = new String[pointids.size()];
  790. return ErrorRequest.RequestListError(pointids.toArray(arr));
  791. }
  792. } catch (HttpClientErrorException exception) {
  793. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  794. //System.out.println("404请求错误");
  795. String[] arr = new String[pointids.size()];
  796. return ErrorRequest.RequestListError(pointids.toArray(arr));
  797. } else {
  798. throw exception;
  799. }
  800. }
  801. }
  802. @Override
  803. public List<PointData> getHistoryDatasSnap(String pointid, Long beginDate, Long endDate, Long count, Long pried) throws Exception {
  804. if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) {
  805. Optional<String> tagName = Optional.ofNullable(pointid);
  806. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  807. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  808. //通过时间区间和时间间隔获取点数
  809. Long finalInterval;
  810. if (pried != null)
  811. finalInterval = pried;
  812. else if (count != null)
  813. finalInterval = (endDate - beginDate) / count;
  814. else
  815. return ErrorRequest.RequestListError(pointid);
  816. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  817. try {
  818. String url = baseURL + "/history/snap?null=0";
  819. if (pointid.startsWith("GF-")) {
  820. url = baseURL2 + "/history/snap?null=0";
  821. }
  822. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  823. if (tagName.isPresent())
  824. url = url + "&tagName=" + tagName.get();
  825. if (startTs.isPresent())
  826. url = url + "&startTs=" + startTs.get();
  827. if (endTs.isPresent())
  828. url = url + "&endTs=" + endTs.get();
  829. if (interval.isPresent())
  830. url = url + "&interval=" + interval.get();
  831. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  832. JSONArray jsonArray = resp.getBody();
  833. if (jsonArray != null) {
  834. List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray, tagName.get());
  835. List<PointData> resultList = new ArrayList<>();
  836. if (list.isEmpty()) {
  837. // for (PointData snapItem : resultList) {
  838. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  839. // }
  840. getHistsnapSameTiem(pointid, beginDate, pried, resultList);
  841. } else {
  842. resultList = list;
  843. //
  844. //
  845. // for (PointData snapItem : snapList) {
  846. // long subTime = snapItem.getPointTime() - pried;
  847. // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间),
  848. // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中,
  849. // // 则代表该时间节点快照有效,否则为0
  850. //
  851. // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  852. // if (point.getNemCode().startsWith("GF-")){
  853. // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ;
  854. // }
  855. //
  856. // ResponseEntity<JSONObject> sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class);
  857. // JSONObject jsonObjectSection = sectionResp.getBody();
  858. //
  859. // if (jsonObjectSection != null) {
  860. // List<PointData> sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection);
  861. // if (sectionlist.size() > 0) {
  862. // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){
  863. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  864. // resultList.add(snapItem);
  865. // }
  866. // else{
  867. // PointData data = new PointData();
  868. // data.setEdnaId(point.getNemCode());
  869. // data.setPointTime(snapItem.getPointTime());
  870. // data.setPointValue("0");
  871. // data.setPointName("1");
  872. // data.setPointValueInDouble(0.0);
  873. // resultList.add(data);
  874. // }
  875. // } else {
  876. // PointData data = new PointData();
  877. // data.setEdnaId(point.getNemCode());
  878. // data.setPointTime(0l);
  879. // data.setPointValue("0");
  880. // data.setPointName("1");
  881. // data.setPointValueInDouble(0.0);
  882. // resultList.add(data);
  883. // }
  884. // } else {
  885. // PointData data = new PointData();
  886. // data.setEdnaId(point.getNemCode());
  887. // data.setPointTime(0l);
  888. // data.setPointValue("0");
  889. // data.setPointName("1");
  890. // data.setPointValueInDouble(0.0);
  891. // resultList.add(data);
  892. // }
  893. // }
  894. }
  895. return resultList;
  896. } else {
  897. return ErrorRequest.RequestListError(pointid);
  898. }
  899. } catch (HttpClientErrorException exception) {
  900. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  901. //System.out.println("404请求错误");
  902. return ErrorRequest.RequestListError(pointid);
  903. } else {
  904. throw exception;
  905. }
  906. }
  907. } else {
  908. List<PointData> pols = new ArrayList<>();
  909. PointData po = new PointData();
  910. po.setEdnaId(pointid);
  911. po.setPointValueInDouble(0.0);
  912. po.setPointTime(0l);
  913. pols.add(po);
  914. return pols;
  915. }
  916. }
  917. @Override
  918. public List<PointData> getHistStat(ProBasicEquipmentPoint point, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception {
  919. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  920. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  921. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  922. Optional<String> thingType = Optional.ofNullable(point.getModelId());
  923. Optional<String> uniformCode = Optional.ofNullable(point.getUniformCode());
  924. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  925. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  926. // Calendar cal = Calendar.getInstance();
  927. // cal.setTime(new Date(startTs.get()));
  928. // cal.add(Calendar.SECOND, -pried.intValue());
  929. // startTs= Optional.ofNullable(cal.getTime().getTime());
  930. // count++;
  931. //通过时间区间和时间间隔获取点数
  932. Long finalInterval;
  933. if (pried != null)
  934. finalInterval = pried;
  935. else if (count != null)
  936. finalInterval = (endDate - beginDate) / count;
  937. else
  938. return ErrorRequest.RequestListError(point.getNemCode());
  939. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  940. try {
  941. String url = "";
  942. if (point.getNemCode().startsWith("GF-")) {
  943. url = baseURL2 + "/history/stat?null=0";
  944. } else {
  945. url = baseURL + "/history/stat?null=0";
  946. }
  947. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  948. if (tagName.isPresent())
  949. url = url + "&tagName=" + tagName.get();
  950. else {
  951. if (thingType.isPresent())
  952. url = url + "&thingType=" + thingType.get();
  953. if (thingId.isPresent())
  954. url = url + "&thingId=" + thingId.get();
  955. if (uniformCode.isPresent())
  956. url = url + "&uniformCodes=" + uniformCode.get();
  957. }
  958. if (startTs.isPresent())
  959. url = url + "&startTs=" + startTs.get();
  960. if (endTs.isPresent())
  961. url = url + "&endTs=" + endTs.get();
  962. if (interval.isPresent())
  963. url = url + "&interval=" + interval.get();
  964. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  965. JSONArray jsonArray = resp.getBody();
  966. if (jsonArray != null)
  967. return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, point.getNemCode(), type);
  968. else {
  969. return ErrorRequest.RequestListError(point.getNemCode());
  970. }
  971. } catch (HttpClientErrorException exception) {
  972. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  973. //System.out.println("404请求错误");
  974. return ErrorRequest.RequestListError(point.getNemCode());
  975. } else {
  976. throw exception;
  977. }
  978. }
  979. } else {
  980. List<PointData> pols = new ArrayList<>();
  981. PointData po = new PointData();
  982. po.setEdnaId(point.getNemCode());
  983. po.setPointValueInDouble(0.0);
  984. po.setPointTime(0l);
  985. pols.add(po);
  986. return pols;
  987. }
  988. }
  989. @Override
  990. public List<PointData> getHistStat(ProBasicPowerstationPoint point, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception {
  991. if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
  992. Optional<String> tagName = Optional.ofNullable(point.getNemCode());
  993. Optional<String> thingId = Optional.ofNullable(point.getWindpowerstationId());
  994. Optional<String> thingType = Optional.ofNullable(point.getModelId());
  995. Optional<String> uniformCode = Optional.ofNullable(point.getUniformCode());
  996. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  997. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  998. //通过时间区间和时间间隔获取点数
  999. Long finalInterval;
  1000. if (pried != null)
  1001. finalInterval = pried;
  1002. else if (count != null)
  1003. finalInterval = (endDate - beginDate) / count;
  1004. else
  1005. return ErrorRequest.RequestListError(point.getNemCode());
  1006. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  1007. try {
  1008. String url = baseURL + "/history/stat?null=0";
  1009. if (point.getNemCode().startsWith("GF-")) {
  1010. url = baseURL2 + "/history/stat?null=0";
  1011. }
  1012. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  1013. if (tagName.isPresent())
  1014. url = url + "&tagName=" + tagName.get();
  1015. else {
  1016. if (thingType.isPresent())
  1017. url = url + "&thingType=" + thingType.get();
  1018. if (thingId.isPresent())
  1019. url = url + "&thingId=" + thingId.get();
  1020. if (uniformCode.isPresent())
  1021. url = url + "&uniformCodes=" + uniformCode.get();
  1022. }
  1023. if (startTs.isPresent())
  1024. url = url + "&startTs=" + startTs.get();
  1025. if (endTs.isPresent())
  1026. url = url + "&endTs=" + endTs.get();
  1027. if (interval.isPresent())
  1028. url = url + "&interval=" + interval.get();
  1029. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  1030. JSONArray jsonArray = resp.getBody();
  1031. if (jsonArray != null)
  1032. return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, point.getNemCode(), type);
  1033. else {
  1034. return ErrorRequest.RequestListError(point.getNemCode());
  1035. }
  1036. } catch (HttpClientErrorException exception) {
  1037. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1038. //System.out.println("404请求错误");
  1039. return ErrorRequest.RequestListError(point.getNemCode());
  1040. } else {
  1041. throw exception;
  1042. }
  1043. }
  1044. } else {
  1045. List<PointData> pols = new ArrayList<>();
  1046. PointData po = new PointData();
  1047. po.setEdnaId(point.getNemCode());
  1048. po.setPointValueInDouble(0.0);
  1049. po.setPointTime(0l);
  1050. pols.add(po);
  1051. return pols;
  1052. }
  1053. }
  1054. @Override
  1055. public List<PointData> getHistStat(String pointid, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception {
  1056. if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) {
  1057. Optional<String> tagName = Optional.ofNullable(pointid);
  1058. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  1059. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  1060. //通过时间区间和时间间隔获取点数
  1061. Long finalInterval;
  1062. if (count != null)
  1063. finalInterval = (endDate - beginDate) / count;
  1064. else if (pried != null)
  1065. finalInterval = pried;
  1066. else
  1067. return null;
  1068. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  1069. try {
  1070. String url = baseURL + "/history/stat?null=0";
  1071. if (pointid.startsWith("GF-")) {
  1072. url = baseURL2 + "/history/stat?null=0";
  1073. }
  1074. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  1075. if (tagName.isPresent())
  1076. url = url + "&tagName=" + tagName.get();
  1077. if (startTs.isPresent())
  1078. url = url + "&startTs=" + startTs.get();
  1079. if (endTs.isPresent())
  1080. url = url + "&endTs=" + endTs.get();
  1081. if (interval.isPresent())
  1082. url = url + "&interval=" + interval.get();
  1083. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  1084. JSONArray jsonArray = resp.getBody();
  1085. if (jsonArray != null)
  1086. return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, pointid, type);
  1087. else {
  1088. return ErrorRequest.RequestListError(pointid);
  1089. }
  1090. } catch (HttpClientErrorException exception) {
  1091. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1092. //System.out.println("404请求错误");
  1093. return ErrorRequest.RequestListError(pointid);
  1094. } else {
  1095. throw exception;
  1096. }
  1097. }
  1098. } else {
  1099. List<PointData> pols = new ArrayList<>();
  1100. PointData po = new PointData();
  1101. po.setEdnaId(pointid);
  1102. po.setPointValueInDouble(0.0);
  1103. po.setPointTime(0l);
  1104. pols.add(po);
  1105. return pols;
  1106. }
  1107. }
  1108. @Override
  1109. public DNAStatVal[] getHistStat(String point, Long beginDate, Long endDate, Integer pried) throws Exception {
  1110. return new DNAStatVal[0];
  1111. }
  1112. private JSONObject convertPointData(PointData pd) {
  1113. JSONObject jo = new JSONObject();
  1114. jo.put("tagName", pd.getEdnaId());
  1115. jo.put("ts", pd.getPointTime());
  1116. jo.put("doubleValue", pd.getPointValueInDouble());
  1117. // JSONObject joo = new JSONObject();
  1118. // joo.put("ts", pd.getPointTime());
  1119. // joo.put("status", 0);
  1120. // joo.put("doubleValue", pd.getPointValueInDouble());
  1121. // jo.put("tsData", joo);
  1122. return jo;
  1123. }
  1124. @Override
  1125. public void updatePoint(List<PointData> pointls) throws Exception {
  1126. String url = baseURL + "/history/batch";
  1127. if (!pointls.isEmpty()) {
  1128. if (pointls.get(0).getEdnaId().startsWith("GF-")) {
  1129. url = baseURL2 + "/history/batch";
  1130. }
  1131. }
  1132. List<JSONObject> writeList = new ArrayList<>();
  1133. int batchSize = 500; // 设置每次传输的批次大小
  1134. int totalSize = pointls.size();
  1135. int batchCount = totalSize % batchSize == 0 ? totalSize / batchSize : totalSize / batchSize + 1;
  1136. for (int i = 0; i < batchCount; i++) {
  1137. int startIndex = i * batchSize;
  1138. int endIndex = Math.min((i + 1) * batchSize, totalSize);
  1139. List<PointData> batch = pointls.subList(startIndex, endIndex);
  1140. List<JSONObject> batchWriteList = new ArrayList<>();
  1141. for (PointData entity : batch) {
  1142. batchWriteList.add(convertPointData(entity));
  1143. }
  1144. try {
  1145. String result = restTemplate.postForObject(url, batchWriteList, String.class);
  1146. // 处理返回的结果
  1147. } catch (HttpClientErrorException exception) {
  1148. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1149. throw new Exception("404请求错误");
  1150. } else {
  1151. throw exception;
  1152. }
  1153. }
  1154. }
  1155. }
  1156. @Override
  1157. public void sendSinglePoint(PointData point) throws Exception {
  1158. String url = baseURL + "/latest";
  1159. if (point.getEdnaId().startsWith("GF-")) {
  1160. url = baseURL2 + "/latest";
  1161. }
  1162. try {
  1163. String result = restTemplate.postForObject(url, convertPointData(point), String.class);
  1164. } catch (HttpClientErrorException exception) {
  1165. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1166. return;
  1167. } else {
  1168. throw exception;
  1169. }
  1170. }
  1171. }
  1172. @Override
  1173. public void sendMultiPoint(List<PointData> pointls) throws Exception {
  1174. String url = baseURL + "/save/batch";
  1175. if (!pointls.isEmpty()) {
  1176. if (pointls.get(0).getEdnaId().startsWith("GF-")) {
  1177. url = baseURL2 + "/save/batch";
  1178. }
  1179. List<JSONObject> writeList = new ArrayList<>();
  1180. int batchSize = 500; // 设置每次传输的批次大小
  1181. int totalSize = pointls.size();
  1182. int batchCount = totalSize % batchSize == 0 ? totalSize / batchSize : totalSize / batchSize + 1;
  1183. for (int i = 0; i < batchCount; i++) {
  1184. int startIndex = i * batchSize;
  1185. int endIndex = Math.min((i + 1) * batchSize, totalSize);
  1186. List<PointData> batch = pointls.subList(startIndex, endIndex);
  1187. List<JSONObject> batchWriteList = new ArrayList<>();
  1188. for (PointData entity : batch) {
  1189. batchWriteList.add(convertPointData(entity));
  1190. }
  1191. try {
  1192. String result = restTemplate.postForObject(url, batchWriteList, String.class);
  1193. // 处理返回的结果
  1194. } catch (HttpClientErrorException exception) {
  1195. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1196. throw new Exception("404请求错误");
  1197. } else {
  1198. throw exception;
  1199. }
  1200. }
  1201. }
  1202. }
  1203. }
  1204. @Override
  1205. public void sendMultiPoint(String[] realvalue, DNAVal[] pointls) throws Exception {
  1206. }
  1207. @Override
  1208. public DNAVal[] getHistMatrix(String[] nameList, int tTime) throws Exception {
  1209. return new DNAVal[0];
  1210. }
  1211. @Override
  1212. public List<PointData> getHistoryDatasSnap(String pointid, Long beginDate, Long endDate) throws Exception {
  1213. if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) {
  1214. Optional<String> tagName = Optional.ofNullable(pointid);
  1215. Optional<Long> startTs = Optional.ofNullable(beginDate * 1000);
  1216. Optional<Long> endTs = Optional.ofNullable(endDate * 1000);
  1217. //通过时间区间和时间间隔获取点数
  1218. Long finalInterval = 60l;
  1219. Optional<Integer> interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString()));
  1220. try {
  1221. String url = baseURL + "/history/snap?null=0";
  1222. if (pointid.startsWith("GF-")) {
  1223. url = baseURL2 + "/history/snap?null=0";
  1224. }
  1225. //tagName 或thingType,thingId,uniformCode可以确定一个标签点
  1226. if (tagName.isPresent())
  1227. url = url + "&tagName=" + tagName.get();
  1228. if (startTs.isPresent())
  1229. url = url + "&startTs=" + startTs.get();
  1230. if (endTs.isPresent())
  1231. url = url + "&endTs=" + endTs.get();
  1232. if (interval.isPresent())
  1233. url = url + "&interval=60";
  1234. ResponseEntity<JSONArray> resp = restTemplate.getForEntity(url, JSONArray.class);
  1235. JSONArray jsonArray = resp.getBody();
  1236. if (jsonArray != null) {
  1237. List<PointData> resultList = JsonObjectHelper.phrasePointData(jsonArray, tagName.get());
  1238. // List<PointData> resultList = new ArrayList<>();
  1239. if (resultList.isEmpty()) {
  1240. // for (PointData snapItem : resultList) {
  1241. // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4));
  1242. // }
  1243. getHistsnapSameTiem(pointid, beginDate, finalInterval, resultList);
  1244. } else {
  1245. // for (PointData snapItem : list) {
  1246. // long subTime = snapItem.getPointTime() - finalInterval;
  1247. // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间),
  1248. // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中,
  1249. // // 则代表该时间节点快照有效,否则为0
  1250. // String rawUrl = baseURL + "/history/section?null=0&tagNames=" +pointid+ "&ts=" + snapItem.getPointTime() ;
  1251. // ResponseEntity<JSONObject> sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class);
  1252. // JSONObject jsonObjectSection = sectionResp.getBody();
  1253. //
  1254. // if (jsonObjectSection != null) {
  1255. // List<PointData> sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection);
  1256. // if (sectionlist.size() > 0) {
  1257. // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){
  1258. // resultList.add(snapItem);
  1259. // }
  1260. // else{
  1261. // PointData data = new PointData();
  1262. // data.setEdnaId(pointid);
  1263. // data.setPointTime(snapItem.getPointTime());
  1264. // data.setPointValue("0");
  1265. // data.setPointName("1");
  1266. // data.setPointValueInDouble(0.0);
  1267. // resultList.add(data);
  1268. // }
  1269. // } else {
  1270. // PointData data = new PointData();
  1271. // data.setEdnaId(pointid);
  1272. // data.setPointTime(snapItem.getPointTime());
  1273. // data.setPointValue("0");
  1274. // data.setPointName("1");
  1275. // data.setPointValueInDouble(0.0);
  1276. // resultList.add(data);
  1277. // }
  1278. // } else {
  1279. // PointData data = new PointData();
  1280. // data.setEdnaId(pointid);
  1281. // data.setPointTime(snapItem.getPointTime());
  1282. // data.setPointValue("0");
  1283. // data.setPointName("1");
  1284. // data.setPointValueInDouble(0.0);
  1285. // resultList.add(data);
  1286. // }
  1287. // }
  1288. }
  1289. return resultList;
  1290. } else {
  1291. return ErrorRequest.RequestListError(pointid);
  1292. }
  1293. } catch (HttpClientErrorException exception) {
  1294. if (exception.getStatusCode() == HttpStatus.NOT_FOUND) {
  1295. System.out.println("404请求错误");
  1296. return ErrorRequest.RequestListError(pointid);
  1297. } else {
  1298. throw exception;
  1299. }
  1300. }
  1301. } else {
  1302. return new ArrayList<>();
  1303. }
  1304. }
  1305. //多点切面数据
  1306. @Override
  1307. public List<PointData> getHistMatrix(List<String> nameList, long tTime) throws Exception {
  1308. String tagNameString = StringUtil.join(nameList, ",");
  1309. Long time = Long.valueOf(tTime);
  1310. Optional<String> tagName = Optional.ofNullable(tagNameString);
  1311. Optional<Long> ts = Optional.ofNullable(time * 1000);
  1312. String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get();
  1313. if (tagNameString.startsWith("GF-")) {
  1314. url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get();
  1315. }
  1316. try {
  1317. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  1318. JSONObject jsonObject = resp.getBody();
  1319. if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
  1320. return JsonObjectHelper.phrasePointData(jsonObject, nameList);
  1321. } else {
  1322. return new ArrayList<>();
  1323. }
  1324. } catch (Exception e) {
  1325. DNAVal[] errorResult = new DNAVal[nameList.size()];
  1326. for (int i = 0; i < nameList.size(); i++) {
  1327. DNAVal val = new DNAVal();
  1328. val.Status = 0;
  1329. errorResult[i] = val;
  1330. }
  1331. return new ArrayList<>();
  1332. }
  1333. }
  1334. @Override
  1335. public PointData getHistMatrix(String id, long tTime) throws Exception {
  1336. if (StringUtils.notEmp(id) && !id.equals(initialcode)) {
  1337. String tagNameString = id;
  1338. Long time = Long.valueOf(tTime);
  1339. Optional<String> tagName = Optional.ofNullable(tagNameString);
  1340. Optional<Long> ts = Optional.ofNullable(time * 1000);
  1341. String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get();
  1342. if (id.startsWith("GF-")) {
  1343. url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get();
  1344. }
  1345. try {
  1346. ResponseEntity<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
  1347. JSONObject jsonObject = resp.getBody();
  1348. if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
  1349. return JsonObjectHelper.phrasePointData(jsonObject, id);
  1350. } else {
  1351. return new PointData();
  1352. }
  1353. } catch (Exception e) {
  1354. return new PointData();
  1355. }
  1356. } else {
  1357. PointData data = new PointData();
  1358. data.setEdnaId(id);
  1359. data.setPointTime(tTime);
  1360. data.setPointValue("0");
  1361. data.setPointName("1");
  1362. data.setPointValueInDouble(0.0);
  1363. return data;
  1364. }
  1365. }
  1366. }