package com.gyee.generation.util.realtimesource; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.gyee.common.model.DNAStatVal; import com.gyee.common.model.DNAVal; import com.gyee.common.model.PointData; import com.gyee.common.model.StringUtils; import com.gyee.generation.model.auto.ProBasicEquipmentPoint; import com.gyee.generation.model.auto.ProBasicPowerstationPoint; import com.gyee.generation.model.vo.RealTimeParameterVo; import com.gyee.generation.util.realtimesource.timeseries.ErrorRequest; import com.gyee.generation.util.realtimesource.timeseries.JsonObjectHelper; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.*; import org.springframework.stereotype.Component; import org.springframework.web.client.HttpClientErrorException; import org.springframework.web.client.RestTemplate; import java.time.LocalDateTime; import java.time.ZoneOffset; import java.util.*; /** * */ @Component public class EdosUtil implements IEdosUtil { private RestTemplate restTemplate = new RestTemplate(); @Value("${db.url1}") private String baseURL; @Value("${db.url2}") private String baseURL2; @Value("${initialcode}") private String initialcode; @Override public PointData getRealData(ProBasicPowerstationPoint point) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { try { Optional keys = Optional.ofNullable(point.getNemCode()); Optional thingType = Optional.ofNullable("station"); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional uniformCodes = Optional.ofNullable(point.getUniformCode()); String url = baseURL + "/latest?null=0"; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/latest?null=0"; } if (keys.isPresent()) url = url + "&keys=" + keys.get(); if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCodes.isPresent()) url = url + "&uniformCodes=" + uniformCodes.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonArray = resp.getBody(); if (StringUtils.isNotEmpty(jsonArray)) { List list = JsonObjectHelper.phrasePointData(jsonArray); if (list.size() > 0) { PointData po = list.get(0); po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4)); return po; } else { return ErrorRequest.RequestError(point.getNemCode()); } } else { return ErrorRequest.RequestError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestError(point.getNemCode()); } else { throw exception; } } } else { PointData po = new PointData(); if (null != point){ po.setEdnaId(point.getNemCode()); } po.setPointValueInDouble(0.0); po.setPointTime(0l); return po; } } @Override public PointData getSectionData(String point, Long date) throws Exception { if (StringUtils.notEmp(point)) { Optional tagName = Optional.ofNullable(point); String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; if (point.startsWith("GF-")) { url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; } try { ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) { return JsonObjectHelper.phrasePointData(jsonObject, point); } else { return new PointData(); } } catch (Exception e) { return new PointData(); } } else { PointData data = new PointData(); data.setEdnaId(point); data.setPointTime(date); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); return data; } } @Override public PointData getSectionData(ProBasicPowerstationPoint point, Long date) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; } try { ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) { return JsonObjectHelper.phrasePointData(jsonObject, point.getNemCode()); } else { return new PointData(); } } catch (Exception e) { return new PointData(); } } else { PointData data = new PointData(); data.setEdnaId(point.getNemCode()); data.setPointTime(date); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); return data; } } @Override public PointData getSectionData(ProBasicEquipmentPoint point, Long date) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + date; } try { ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) { return JsonObjectHelper.phrasePointData(jsonObject, point.getNemCode()); } else { return new PointData(); } } catch (Exception e) { return new PointData(); } } else { PointData data = new PointData(); data.setEdnaId(point.getNemCode()); data.setPointTime(date); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); return data; } } @Override public List getHistoryDatasSnap(ProBasicPowerstationPoint point, Long beginDate, Long endDate, Long count, Long pried) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional thingType = Optional.ofNullable(point.getModelId()); Optional uniformCode = Optional.ofNullable(point.getUniformCode()); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval; if (pried != null) finalInterval = pried; else if (count != null) finalInterval = (endDate - beginDate) / count; else return ErrorRequest.RequestListError(point.getNemCode()); Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = baseURL + "/history/snap?null=0"; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/snap?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); else { if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCode.isPresent()) url = url + "&uniformCodes=" + uniformCode.get(); } if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) { List snapList = JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode()); List resultList = new ArrayList<>(); if (snapList.isEmpty()) { // for (PointData snapItem : resultList) { // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // } getHistsnapSameTiem(point.getNemCode(), beginDate, pried, resultList); } else { resultList = snapList; // for (PointData snapItem : snapList) { // // long subTime = snapItem.getPointTime() - pried; // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间), // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中, // // 则代表该时间节点快照有效,否则为0 // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // if (point.getNemCode().startsWith("GF-")){ // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // } // ResponseEntity sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class); // JSONObject jsonObjectSection = sectionResp.getBody(); // // if (jsonObjectSection != null) { // List sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection); // if (sectionlist.size() > 0) { // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){ // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // resultList.add(snapItem); // } // else{ // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } } return resultList; } else { return ErrorRequest.RequestListError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(point.getNemCode()); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } private void getHistsnapSameTiem(String pointid, Long beginDate, Long pried, List resultList) { long subTime = beginDate - pried; String rawUrl = baseURL + "/history/section?null=0&tagNames=" + pointid + "&ts=" + beginDate; if (pointid.startsWith("GF-")) { rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + pointid + "&ts=" + beginDate; } ResponseEntity sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class); JSONObject jsonObjectSection = sectionResp.getBody(); if (jsonObjectSection != null) { List sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection); if (sectionlist.size() > 0) { if (sectionlist.get(0).getPointTime() <= beginDate) { resultList.add(sectionlist.get(0)); } else { PointData data = new PointData(); data.setEdnaId(pointid); data.setPointTime(sectionlist.get(0).getPointTime()); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); resultList.add(data); } } else { PointData data = new PointData(); data.setEdnaId(pointid); data.setPointTime(0l); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); resultList.add(data); } } else { PointData data = new PointData(); data.setEdnaId(pointid); data.setPointTime(beginDate); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); resultList.add(data); } } @Override public List getHistoryDatasRaw(ProBasicPowerstationPoint point, Long beginDate, Long endDate) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional thingType = Optional.ofNullable(point.getModelId()); Optional uniformCode = Optional.ofNullable(point.getUniformCode()); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); try { String url = baseURL + "/history/snap?null=0"; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/snap?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); else { if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCode.isPresent()) url = url + "&uniformCodes=" + uniformCode.get(); } if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) return JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode()); else { return ErrorRequest.RequestListError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(point.getNemCode()); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } // @Override // public PointData getRealData(ProBasicEquipmentPoint point) throws Exception { // // if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { // Optional keys = Optional.ofNullable(point.getNemCode()); // Optional thingType = Optional.ofNullable(point.getModelId()); // Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); // Optional uniformCodes = Optional.ofNullable(point.getUniformCode()); // // try { // String url = ""; // if (point.getNemCode().startsWith("GF-")) { // url = baseURL2 + "/latest?null=0"; // } else { // url = baseURL + "/latest?null=0"; // } // // //tagName 或thingType,thingId,uniformCode可以确定一个标签点 // if (keys.isPresent()) // url = url + "&keys=" + keys.get(); // else { // if (thingType.isPresent()) // url = url + "&thingType=" + thingType.get(); // if (thingId.isPresent()) // url = url + "&thingId=" + thingId.get(); // if (uniformCodes.isPresent()) // url = url + "&uniformCodes=" + uniformCodes.get(); // } // ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); // JSONObject jsonArray = resp.getBody(); // if (StringUtils.isNotEmpty(jsonArray)) { // List list = JsonObjectHelper.phrasePointData(jsonArray); // if (list.size() > 0) { // PointData po = list.get(0); // po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4)); // return po; // } else { // return ErrorRequest.RequestError(point.getNemCode()); // } // } else { // return ErrorRequest.RequestError(point.getNemCode()); // } // // } catch (HttpClientErrorException exception) { // if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { // //System.out.println("404请求错误"); // return ErrorRequest.RequestError(point.getNemCode()); // } else { // throw exception; // } // } // } else { // PointData po = new PointData(); // po.setEdnaId(point.getNemCode()); // po.setPointValueInDouble(0.0); // po.setPointTime(0l); // return po; // } // // } @Override public PointData getRealData(ProBasicEquipmentPoint point) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional keys = Optional.ofNullable(point.getNemCode()); List ls = keys.map(Collections::singletonList) .orElse(Collections.emptyList()); List realData = getRealData(ls); return realData.get(0); } else { PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); return po; } } @Override public List getHistoryDatasSnap(ProBasicEquipmentPoint point, Long beginDate, Long endDate, Long count, Long pried) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional thingType = Optional.ofNullable(point.getModelId()); Optional uniformCode = Optional.ofNullable(point.getUniformCode()); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval; if (pried != null) finalInterval = pried; else if (count != null) finalInterval = (endDate - beginDate) / count; else return ErrorRequest.RequestListError(point.getNemCode()); Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = ""; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/snap?null=0"; } else { url = baseURL + "/history/snap?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); else { if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCode.isPresent()) url = url + "&uniformCodes=" + uniformCode.get(); } if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) { List snapList = JsonObjectHelper.phrasePointData(jsonArray, point.getNemCode()); List resultList = new ArrayList<>(); if (snapList.isEmpty()) { // for (PointData snapItem : resultList) { // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // } getHistsnapSameTiem(point.getNemCode(), beginDate, pried, resultList); } else { resultList = snapList; // // // for (PointData snapItem : snapList) { // long subTime = snapItem.getPointTime() - pried; // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间), // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中, // // 则代表该时间节点快照有效,否则为0 // // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // if (point.getNemCode().startsWith("GF-")){ // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // } // // ResponseEntity sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class); // JSONObject jsonObjectSection = sectionResp.getBody(); // // if (jsonObjectSection != null) { // List sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection); // if (sectionlist.size() > 0) { // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){ // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // resultList.add(snapItem); // } // else{ // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } } return resultList; } else { return ErrorRequest.RequestListError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(point.getNemCode()); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } // @Override // public PointData getRealData(String pointid) throws Exception { // // if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) { // Optional keys = Optional.ofNullable(pointid); // String url = baseURL + "/latest?null=0"; // if (pointid.startsWith("GF-")) { // url = baseURL2 + "/latest?null=0"; // } // // try { // if (keys.isPresent()) // url = url + "&keys=" + keys.get(); // else // return null; // // ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); // JSONObject jsonArray = resp.getBody(); // if (StringUtils.isNotEmpty(jsonArray)) { // List list = JsonObjectHelper.phrasePointData(jsonArray); // if (list.size() > 0) { // PointData po = list.get(0); // po.setPointValueInDouble(StringUtils.round(po.getPointValueInDouble(), 4)); // return po; // } else { // return ErrorRequest.RequestError(pointid); // } // } else { // return ErrorRequest.RequestError(pointid); // } // // } catch (HttpClientErrorException exception) { // if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { // //System.out.println("404请求错误"); // return ErrorRequest.RequestError(pointid); // } else { // return ErrorRequest.RequestError(pointid); // } // } // } else { // PointData po = new PointData(); // po.setEdnaId(pointid); // po.setPointValueInDouble(0.0); // po.setPointTime(0l); // return po; // } // // } @Override public PointData getRealData(String pointid) throws Exception { List pointids = new ArrayList<>(); pointids.add(pointid); List realData = getRealData(pointids); return realData.get(0); } @Override public List getRealData(List pointids) throws Exception { String join = String.join(",", pointids); String url = baseURL + "/latests"; try { HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.APPLICATION_JSON); // 将请求体和头部信息整合到HttpEntity中 HttpEntity requestEntity = new HttpEntity<>(join,headers); // 发起POST请求 ResponseEntity resp = restTemplate.exchange(url,HttpMethod.POST,requestEntity,JSONObject.class); JSONObject jsonObject = resp.getBody(); if (jsonObject != null&&!jsonObject.isEmpty()) { //对结果进行有序返回 int len = pointids.size(); List result = new ArrayList<>(); HashMap pointDataHashMap = new HashMap<>(); for (int i = 0; i < len; i++) { if (pointDataHashMap.containsKey(pointids.get(i)) == false) { PointData pd = new PointData(); pd.setPointName(pointids.get(i)); pd.setEdnaId(pointids.get(i)); result.add(pd); pointDataHashMap.put(pd.getPointName(), pd); } else { result.add(pointDataHashMap.get(pointids.get(i))); } } Iterator sIterator = jsonObject.keySet().iterator(); while (sIterator.hasNext()) { // 获得key String key = sIterator.next(); PointData pointData = pointDataHashMap.get(key); if (pointData == null||null==pointData.getPointTime()) continue; // 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可 JSONObject jsonData = jsonObject.getJSONObject(key); Long ts = jsonData.getLong("ts"); pointData.setPointTime(ts); String pointValue = null; if (jsonData.containsKey("doubleValue")) { pointValue = jsonData.getString("doubleValue"); } else if (jsonData.containsKey("booleanValue")) { pointValue = jsonData.getString("booleanValue"); } else if (jsonData.containsKey("longValue")) { pointValue = jsonData.getString("longValue"); } else if (jsonData.containsKey("stringValue")) { pointValue = jsonData.getString("stringValue"); } if (pointValue.equals("true")) { pointData.setPointValueInDouble(1.0); } else if (pointValue.equals("false")) { pointData.setPointValueInDouble(0.0); } else { double value = Double.parseDouble(pointValue); pointData.setPointValueInDouble(StringUtils.round(value, 4)); } pointData.setPointValue(pointValue); } return result; } else { return ErrorRequest.RequestListError(pointids.toString()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(pointids.toString()); } else { throw exception; } } } //@Override public List getRealData2(List pointids) throws Exception { String pointIdString = StringUtil.join(pointids.toArray(), ","); Optional keys = Optional.ofNullable(pointIdString); String url = baseURL + "/latest?null=0"; if (pointIdString.startsWith("GF-")) { url = baseURL2 + "/latest?null=0"; } try { if (keys.isPresent()) url = url + "&keys=" + keys.get(); else { String[] arr = new String[pointids.size()]; return ErrorRequest.RequestListError(pointids.toArray(arr)); } ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (jsonObject != null) { //对结果进行有序返回 int len = pointids.size(); List result = new ArrayList<>(); HashMap pointDataHashMap = new HashMap<>(); for (int i = 0; i < len; i++) { if (pointDataHashMap.containsKey(pointids.get(i)) == false) { PointData pd = new PointData(); pd.setPointName(pointids.get(i)); pd.setEdnaId(pointids.get(i)); result.add(pd); pointDataHashMap.put(pd.getPointName(), pd); } else { result.add(pointDataHashMap.get(pointids.get(i))); } } Iterator sIterator = jsonObject.keySet().iterator(); while (sIterator.hasNext()) { // 获得key String key = sIterator.next(); PointData pointData = pointDataHashMap.get(key); if (pointData == null) continue; // 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可 JSONObject jsonData = jsonObject.getJSONObject(key); Long ts = jsonData.getLong("ts"); String pointValue = null; if (jsonData.containsKey("doubleValue")) { pointValue = jsonData.getString("doubleValue"); } else if (jsonData.containsKey("booleanValue")) { pointValue = jsonData.getString("booleanValue"); } else if (jsonData.containsKey("longValue")) { pointValue = jsonData.getString("longValue"); } else if (jsonData.containsKey("stringValue")) { pointValue = jsonData.getString("stringValue"); } if (pointValue.equals("true")) { pointData.setPointValueInDouble(1.0); } else if (pointValue.equals("false")) { pointData.setPointValueInDouble(0.0); } else { double value = Double.parseDouble(pointValue); pointData.setPointValueInDouble(StringUtils.round(value, 4)); } pointData.setPointValue(pointValue); pointData.setPointTime(ts); // //System.out.println("key= " + key + ", ts = " + ts + ", value = " + pointValue); } return result; } else { String[] arr = new String[pointids.size()]; return ErrorRequest.RequestListError(pointids.toArray(arr)); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); String[] arr = new String[pointids.size()]; return ErrorRequest.RequestListError(pointids.toArray(arr)); } else { throw exception; } } } @Override public List getHistoryDatasSnap(String pointid, Long beginDate, Long endDate, Long count, Long pried) throws Exception { if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) { Optional tagName = Optional.ofNullable(pointid); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval; if (pried != null) finalInterval = pried; else if (count != null) finalInterval = (endDate - beginDate) / count; else return ErrorRequest.RequestListError(pointid); Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = baseURL + "/history/snap?null=0"; if (pointid.startsWith("GF-")) { url = baseURL2 + "/history/snap?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) { List list = JsonObjectHelper.phrasePointData(jsonArray, tagName.get()); List resultList = new ArrayList<>(); if (list.isEmpty()) { // for (PointData snapItem : resultList) { // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // } getHistsnapSameTiem(pointid, beginDate, pried, resultList); } else { resultList = list; // // // for (PointData snapItem : snapList) { // long subTime = snapItem.getPointTime() - pried; // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间), // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中, // // 则代表该时间节点快照有效,否则为0 // // String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // if (point.getNemCode().startsWith("GF-")){ // rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + snapItem.getPointTime() ; // } // // ResponseEntity sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class); // JSONObject jsonObjectSection = sectionResp.getBody(); // // if (jsonObjectSection != null) { // List sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection); // if (sectionlist.size() > 0) { // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){ // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // resultList.add(snapItem); // } // else{ // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(point.getNemCode()); // data.setPointTime(0l); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } } return resultList; } else { return ErrorRequest.RequestListError(pointid); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(pointid); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(pointid); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } @Override public List getHistStat(ProBasicEquipmentPoint point, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional thingType = Optional.ofNullable(point.getModelId()); Optional uniformCode = Optional.ofNullable(point.getUniformCode()); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); // Calendar cal = Calendar.getInstance(); // cal.setTime(new Date(startTs.get())); // cal.add(Calendar.SECOND, -pried.intValue()); // startTs= Optional.ofNullable(cal.getTime().getTime()); // count++; //通过时间区间和时间间隔获取点数 Long finalInterval; if (pried != null) finalInterval = pried; else if (count != null) finalInterval = (endDate - beginDate) / count; else return ErrorRequest.RequestListError(point.getNemCode()); Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = ""; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/stat?null=0"; } else { url = baseURL + "/history/stat?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); else { if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCode.isPresent()) url = url + "&uniformCodes=" + uniformCode.get(); } if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, point.getNemCode(), type); else { return ErrorRequest.RequestListError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(point.getNemCode()); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } @Override public List getHistStat(ProBasicPowerstationPoint point, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception { if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) { Optional tagName = Optional.ofNullable(point.getNemCode()); Optional thingId = Optional.ofNullable(point.getWindpowerstationId()); Optional thingType = Optional.ofNullable(point.getModelId()); Optional uniformCode = Optional.ofNullable(point.getUniformCode()); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval; if (pried != null) finalInterval = pried; else if (count != null) finalInterval = (endDate - beginDate) / count; else return ErrorRequest.RequestListError(point.getNemCode()); Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = baseURL + "/history/stat?null=0"; if (point.getNemCode().startsWith("GF-")) { url = baseURL2 + "/history/stat?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); else { if (thingType.isPresent()) url = url + "&thingType=" + thingType.get(); if (thingId.isPresent()) url = url + "&thingId=" + thingId.get(); if (uniformCode.isPresent()) url = url + "&uniformCodes=" + uniformCode.get(); } if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, point.getNemCode(), type); else { return ErrorRequest.RequestListError(point.getNemCode()); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(point.getNemCode()); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(point.getNemCode()); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } @Override public List getHistStat(String pointid, Long beginDate, Long endDate, Long count, Long pried, int type) throws Exception { if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) { Optional tagName = Optional.ofNullable(pointid); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval; if (count != null) finalInterval = (endDate - beginDate) / count; else if (pried != null) finalInterval = pried; else return null; Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = baseURL + "/history/stat?null=0"; if (pointid.startsWith("GF-")) { url = baseURL2 + "/history/stat?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=" + interval.get(); ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) return JsonObjectHelper.GeneralTsDataToPointDataByStat(jsonArray, pointid, type); else { return ErrorRequest.RequestListError(pointid); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { //System.out.println("404请求错误"); return ErrorRequest.RequestListError(pointid); } else { throw exception; } } } else { List pols = new ArrayList<>(); PointData po = new PointData(); po.setEdnaId(pointid); po.setPointValueInDouble(0.0); po.setPointTime(0l); pols.add(po); return pols; } } @Override public DNAStatVal[] getHistStat(String point, Long beginDate, Long endDate, Integer pried) throws Exception { return new DNAStatVal[0]; } private JSONObject convertPointData(PointData pd) { JSONObject jo = new JSONObject(); jo.put("tagName", pd.getEdnaId()); jo.put("ts", pd.getPointTime()); jo.put("doubleValue", pd.getPointValueInDouble()); // JSONObject joo = new JSONObject(); // joo.put("ts", pd.getPointTime()); // joo.put("status", 0); // joo.put("doubleValue", pd.getPointValueInDouble()); // jo.put("tsData", joo); return jo; } @Override public void updatePoint(List pointls) throws Exception { String url = baseURL + "/history/batch"; if (!pointls.isEmpty()) { if (pointls.get(0).getEdnaId().startsWith("GF-")) { url = baseURL2 + "/history/batch"; } } List writeList = new ArrayList<>(); int batchSize = 500; // 设置每次传输的批次大小 int totalSize = pointls.size(); int batchCount = totalSize % batchSize == 0 ? totalSize / batchSize : totalSize / batchSize + 1; for (int i = 0; i < batchCount; i++) { int startIndex = i * batchSize; int endIndex = Math.min((i + 1) * batchSize, totalSize); List batch = pointls.subList(startIndex, endIndex); List batchWriteList = new ArrayList<>(); for (PointData entity : batch) { batchWriteList.add(convertPointData(entity)); } try { String result = restTemplate.postForObject(url, batchWriteList, String.class); // 处理返回的结果 } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { throw new Exception("404请求错误"); } else { throw exception; } } } } @Override public void sendSinglePoint(PointData point) throws Exception { String url = baseURL + "/latest"; if (point.getEdnaId().startsWith("GF-")) { url = baseURL2 + "/latest"; } try { String result = restTemplate.postForObject(url, convertPointData(point), String.class); } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { return; } else { throw exception; } } } @Override public void sendMultiPoint(List pointls) throws Exception { String url = baseURL + "/save/batch"; if (!pointls.isEmpty()) { if (pointls.get(0).getEdnaId().startsWith("GF-")) { url = baseURL2 + "/save/batch"; } List writeList = new ArrayList<>(); int batchSize = 500; // 设置每次传输的批次大小 int totalSize = pointls.size(); int batchCount = totalSize % batchSize == 0 ? totalSize / batchSize : totalSize / batchSize + 1; for (int i = 0; i < batchCount; i++) { int startIndex = i * batchSize; int endIndex = Math.min((i + 1) * batchSize, totalSize); List batch = pointls.subList(startIndex, endIndex); List batchWriteList = new ArrayList<>(); for (PointData entity : batch) { batchWriteList.add(convertPointData(entity)); } try { String result = restTemplate.postForObject(url, batchWriteList, String.class); // 处理返回的结果 } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { throw new Exception("404请求错误"); } else { throw exception; } } } } } @Override public void sendMultiPoint(String[] realvalue, DNAVal[] pointls) throws Exception { } @Override public DNAVal[] getHistMatrix(String[] nameList, int tTime) throws Exception { return new DNAVal[0]; } @Override public List getHistoryDatasSnap(String pointid, Long beginDate, Long endDate) throws Exception { if (StringUtils.notEmp(pointid) && !initialcode.equals(pointid)) { Optional tagName = Optional.ofNullable(pointid); Optional startTs = Optional.ofNullable(beginDate * 1000); Optional endTs = Optional.ofNullable(endDate * 1000); //通过时间区间和时间间隔获取点数 Long finalInterval = 60l; Optional interval = Optional.ofNullable(Integer.parseInt(finalInterval.toString())); try { String url = baseURL + "/history/snap?null=0"; if (pointid.startsWith("GF-")) { url = baseURL2 + "/history/snap?null=0"; } //tagName 或thingType,thingId,uniformCode可以确定一个标签点 if (tagName.isPresent()) url = url + "&tagName=" + tagName.get(); if (startTs.isPresent()) url = url + "&startTs=" + startTs.get(); if (endTs.isPresent()) url = url + "&endTs=" + endTs.get(); if (interval.isPresent()) url = url + "&interval=60"; ResponseEntity resp = restTemplate.getForEntity(url, JSONArray.class); JSONArray jsonArray = resp.getBody(); if (jsonArray != null) { List resultList = JsonObjectHelper.phrasePointData(jsonArray, tagName.get()); // List resultList = new ArrayList<>(); if (resultList.isEmpty()) { // for (PointData snapItem : resultList) { // snapItem.setPointValueInDouble(StringUtils.round(snapItem.getPointValueInDouble(),4)); // } getHistsnapSameTiem(pointid, beginDate, finalInterval, resultList); } else { // for (PointData snapItem : list) { // long subTime = snapItem.getPointTime() - finalInterval; // //查询时间区间的截面值(截面值为传入时间节点的上一个最近值,返回时间为值的真实时间), // // 再进行比较,若截面值的时间戳在以快照时间节点前推一个单位的时间区间中, // // 则代表该时间节点快照有效,否则为0 // String rawUrl = baseURL + "/history/section?null=0&tagNames=" +pointid+ "&ts=" + snapItem.getPointTime() ; // ResponseEntity sectionResp = restTemplate.getForEntity(rawUrl, JSONObject.class); // JSONObject jsonObjectSection = sectionResp.getBody(); // // if (jsonObjectSection != null) { // List sectionlist = JsonObjectHelper.phrasePointData(jsonObjectSection); // if (sectionlist.size() > 0) { // if(sectionlist.get(0).getPointTime()<=snapItem.getPointTime()){ // resultList.add(snapItem); // } // else{ // PointData data = new PointData(); // data.setEdnaId(pointid); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(pointid); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } else { // PointData data = new PointData(); // data.setEdnaId(pointid); // data.setPointTime(snapItem.getPointTime()); // data.setPointValue("0"); // data.setPointName("1"); // data.setPointValueInDouble(0.0); // resultList.add(data); // } // } } return resultList; } else { return ErrorRequest.RequestListError(pointid); } } catch (HttpClientErrorException exception) { if (exception.getStatusCode() == HttpStatus.NOT_FOUND) { System.out.println("404请求错误"); return ErrorRequest.RequestListError(pointid); } else { throw exception; } } } else { return new ArrayList<>(); } } //多点切面数据 @Override public List getHistMatrix(List nameList, long tTime) throws Exception { String tagNameString = StringUtil.join(nameList, ","); Long time = Long.valueOf(tTime); Optional tagName = Optional.ofNullable(tagNameString); Optional ts = Optional.ofNullable(time * 1000); String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get(); if (tagNameString.startsWith("GF-")) { url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get(); } try { ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) { return JsonObjectHelper.phrasePointData(jsonObject, nameList); } else { return new ArrayList<>(); } } catch (Exception e) { DNAVal[] errorResult = new DNAVal[nameList.size()]; for (int i = 0; i < nameList.size(); i++) { DNAVal val = new DNAVal(); val.Status = 0; errorResult[i] = val; } return new ArrayList<>(); } } @Override public PointData getHistMatrix(String id, long tTime) throws Exception { if (StringUtils.notEmp(id) && !id.equals(initialcode)) { String tagNameString = id; Long time = Long.valueOf(tTime); Optional tagName = Optional.ofNullable(tagNameString); Optional ts = Optional.ofNullable(time * 1000); String url = baseURL + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get(); if (id.startsWith("GF-")) { url = baseURL2 + "/history/section?tagNames=" + tagName.get() + "&ts=" + ts.get(); } try { ResponseEntity resp = restTemplate.getForEntity(url, JSONObject.class); JSONObject jsonObject = resp.getBody(); if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) { return JsonObjectHelper.phrasePointData(jsonObject, id); } else { return new PointData(); } } catch (Exception e) { return new PointData(); } } else { PointData data = new PointData(); data.setEdnaId(id); data.setPointTime(tTime); data.setPointValue("0"); data.setPointName("1"); data.setPointValueInDouble(0.0); return data; } } }