aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/T57FrameDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-12-08 06:50:03 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-12-08 06:50:03 +1300
commit943a240b416dee2468723dd1c8ee247c4ada67c2 (patch)
tree68b4be295e25693ca3aa742e3978ef234734db82 /src/org/traccar/protocol/T57FrameDecoder.java
parentd3e39051984592f181b04256e38c2396d0cda78d (diff)
downloadtrackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.tar.gz
trackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.tar.bz2
trackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.zip
Implement Stesalit T57 protocol
Diffstat (limited to 'src/org/traccar/protocol/T57FrameDecoder.java')
-rw-r--r--src/org/traccar/protocol/T57FrameDecoder.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/T57FrameDecoder.java b/src/org/traccar/protocol/T57FrameDecoder.java
new file mode 100644
index 000000000..b3b456516
--- /dev/null
+++ b/src/org/traccar/protocol/T57FrameDecoder.java
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2017 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 org.jboss.netty.buffer.ChannelBuffer;
+import org.jboss.netty.channel.Channel;
+import org.jboss.netty.channel.ChannelHandlerContext;
+import org.jboss.netty.handler.codec.frame.FrameDecoder;
+
+import java.nio.charset.StandardCharsets;
+
+public class T57FrameDecoder extends FrameDecoder {
+
+ @Override
+ protected Object decode(
+ ChannelHandlerContext ctx, Channel channel, ChannelBuffer buf) throws Exception {
+
+ if (buf.readableBytes() < 10) {
+ return null;
+ }
+
+ String type = buf.toString(buf.readerIndex() + 5, 2, StandardCharsets.US_ASCII);
+ int count = type.equals("F3") ? 12 : 14;
+
+ int index = 0;
+ while (index >= 0 && count > 0) {
+ index = buf.indexOf(index + 1, buf.writerIndex(), (byte) '#');
+ if (index > 0) {
+ count -= 1;
+ }
+ }
+
+ return index > 0 ? buf.readBytes(index + 1 - buf.readerIndex()) : null;
+ }
+
+}