aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/ODOMeterHandler.java
blob: 1dc3aed44596cf042e5601ae4c1b83154f2adde2 (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
46
47
48
49
50
51
/**
 * 
 */
package org.traccar;

import org.traccar.helper.DistanceCalculator;
import org.traccar.helper.Log;
import org.traccar.model.Position;

/**
 * <p>
 *  ODO Meter handler
 * </p>
 * 
 * @author Amila Silva
 *
 */
public class ODOMeterHandler extends BaseDataHandler {

	public ODOMeterHandler() {
		Log.debug("System based ODO meter calculation enabled for all devices");
	}

	private Position getLastPosition(long deviceId) {
		if (Context.getConnectionManager() != null) {
			return Context.getConnectionManager().getLastPosition(deviceId);
		}
		return null;
	}

	private Position calculateDistance(Position position) {
		Position last = getLastPosition(position.getDeviceId());
		if (last != null) {
			double distance = DistanceCalculator.distance(
					position.getLatitude(), position.getLongitude(),
					last.getLatitude(), last.getLongitude());
			distance = Math.round((distance) * 100.0) / 100.0;
			double odoMeter = distance + last.getOdoMeter();
			Log.info("::: Device Course : " + position.getDeviceId()
					+ ", Distance :" + distance + "m, ODO Meter :" + odoMeter + " m");
			position.setOdoMeter(odoMeter);
		} 
		return position;
	}

	@Override
	protected Position handlePosition(Position position) {
		return calculateDistance(position);
	}

}