From e273bf603317165d4ef43f302a7a9066b050bc8f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 25 Oct 2015 11:42:59 +1300 Subject: Remove todos from tramigo decoder --- src/org/traccar/protocol/TramigoProtocolDecoder.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/org/traccar/protocol/TramigoProtocolDecoder.java b/src/org/traccar/protocol/TramigoProtocolDecoder.java index f1c0ea0cf..be97f24fd 100644 --- a/src/org/traccar/protocol/TramigoProtocolDecoder.java +++ b/src/org/traccar/protocol/TramigoProtocolDecoder.java @@ -43,8 +43,7 @@ public class TramigoProtocolDecoder extends BaseProtocolDecoder { @Override protected Object decode( - Channel channel, SocketAddress remoteAddress, Object msg) - throws Exception { + Channel channel, SocketAddress remoteAddress, Object msg) throws Exception { ChannelBuffer buf = (ChannelBuffer) msg; @@ -58,13 +57,11 @@ public class TramigoProtocolDecoder extends BaseProtocolDecoder { long id = buf.readUnsignedInt(); buf.readUnsignedInt(); // time - // Create new position Position position = new Position(); position.setProtocol(getProtocolName()); position.set(Event.KEY_INDEX, index); position.setValid(true); - // Get device id if (!identify(String.valueOf(id), channel)) { return null; } @@ -72,7 +69,7 @@ public class TramigoProtocolDecoder extends BaseProtocolDecoder { if (protocol == 0x01 && (type == MSG_COMPACT || type == MSG_FULL)) { - // TODO: send ack + // need to send ack? buf.readUnsignedShort(); // report trigger buf.readUnsignedShort(); // state flag @@ -96,7 +93,8 @@ public class TramigoProtocolDecoder extends BaseProtocolDecoder { position.setTime(new Date(buf.readUnsignedInt() * 1000)); - // TODO: parse other data + // parse other data + return position; } else if (protocol == 0x80) { @@ -133,6 +131,7 @@ public class TramigoProtocolDecoder extends BaseProtocolDecoder { DateFormat dateFormat = new SimpleDateFormat("HH:mm MMM d yyyy", Locale.ENGLISH); position.setTime(dateFormat.parse(matcher.group(1) + " " + Calendar.getInstance().get(Calendar.YEAR))); return position; + } return null; -- cgit v1.2.3