aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/WristbandProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-08-20 17:32:19 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-08-20 17:32:19 +1200
commit5848419666fc6eb14c5b0178a9738f19f0be2b61 (patch)
tree891288be7b13d70cff4cb6f36db3f7aeaa9f5a7c /src/org/traccar/protocol/WristbandProtocol.java
parent98fd364db65daf847b2b76819cd36602aaef8d25 (diff)
downloadtrackermap-server-5848419666fc6eb14c5b0178a9738f19f0be2b61.tar.gz
trackermap-server-5848419666fc6eb14c5b0178a9738f19f0be2b61.tar.bz2
trackermap-server-5848419666fc6eb14c5b0178a9738f19f0be2b61.zip
Implement wristband tracker protocol
Diffstat (limited to 'src/org/traccar/protocol/WristbandProtocol.java')
-rw-r--r--src/org/traccar/protocol/WristbandProtocol.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/WristbandProtocol.java b/src/org/traccar/protocol/WristbandProtocol.java
new file mode 100644
index 000000000..02db38f4f
--- /dev/null
+++ b/src/org/traccar/protocol/WristbandProtocol.java
@@ -0,0 +1,42 @@
+/*
+ * 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.util.List;
+
+public class WristbandProtocol extends BaseProtocol {
+
+ public WristbandProtocol() {
+ super("wristband");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ serverList.add(new TrackerServer(false, getName()) {
+ @Override
+ protected void addProtocolHandlers(PipelineBuilder pipeline) {
+ pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(1024, 3, 2, 3, 0));
+ pipeline.addLast("objectDecoder", new WristbandProtocolDecoder(WristbandProtocol.this));
+ }
+ });
+ }
+
+}