blob: d5755be89f072e8fb36dd676fa178ee7817a4a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package org.traccar;
import java.util.Collection;
import org.traccar.model.Device;
import org.traccar.model.Event;
import org.traccar.model.Position;
public abstract class BaseEventHandler extends BaseDataHandler {
private boolean isLastPosition = false;
public boolean isLastPosition() {
return isLastPosition;
}
private Device device;
public Device getDevice() {
return device;
}
@Override
protected Position handlePosition(Position position) {
device = Context.getDataManager().getDeviceById(position.getDeviceId());
if (device != null) {
long lastPositionId = device.getPositionId();
if (position.getId() == lastPositionId) {
isLastPosition = true;
}
}
Collection<Event> events = analyzePosition(position);
if (events != null) {
for (Event event : events) {
Context.getNotificationManager().updateEvent(event, position);
}
}
return position;
}
protected abstract Collection<Event> analyzePosition(Position position);
}
|