| | |
| | | |
| | | |
| | | //获取请求信息 |
| | | BaseReqData reqData = ProtocolUtils.getSyncReq(gatewayDevice.getDepotIdSys()); |
| | | BaseReqData reqData = ProtocolUtils.getSyncReq(gatewayDevice.getDeviceSn()); |
| | | if (null == reqData) { |
| | | replayGrain(message); |
| | | log.error("主机-------->>平台,解析粮情失败,未获取到粮情请求信息:" + message.getAddr()); |
| | |
| | | int sumNum = cableData.getSumNum(); |
| | | |
| | | // 根据层行列获取指定长度 |
| | | int start = 0; |
| | | int start = (Integer.valueOf(device.getCableStart()) - 1) * cableData.getCableZ() * 4; |
| | | int len = 4 * sumNum; |
| | | |
| | | log.info("分机------>>>平台:返回粮情完整信息,分机={}", device.getDeviceName()); |
| | | |
| | | String strPoints = grainStr.substring(start, start + len); |
| | | |
| | | log.info("strPoints = "+ strPoints); |
| | | // 将粮情解析成数组 |
| | | List<Double> temps = new ArrayList<>(); |
| | | double tempValue; |
| | |
| | | int cableY = cableData.getCableY(); |
| | | |
| | | int sumNum = temps.size(); |
| | | |
| | | log.info("temps:" + temps.toString()); |
| | | //数据封装 |
| | | GrainData grain = new GrainData(); |
| | | grain.setMessageId(ScConstant.getMessageId()); |
| | |
| | | outPut.setTemperature(temperature); |
| | | outPut.setAvgTemperature(NumberUtil.keepPrecision((sumT / sumNum), 1) + ""); |
| | | outPut.setMinTemperature(min + ""); |
| | | outPut.setMaxTemperature(min + ""); |
| | | outPut.setMaxTemperature(max + ""); |
| | | |
| | | |
| | | JSONObject properties = new JSONObject(); |
| | | properties.put("data", outPut); |
| | | properties.put("timestamp", grain.getTimestamp()); |
| | | |
| | | properties.put("timestamp", grain.getTimestamp()); |
| | | outPut.setDetectTime( grain.getTimestamp()); |
| | | String height = this.getCacheHeight(device); |
| | | if (StringUtils.isEmpty(height)) height = "0.0"; |
| | | properties.put("liquidHeight", height); |
| | | |
| | | grain.setProperties(properties); |
| | | outPut.setLiquidHeight(height); |
| | | grain.setOutput(JSONObject.toJSONString(outPut)); |
| | | properties.put("output", outPut); |
| | | GatewayDevice gatewayDeviceWeather = GatewayUtils.getCacheByDeviceTypeOne(GatewayDeviceType.TYPE_09.getCode()); |
| | | |
| | | //系统气象站信息 |
| | | WeatherWebDto weather = WeatherWebDto.contextMap.get("default"); |
| | | |
| | | //气象信息 |
| | | GrainWeather weatherStation = new GrainWeather(); |
| | | weatherStation.setMessageId(ScConstant.getMessageId()); |
| | | weatherStation.setMessgeId(weatherStation.getMessageId()); |
| | | |
| | | if (null != gatewayDeviceWeather) { |
| | | weatherStation.setId(gatewayDeviceWeather.getDeviceId()); |
| | | } else { |
| | | weatherStation.setId(device.getDeviceId()); |
| | | } |
| | | weatherStation.setAirPressure(weather.getPressure()); |
| | | weatherStation.setHumidity(weather.getHumidity().replaceAll("%","")); |
| | | weatherStation.setPm(weather.getAir_pm25()); |
| | | weatherStation.setRadiation("0"); |
| | | weatherStation.setRainfallAmount(weather.getWea()); |
| | | weatherStation.setTemperature(weather.getTem()); |
| | | weatherStation.setWindDirection(weather.getWin()); |
| | | weatherStation.setWindPower(weather.getWin_meter()); |
| | | weatherStation.setWindSpeed(weather.getWin_speed()); |
| | | |
| | | grain.setWeatherStation(JSONObject.toJSONString(weatherStation)); |
| | | |
| | | //封装好的数据 |
| | | log.info("---油罐仓信息封装完成----开始执行推送"); |
| | | |
| | | grain.setProperties(properties); |
| | | reqData.setData(JSONObject.toJSONString(grain)); |
| | | |
| | | doPushGrain(reqData); |
| | | doPushGrain(reqData,grain); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | private String getCacheHeight(GatewayDevice device) { |
| | | //给其他软使用 |
| | | String key = RedisConst.KEY_DEPOT_HEIGHT + ":" + configData.getCompanyId() + "_" + device.getDepotIdSys(); |
| | | return (String) redisUtil.get(key); |
| | | //igds:5012:DEPOT_HEIGHT:0134 |
| | | String key = "igds:"+ device.getOrgId() + ":" + RedisConst.KEY_DEPOT_HEIGHT+ ":" + device.getDepotIdSys(); |
| | | com.ld.igds.grain.dto.GrainData ht = (com.ld.igds.grain.dto.GrainData) redisUtil.get(key); |
| | | log.info("KEY="+key); |
| | | if(ht!=null){ |
| | | log.info("VALUE="+ht.getOilHeight()); |
| | | return ht.getOilHeight() ; |
| | | }else { |
| | | return "0.0"; |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | weatherStation.setId(device.getDeviceId()); |
| | | } |
| | | weatherStation.setAirPressure(weather.getPressure()); |
| | | weatherStation.setHumidity(weather.getHumidity()); |
| | | weatherStation.setHumidity(weather.getHumidity().replaceAll("%","")); |
| | | weatherStation.setPm(weather.getAir_pm25()); |
| | | weatherStation.setRadiation("0"); |
| | | weatherStation.setRainfallAmount(weather.getWea()); |
| | |
| | | |
| | | reqData.setData(JSONObject.toJSONString(grain)); |
| | | |
| | | doPushGrain(reqData); |
| | | doPushGrain(reqData,grain); |
| | | } |
| | | |
| | | private void doPushGrain(BaseReqData reqData) { |
| | | private void doPushGrain(BaseReqData reqData,GrainData grainData) { |
| | | |
| | | GatewayDeviceReportService reportService = gatewayRemoteManager.getDeviceReportService(reqData.getDevice().getPushProtocol()); |
| | | if (null == reportService) { |
| | |
| | | return; |
| | | } |
| | | reportService.reportGrainData(reqData); |
| | | reqData.setData(reportService.grainData2GatewayApiInfoKafka(grainData,reqData.getDevice()).getData()); |
| | | reportService.reportGrainDataByKafka(reqData); |
| | | } |
| | | |
| | | |