diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-02-18 15:52:36 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-02-18 15:52:54 +1300 |
commit | 4753e462767812712bafbc8e9985f355021c6f16 (patch) | |
tree | 98e1821ec7b579c1a91332da2b8b62cc1ad886a8 /src | |
parent | 5b75e0a58fbcc11a1c66448bfbd9d3466b015668 (diff) | |
download | trackermap-server-4753e462767812712bafbc8e9985f355021c6f16.tar.gz trackermap-server-4753e462767812712bafbc8e9985f355021c6f16.tar.bz2 trackermap-server-4753e462767812712bafbc8e9985f355021c6f16.zip |
Support some Cellocator alarms
Diffstat (limited to 'src')
-rw-r--r-- | src/org/traccar/protocol/CellocatorProtocolDecoder.java | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/CellocatorProtocolDecoder.java b/src/org/traccar/protocol/CellocatorProtocolDecoder.java index 14325e619..7df8cad8a 100644 --- a/src/org/traccar/protocol/CellocatorProtocolDecoder.java +++ b/src/org/traccar/protocol/CellocatorProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 Anton Tananaev (anton@traccar.org) + * Copyright 2013 - 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. @@ -68,6 +68,19 @@ public class CellocatorProtocolDecoder extends BaseProtocolDecoder { } } + private String decodeAlarm(short reason) { + switch (reason) { + case 70: + return Position.ALARM_SOS; + case 80: + return Position.ALARM_POWER_CUT; + case 81: + return Position.ALARM_LOW_POWER; + default: + return null; + } + } + @Override protected Object decode( Channel channel, SocketAddress remoteAddress, Object msg) throws Exception { @@ -106,7 +119,8 @@ public class CellocatorProtocolDecoder extends BaseProtocolDecoder { operator += buf.readUnsignedByte(); buf.readUnsignedByte(); // reason data - buf.readUnsignedByte(); // reason + position.set(Position.KEY_ALARM, decodeAlarm(buf.readUnsignedByte())); + buf.readUnsignedByte(); // mode buf.readUnsignedInt(); // IO |