/* * Copyright 2012 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.nio.ByteOrder; import java.nio.charset.Charset; import java.util.Calendar; import java.util.LinkedList; import java.util.List; import java.util.TimeZone; import org.jboss.netty.buffer.ChannelBuffer; import org.jboss.netty.buffer.ChannelBuffers; import org.jboss.netty.channel.Channel; import org.jboss.netty.channel.ChannelHandlerContext; import org.traccar.BaseProtocolDecoder; import org.traccar.ServerManager; import org.traccar.helper.Log; import org.traccar.model.Position; /** * Navis protocol decoder */ public class NavisProtocolDecoder extends BaseProtocolDecoder { private String prefix; private long deviceId, serverId; private static final Charset charset = Charset.defaultCharset(); private String imei; private Long databaseDeviceId; /** * Initialize */ public NavisProtocolDecoder(ServerManager serverManager) { super(serverManager); } // Format types public static final int F10 = 0x01; public static final int F20 = 0x02; public static final int F30 = 0x03; public static final int F40 = 0x04; public static final int F50 = 0x05; public static final int F51 = 0x15; public static final int F52 = 0x25; private static boolean isFormat(int type, int... types) { for (int i : types) { if (type == i) { return true; } } return false; } private Position parsePosition(ChannelBuffer buf) { Position position = new Position(); StringBuilder extendedInfo = new StringBuilder("navis"); position.setDeviceId(databaseDeviceId); position.setAltitude(0.0); // Format type int format; if (buf.getUnsignedByte(buf.readerIndex()) == 0) { format = buf.readUnsignedShort(); } else { format = buf.readUnsignedByte(); } extendedInfo.append(""); extendedInfo.append(format); extendedInfo.append(""); position.setId(buf.readUnsignedInt()); // sequence number // Event type extendedInfo.append(""); extendedInfo.append(buf.readUnsignedShort()); extendedInfo.append(""); // Event time Calendar time = Calendar.getInstance(TimeZone.getTimeZone("UTC")); time.clear(); time.set(Calendar.HOUR, buf.readUnsignedByte()); time.set(Calendar.MINUTE, buf.readUnsignedByte()); time.set(Calendar.SECOND, buf.readUnsignedByte()); time.set(Calendar.DAY_OF_MONTH, buf.readUnsignedByte()); time.set(Calendar.MONTH, buf.readUnsignedByte()); time.set(Calendar.YEAR, 2000 + buf.readUnsignedByte()); extendedInfo.append(""); // Alarm status extendedInfo.append(""); extendedInfo.append(buf.readUnsignedByte()); extendedInfo.append(""); // Modules status extendedInfo.append(""); extendedInfo.append(buf.readUnsignedByte()); extendedInfo.append(""); // GSM signal extendedInfo.append(""); extendedInfo.append(buf.readUnsignedByte()); extendedInfo.append(""); // Output extendedInfo.append(""); if (isFormat(format, F10, F20, F30)) { extendedInfo.append(buf.readUnsignedShort()); } else if (isFormat(format, F40, F50, F51, F52)) { extendedInfo.append(buf.readUnsignedByte()); } extendedInfo.append(""); // Input extendedInfo.append(""); if (isFormat(format, F10, F20, F30, F40)) { extendedInfo.append(buf.readUnsignedShort()); } else if (isFormat(format, F50, F51, F52)) { extendedInfo.append(buf.readUnsignedByte()); } extendedInfo.append(""); position.setPower(buf.readUnsignedShort() / 1000.0); // power // Battery power extendedInfo.append(""); extendedInfo.append(buf.readUnsignedShort()); extendedInfo.append(""); // Temperature if (isFormat(format, F10, F20, F30)) { extendedInfo.append(""); extendedInfo.append(buf.readShort()); extendedInfo.append(""); } if (isFormat(format, F10, F20, F50, F52)) { // ADC 1 extendedInfo.append(""); extendedInfo.append(buf.readUnsignedShort()); extendedInfo.append(""); // ADC 2 extendedInfo.append(""); extendedInfo.append(buf.readUnsignedShort()); extendedInfo.append(""); } if (isFormat(format, F20, F50, F51, F52)) { // Impulse counters buf.readUnsignedInt(); buf.readUnsignedInt(); } if (isFormat(format, F20, F50, F51, F52)) { // Validity int locationStatus = buf.readUnsignedByte(); position.setValid((locationStatus & 0x02) == 0x02); // Location time time.clear(); time.set(Calendar.HOUR, buf.readUnsignedByte()); time.set(Calendar.MINUTE, buf.readUnsignedByte()); time.set(Calendar.SECOND, buf.readUnsignedByte()); time.set(Calendar.DAY_OF_MONTH, buf.readUnsignedByte()); time.set(Calendar.MONTH, buf.readUnsignedByte()); time.set(Calendar.YEAR, 2000 + buf.readUnsignedByte()); position.setTime(time.getTime()); // Location data position.setLatitude(buf.readFloat() / Math.PI * 180); position.setLongitude(buf.readFloat() / Math.PI * 180); position.setSpeed((double) buf.readFloat()); position.setCourse((double) buf.readUnsignedShort()); // Milage extendedInfo.append(""); extendedInfo.append(buf.readFloat()); extendedInfo.append(""); // Last segment extendedInfo.append(""); extendedInfo.append(buf.readFloat()); extendedInfo.append(""); // Segment times buf.readUnsignedShort(); buf.readUnsignedShort(); } if (isFormat(format, F51, F52)) { // Other stuff buf.readUnsignedShort(); buf.readByte(); buf.readUnsignedShort(); buf.readUnsignedShort(); buf.readByte(); buf.readUnsignedShort(); buf.readUnsignedShort(); buf.readByte(); buf.readUnsignedShort(); } if (isFormat(format, F40, F52)) { // Four temperature sensors buf.readByte(); buf.readByte(); buf.readByte(); buf.readByte(); } // Extended info position.setExtendedInfo(extendedInfo.toString()); return position; } private Object processSingle(Channel channel, ChannelBuffer buf) { Position position = parsePosition(buf); ChannelBuffer response = ChannelBuffers.dynamicBuffer(ByteOrder.LITTLE_ENDIAN, 8); response.writeBytes(ChannelBuffers.copiedBuffer(ByteOrder.LITTLE_ENDIAN, "* positions = new LinkedList(); int count = buf.readUnsignedByte(); for (int i = 0; i < count; i++) { Position position = parsePosition(buf); if (position.getValid() != null) { positions.add(position); } } ChannelBuffer response = ChannelBuffers.dynamicBuffer(ByteOrder.LITTLE_ENDIAN, 8); response.writeBytes(ChannelBuffers.copiedBuffer(ByteOrder.LITTLE_ENDIAN, "*T")) { return processSingle(channel, buf); } else if (type.equals("*>A")) { return processArray(channel, buf); } else if (type.equals("*>S")) { return processHandshake(channel, buf); } return null; } }