diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-04-27 11:43:08 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2019-04-27 11:43:08 -0700 |
commit | 68beaf9a13f6b9e8023dd73bb7078f80b4a24cf8 (patch) | |
tree | add268be865501be3a6b517fba714876de8195b9 /src/main/java/org/traccar/protocol/RadarProtocol.java | |
parent | c2c1e429865e84a09ce95dc9f9c8e707fa9c50eb (diff) | |
download | trackermap-server-68beaf9a13f6b9e8023dd73bb7078f80b4a24cf8.tar.gz trackermap-server-68beaf9a13f6b9e8023dd73bb7078f80b4a24cf8.tar.bz2 trackermap-server-68beaf9a13f6b9e8023dd73bb7078f80b4a24cf8.zip |
Implement Radar Trio protocol
Diffstat (limited to 'src/main/java/org/traccar/protocol/RadarProtocol.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/RadarProtocol.java | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/RadarProtocol.java b/src/main/java/org/traccar/protocol/RadarProtocol.java new file mode 100644 index 000000000..9783778f0 --- /dev/null +++ b/src/main/java/org/traccar/protocol/RadarProtocol.java @@ -0,0 +1,35 @@ +/* + * Copyright 2019 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; + +public class RadarProtocol extends BaseProtocol { + + public RadarProtocol() { + addServer(new TrackerServer(false, getName()) { + @Override + protected void addProtocolHandlers(PipelineBuilder pipeline) { + pipeline.addLast(new LengthFieldBasedFrameDecoder(1024, 12, 2, -14, 0)); + pipeline.addLast(new RadarProtocolDecoder(RadarProtocol.this)); + } + }); + } + +} |