mirror of
https://github.com/traccar/traccar.git
synced 2025-01-09 04:07:38 +08:00
Handle motion fluctuation (fix #5000)
This commit is contained in:
parent
836dc4138f
commit
3b36ac38a0
17
schema/changelog-5.6.xml
Normal file
17
schema/changelog-5.6.xml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<databaseChangeLog
|
||||||
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
|
||||||
|
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"
|
||||||
|
logicalFilePath="changelog-5.6">
|
||||||
|
|
||||||
|
<changeSet author="author" id="changelog-5.6">
|
||||||
|
|
||||||
|
<addColumn tableName="tc_devices">
|
||||||
|
<column name="motionstreak" type="BOOLEAN" defaultValueBoolean="false" />
|
||||||
|
</addColumn>
|
||||||
|
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
|
</databaseChangeLog>
|
@ -36,5 +36,6 @@
|
|||||||
<include file="changelog-5.3.xml" relativeToChangelogFile="true" />
|
<include file="changelog-5.3.xml" relativeToChangelogFile="true" />
|
||||||
<include file="changelog-5.4.xml" relativeToChangelogFile="true" />
|
<include file="changelog-5.4.xml" relativeToChangelogFile="true" />
|
||||||
<include file="changelog-5.5.xml" relativeToChangelogFile="true" />
|
<include file="changelog-5.5.xml" relativeToChangelogFile="true" />
|
||||||
|
<include file="changelog-5.6.xml" relativeToChangelogFile="true" />
|
||||||
|
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
||||||
|
@ -75,7 +75,7 @@ public class MotionEventHandler extends BaseEventHandler {
|
|||||||
state.toDevice(device);
|
state.toDevice(device);
|
||||||
try {
|
try {
|
||||||
storage.updateObject(device, new Request(
|
storage.updateObject(device, new Request(
|
||||||
new Columns.Include("motionState", "motionTime", "motionDistance"),
|
new Columns.Include("motionStreak", "motionState", "motionTime", "motionDistance"),
|
||||||
new Condition.Equals("id", device.getId())));
|
new Condition.Equals("id", device.getId())));
|
||||||
} catch (StorageException e) {
|
} catch (StorageException e) {
|
||||||
LOGGER.warn("Update device motion error", e);
|
LOGGER.warn("Update device motion error", e);
|
||||||
|
@ -162,6 +162,19 @@ public class Device extends GroupedModel implements Disableable {
|
|||||||
this.expirationTime = expirationTime;
|
this.expirationTime = expirationTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean motionStreak;
|
||||||
|
|
||||||
|
@QueryIgnore
|
||||||
|
@JsonIgnore
|
||||||
|
public boolean getMotionStreak() {
|
||||||
|
return motionStreak;
|
||||||
|
}
|
||||||
|
|
||||||
|
@JsonIgnore
|
||||||
|
public void setMotionStreak(boolean motionStreak) {
|
||||||
|
this.motionStreak = motionStreak;
|
||||||
|
}
|
||||||
|
|
||||||
private boolean motionState;
|
private boolean motionState;
|
||||||
|
|
||||||
@QueryIgnore
|
@QueryIgnore
|
||||||
|
@ -354,7 +354,9 @@ public class ReportUtils {
|
|||||||
boolean trips = reportClass.equals(TripReportItem.class);
|
boolean trips = reportClass.equals(TripReportItem.class);
|
||||||
|
|
||||||
MotionState motionState = new MotionState();
|
MotionState motionState = new MotionState();
|
||||||
motionState.setMotionState(isMoving(positions, 0, tripsConfig));
|
boolean initialValue = isMoving(positions, 0, tripsConfig);
|
||||||
|
motionState.setMotionStreak(initialValue);
|
||||||
|
motionState.setMotionState(initialValue);
|
||||||
|
|
||||||
boolean detected = trips == motionState.getMotionState();
|
boolean detected = trips == motionState.getMotionState();
|
||||||
int startEventIndex = detected ? 0 : -1;
|
int startEventIndex = detected ? 0 : -1;
|
||||||
|
@ -59,6 +59,7 @@ public final class MotionProcessor {
|
|||||||
String eventType = newState ? Event.TYPE_DEVICE_MOVING : Event.TYPE_DEVICE_STOPPED;
|
String eventType = newState ? Event.TYPE_DEVICE_MOVING : Event.TYPE_DEVICE_STOPPED;
|
||||||
Event event = new Event(eventType, position);
|
Event event = new Event(eventType, position);
|
||||||
|
|
||||||
|
state.setMotionStreak(newState);
|
||||||
state.setMotionTime(null);
|
state.setMotionTime(null);
|
||||||
state.setMotionDistance(0);
|
state.setMotionDistance(0);
|
||||||
state.setEvent(event);
|
state.setEvent(event);
|
||||||
@ -67,9 +68,14 @@ public final class MotionProcessor {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
state.setMotionState(newState);
|
state.setMotionState(newState);
|
||||||
|
if (state.getMotionStreak() == newState) {
|
||||||
|
state.setMotionTime(null);
|
||||||
|
state.setMotionDistance(0);
|
||||||
|
} else {
|
||||||
state.setMotionTime(position.getFixTime());
|
state.setMotionTime(position.getFixTime());
|
||||||
state.setMotionDistance(position.getDouble(Position.KEY_TOTAL_DISTANCE));
|
state.setMotionDistance(position.getDouble(Position.KEY_TOTAL_DISTANCE));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,7 @@ public class MotionState {
|
|||||||
|
|
||||||
public static MotionState fromDevice(Device device) {
|
public static MotionState fromDevice(Device device) {
|
||||||
MotionState state = new MotionState();
|
MotionState state = new MotionState();
|
||||||
|
state.motionStreak = device.getMotionStreak();
|
||||||
state.motionState = device.getMotionState();
|
state.motionState = device.getMotionState();
|
||||||
state.motionTime = device.getMotionTime();
|
state.motionTime = device.getMotionTime();
|
||||||
state.motionDistance = device.getMotionDistance();
|
state.motionDistance = device.getMotionDistance();
|
||||||
@ -31,6 +32,7 @@ public class MotionState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void toDevice(Device device) {
|
public void toDevice(Device device) {
|
||||||
|
device.setMotionStreak(motionStreak);
|
||||||
device.setMotionState(motionState);
|
device.setMotionState(motionState);
|
||||||
device.setMotionTime(motionTime);
|
device.setMotionTime(motionTime);
|
||||||
device.setMotionDistance(motionDistance);
|
device.setMotionDistance(motionDistance);
|
||||||
@ -42,6 +44,17 @@ public class MotionState {
|
|||||||
return changed;
|
return changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean motionStreak;
|
||||||
|
|
||||||
|
public boolean getMotionStreak() {
|
||||||
|
return motionStreak;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMotionStreak(boolean motionStreak) {
|
||||||
|
this.motionStreak = motionStreak;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
private boolean motionState;
|
private boolean motionState;
|
||||||
|
|
||||||
public boolean getMotionState() {
|
public boolean getMotionState() {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package org.traccar.handler.events;
|
package org.traccar.handler.events;
|
||||||
|
|
||||||
import org.junit.Ignore;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.traccar.BaseTest;
|
import org.traccar.BaseTest;
|
||||||
import org.traccar.model.Event;
|
import org.traccar.model.Event;
|
||||||
@ -62,7 +61,6 @@ public class MotionEventHandlerTest extends BaseTest {
|
|||||||
verifyState(state, false, 0);
|
verifyState(state, false, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Ignore
|
|
||||||
@Test
|
@Test
|
||||||
public void testMotionFluctuation() throws ParseException {
|
public void testMotionFluctuation() throws ParseException {
|
||||||
TripsConfig tripsConfig = new TripsConfig(500, 300000, 300000, 0, false, false, 0.01);
|
TripsConfig tripsConfig = new TripsConfig(500, 300000, 300000, 0, false, false, 0.01);
|
||||||
@ -87,11 +85,11 @@ public class MotionEventHandlerTest extends BaseTest {
|
|||||||
|
|
||||||
MotionProcessor.updateState(state, position("2017-01-01 00:04:00", true, 1000, null), true, tripsConfig);
|
MotionProcessor.updateState(state, position("2017-01-01 00:04:00", true, 1000, null), true, tripsConfig);
|
||||||
assertNull(state.getEvent());
|
assertNull(state.getEvent());
|
||||||
verifyState(state, true, 1000);
|
verifyState(state, true, 0);
|
||||||
|
|
||||||
MotionProcessor.updateState(state, position("2017-01-01 00:06:00", true, 2000, null), true, tripsConfig);
|
MotionProcessor.updateState(state, position("2017-01-01 00:06:00", true, 2000, null), true, tripsConfig);
|
||||||
assertNull(state.getEvent());
|
assertNull(state.getEvent());
|
||||||
verifyState(state, true, 2000);
|
verifyState(state, true, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -99,6 +97,7 @@ public class MotionEventHandlerTest extends BaseTest {
|
|||||||
TripsConfig tripsConfig = new TripsConfig(500, 300000, 300000, 0, true, false, 0.01);
|
TripsConfig tripsConfig = new TripsConfig(500, 300000, 300000, 0, true, false, 0.01);
|
||||||
|
|
||||||
MotionState state = new MotionState();
|
MotionState state = new MotionState();
|
||||||
|
state.setMotionStreak(true);
|
||||||
state.setMotionState(true);
|
state.setMotionState(true);
|
||||||
|
|
||||||
MotionProcessor.updateState(state, position("2017-01-01 00:00:00", false, 100, true), false, tripsConfig);
|
MotionProcessor.updateState(state, position("2017-01-01 00:00:00", false, 100, true), false, tripsConfig);
|
||||||
|
@ -48,5 +48,5 @@ for session in protocols:
|
|||||||
s.connect(("localhost", int(port)))
|
s.connect(("localhost", int(port)))
|
||||||
for message in messages[session]:
|
for message in messages[session]:
|
||||||
s.send(binascii.unhexlify(message))
|
s.send(binascii.unhexlify(message))
|
||||||
time.sleep(0.5)
|
time.sleep(0.1)
|
||||||
s.close()
|
s.close()
|
||||||
|
Loading…
Reference in New Issue
Block a user