diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-09-03 10:40:13 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-09-03 10:40:13 +1200 |
commit | 65e0cec500c23b6d49ebf0c2950c205076de1177 (patch) | |
tree | 4ee2821853499af0fca26c6adc15b13f8768c313 /src/org/traccar/protocol/MilesmateProtocol.java | |
parent | e0fd68f63da84b9484514ace9f0fc70a877d7062 (diff) | |
download | trackermap-server-65e0cec500c23b6d49ebf0c2950c205076de1177.tar.gz trackermap-server-65e0cec500c23b6d49ebf0c2950c205076de1177.tar.bz2 trackermap-server-65e0cec500c23b6d49ebf0c2950c205076de1177.zip |
Implement Milesmate protocol
Diffstat (limited to 'src/org/traccar/protocol/MilesmateProtocol.java')
-rw-r--r-- | src/org/traccar/protocol/MilesmateProtocol.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/MilesmateProtocol.java b/src/org/traccar/protocol/MilesmateProtocol.java new file mode 100644 index 000000000..59d5a39ae --- /dev/null +++ b/src/org/traccar/protocol/MilesmateProtocol.java @@ -0,0 +1,46 @@ +/* + * 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.LineBasedFrameDecoder; +import io.netty.handler.codec.string.StringDecoder; +import io.netty.handler.codec.string.StringEncoder; +import org.traccar.BaseProtocol; +import org.traccar.PipelineBuilder; +import org.traccar.TrackerServer; + +import java.util.List; + +public class MilesmateProtocol extends BaseProtocol { + + public MilesmateProtocol() { + super("milesmate"); + } + + @Override + public void initTrackerServers(List<TrackerServer> serverList) { + serverList.add(new TrackerServer(false, getName()) { + @Override + protected void addProtocolHandlers(PipelineBuilder pipeline) { + pipeline.addLast("frameDecoder", new LineBasedFrameDecoder(1024)); + pipeline.addLast("stringEncoder", new StringEncoder()); + pipeline.addLast("stringDecoder", new StringDecoder()); + pipeline.addLast("objectDecoder", new MilesmateProtocolDecoder(MilesmateProtocol.this)); + } + }); + } + +} |