|
@@ -2,10 +2,15 @@ package com.tidecloud.dataacceptance.service.impl;
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
+import com.smartsanitation.common.util.StringUtil;
|
|
|
+import com.tidecloud.iot.vo.MsgWrapper;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.slf4j.MDC;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.context.annotation.Scope;
|
|
|
+import org.springframework.kafka.core.KafkaTemplate;
|
|
|
+import org.springframework.kafka.support.SendResult;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import com.tidecloud.dataacceptance.codec.MsgDecoder;
|
|
@@ -34,6 +39,9 @@ import io.netty.channel.socket.SocketChannel;
|
|
|
import io.netty.channel.socket.nio.NioServerSocketChannel;
|
|
|
import io.netty.handler.codec.DelimiterBasedFrameDecoder;
|
|
|
import io.netty.handler.timeout.IdleStateHandler;
|
|
|
+import org.springframework.util.concurrent.ListenableFutureCallback;
|
|
|
+
|
|
|
+import javax.xml.bind.DatatypeConverter;
|
|
|
|
|
|
/**
|
|
|
* @author cdk
|
|
@@ -49,6 +57,11 @@ public class BSJGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
|
|
|
|
|
|
private TerminalMsgProcessService msgProcessService = new TerminalMsgProcessService();
|
|
|
|
|
|
+ private static final String originalTopic = "msg_for_dispatche";
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private KafkaTemplate<Integer, String> kafkaTemplate;
|
|
|
+
|
|
|
@Override
|
|
|
public void handle(ByteBuf dataByteBuf, Channel channel) throws Exception {
|
|
|
|
|
@@ -68,6 +81,7 @@ public class BSJGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
|
|
|
packageData.setDeviceId(deviceId);
|
|
|
//发送数据到kafka
|
|
|
final MsgHeader header = packageData.getMsgHeader();
|
|
|
+ sendOrginalMsg(dataByteArray, packageData.getDeviceId(), header);
|
|
|
if (Constants.MSG_TERMINAL_LOCATION_INFO_UPLOAD == header.getMsgId()
|
|
|
|| Constants.MSG_TERMINAL_LOCATION_INFO_BATCH_UPLOAD == header.getMsgId()) {
|
|
|
sendMsg2Kafka(dataByteArray, packageData.getDeviceId(), channel);
|
|
@@ -79,6 +93,27 @@ public class BSJGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ private void sendOrginalMsg(byte[] dataByteArray, String deviceId, MsgHeader header) {
|
|
|
+ final int msgId = header.getMsgId();
|
|
|
+ boolean isInitial = Constants.MSG_TERMINAL_REGISTER.equals(msgId);
|
|
|
+ MsgWrapper msgWrapper = new MsgWrapper(deviceId, DatatypeConverter.printHexBinary(dataByteArray), isInitial);
|
|
|
+ msgWrapper.setProtocolCode(0);
|
|
|
+ final Integer key = deviceId.hashCode();
|
|
|
+ kafkaTemplate.send(originalTopic, key, StringUtil.convert2String(msgWrapper))
|
|
|
+ .addCallback(new ListenableFutureCallback<SendResult<Integer, String>>() {
|
|
|
+ @Override
|
|
|
+ public void onFailure(Throwable ex) {
|
|
|
+ logger.error(ex.getMessage(), ex);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onSuccess(SendResult<Integer, String> result) {
|
|
|
+ logger.info("send original msg success");
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
private void processPackageData(PackageData packageData) {
|
|
|
final MsgHeader header = packageData.getMsgHeader();
|
|
|
|