aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/DmtProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-03-07 08:12:17 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-03-07 08:12:17 +1300
commitdc79a5ce6d9776db30d357dfb16dff624db770dd (patch)
treedf4d220a8d7fdacd60f5269875b77dec7161db86 /src/org/traccar/protocol/DmtProtocol.java
parentcbb28de69d4da85b3baff9967549d35952164a31 (diff)
downloadtrackermap-server-dc79a5ce6d9776db30d357dfb16dff624db770dd.tar.gz
trackermap-server-dc79a5ce6d9776db30d357dfb16dff624db770dd.tar.bz2
trackermap-server-dc79a5ce6d9776db30d357dfb16dff624db770dd.zip
Implement DMT protocol
Diffstat (limited to 'src/org/traccar/protocol/DmtProtocol.java')
-rw-r--r--src/org/traccar/protocol/DmtProtocol.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/DmtProtocol.java b/src/org/traccar/protocol/DmtProtocol.java
new file mode 100644
index 000000000..18bb1524a
--- /dev/null
+++ b/src/org/traccar/protocol/DmtProtocol.java
@@ -0,0 +1,46 @@
+/*
+ * 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.bootstrap.ServerBootstrap;
+import org.jboss.netty.channel.ChannelPipeline;
+import org.jboss.netty.handler.codec.frame.LengthFieldBasedFrameDecoder;
+import org.traccar.BaseProtocol;
+import org.traccar.TrackerServer;
+
+import java.nio.ByteOrder;
+import java.util.List;
+
+public class DmtProtocol extends BaseProtocol {
+
+ public DmtProtocol() {
+ super("dmt");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ TrackerServer server = new TrackerServer(new ServerBootstrap(), getName()) {
+ @Override
+ protected void addSpecificHandlers(ChannelPipeline pipeline) {
+ pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(1024, 3, 2));
+ pipeline.addLast("objectDecoder", new DmtProtocolDecoder(DmtProtocol.this));
+ }
+ };
+ server.setEndianness(ByteOrder.LITTLE_ENDIAN);
+ serverList.add(server);
+ }
+
+}