aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/DingtekFrameDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-05-29 23:11:19 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-05-29 23:11:19 -0700
commitc524d170f3324ccf10944887faa3d9f35e99e31a (patch)
tree15ddad1449f81cbad53f266665eddbc7615599f6 /src/main/java/org/traccar/protocol/DingtekFrameDecoder.java
parentab1022d0c571af09b2036f8694db71537fa430cd (diff)
downloadtraccar-server-c524d170f3324ccf10944887faa3d9f35e99e31a.tar.gz
traccar-server-c524d170f3324ccf10944887faa3d9f35e99e31a.tar.bz2
traccar-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.java43
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;
+ }
+
+}