aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/BlackKiteProtocol.java
diff options
context:
space:
mode:
authorVijay Kumar B <vijaykumar@zilogic.com>2015-09-28 16:50:26 +0530
committerVijay Kumar B <vijaykumar@zilogic.com>2015-09-28 16:52:22 +0530
commita4a776911eb2a1a88ccd05bbd418313342cfc208 (patch)
tree96046514790019740bf56886bd0e1bfaea2eff5b /src/org/traccar/protocol/BlackKiteProtocol.java
parent2a690606569f042b845da1f61b308698645ad3fc (diff)
downloadtrackermap-server-a4a776911eb2a1a88ccd05bbd418313342cfc208.tar.gz
trackermap-server-a4a776911eb2a1a88ccd05bbd418313342cfc208.tar.bz2
trackermap-server-a4a776911eb2a1a88ccd05bbd418313342cfc208.zip
Add support for BlackKite protocol.
BlackKite is closely based on the Galileo protocol. We derive code from the Galileo protocol and make changes as required to meet BlackKite protocol specifications.
Diffstat (limited to 'src/org/traccar/protocol/BlackKiteProtocol.java')
-rw-r--r--src/org/traccar/protocol/BlackKiteProtocol.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/BlackKiteProtocol.java b/src/org/traccar/protocol/BlackKiteProtocol.java
new file mode 100644
index 000000000..0bdafd750
--- /dev/null
+++ b/src/org/traccar/protocol/BlackKiteProtocol.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2015 Vijay Kumar (vijaykumar@zilogic.com)
+ *
+ * Based on GalileoProtocol.java
+ * Copyright 2015 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 org.jboss.netty.bootstrap.ServerBootstrap;
+import org.jboss.netty.channel.ChannelPipeline;
+import org.traccar.BaseProtocol;
+import org.traccar.TrackerServer;
+
+import java.nio.ByteOrder;
+import java.util.List;
+
+public class BlackKiteProtocol extends BaseProtocol {
+
+ public BlackKiteProtocol() {
+ super("blackkite");
+ }
+
+ @Override
+ public void initTrackerServers(List<TrackerServer> serverList) {
+ TrackerServer server = new TrackerServer(new ServerBootstrap(), this.getName()) {
+ @Override
+ protected void addSpecificHandlers(ChannelPipeline pipeline) {
+ pipeline.addLast("frameDecoder", new GalileoFrameDecoder());
+ pipeline.addLast("objectDecoder", new BlackKiteProtocolDecoder(BlackKiteProtocol.this));
+ }
+ };
+ server.setEndianness(ByteOrder.LITTLE_ENDIAN);
+ serverList.add(server);
+ }
+
+}