diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-05-29 23:11:19 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-05-29 23:11:19 -0700 |
commit | c524d170f3324ccf10944887faa3d9f35e99e31a (patch) | |
tree | 15ddad1449f81cbad53f266665eddbc7615599f6 /src/main/java/org/traccar/protocol/DingtekFrameDecoder.java | |
parent | ab1022d0c571af09b2036f8694db71537fa430cd (diff) | |
download | trackermap-server-c524d170f3324ccf10944887faa3d9f35e99e31a.tar.gz trackermap-server-c524d170f3324ccf10944887faa3d9f35e99e31a.tar.bz2 trackermap-server-c524d170f3324ccf10944887faa3d9f35e99e31a.zip |
Fix protocol decoding
Diffstat (limited to 'src/main/java/org/traccar/protocol/DingtekFrameDecoder.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/DingtekFrameDecoder.java | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/DingtekFrameDecoder.java b/src/main/java/org/traccar/protocol/DingtekFrameDecoder.java new file mode 100644 index 000000000..a8e35cc5c --- /dev/null +++ b/src/main/java/org/traccar/protocol/DingtekFrameDecoder.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Anton Tananaev (anton@traccar.org) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.traccar.protocol; + +import io.netty.buffer.ByteBuf; +import io.netty.channel.Channel; +import io.netty.channel.ChannelHandlerContext; +import org.traccar.BaseFrameDecoder; + +import java.nio.charset.StandardCharsets; + +public class DingtekFrameDecoder extends BaseFrameDecoder { + + @Override + protected Object decode( + ChannelHandlerContext ctx, Channel channel, ByteBuf buf) throws Exception { + + if (buf.readableBytes() < 10) { + return null; + } + + int length = Integer.parseInt(buf.toString(8, 2, StandardCharsets.US_ASCII), 16) * 2; + if (buf.readableBytes() >= length) { + return buf.readRetainedSlice(length); + } + + return null; + } + +} |