source: josm/trunk/src/org/openstreetmap/josm/command/Command.java@ 13499

Last change on this file since 13499 was 13174, checked in by Don-vip, 6 years ago

see #15310 - fix unit tests, warnings

  • Property svn:eol-style set to native
File size: 8.6 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.command;
3
4import java.util.ArrayList;
5import java.util.Collection;
6import java.util.HashMap;
7import java.util.LinkedHashMap;
8import java.util.Map;
9import java.util.Map.Entry;
10import java.util.Objects;
11
12import org.openstreetmap.josm.data.coor.EastNorth;
13import org.openstreetmap.josm.data.coor.LatLon;
14import org.openstreetmap.josm.data.osm.DataSet;
15import org.openstreetmap.josm.data.osm.Node;
16import org.openstreetmap.josm.data.osm.OsmPrimitive;
17import org.openstreetmap.josm.data.osm.PrimitiveData;
18import org.openstreetmap.josm.data.osm.Relation;
19import org.openstreetmap.josm.data.osm.Way;
20import org.openstreetmap.josm.data.osm.visitor.OsmPrimitiveVisitor;
21import org.openstreetmap.josm.tools.CheckParameterUtil;
22
23/**
24 * Classes implementing Command modify a dataset in a specific way. A command is
25 * one atomic action on a specific dataset, such as move or delete.
26 *
27 * The command remembers the {@link DataSet} it is operating on.
28 *
29 * @author imi
30 * @since 21 (creation)
31 * @since 10599 (signature)
32 */
33public abstract class Command implements PseudoCommand {
34
35 /** IS_OK : operation is okay */
36 public static final int IS_OK = 0;
37 /** IS_OUTSIDE : operation on element outside of download area */
38 public static final int IS_OUTSIDE = 1;
39 /** IS_INCOMPLETE: operation on incomplete target */
40 public static final int IS_INCOMPLETE = 2;
41
42 private static final class CloneVisitor implements OsmPrimitiveVisitor {
43 final Map<OsmPrimitive, PrimitiveData> orig = new LinkedHashMap<>();
44
45 @Override
46 public void visit(Node n) {
47 orig.put(n, n.save());
48 }
49
50 @Override
51 public void visit(Way w) {
52 orig.put(w, w.save());
53 }
54
55 @Override
56 public void visit(Relation e) {
57 orig.put(e, e.save());
58 }
59 }
60
61 /**
62 * Small helper for holding the interesting part of the old data state of the objects.
63 */
64 public static class OldNodeState {
65
66 private final LatLon latLon;
67 private final EastNorth eastNorth; // cached EastNorth to be used for applying exact displacement
68 private final boolean modified;
69
70 /**
71 * Constructs a new {@code OldNodeState} for the given node.
72 * @param node The node whose state has to be remembered
73 */
74 public OldNodeState(Node node) {
75 latLon = node.getCoor();
76 eastNorth = node.getEastNorth();
77 modified = node.isModified();
78 }
79
80 /**
81 * Returns old lat/lon.
82 * @return old lat/lon
83 * @see Node#getCoor()
84 * @since 10248
85 */
86 public final LatLon getLatLon() {
87 return latLon;
88 }
89
90 /**
91 * Returns old east/north.
92 * @return old east/north
93 * @see Node#getEastNorth()
94 */
95 public final EastNorth getEastNorth() {
96 return eastNorth;
97 }
98
99 /**
100 * Returns old modified state.
101 * @return old modified state
102 * @see Node #isModified()
103 */
104 public final boolean isModified() {
105 return modified;
106 }
107
108 @Override
109 public int hashCode() {
110 return Objects.hash(latLon, eastNorth, modified);
111 }
112
113 @Override
114 public boolean equals(Object obj) {
115 if (this == obj) return true;
116 if (obj == null || getClass() != obj.getClass()) return false;
117 OldNodeState that = (OldNodeState) obj;
118 return modified == that.modified &&
119 Objects.equals(latLon, that.latLon) &&
120 Objects.equals(eastNorth, that.eastNorth);
121 }
122 }
123
124 /** the map of OsmPrimitives in the original state to OsmPrimitives in cloned state */
125 private Map<OsmPrimitive, PrimitiveData> cloneMap = new HashMap<>();
126
127 /** the dataset which this command is applied to */
128 private final DataSet data;
129
130 /**
131 * Creates a new command in the context of a specific data set, without data layer
132 *
133 * @param data the data set. Must not be null.
134 * @throws IllegalArgumentException if data is null
135 * @since 11240
136 */
137 public Command(DataSet data) {
138 CheckParameterUtil.ensureParameterNotNull(data, "data");
139 this.data = data;
140 }
141
142 /**
143 * Executes the command on the dataset. This implementation will remember all
144 * primitives returned by fillModifiedData for restoring them on undo.
145 * <p>
146 * The layer should be invalidated after execution so that it can be re-painted.
147 * @return true
148 */
149 public boolean executeCommand() {
150 CloneVisitor visitor = new CloneVisitor();
151 Collection<OsmPrimitive> all = new ArrayList<>();
152 fillModifiedData(all, all, all);
153 for (OsmPrimitive osm : all) {
154 osm.accept(visitor);
155 }
156 cloneMap = visitor.orig;
157 return true;
158 }
159
160 /**
161 * Undoes the command.
162 * It can be assumed that all objects are in the same state they were before.
163 * It can also be assumed that executeCommand was called exactly once before.
164 *
165 * This implementation undoes all objects stored by a former call to executeCommand.
166 */
167 public void undoCommand() {
168 for (Entry<OsmPrimitive, PrimitiveData> e : cloneMap.entrySet()) {
169 OsmPrimitive primitive = e.getKey();
170 if (primitive.getDataSet() != null) {
171 e.getKey().load(e.getValue());
172 }
173 }
174 }
175
176 /**
177 * Lets other commands access the original version
178 * of the object. Usually for undoing.
179 * @param osm The requested OSM object
180 * @return The original version of the requested object, if any
181 */
182 public PrimitiveData getOrig(OsmPrimitive osm) {
183 return cloneMap.get(osm);
184 }
185
186 /**
187 * Gets the data set this command affects.
188 * @return The data set. May be <code>null</code> if no layer was set and no edit layer was found.
189 * @since 10467
190 */
191 public DataSet getAffectedDataSet() {
192 return data;
193 }
194
195 /**
196 * Fill in the changed data this command operates on.
197 * Add to the lists, don't clear them.
198 *
199 * @param modified The modified primitives
200 * @param deleted The deleted primitives
201 * @param added The added primitives
202 */
203 public abstract void fillModifiedData(Collection<OsmPrimitive> modified,
204 Collection<OsmPrimitive> deleted,
205 Collection<OsmPrimitive> added);
206
207 /**
208 * Return the primitives that take part in this command.
209 * The collection is computed during execution.
210 */
211 @Override
212 public Collection<? extends OsmPrimitive> getParticipatingPrimitives() {
213 return cloneMap.keySet();
214 }
215
216 /**
217 * Check whether user is about to operate on data outside of the download area.
218 *
219 * @param primitives the primitives to operate on
220 * @param ignore {@code null} or a primitive to be ignored
221 * @return true, if operating on outlying primitives is OK; false, otherwise
222 */
223 public static int checkOutlyingOrIncompleteOperation(
224 Collection<? extends OsmPrimitive> primitives,
225 Collection<? extends OsmPrimitive> ignore) {
226 int res = 0;
227 for (OsmPrimitive osm : primitives) {
228 if (osm.isIncomplete()) {
229 res |= IS_INCOMPLETE;
230 } else if (osm.isOutsideDownloadArea()
231 && (ignore == null || !ignore.contains(osm))) {
232 res |= IS_OUTSIDE;
233 }
234 }
235 return res;
236 }
237
238 /**
239 * Ensures that all primitives that are participating in this command belong to the affected data set.
240 *
241 * Commands may use this in their update methods to check the consitency of the primitives they operate on.
242 * @throws AssertionError if no {@link DataSet} is set or if any primitive does not belong to that dataset.
243 */
244 protected void ensurePrimitivesAreInDataset() {
245 for (OsmPrimitive primitive : this.getParticipatingPrimitives()) {
246 if (primitive.getDataSet() != this.getAffectedDataSet()) {
247 throw new AssertionError("Primitive is of wrong data set for this command: " + primitive);
248 }
249 }
250 }
251
252 @Override
253 public int hashCode() {
254 return Objects.hash(cloneMap, data);
255 }
256
257 @Override
258 public boolean equals(Object obj) {
259 if (this == obj) return true;
260 if (obj == null || getClass() != obj.getClass()) return false;
261 Command command = (Command) obj;
262 return Objects.equals(cloneMap, command.cloneMap) &&
263 Objects.equals(data, command.data);
264 }
265}
Note: See TracBrowser for help on using the repository browser.