aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/T57Protocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-12-08 06:50:03 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-12-08 06:50:03 +1300
commit943a240b416dee2468723dd1c8ee247c4ada67c2 (patch)
tree68b4be295e25693ca3aa742e3978ef234734db82 /src/org/traccar/protocol/T57Protocol.java
parentd3e39051984592f181b04256e38c2396d0cda78d (diff)
downloadtrackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.tar.gz
trackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.tar.bz2
trackermap-server-943a240b416dee2468723dd1c8ee247c4ada67c2.zip
Implement Stesalit T57 protocol
Diffstat (limited to 'src/org/traccar/protocol/T57Protocol.java')
-rw-r--r--src/org/traccar/protocol/T57Protocol.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/T57Protocol.java b/src/org/traccar/protocol/T57Protocol.java
new file mode 100644
index 000000000..5149929e9
--- /dev/null
+++ b/src/org/traccar/protocol/T57Protocol.java
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2017 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 org.jboss.netty.bootstrap.ServerBootstrap;
+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;
+
+import java.util.List;
+
+public class T57Protocol extends BaseProtocol {
+
+ public T57Protocol() {
+ super("t57");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ serverList.add(new TrackerServer(new ServerBootstrap(), getName()) {
+ @Override
+ protected void addSpecificHandlers(ChannelPipeline pipeline) {
+ pipeline.addLast("frameDecoder", new T57FrameDecoder());
+ pipeline.addLast("stringEncoder", new StringEncoder());
+ pipeline.addLast("stringDecoder", new StringDecoder());
+ pipeline.addLast("objectDecoder", new T57ProtocolDecoder(T57Protocol.this));
+ }
+ });
+ }
+
+}