|
@@ -101,61 +101,76 @@ public class EdosUtil implements IEdosUtil {
|
|
|
public PointData getSectionData(String point, Long date) throws Exception {
|
|
|
|
|
|
|
|
|
- if(StringUtils.notEmp(point) && StringUtils.notEmp(point) && !initialcode.equals(point))
|
|
|
- {
|
|
|
- String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point + "&ts=" + date;
|
|
|
- if(point.startsWith("GF-")){
|
|
|
- rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point + "&ts=" + date;
|
|
|
+ if (StringUtils.notEmp(point)) {
|
|
|
+
|
|
|
+
|
|
|
+ Optional<String> 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<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
|
|
|
+ JSONObject jsonObject = resp.getBody();
|
|
|
+ if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
|
|
|
|
|
|
- ResponseEntity<JSONObject> resp = restTemplate.getForEntity(rawUrl, JSONObject.class);
|
|
|
- JSONObject jsonArray = resp.getBody();
|
|
|
- if (StringUtils.isNotEmpty(jsonArray)){
|
|
|
- List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
|
|
|
- if (list.size() > 0)
|
|
|
- return list.get(0);
|
|
|
- else
|
|
|
- return ErrorRequest.RequestError(point);
|
|
|
- } else {
|
|
|
- return ErrorRequest.RequestError(point);
|
|
|
+ return JsonObjectHelper.phrasePointData(jsonObject, point);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ return new PointData();
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+
|
|
|
+ return new PointData();
|
|
|
}
|
|
|
- }else
|
|
|
- {
|
|
|
- PointData po=new PointData();
|
|
|
- po.setEdnaId(point);
|
|
|
- po.setPointValueInDouble(0.0);
|
|
|
- po.setPointTime(0l);
|
|
|
- return po;
|
|
|
+ } 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()))
|
|
|
- {
|
|
|
- String rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + date;
|
|
|
- if (point.getNemCode().startsWith("GF-")){
|
|
|
- rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + date;
|
|
|
+ if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
|
|
|
+
|
|
|
+
|
|
|
+ Optional<String> 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;
|
|
|
}
|
|
|
- ResponseEntity<JSONObject> resp = restTemplate.getForEntity(rawUrl, JSONObject.class);
|
|
|
- JSONObject jsonArray = resp.getBody();
|
|
|
- if (StringUtils.isNotEmpty(jsonArray)){
|
|
|
- List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
|
|
|
- if (list.size() > 0)
|
|
|
- return list.get(0);
|
|
|
- else
|
|
|
- return ErrorRequest.RequestError(point.getNemCode());
|
|
|
- } else {
|
|
|
- return ErrorRequest.RequestError(point.getNemCode());
|
|
|
+ try {
|
|
|
+ ResponseEntity<JSONObject> 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 po=new PointData();
|
|
|
- po.setEdnaId(point.getNemCode());
|
|
|
- po.setPointValueInDouble(0.0);
|
|
|
- po.setPointTime(0l);
|
|
|
- return po;
|
|
|
+ } else {
|
|
|
+
|
|
|
+ PointData data = new PointData();
|
|
|
+ data.setEdnaId(point.getNemCode());
|
|
|
+ data.setPointTime(date);
|
|
|
+ data.setPointValue("0");
|
|
|
+ data.setPointName("1");
|
|
|
+ data.setPointValueInDouble(0.0);
|
|
|
+ return data;
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -164,34 +179,40 @@ public class EdosUtil implements IEdosUtil {
|
|
|
public PointData getSectionData(ProBasicEquipmentPoint point, Long date) throws Exception {
|
|
|
|
|
|
|
|
|
- if(StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode()))
|
|
|
- {
|
|
|
- String rawUrl = "";
|
|
|
- if (point.getNemCode().startsWith("GF-")){
|
|
|
- rawUrl = baseURL2 + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + date;
|
|
|
- }else {
|
|
|
- rawUrl = baseURL + "/history/section?null=0&tagNames=" + point.getNemCode() + "&ts=" + date;
|
|
|
+ if (StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode())) {
|
|
|
+
|
|
|
+
|
|
|
+ Optional<String> 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<JSONObject> resp = restTemplate.getForEntity(url, JSONObject.class);
|
|
|
+ JSONObject jsonObject = resp.getBody();
|
|
|
+ if (StringUtils.isNotEmpty(jsonObject) && !jsonObject.isEmpty()) {
|
|
|
|
|
|
- ResponseEntity<JSONObject> resp = restTemplate.getForEntity(rawUrl, JSONObject.class);
|
|
|
- JSONObject jsonArray = resp.getBody();
|
|
|
- if (StringUtils.isNotEmpty(jsonArray)){
|
|
|
- List<PointData> list = JsonObjectHelper.phrasePointData(jsonArray);
|
|
|
- if (list.size() > 0)
|
|
|
- return list.get(0);
|
|
|
- else
|
|
|
- return ErrorRequest.RequestError(point.getNemCode());
|
|
|
- } else {
|
|
|
- return ErrorRequest.RequestError(point.getNemCode());
|
|
|
+ return JsonObjectHelper.phrasePointData(jsonObject, point.getNemCode());
|
|
|
+ } else {
|
|
|
+
|
|
|
+ return new PointData();
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+
|
|
|
+ return new PointData();
|
|
|
}
|
|
|
- }else
|
|
|
- {
|
|
|
- PointData po=new PointData();
|
|
|
- po.setEdnaId(point.getNemCode());
|
|
|
- po.setPointValueInDouble(0.0);
|
|
|
- po.setPointTime(0l);
|
|
|
- return po;
|
|
|
+ } else {
|
|
|
+
|
|
|
+ PointData data = new PointData();
|
|
|
+ data.setEdnaId(point.getNemCode());
|
|
|
+ data.setPointTime(date);
|
|
|
+ data.setPointValue("0");
|
|
|
+ data.setPointName("1");
|
|
|
+ data.setPointValueInDouble(0.0);
|
|
|
+ return data;
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -650,6 +671,9 @@ public class EdosUtil implements IEdosUtil {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@Override
|
|
|
public List<PointData> getHistoryDatasRaw(ProBasicEquipmentPoint point, Long beginDate, Long endDate) throws Exception {
|
|
|
if(StringUtils.notEmp(point) && StringUtils.notEmp(point.getNemCode()) && !initialcode.equals(point.getNemCode()))
|