aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/GpsmtaProtocolDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-10-16 09:44:03 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2015-10-16 09:44:03 +1300
commita6b06189ea0f1b5a68c9cab49d50eccd98328bfa (patch)
tree2de173652f1ac0b0036181ed8acef5cc9d03a4ab /src/org/traccar/protocol/GpsmtaProtocolDecoder.java
parent9d159c880ab0fdb3f6f632dcb80577c6c2fb2f11 (diff)
downloadtrackermap-server-a6b06189ea0f1b5a68c9cab49d50eccd98328bfa.tar.gz
trackermap-server-a6b06189ea0f1b5a68c9cab49d50eccd98328bfa.tar.bz2
trackermap-server-a6b06189ea0f1b5a68c9cab49d50eccd98328bfa.zip
Use UDP protocol for GPSMTA
Diffstat (limited to 'src/org/traccar/protocol/GpsmtaProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/GpsmtaProtocolDecoder.java65
1 files changed, 32 insertions, 33 deletions
diff --git a/src/org/traccar/protocol/GpsmtaProtocolDecoder.java b/src/org/traccar/protocol/GpsmtaProtocolDecoder.java
index 134dc6496..7aec6901c 100644
--- a/src/org/traccar/protocol/GpsmtaProtocolDecoder.java
+++ b/src/org/traccar/protocol/GpsmtaProtocolDecoder.java
@@ -21,6 +21,8 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.jboss.netty.channel.Channel;
import org.traccar.BaseProtocolDecoder;
+import org.traccar.helper.Parser;
+import org.traccar.helper.PatternBuilder;
import org.traccar.model.Event;
import org.traccar.model.Position;
@@ -30,28 +32,27 @@ public class GpsmtaProtocolDecoder extends BaseProtocolDecoder {
super(protocol);
}
- private static final Pattern PATTERN = Pattern.compile(
- "(\\d+) " + // UID
- "(\\d+) " + // Time
- "(\\d+\\.\\d+) " + // Latitude
- "(\\d+\\.\\d+) " + // Longitude
- "(\\d+) " + // Speed
- "(\\d+) " + // Course
- "(\\d+) " + // Accuracy
- "(\\d+) " + // Altitude
- "(\\d+) " + // Flags
- "(\\d+) " + // Battery
- "(\\d+) " + // Temperature
- "(\\d).*"); // Changing status
+ private static final Pattern PATTERN = new PatternBuilder()
+ .num("(d+) ") // uid
+ .num("(d+) ") // time
+ .num("(d+.d+) ") // latitude
+ .num("(d+.d+) ") // longitude
+ .num("(d+) ") // speed
+ .num("(d+) ") // course
+ .num("(d+) ") // accuracy
+ .num("(d+) ") // altitude
+ .num("(d+) ") // flags
+ .num("(d+) ") // battery
+ .num("(d+) ") // temperature
+ .num("(d)") // changing status
+ .any()
+ .compile();
@Override
protected Object decode(
- Channel channel, SocketAddress remoteAddress, Object msg)
- throws Exception {
+ Channel channel, SocketAddress remoteAddress, Object msg) throws Exception {
- String sentence = (String) msg;
-
- Matcher parser = PATTERN.matcher(sentence);
+ Parser parser = new Parser(PATTERN, (String) msg);
if (!parser.matches()) {
return null;
}
@@ -59,27 +60,25 @@ public class GpsmtaProtocolDecoder extends BaseProtocolDecoder {
Position position = new Position();
position.setProtocol(getProtocolName());
- Integer index = 1;
-
- if (!identify(parser.group(index++), channel, remoteAddress)) {
+ if (!identify(parser.next(), channel, remoteAddress)) {
return null;
}
position.setDeviceId(getDeviceId());
- String time = parser.group(index++);
+ String time = parser.next();
position.setTime(new Date(Long.parseLong(time) * 1000));
- position.setLatitude(Double.parseDouble(parser.group(index++)));
- position.setLongitude(Double.parseDouble(parser.group(index++)));
- position.setSpeed(Integer.parseInt(parser.group(index++)));
- position.setCourse(Integer.parseInt(parser.group(index++)));
- index++; // accuracy
- position.setAltitude(Integer.parseInt(parser.group(index++)));
-
- position.set(Event.KEY_STATUS, Integer.parseInt(parser.group(index++)));
- position.set(Event.KEY_BATTERY, Integer.parseInt(parser.group(index++)));
- position.set(Event.PREFIX_TEMP + 1, Integer.parseInt(parser.group(index++)));
- position.set(Event.KEY_CHARGE, Integer.parseInt(parser.group(index++)) == 1);
+ position.setLatitude(parser.nextDouble());
+ position.setLongitude(parser.nextDouble());
+ position.setSpeed(parser.nextInt());
+ position.setCourse(parser.nextInt());
+ parser.next();
+ position.setAltitude(parser.nextInt());
+
+ position.set(Event.KEY_STATUS, parser.nextInt());
+ position.set(Event.KEY_BATTERY, parser.nextInt());
+ position.set(Event.PREFIX_TEMP + 1, parser.nextInt());
+ position.set(Event.KEY_CHARGE, parser.nextInt() == 1);
if (channel != null) {
channel.write(time, remoteAddress);