aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-01-25 18:08:44 +0500
committerAbyss777 <abyss@fox5.ru>2017-01-25 18:08:44 +0500
commit6ab8d0aaa66f0ea0b4533db47123dc3c8e8ec5b8 (patch)
treeec4c3d9cc9dac0fd9bdf8d8cd52324ad5e706797 /src
parentb1453ebd231009e9d9078377f2a1e063d852c444 (diff)
downloadtrackermap-server-6ab8d0aaa66f0ea0b4533db47123dc3c8e8ec5b8.tar.gz
trackermap-server-6ab8d0aaa66f0ea0b4533db47123dc3c8e8ec5b8.tar.bz2
trackermap-server-6ab8d0aaa66f0ea0b4533db47123dc3c8e8ec5b8.zip
Rise ignition events only if both positions has ignition attribute
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/events/IgnitionEventHandler.java29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/org/traccar/events/IgnitionEventHandler.java b/src/org/traccar/events/IgnitionEventHandler.java
index 8464c3aef..187b7ce73 100644
--- a/src/org/traccar/events/IgnitionEventHandler.java
+++ b/src/org/traccar/events/IgnitionEventHandler.java
@@ -39,20 +39,21 @@ public class IgnitionEventHandler extends BaseEventHandler {
Collection<Event> result = null;
- boolean ignition = position.getBoolean(Position.KEY_IGNITION);
-
- boolean oldIgnition = false;
- Position lastPosition = Context.getIdentityManager().getLastPosition(position.getDeviceId());
- if (lastPosition != null) {
- oldIgnition = lastPosition.getBoolean(Position.KEY_IGNITION);
- }
-
- if (ignition && !oldIgnition) {
- result = Collections.singleton(
- new Event(Event.TYPE_IGNITION_ON, position.getDeviceId(), position.getId()));
- } else if (!ignition && oldIgnition) {
- result = Collections.singleton(
- new Event(Event.TYPE_IGNITION_OFF, position.getDeviceId(), position.getId()));
+ if (position.getAttributes().containsKey(Position.KEY_IGNITION)) {
+ boolean ignition = position.getBoolean(Position.KEY_IGNITION);
+
+ Position lastPosition = Context.getIdentityManager().getLastPosition(position.getDeviceId());
+ if (lastPosition != null && lastPosition.getAttributes().containsKey(Position.KEY_IGNITION)) {
+ boolean oldIgnition = lastPosition.getBoolean(Position.KEY_IGNITION);
+
+ if (ignition && !oldIgnition) {
+ result = Collections.singleton(
+ new Event(Event.TYPE_IGNITION_ON, position.getDeviceId(), position.getId()));
+ } else if (!ignition && oldIgnition) {
+ result = Collections.singleton(
+ new Event(Event.TYPE_IGNITION_OFF, position.getDeviceId(), position.getId()));
+ }
+ }
}
return result;
}