package com.dy.pipIrrRemote.monitor; import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSONArray; import com.alibaba.fastjson2.JSONObject; import com.dy.common.mw.protocol.Command; import com.dy.common.mw.protocol.CommandBackParam; import com.dy.common.webUtil.BaseResponse; import com.dy.common.webUtil.QueryResultVo; import com.dy.pipIrrGlobal.daoPr.PrIntakeMapper; import com.dy.pipIrrGlobal.rtuMw.CodeLocal; import com.dy.pipIrrGlobal.rtuMw.ToRtuMwCom; import com.dy.pipIrrGlobal.voPr.VoOnLineIntake; import lombok.extern.slf4j.Slf4j; import org.apache.dubbo.common.utils.PojoUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.env.Environment; import org.springframework.stereotype.Service; import org.springframework.web.client.RestTemplate; import java.util.HashMap; import java.util.List; import java.util.Map; /** * @Author: liurunyu * @Date: 2024/10/23 11:32 * @Description */ @Slf4j @Service public class MonitorSv extends ToRtuMwCom { @Autowired private PrIntakeMapper prIntakeMapper; @Autowired private Environment env; @Autowired private RestTemplate restTemplate; /** * 获取已经绑定控制器的取水口列表(并标记在线与不在线) * * @return */ public QueryResultVo> selectOnLineIntakes(QueryVo vo) { if(vo.getIsOnLine() == null){ //不区分在线与离线 return selectIntakesIgnoreOnOffLine(vo) ; }else{ //在线 或 离线 return selectIntakesOnOrOffLine(vo) ; } } /** * 查询取水口,不限制在线与离线状态 * @param vo * @return */ private QueryResultVo> selectIntakesIgnoreOnOffLine(QueryVo vo) { QueryResultVo> rsVo = this.queryDb(vo) ; if(rsVo != null && rsVo.obj != null && (rsVo.obj.size() > 0)){ String rtuAddrs = "" ; boolean first = true ; for(VoOnLineIntake rVo : rsVo.obj){ if(first){ first = false ; rtuAddrs += rVo.getRtuAddr() ; }else{ rtuAddrs += "," + rVo.getRtuAddr() ; } } //向通信中间件发关命令,查询部分RTU在线情况 Command com = this.createInnerCommand(CodeLocal.onLinePart); com.setParam(rtuAddrs) ; String comSendUrl = this.getToMwUrl(this.env) ; BaseResponse res = sendCom2Mw(restTemplate, comSendUrl, com) ; if(res != null){ if(res.isSuccess()){ Command reCom = JSON.parseObject(res.getContent() == null ? null : JSON.toJSONString(res.getContent()), Command.class) ; CommandBackParam bakParam = JSON.parseObject((reCom== null || reCom.param == null) ? null : JSON.toJSONString(reCom.param), CommandBackParam.class) ; if(bakParam != null){ if(bakParam.getSuccess().booleanValue()){ //通信中间件成功返回命令结果 HashMap onLineMap = JSON.parseObject(JSON.toJSONString(reCom.getAttachment()), HashMap.class); for(VoOnLineIntake rVo : rsVo.obj){ if(onLineMap.containsKey(rVo.getRtuAddr())) { rVo.setIsOnLine(onLineMap.get(rVo.getRtuAddr())); } } } }else{ log.error("通信中间件返回内部命令结果中不包含CommandBackParam类型参数"); } }else{ log.error("通信中间件返回内部命令执行失败" + (res.getMsg() == null? "" : ("," + res.getMsg()))) ; } }else{ log.error("通信中间件返回内部命令结果为null"); } } return rsVo; } /** * 查询取水口,在线或离线状态 * @param vo * @return */ private QueryResultVo> selectIntakesOnOrOffLine(QueryVo vo) { //向通信中间件发关命令,查询部分RTU在线情况 Command com = this.createInnerCommand(CodeLocal.onLineAll); String comSendUrl = this.getToMwUrl(this.env) ; BaseResponse res = sendCom2Mw(restTemplate, comSendUrl, com) ; if(res != null){ if(res.isSuccess()){ Command reCom = JSON.parseObject(res.getContent() == null ? null : JSON.toJSONString(res.getContent()), Command.class) ; CommandBackParam bakParam = JSON.parseObject((reCom== null || reCom.param == null) ? null : JSON.toJSONString(reCom.param), CommandBackParam.class) ; if(bakParam != null){ if(bakParam.getSuccess().booleanValue()){ //通信中间件成功返回命令结果 HashMap onLineMap = JSON.parseObject(JSON.toJSONString(reCom.getAttachment()), HashMap.class); JSONArray jsonArray = new JSONArray(); for (Map.Entry entry : onLineMap.entrySet()) { JSONObject jsonObject = new JSONObject(); jsonObject.put("rtuAddr", entry.getKey()); jsonObject.put("isOnLine", entry.getValue()); jsonArray.add(jsonObject); } vo.setOnLineMap(jsonArray.toJSONString()); } }else{ log.error("通信中间件返回内部命令结果中不包含CommandBackParam类型参数"); } }else{ log.error("通信中间件返回内部命令执行失败" + (res.getMsg() == null? "" : ("," + res.getMsg()))) ; } }else{ log.error("通信中间件返回内部命令结果为null"); } return this.queryDb(vo) ; } /** * 查询数据库 * @param vo * @return */ private QueryResultVo> queryDb(QueryVo vo){ Map params = (Map) PojoUtils.generalize(vo); Long itemTotal = prIntakeMapper.selectIntakesCountForOnLine(params); QueryResultVo> rsVo = new QueryResultVo<>(); rsVo.pageSize = vo.pageSize; rsVo.pageCurr = vo.pageCurr; rsVo.calculateAndSet(itemTotal, params); List records = prIntakeMapper.selectIntakesForOnLine(params) ; rsVo.obj = records ; for(VoOnLineIntake rVo : records){ if(rVo.getAlarm() != null && !rVo.getAlarm().trim().equals("") && rVo.getAlarm().endsWith(",")){ rVo.setAlarm(rVo.getAlarm().substring(0, rVo.getAlarm().length() - 1)) ; } } return rsVo ; } }