aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/LeafSpyProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-08-03 16:48:41 -0700
committerGitHub <noreply@github.com>2019-08-03 16:48:41 -0700
commit1417443c6023f71a16d7b17549e2601c8cd05c2d (patch)
treeb5746cd2fa59a345e5c5d35016e25ce5b74956ac /src/main/java/org/traccar/protocol/LeafSpyProtocol.java
parent25be41a6605c3aadeb1a2140da9f7dccb9d573ea (diff)
parent23a03b0bac006fdcc85a82f8323e55cba228451e (diff)
downloadtraccar-server-1417443c6023f71a16d7b17549e2601c8cd05c2d.tar.gz
traccar-server-1417443c6023f71a16d7b17549e2601c8cd05c2d.tar.bz2
traccar-server-1417443c6023f71a16d7b17549e2601c8cd05c2d.zip
Merge pull request #4371 from jesserockz/protocol/leafspy
Add leafspy app protocol and decoder
Diffstat (limited to 'src/main/java/org/traccar/protocol/LeafSpyProtocol.java')
-rw-r--r--src/main/java/org/traccar/protocol/LeafSpyProtocol.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/LeafSpyProtocol.java b/src/main/java/org/traccar/protocol/LeafSpyProtocol.java
new file mode 100644
index 000000000..05f63a2d7
--- /dev/null
+++ b/src/main/java/org/traccar/protocol/LeafSpyProtocol.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2019 Anton Tananaev (anton@traccar.org)
+ * Copyright 2019 Jesse Hills (jesserockz@gmail.com)
+ *
+ * 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.http.HttpObjectAggregator;
+import io.netty.handler.codec.http.HttpRequestDecoder;
+import io.netty.handler.codec.http.HttpResponseEncoder;
+import org.traccar.BaseProtocol;
+import org.traccar.PipelineBuilder;
+import org.traccar.TrackerServer;
+
+public class LeafSpyProtocol extends BaseProtocol {
+
+ public LeafSpyProtocol() {
+ addServer(new TrackerServer(false, getName()) {
+ @Override
+ protected void addProtocolHandlers(PipelineBuilder pipeline) {
+ pipeline.addLast(new HttpResponseEncoder());
+ pipeline.addLast(new HttpRequestDecoder());
+ pipeline.addLast(new HttpObjectAggregator(16384));
+ pipeline.addLast(new LeafSpyProtocolDecoder(LeafSpyProtocol.this));
+ }
+ });
+ }
+
+}