aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-06-24 11:20:29 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-06-24 11:20:29 +1200
commit3525c769141992d754aea45e2a2d6cc576f45842 (patch)
tree0041fbcd7e3a7124549104fc8904f140bda7a067 /src
parent65a234c9b64461f9b946cdb256d46c53bd92b2d7 (diff)
downloadtrackermap-server-3525c769141992d754aea45e2a2d6cc576f45842.tar.gz
trackermap-server-3525c769141992d754aea45e2a2d6cc576f45842.tar.bz2
trackermap-server-3525c769141992d754aea45e2a2d6cc576f45842.zip
Add support for Lantrix (fix #1265)
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/protocol/SyrusProtocolDecoder.java35
1 files changed, 25 insertions, 10 deletions
diff --git a/src/org/traccar/protocol/SyrusProtocolDecoder.java b/src/org/traccar/protocol/SyrusProtocolDecoder.java
index 85b1d2798..b182b8b37 100644
--- a/src/org/traccar/protocol/SyrusProtocolDecoder.java
+++ b/src/org/traccar/protocol/SyrusProtocolDecoder.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2013 - 2014 Anton Tananaev (anton.tananaev@gmail.com)
+ * Copyright 2013 - 2015 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.
@@ -39,17 +39,19 @@ public class SyrusProtocolDecoder extends BaseProtocolDecoder {
}
private static final Pattern pattern = Pattern.compile(
- "R.." + // Type
+ "(?:R[EP]V" + // Type
"(?:\\d{2}" + // Event index
"(\\d{4})" + // Week
"(\\d))?" + // Day
- "(\\d{5})" + // Seconds
+ "(\\d{5})|" + // Seconds
+ "RGP" + // Type
+ "(\\d{2})(\\d{2})(\\d{2})" + // Date
+ "(\\d{2})(\\d{2})(\\d{2}))" + // Time
"([\\+\\-]\\d{2})(\\d{5})" + // Latitude
"([\\+\\-]\\d{3})(\\d{5})" + // Longitude
"(\\d{3})" + // Speed
"(\\d{3})" + // Course
- "\\d" + // Fix mode
- "(\\d)" + // Fix age
+ "(\\d)" + // Fix mode
".*\r?\n?");
private Date getTime(long week, long day, long seconds) {
@@ -137,11 +139,24 @@ public class SyrusProtocolDecoder extends BaseProtocolDecoder {
// Time
String week = parser.group(index++);
String day = parser.group(index++);
- int seconds = Integer.valueOf(parser.group(index++));
- if (week != null && day != null) {
- position.setTime(getTime(Integer.valueOf(week), Integer.valueOf(day), seconds));
+ String seconds = parser.group(index++);
+ if (seconds != null) {
+ if (week != null && day != null) {
+ position.setTime(getTime(Integer.valueOf(week), Integer.valueOf(day), Integer.valueOf(seconds)));
+ } else {
+ position.setTime(getTime(Integer.valueOf(seconds)));
+ }
+ index += 6;
} else {
- position.setTime(getTime(seconds));
+ Calendar time = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
+ time.clear();
+ time.set(Calendar.DAY_OF_MONTH, Integer.valueOf(parser.group(index++)));
+ time.set(Calendar.MONTH, Integer.valueOf(parser.group(index++)) - 1);
+ time.set(Calendar.YEAR, 2000 + Integer.valueOf(parser.group(index++)));
+ time.set(Calendar.HOUR_OF_DAY, Integer.valueOf(parser.group(index++)));
+ time.set(Calendar.MINUTE, Integer.valueOf(parser.group(index++)));
+ time.set(Calendar.SECOND, Integer.valueOf(parser.group(index++)));
+ position.setTime(time.getTime());
}
// Latitude
@@ -159,7 +174,7 @@ public class SyrusProtocolDecoder extends BaseProtocolDecoder {
position.setCourse(Double.valueOf(parser.group(index++)));
// Validity
- position.setValid(Integer.valueOf(parser.group(index++)) == 2);
+ position.setValid(Integer.valueOf(parser.group(index++)) != 0);
return position;
}