File: UndoConvertNamesToTimes.java

package info (click to toggle)
gpsprune 17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,984 kB
  • ctags: 5,218
  • sloc: java: 39,403; sh: 25; makefile: 17; python: 15
file content (81 lines) | stat: -rw-r--r-- 2,506 bytes parent folder | download | duplicates (8)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package tim.prune.undo;

import tim.prune.I18nManager;
import tim.prune.UpdateMessageBroker;
import tim.prune.data.DataPoint;
import tim.prune.data.Field;
import tim.prune.data.Track;
import tim.prune.data.TrackInfo;

/**
 * Operation to undo a conversion from names to times
 */
public class UndoConvertNamesToTimes implements UndoOperation
{
	/** Start and end indices of section */
	private int _startIndex, _endIndex;
	/** Waypoint names before operation */
	private String[] _waypointNames = null;
	/** Timestamp strings before operation */
	private String[] _timestamps = null;

	/**
	 * Constructor
	 * @param inTrackInfo track info object to copy values from
	 */
	public UndoConvertNamesToTimes(TrackInfo inTrackInfo)
	{
		_startIndex = inTrackInfo.getSelection().getStart();
		_endIndex = inTrackInfo.getSelection().getEnd();
		final int numPoints = _endIndex - _startIndex + 1;
		_waypointNames = new String[numPoints];
		_timestamps = new String[numPoints];
		// Loop over points in selection, and copy names and timestamps
		for (int i=_startIndex; i<=_endIndex; i++)
		{
			DataPoint point = inTrackInfo.getTrack().getPoint(i);
			if (point.isWaypoint())
			{
				_waypointNames[i-_startIndex] = point.getWaypointName();
				_timestamps[i-_startIndex] = point.getFieldValue(Field.TIMESTAMP);
			}
		}
	}


	/**
	 * @return description of operation
	 */
	public String getDescription()
	{
		return I18nManager.getText("undo.convertnamestotimes");
	}


	/**
	 * Perform the undo operation on the given Track
	 * @param inTrackInfo TrackInfo object on which to perform the operation
	 */
	public void performUndo(TrackInfo inTrackInfo) throws UndoException
	{
		// Sanity check
		Track track = inTrackInfo.getTrack();
		if (track.getNumPoints() <= _endIndex || _endIndex <= _startIndex) {
			throw new UndoException("Cannot undo conversion, track length doesn't match");
		}
		// Loop over points in selection and replace names and timestamps
		for (int i=_startIndex; i<=_endIndex; i++)
		{
			String storedName = _waypointNames[i-_startIndex];
			if (storedName != null)
			{
				// point had a name before the operation, so might have been converted
				DataPoint point = track.getPoint(i);
				point.setFieldValue(Field.WAYPT_NAME, storedName, true);
				point.setFieldValue(Field.TIMESTAMP, _timestamps[i-_startIndex], true);
			}
		}
		track.requestRescale();
		UpdateMessageBroker.informSubscribers();
	}
}