diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-08-03 16:48:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-03 16:48:41 -0700 |
commit | 1417443c6023f71a16d7b17549e2601c8cd05c2d (patch) | |
tree | b5746cd2fa59a345e5c5d35016e25ce5b74956ac /src/main/java/org/traccar/protocol/LeafSpyProtocol.java | |
parent | 25be41a6605c3aadeb1a2140da9f7dccb9d573ea (diff) | |
parent | 23a03b0bac006fdcc85a82f8323e55cba228451e (diff) | |
download | trackermap-server-1417443c6023f71a16d7b17549e2601c8cd05c2d.tar.gz trackermap-server-1417443c6023f71a16d7b17549e2601c8cd05c2d.tar.bz2 trackermap-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.java | 40 |
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)); + } + }); + } + +} |