aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/events
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-08-11 09:51:40 +0500
committerAbyss777 <abyss@fox5.ru>2016-08-11 09:51:40 +0500
commit16ec66e18af7c421e80591cf6c463c52980665ec (patch)
tree947a9d4b109a6d91597b6d4c2b6ef2e4a677a0c2 /src/org/traccar/events
parent76420fb31d41a62bc0fe19e8fea63be374c67b61 (diff)
downloadtrackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.gz
trackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.bz2
trackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.zip
- Added IgnitionEventHandler
- Added unit test for some EventHandlers - Changed a bit IdentityManager to fit EventHandlerTest
Diffstat (limited to 'src/org/traccar/events')
-rw-r--r--src/org/traccar/events/GeofenceEventHandler.java2
-rw-r--r--src/org/traccar/events/IgnitionEventHandler.java67
-rw-r--r--src/org/traccar/events/MotionEventHandler.java4
-rw-r--r--src/org/traccar/events/OverspeedEventHandler.java4
4 files changed, 72 insertions, 5 deletions
diff --git a/src/org/traccar/events/GeofenceEventHandler.java b/src/org/traccar/events/GeofenceEventHandler.java
index a0291dcfa..6126331bd 100644
--- a/src/org/traccar/events/GeofenceEventHandler.java
+++ b/src/org/traccar/events/GeofenceEventHandler.java
@@ -40,7 +40,7 @@ public class GeofenceEventHandler extends BaseEventHandler {
if (device == null) {
return null;
}
- if (!Context.getDeviceManager().isLatestPosition(position) || !position.getValid()) {
+ if (!Context.getIdentityManager().isLatestPosition(position) || !position.getValid()) {
return null;
}
diff --git a/src/org/traccar/events/IgnitionEventHandler.java b/src/org/traccar/events/IgnitionEventHandler.java
new file mode 100644
index 000000000..297049ccd
--- /dev/null
+++ b/src/org/traccar/events/IgnitionEventHandler.java
@@ -0,0 +1,67 @@
+/*
+ * Copyright 2016 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.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.traccar.events;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.traccar.BaseEventHandler;
+import org.traccar.Context;
+import org.traccar.model.Device;
+import org.traccar.model.Event;
+import org.traccar.model.Position;
+
+public class IgnitionEventHandler extends BaseEventHandler {
+
+ @Override
+ protected Collection<Event> analyzePosition(Position position) {
+ Device device = Context.getIdentityManager().getDeviceById(position.getDeviceId());
+ if (device == null) {
+ return null;
+ }
+ if (!Context.getIdentityManager().isLatestPosition(position) || !position.getValid()) {
+ return null;
+ }
+
+ Collection<Event> result = null;
+
+ boolean ignition = false;
+ Object ignitionObject = position.getAttributes().get(Position.KEY_IGNITION);
+ if (ignitionObject != null && Boolean.parseBoolean(ignitionObject.toString())) {
+ ignition = true;
+ }
+
+ boolean oldIgnition = false;
+ Object oldIgnitionObject = null;
+ Position lastPosition = Context.getIdentityManager().getLastPosition(position.getDeviceId());
+ if (lastPosition != null) {
+ oldIgnitionObject = lastPosition.getAttributes().get(Position.KEY_IGNITION);
+ }
+ if (oldIgnitionObject != null && Boolean.parseBoolean(oldIgnitionObject.toString())) {
+ oldIgnition = true;
+ }
+
+ if (ignition && !oldIgnition) {
+ result = new ArrayList<>();
+ result.add(new Event(Event.TYPE_IGNITION_ON, position.getDeviceId(), position.getId()));
+ } else if (!ignition && oldIgnition) {
+ result = new ArrayList<>();
+ result.add(new Event(Event.TYPE_IGNITION_OFF, position.getDeviceId(), position.getId()));
+ }
+ return result;
+ }
+
+}
diff --git a/src/org/traccar/events/MotionEventHandler.java b/src/org/traccar/events/MotionEventHandler.java
index ddb99185f..7178f7036 100644
--- a/src/org/traccar/events/MotionEventHandler.java
+++ b/src/org/traccar/events/MotionEventHandler.java
@@ -35,14 +35,14 @@ public class MotionEventHandler extends BaseEventHandler {
if (device == null) {
return null;
}
- if (!Context.getDeviceManager().isLatestPosition(position) || !position.getValid()) {
+ if (!Context.getIdentityManager().isLatestPosition(position) || !position.getValid()) {
return null;
}
Collection<Event> result = null;
double speed = position.getSpeed();
double oldSpeed = 0;
- Position lastPosition = Context.getDeviceManager().getLastPosition(position.getDeviceId());
+ Position lastPosition = Context.getIdentityManager().getLastPosition(position.getDeviceId());
if (lastPosition != null) {
oldSpeed = lastPosition.getSpeed();
}
diff --git a/src/org/traccar/events/OverspeedEventHandler.java b/src/org/traccar/events/OverspeedEventHandler.java
index dbdb01ffb..c739348eb 100644
--- a/src/org/traccar/events/OverspeedEventHandler.java
+++ b/src/org/traccar/events/OverspeedEventHandler.java
@@ -42,7 +42,7 @@ public class OverspeedEventHandler extends BaseEventHandler {
if (device == null) {
return null;
}
- if (!Context.getDeviceManager().isLatestPosition(position) || !position.getValid()) {
+ if (!Context.getIdentityManager().isLatestPosition(position) || !position.getValid()) {
return null;
}
@@ -58,7 +58,7 @@ public class OverspeedEventHandler extends BaseEventHandler {
}
double oldSpeed = 0;
if (notRepeat) {
- Position lastPosition = Context.getDeviceManager().getLastPosition(position.getDeviceId());
+ Position lastPosition = Context.getIdentityManager().getLastPosition(position.getDeviceId());
if (lastPosition != null) {
oldSpeed = lastPosition.getSpeed();
}