|
@@ -2,15 +2,10 @@ 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;
|
|
@@ -39,9 +34,6 @@ 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
|
|
@@ -57,10 +49,7 @@ 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 {
|
|
@@ -81,7 +70,7 @@ public class BSJGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
|
|
|
packageData.setDeviceId(deviceId);
|
|
|
//发送数据到kafka
|
|
|
final MsgHeader header = packageData.getMsgHeader();
|
|
|
- sendOrginalMsg(dataByteArray, packageData.getDeviceId(), header);
|
|
|
+ sendOrginalMsgFor808(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);
|
|
@@ -93,26 +82,6 @@ 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();
|
|
@@ -236,4 +205,5 @@ public class BSJGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|