aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-05-03 06:21:42 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-05-03 06:21:42 +1200
commitff1f4cc5a0ef001b104fb1e36a4e7e660b555910 (patch)
tree7fb111f3c2c51e94420b874184096b5fd9b8e51a /src
parentd28bad416d2d7af3dda7b42a19f6fd372538a3f8 (diff)
downloadtrackermap-server-ff1f4cc5a0ef001b104fb1e36a4e7e660b555910.tar.gz
trackermap-server-ff1f4cc5a0ef001b104fb1e36a4e7e660b555910.tar.bz2
trackermap-server-ff1f4cc5a0ef001b104fb1e36a4e7e660b555910.zip
Support Castel response messages
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/protocol/CastelProtocolDecoder.java31
1 files changed, 27 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/CastelProtocolDecoder.java b/src/org/traccar/protocol/CastelProtocolDecoder.java
index 44a5e213c..db6f24eeb 100644
--- a/src/org/traccar/protocol/CastelProtocolDecoder.java
+++ b/src/org/traccar/protocol/CastelProtocolDecoder.java
@@ -91,6 +91,7 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
public static final short MSG_SC_GPS_SLEEP = 0x4009;
public static final short MSG_SC_FUEL = 0x400E;
public static final short MSG_SC_AGPS_REQUEST = 0x5101;
+ public static final short MSG_SC_QUERY_RESPONSE = (short) 0xA002;
public static final short MSG_SC_CURRENT_LOCATION = (short) 0xB001;
public static final short MSG_CC_LOGIN = 0x4001;
@@ -272,7 +273,7 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
private Object decodeSc(
Channel channel, SocketAddress remoteAddress, ChannelBuffer buf,
- int version, ChannelBuffer id, int type, DeviceSession deviceSession) {
+ int version, ChannelBuffer id, short type, DeviceSession deviceSession) {
if (type == MSG_SC_HEARTBEAT) {
@@ -395,6 +396,28 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
return position;
+ } else if (type == MSG_SC_QUERY_RESPONSE) {
+
+ Position position = createPosition(deviceSession);
+
+ buf.readUnsignedShort(); // index
+ buf.readUnsignedByte(); // response count
+ buf.readUnsignedByte(); // response index
+
+ int failureCount = buf.readUnsignedByte();
+ for (int i = 0; i < failureCount; i++) {
+ buf.readUnsignedShort(); // tag
+ }
+
+ int successCount = buf.readUnsignedByte();
+ for (int i = 0; i < successCount; i++) {
+ buf.readUnsignedShort(); // tag
+ position.set(Position.KEY_RESULT,
+ buf.readBytes(buf.readUnsignedShort()).toString(StandardCharsets.US_ASCII));
+ }
+
+ return position;
+
}
return null;
@@ -402,7 +425,7 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
private Object decodeCc(
Channel channel, SocketAddress remoteAddress, ChannelBuffer buf,
- int version, ChannelBuffer id, int type, DeviceSession deviceSession) {
+ int version, ChannelBuffer id, short type, DeviceSession deviceSession) {
if (type == MSG_CC_HEARTBEAT) {
@@ -459,7 +482,7 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
private Object decodeMpip(
Channel channel, SocketAddress remoteAddress, ChannelBuffer buf,
- int version, ChannelBuffer id, int type, DeviceSession deviceSession) {
+ int version, ChannelBuffer id, short type, DeviceSession deviceSession) {
if (type == 0x4001) {
@@ -513,7 +536,7 @@ public class CastelProtocolDecoder extends BaseProtocolDecoder {
}
ChannelBuffer id = buf.readBytes(20);
- int type = ChannelBuffers.swapShort(buf.readShort());
+ short type = ChannelBuffers.swapShort(buf.readShort());
DeviceSession deviceSession = getDeviceSession(
channel, remoteAddress, id.toString(StandardCharsets.US_ASCII).trim());