diff options
author | Abyss777 <abyss@fox5.ru> | 2016-09-09 15:32:20 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-09-09 15:32:20 +0500 |
commit | b4185cbf84bdff2927f7d9a8b0cde9f4ea889353 (patch) | |
tree | bc86fe5b97d21f0a89eecaedc66fa5a64431b1bc | |
parent | 0edf8b90483691d77438748f203d3d03f034781e (diff) | |
download | trackermap-server-b4185cbf84bdff2927f7d9a8b0cde9f4ea889353.tar.gz trackermap-server-b4185cbf84bdff2927f7d9a8b0cde9f4ea889353.tar.bz2 trackermap-server-b4185cbf84bdff2927f7d9a8b0cde9f4ea889353.zip |
Store pulse for watch protocol
-rw-r--r-- | src/org/traccar/protocol/WatchProtocolDecoder.java | 11 | ||||
-rw-r--r-- | test/org/traccar/protocol/WatchProtocolDecoderTest.java | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/WatchProtocolDecoder.java b/src/org/traccar/protocol/WatchProtocolDecoder.java index 326552e7f..488d05a3c 100644 --- a/src/org/traccar/protocol/WatchProtocolDecoder.java +++ b/src/org/traccar/protocol/WatchProtocolDecoder.java @@ -25,6 +25,7 @@ import org.traccar.helper.UnitsConverter; import org.traccar.model.Position; import java.net.SocketAddress; +import java.util.Date; import java.util.regex.Pattern; public class WatchProtocolDecoder extends BaseProtocolDecoder { @@ -146,6 +147,16 @@ public class WatchProtocolDecoder extends BaseProtocolDecoder { sendResponse(channel, manufacturer, id, "TKQ"); + } else if (type.equals("PULSE")) { + + Position position = new Position(); + position.setProtocol(getProtocolName()); + position.setDeviceId(deviceSession.getDeviceId()); + getLastLocation(position, new Date()); + position.setValid(false); + position.set("pulse", content.split(",")[1]); + return position; + } return null; diff --git a/test/org/traccar/protocol/WatchProtocolDecoderTest.java b/test/org/traccar/protocol/WatchProtocolDecoderTest.java index a8f7b12bc..6116c2c2b 100644 --- a/test/org/traccar/protocol/WatchProtocolDecoderTest.java +++ b/test/org/traccar/protocol/WatchProtocolDecoderTest.java @@ -54,6 +54,9 @@ public class WatchProtocolDecoderTest extends ProtocolTest { verifyPosition(decoder, text( "[SG*8800000015*0087*AL,220414,134652,A,22.571707,N,113.8613968,E,0.1,0.0,100,7,60,90,1000,50,0001,4,1,460,0,9360,4082,131,9360,4092,148,9360,4091,143,9360,4153,141")); + verifyAttributes(decoder, text( + "[CS*8800000015*0008*PULSE,72")); + } } |