aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/AutoTrackProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-06-26 02:44:36 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-06-26 11:45:31 +1200
commitc700bfdb66071ba224ddf01e9827e721562fed7a (patch)
treeefab24c586077373a826dd605652b04431010bd7 /src/org/traccar/protocol/AutoTrackProtocol.java
parent5346d413972191b3089969e4832bed2ffabbfb83 (diff)
downloadtrackermap-server-c700bfdb66071ba224ddf01e9827e721562fed7a.tar.gz
trackermap-server-c700bfdb66071ba224ddf01e9827e721562fed7a.tar.bz2
trackermap-server-c700bfdb66071ba224ddf01e9827e721562fed7a.zip
Implement AutoTrack XL protocol
Diffstat (limited to 'src/org/traccar/protocol/AutoTrackProtocol.java')
-rw-r--r--src/org/traccar/protocol/AutoTrackProtocol.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/AutoTrackProtocol.java b/src/org/traccar/protocol/AutoTrackProtocol.java
new file mode 100644
index 000000000..d6d4ac177
--- /dev/null
+++ b/src/org/traccar/protocol/AutoTrackProtocol.java
@@ -0,0 +1,44 @@
+/*
+ * Copyright 2018 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.handler.codec.LengthFieldBasedFrameDecoder;
+import org.traccar.BaseProtocol;
+import org.traccar.PipelineBuilder;
+import org.traccar.TrackerServer;
+
+import java.nio.ByteOrder;
+import java.util.List;
+
+public class AutoTrackProtocol extends BaseProtocol {
+
+ public AutoTrackProtocol() {
+ super("autotrack");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ serverList.add(new TrackerServer(false, getName()) {
+ @Override
+ protected void addProtocolHandlers(PipelineBuilder pipeline) {
+ pipeline.addLast("frameDecoder",
+ new LengthFieldBasedFrameDecoder(ByteOrder.LITTLE_ENDIAN, 1024, 5, 2, 2, 0, true));
+ pipeline.addLast("objectDecoder", new AutoTrackProtocolDecoder(AutoTrackProtocol.this));
+ }
+ });
+ }
+
+}