diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-09 13:43:23 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-09 13:43:23 +1200 |
commit | dbf2dc067c6309e8e28745462bb4a791c44a3d26 (patch) | |
tree | 5b55f1a334b9c4e16212d1cd827b7eda677e2f9c /src/org/traccar/protocol/LdplProtocol.java | |
parent | 3627e1522efe5870a5efc14a1c6bae9fad615840 (diff) | |
parent | 514846455335c9c547f602c7592d11f68022fc4b (diff) | |
download | trackermap-server-dbf2dc067c6309e8e28745462bb4a791c44a3d26.tar.gz trackermap-server-dbf2dc067c6309e8e28745462bb4a791c44a3d26.tar.bz2 trackermap-server-dbf2dc067c6309e8e28745462bb4a791c44a3d26.zip |
Merge pull request #2006 from drecchia/master-ldpl2
Implement LDPL protocol
Diffstat (limited to 'src/org/traccar/protocol/LdplProtocol.java')
-rw-r--r-- | src/org/traccar/protocol/LdplProtocol.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/LdplProtocol.java b/src/org/traccar/protocol/LdplProtocol.java new file mode 100644 index 000000000..517055f2f --- /dev/null +++ b/src/org/traccar/protocol/LdplProtocol.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013 - 2014 Anton Tananaev (anton.tananaev@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 java.util.List; + +import org.jboss.netty.bootstrap.ConnectionlessBootstrap; +import org.jboss.netty.channel.ChannelPipeline; +import org.jboss.netty.handler.codec.string.StringDecoder; +import org.jboss.netty.handler.codec.string.StringEncoder; +import org.traccar.BaseProtocol; +import org.traccar.TrackerServer; + +public class LdplProtocol extends BaseProtocol { + + public LdplProtocol() { + super("ldpl"); + } + + @Override + public void initTrackerServers(List<TrackerServer> serverList) { + serverList.add(new TrackerServer(new ConnectionlessBootstrap(), this.getName()) { + @Override + protected void addSpecificHandlers(ChannelPipeline pipeline) { + pipeline.addLast("stringEncoder", new StringEncoder()); + pipeline.addLast("stringDecoder", new StringDecoder()); + pipeline.addLast("objectDecoder", new LdplProtocolDecoder(LdplProtocol.this)); + } + }); + } + +} |