|
|
@ -1,14 +1,11 @@ |
|
|
|
package com.zc.business.message.device.handler; |
|
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil; |
|
|
|
import cn.hutool.core.thread.NamedThreadFactory; |
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
import com.google.gson.Gson; |
|
|
|
import com.ruoyi.common.core.redis.RedisCache; |
|
|
|
import com.ruoyi.common.utils.SecurityUtils; |
|
|
|
import com.ruoyi.common.utils.spring.SpringUtils; |
|
|
|
import com.zc.business.constant.RedisKeyConstants; |
|
|
|
import com.zc.business.domain.DcDevice; |
|
|
@ -20,7 +17,6 @@ import com.zc.business.message.device.subscribe.KafkaTopicProducer; |
|
|
|
import com.zc.business.service.*; |
|
|
|
import com.zc.common.core.websocket.WebSocketService; |
|
|
|
import com.zc.common.core.websocket.constant.WebSocketEvent; |
|
|
|
import org.apache.catalina.security.SecurityUtil; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -68,6 +64,7 @@ public class DeviceMessageHandler { |
|
|
|
@Autowired |
|
|
|
private IDcMeteorologicalDetectorDataService meteorologicalDetectorDataService; |
|
|
|
|
|
|
|
KafkaTopicProducer kafkaTopicProducer = SpringUtils.getBean(KafkaTopicProducer.class); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -96,7 +93,13 @@ public class DeviceMessageHandler { |
|
|
|
}); |
|
|
|
|
|
|
|
WebSocketService.broadcast(WebSocketEvent.DEVICE_STATE, dcDevices); //推送设备状态更新
|
|
|
|
// 批量更新中间库设备状态
|
|
|
|
//kafka消息推送
|
|
|
|
//state 设备状态 0 异常 1 正常
|
|
|
|
Gson gson = new Gson(); |
|
|
|
String jsonString = gson.toJson(dcDevices); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString, KafkEnum.deviceStatus.value()); |
|
|
|
|
|
|
|
// 批量更新中间库设备状态
|
|
|
|
middleDatabaseService.updateMiddleDatabaseDeviceByList(dcDevices); |
|
|
|
} |
|
|
|
|
|
|
@ -361,7 +364,6 @@ public class DeviceMessageHandler { |
|
|
|
combinedData.put("address", otherConfig);*/ |
|
|
|
dcWarning.setOtherConfig(otherConfig.toString()); |
|
|
|
//异常天气等级 过滤
|
|
|
|
KafkaTopicProducer kafkaTopicProducer = SpringUtils.getBean(KafkaTopicProducer.class); |
|
|
|
if (data.getInteger("warningType") == VISIBILITY_LEVEL) { |
|
|
|
int WarningLevel = data.getInteger("visibilityLevel"); |
|
|
|
if (WarningLevel != UniversalEnum.ZERO.getNumber()) { |
|
|
@ -370,7 +372,7 @@ public class DeviceMessageHandler { |
|
|
|
// 使用Gson将对象转换为JSON字符串
|
|
|
|
Gson gson = new Gson(); |
|
|
|
String jsonString = gson.toJson(dcWarning); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString, KafkEnum.videoAI.value()); |
|
|
|
} |
|
|
|
} else { |
|
|
|
dcWarningService.insertDcWarning(dcWarning); |
|
|
@ -378,7 +380,7 @@ public class DeviceMessageHandler { |
|
|
|
// 使用Gson将对象转换为JSON字符串
|
|
|
|
Gson gson = new Gson(); |
|
|
|
String jsonString = gson.toJson(dcWarning); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString, KafkEnum.videoAI.value()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
@ -716,6 +718,13 @@ public class DeviceMessageHandler { |
|
|
|
meteorologicalDetectorData.setIotDeviceId(msg.get("deviceId").toString()); |
|
|
|
meteorologicalDetectorDataService.insertDcMeteorologicalDetectorData(meteorologicalDetectorData); |
|
|
|
|
|
|
|
//todo 推送kafak事件消息 气象检测器
|
|
|
|
//kafka消息推送
|
|
|
|
// 使用Gson将对象转换为JSON字符串
|
|
|
|
Gson gson = new Gson(); |
|
|
|
String jsonString = gson.toJson(meteorologicalDetectorData); |
|
|
|
kafkaTopicProducer.KafkaTopicProducer(jsonString, KafkEnum.weather.value()); |
|
|
|
|
|
|
|
//设计院中间库 插入设备数据
|
|
|
|
MdDeviceData mdDeviceData = new MdDeviceData(); |
|
|
|
mdDeviceData.setDevNo(meteorologicalDetectorData.getIotDeviceId()); |
|
|
|