source: josm/trunk/src/org/openstreetmap/josm/command/DeleteCommand.java@ 9067

Last change on this file since 9067 was 9062, checked in by Don-vip, 8 years ago

Sonar - squid:S1941 - Variables should not be declared before they are relevant

  • Property svn:eol-style set to native
File size: 22.2 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.command;
3
4import static org.openstreetmap.josm.tools.I18n.marktr;
5import static org.openstreetmap.josm.tools.I18n.tr;
6import static org.openstreetmap.josm.tools.I18n.trn;
7
8import java.awt.GridBagLayout;
9import java.util.ArrayList;
10import java.util.Collection;
11import java.util.Collections;
12import java.util.EnumSet;
13import java.util.HashMap;
14import java.util.HashSet;
15import java.util.Iterator;
16import java.util.LinkedList;
17import java.util.List;
18import java.util.Map;
19import java.util.Map.Entry;
20import java.util.Set;
21
22import javax.swing.Icon;
23import javax.swing.JOptionPane;
24import javax.swing.JPanel;
25
26import org.openstreetmap.josm.Main;
27import org.openstreetmap.josm.actions.SplitWayAction;
28import org.openstreetmap.josm.data.osm.Node;
29import org.openstreetmap.josm.data.osm.OsmPrimitive;
30import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
31import org.openstreetmap.josm.data.osm.PrimitiveData;
32import org.openstreetmap.josm.data.osm.Relation;
33import org.openstreetmap.josm.data.osm.RelationToChildReference;
34import org.openstreetmap.josm.data.osm.Way;
35import org.openstreetmap.josm.data.osm.WaySegment;
36import org.openstreetmap.josm.gui.ConditionalOptionPaneUtil;
37import org.openstreetmap.josm.gui.DefaultNameFormatter;
38import org.openstreetmap.josm.gui.dialogs.DeleteFromRelationConfirmationDialog;
39import org.openstreetmap.josm.gui.layer.OsmDataLayer;
40import org.openstreetmap.josm.gui.widgets.JMultilineLabel;
41import org.openstreetmap.josm.tools.CheckParameterUtil;
42import org.openstreetmap.josm.tools.ImageProvider;
43import org.openstreetmap.josm.tools.Utils;
44
45/**
46 * A command to delete a number of primitives from the dataset.
47 * @since 23
48 */
49public class DeleteCommand extends Command {
50 /**
51 * The primitives that get deleted.
52 */
53 private final Collection<? extends OsmPrimitive> toDelete;
54 private final Map<OsmPrimitive, PrimitiveData> clonedPrimitives = new HashMap<>();
55
56 /**
57 * Constructor. Deletes a collection of primitives in the current edit layer.
58 *
59 * @param data the primitives to delete. Must neither be null nor empty.
60 * @throws IllegalArgumentException if data is null or empty
61 */
62 public DeleteCommand(Collection<? extends OsmPrimitive> data) {
63 CheckParameterUtil.ensureParameterNotNull(data, "data");
64 if (data.isEmpty())
65 throw new IllegalArgumentException(tr("At least one object to delete required, got empty collection"));
66 this.toDelete = data;
67 checkConsistency();
68 }
69
70 /**
71 * Constructor. Deletes a single primitive in the current edit layer.
72 *
73 * @param data the primitive to delete. Must not be null.
74 * @throws IllegalArgumentException if data is null
75 */
76 public DeleteCommand(OsmPrimitive data) {
77 this(Collections.singleton(data));
78 }
79
80 /**
81 * Constructor for a single data item. Use the collection constructor to delete multiple
82 * objects.
83 *
84 * @param layer the layer context for deleting this primitive. Must not be null.
85 * @param data the primitive to delete. Must not be null.
86 * @throws IllegalArgumentException if data is null
87 * @throws IllegalArgumentException if layer is null
88 */
89 public DeleteCommand(OsmDataLayer layer, OsmPrimitive data) {
90 this(layer, Collections.singleton(data));
91 }
92
93 /**
94 * Constructor for a collection of data to be deleted in the context of
95 * a specific layer
96 *
97 * @param layer the layer context for deleting these primitives. Must not be null.
98 * @param data the primitives to delete. Must neither be null nor empty.
99 * @throws IllegalArgumentException if layer is null
100 * @throws IllegalArgumentException if data is null or empty
101 */
102 public DeleteCommand(OsmDataLayer layer, Collection<? extends OsmPrimitive> data) {
103 super(layer);
104 CheckParameterUtil.ensureParameterNotNull(data, "data");
105 if (data.isEmpty())
106 throw new IllegalArgumentException(tr("At least one object to delete required, got empty collection"));
107 this.toDelete = data;
108 checkConsistency();
109 }
110
111 private void checkConsistency() {
112 for (OsmPrimitive p : toDelete) {
113 if (p == null) {
114 throw new IllegalArgumentException("Primitive to delete must not be null");
115 } else if (p.getDataSet() == null) {
116 throw new IllegalArgumentException("Primitive to delete must be in a dataset");
117 }
118 }
119 }
120
121 @Override
122 public boolean executeCommand() {
123 // Make copy and remove all references (to prevent inconsistent dataset (delete referenced) while command is executed)
124 for (OsmPrimitive osm: toDelete) {
125 if (osm.isDeleted())
126 throw new IllegalArgumentException(osm + " is already deleted");
127 clonedPrimitives.put(osm, osm.save());
128
129 if (osm instanceof Way) {
130 ((Way) osm).setNodes(null);
131 } else if (osm instanceof Relation) {
132 ((Relation) osm).setMembers(null);
133 }
134 }
135
136 for (OsmPrimitive osm: toDelete) {
137 osm.setDeleted(true);
138 }
139
140 return true;
141 }
142
143 @Override
144 public void undoCommand() {
145 for (OsmPrimitive osm: toDelete) {
146 osm.setDeleted(false);
147 }
148
149 for (Entry<OsmPrimitive, PrimitiveData> entry: clonedPrimitives.entrySet()) {
150 entry.getKey().load(entry.getValue());
151 }
152 }
153
154 @Override
155 public void fillModifiedData(Collection<OsmPrimitive> modified, Collection<OsmPrimitive> deleted,
156 Collection<OsmPrimitive> added) {
157 }
158
159 private Set<OsmPrimitiveType> getTypesToDelete() {
160 Set<OsmPrimitiveType> typesToDelete = EnumSet.noneOf(OsmPrimitiveType.class);
161 for (OsmPrimitive osm : toDelete) {
162 typesToDelete.add(OsmPrimitiveType.from(osm));
163 }
164 return typesToDelete;
165 }
166
167 @Override
168 public String getDescriptionText() {
169 if (toDelete.size() == 1) {
170 OsmPrimitive primitive = toDelete.iterator().next();
171 String msg = "";
172 switch(OsmPrimitiveType.from(primitive)) {
173 case NODE: msg = marktr("Delete node {0}"); break;
174 case WAY: msg = marktr("Delete way {0}"); break;
175 case RELATION:msg = marktr("Delete relation {0}"); break;
176 }
177
178 return tr(msg, primitive.getDisplayName(DefaultNameFormatter.getInstance()));
179 } else {
180 Set<OsmPrimitiveType> typesToDelete = getTypesToDelete();
181 String msg = "";
182 if (typesToDelete.size() > 1) {
183 msg = trn("Delete {0} object", "Delete {0} objects", toDelete.size(), toDelete.size());
184 } else {
185 OsmPrimitiveType t = typesToDelete.iterator().next();
186 switch(t) {
187 case NODE: msg = trn("Delete {0} node", "Delete {0} nodes", toDelete.size(), toDelete.size()); break;
188 case WAY: msg = trn("Delete {0} way", "Delete {0} ways", toDelete.size(), toDelete.size()); break;
189 case RELATION: msg = trn("Delete {0} relation", "Delete {0} relations", toDelete.size(), toDelete.size()); break;
190 }
191 }
192 return msg;
193 }
194 }
195
196 @Override
197 public Icon getDescriptionIcon() {
198 if (toDelete.size() == 1)
199 return ImageProvider.get(toDelete.iterator().next().getDisplayType());
200 Set<OsmPrimitiveType> typesToDelete = getTypesToDelete();
201 if (typesToDelete.size() > 1)
202 return ImageProvider.get("data", "object");
203 else
204 return ImageProvider.get(typesToDelete.iterator().next());
205 }
206
207 @Override public Collection<PseudoCommand> getChildren() {
208 if (toDelete.size() == 1)
209 return null;
210 else {
211 List<PseudoCommand> children = new ArrayList<>(toDelete.size());
212 for (final OsmPrimitive osm : toDelete) {
213 children.add(new PseudoCommand() {
214
215 @Override public String getDescriptionText() {
216 return tr("Deleted ''{0}''", osm.getDisplayName(DefaultNameFormatter.getInstance()));
217 }
218
219 @Override public Icon getDescriptionIcon() {
220 return ImageProvider.get(osm.getDisplayType());
221 }
222
223 @Override public Collection<? extends OsmPrimitive> getParticipatingPrimitives() {
224 return Collections.singleton(osm);
225 }
226
227 });
228 }
229 return children;
230
231 }
232 }
233
234 @Override public Collection<? extends OsmPrimitive> getParticipatingPrimitives() {
235 return toDelete;
236 }
237
238 /**
239 * Delete the primitives and everything they reference.
240 *
241 * If a node is deleted, the node and all ways and relations the node is part of are deleted as well.
242 * If a way is deleted, all relations the way is member of are also deleted.
243 * If a way is deleted, only the way and no nodes are deleted.
244 *
245 * @param layer the {@link OsmDataLayer} in whose context primitives are deleted. Must not be null.
246 * @param selection The list of all object to be deleted.
247 * @param silent Set to true if the user should not be bugged with additional dialogs
248 * @return command A command to perform the deletions, or null of there is nothing to delete.
249 * @throws IllegalArgumentException if layer is null
250 */
251 public static Command deleteWithReferences(OsmDataLayer layer, Collection<? extends OsmPrimitive> selection, boolean silent) {
252 CheckParameterUtil.ensureParameterNotNull(layer, "layer");
253 if (selection == null || selection.isEmpty()) return null;
254 Set<OsmPrimitive> parents = OsmPrimitive.getReferrer(selection);
255 parents.addAll(selection);
256
257 if (parents.isEmpty())
258 return null;
259 if (!silent && !checkAndConfirmOutlyingDelete(parents, null))
260 return null;
261 return new DeleteCommand(layer, parents);
262 }
263
264 /**
265 * Delete the primitives and everything they reference.
266 *
267 * If a node is deleted, the node and all ways and relations the node is part of are deleted as well.
268 * If a way is deleted, all relations the way is member of are also deleted.
269 * If a way is deleted, only the way and no nodes are deleted.
270 *
271 * @param layer the {@link OsmDataLayer} in whose context primitives are deleted. Must not be null.
272 * @param selection The list of all object to be deleted.
273 * @return command A command to perform the deletions, or null of there is nothing to delete.
274 * @throws IllegalArgumentException if layer is null
275 */
276 public static Command deleteWithReferences(OsmDataLayer layer, Collection<? extends OsmPrimitive> selection) {
277 return deleteWithReferences(layer, selection, false);
278 }
279
280 /**
281 * Try to delete all given primitives.
282 *
283 * If a node is used by a way, it's removed from that way. If a node or a way is used by a
284 * relation, inform the user and do not delete.
285 *
286 * If this would cause ways with less than 2 nodes to be created, delete these ways instead. If
287 * they are part of a relation, inform the user and do not delete.
288 *
289 * @param layer the {@link OsmDataLayer} in whose context the primitives are deleted
290 * @param selection the objects to delete.
291 * @return command a command to perform the deletions, or null if there is nothing to delete.
292 */
293 public static Command delete(OsmDataLayer layer, Collection<? extends OsmPrimitive> selection) {
294 return delete(layer, selection, true, false);
295 }
296
297 /**
298 * Replies the collection of nodes referred to by primitives in <code>primitivesToDelete</code> which
299 * can be deleted too. A node can be deleted if
300 * <ul>
301 * <li>it is untagged (see {@link Node#isTagged()}</li>
302 * <li>it is not referred to by other non-deleted primitives outside of <code>primitivesToDelete</code></li>
303 * </ul>
304 * @param primitivesToDelete the primitives to delete
305 * @return the collection of nodes referred to by primitives in <code>primitivesToDelete</code> which
306 * can be deleted too
307 */
308 protected static Collection<Node> computeNodesToDelete(Collection<OsmPrimitive> primitivesToDelete) {
309 Collection<Node> nodesToDelete = new HashSet<>();
310 for (Way way : OsmPrimitive.getFilteredList(primitivesToDelete, Way.class)) {
311 for (Node n : way.getNodes()) {
312 if (n.isTagged()) {
313 continue;
314 }
315 Collection<OsmPrimitive> referringPrimitives = n.getReferrers();
316 referringPrimitives.removeAll(primitivesToDelete);
317 int count = 0;
318 for (OsmPrimitive p : referringPrimitives) {
319 if (!p.isDeleted()) {
320 count++;
321 }
322 }
323 if (count == 0) {
324 nodesToDelete.add(n);
325 }
326 }
327 }
328 return nodesToDelete;
329 }
330
331 /**
332 * Try to delete all given primitives.
333 *
334 * If a node is used by a way, it's removed from that way. If a node or a way is used by a
335 * relation, inform the user and do not delete.
336 *
337 * If this would cause ways with less than 2 nodes to be created, delete these ways instead. If
338 * they are part of a relation, inform the user and do not delete.
339 *
340 * @param layer the {@link OsmDataLayer} in whose context the primitives are deleted
341 * @param selection the objects to delete.
342 * @param alsoDeleteNodesInWay <code>true</code> if nodes should be deleted as well
343 * @return command a command to perform the deletions, or null if there is nothing to delete.
344 */
345 public static Command delete(OsmDataLayer layer, Collection<? extends OsmPrimitive> selection,
346 boolean alsoDeleteNodesInWay) {
347 return delete(layer, selection, alsoDeleteNodesInWay, false /* not silent */);
348 }
349
350 /**
351 * Try to delete all given primitives.
352 *
353 * If a node is used by a way, it's removed from that way. If a node or a way is used by a
354 * relation, inform the user and do not delete.
355 *
356 * If this would cause ways with less than 2 nodes to be created, delete these ways instead. If
357 * they are part of a relation, inform the user and do not delete.
358 *
359 * @param layer the {@link OsmDataLayer} in whose context the primitives are deleted
360 * @param selection the objects to delete.
361 * @param alsoDeleteNodesInWay <code>true</code> if nodes should be deleted as well
362 * @param silent set to true if the user should not be bugged with additional questions
363 * @return command a command to perform the deletions, or null if there is nothing to delete.
364 */
365 public static Command delete(OsmDataLayer layer, Collection<? extends OsmPrimitive> selection,
366 boolean alsoDeleteNodesInWay, boolean silent) {
367 if (selection == null || selection.isEmpty())
368 return null;
369
370 Set<OsmPrimitive> primitivesToDelete = new HashSet<OsmPrimitive>(selection);
371
372 Collection<Relation> relationsToDelete = Utils.filteredCollection(primitivesToDelete, Relation.class);
373 if (!relationsToDelete.isEmpty() && !silent && !confirmRelationDeletion(relationsToDelete))
374 return null;
375
376 if (alsoDeleteNodesInWay) {
377 // delete untagged nodes only referenced by primitives in primitivesToDelete, too
378 Collection<Node> nodesToDelete = computeNodesToDelete(primitivesToDelete);
379 primitivesToDelete.addAll(nodesToDelete);
380 }
381
382 if (!silent && !checkAndConfirmOutlyingDelete(
383 primitivesToDelete, Utils.filteredCollection(primitivesToDelete, Way.class)))
384 return null;
385
386 Collection<Way> waysToBeChanged = new HashSet<>(OsmPrimitive.getFilteredSet(OsmPrimitive.getReferrer(primitivesToDelete), Way.class));
387
388 Collection<Command> cmds = new LinkedList<>();
389 for (Way w : waysToBeChanged) {
390 Way wnew = new Way(w);
391 wnew.removeNodes(OsmPrimitive.getFilteredSet(primitivesToDelete, Node.class));
392 if (wnew.getNodesCount() < 2) {
393 primitivesToDelete.add(w);
394 } else {
395 cmds.add(new ChangeNodesCommand(w, wnew.getNodes()));
396 }
397 }
398
399 // get a confirmation that the objects to delete can be removed from their parent relations
400 //
401 if (!silent) {
402 Set<RelationToChildReference> references = RelationToChildReference.getRelationToChildReferences(primitivesToDelete);
403 Iterator<RelationToChildReference> it = references.iterator();
404 while (it.hasNext()) {
405 RelationToChildReference ref = it.next();
406 if (ref.getParent().isDeleted()) {
407 it.remove();
408 }
409 }
410 if (!references.isEmpty()) {
411 DeleteFromRelationConfirmationDialog dialog = DeleteFromRelationConfirmationDialog.getInstance();
412 dialog.getModel().populate(references);
413 dialog.setVisible(true);
414 if (dialog.isCanceled())
415 return null;
416 }
417 }
418
419 // remove the objects from their parent relations
420 //
421 for (Relation cur : OsmPrimitive.getFilteredSet(OsmPrimitive.getReferrer(primitivesToDelete), Relation.class)) {
422 Relation rel = new Relation(cur);
423 rel.removeMembersFor(primitivesToDelete);
424 cmds.add(new ChangeCommand(cur, rel));
425 }
426
427 // build the delete command
428 //
429 if (!primitivesToDelete.isEmpty()) {
430 cmds.add(new DeleteCommand(layer, primitivesToDelete));
431 }
432
433 return new SequenceCommand(tr("Delete"), cmds);
434 }
435
436 public static Command deleteWaySegment(OsmDataLayer layer, WaySegment ws) {
437 if (ws.way.getNodesCount() < 3)
438 return delete(layer, Collections.singleton(ws.way), false);
439
440 if (ws.way.isClosed()) {
441 // If the way is circular (first and last nodes are the same), the way shouldn't be splitted
442
443 List<Node> n = new ArrayList<>();
444
445 n.addAll(ws.way.getNodes().subList(ws.lowerIndex + 1, ws.way.getNodesCount() - 1));
446 n.addAll(ws.way.getNodes().subList(0, ws.lowerIndex + 1));
447
448 Way wnew = new Way(ws.way);
449 wnew.setNodes(n);
450
451 return new ChangeCommand(ws.way, wnew);
452 }
453
454 List<Node> n1 = new ArrayList<>();
455 List<Node> n2 = new ArrayList<>();
456
457 n1.addAll(ws.way.getNodes().subList(0, ws.lowerIndex + 1));
458 n2.addAll(ws.way.getNodes().subList(ws.lowerIndex + 1, ws.way.getNodesCount()));
459
460 Way wnew = new Way(ws.way);
461
462 if (n1.size() < 2) {
463 wnew.setNodes(n2);
464 return new ChangeCommand(ws.way, wnew);
465 } else if (n2.size() < 2) {
466 wnew.setNodes(n1);
467 return new ChangeCommand(ws.way, wnew);
468 } else {
469 List<List<Node>> chunks = new ArrayList<>(2);
470 chunks.add(n1);
471 chunks.add(n2);
472 return SplitWayAction.splitWay(layer, ws.way, chunks, Collections.<OsmPrimitive>emptyList()).getCommand();
473 }
474 }
475
476 public static boolean checkAndConfirmOutlyingDelete(Collection<? extends OsmPrimitive> primitives,
477 Collection<? extends OsmPrimitive> ignore) {
478 return Command.checkAndConfirmOutlyingOperation("delete",
479 tr("Delete confirmation"),
480 tr("You are about to delete nodes outside of the area you have downloaded."
481 + "<br>"
482 + "This can cause problems because other objects (that you do not see) might use them."
483 + "<br>"
484 + "Do you really want to delete?"),
485 tr("You are about to delete incomplete objects."
486 + "<br>"
487 + "This will cause problems because you don''t see the real object."
488 + "<br>" + "Do you really want to delete?"),
489 primitives, ignore);
490 }
491
492 private static boolean confirmRelationDeletion(Collection<Relation> relations) {
493 JPanel msg = new JPanel(new GridBagLayout());
494 msg.add(new JMultilineLabel("<html>" + trn(
495 "You are about to delete {0} relation: {1}"
496 + "<br/>"
497 + "This step is rarely necessary and cannot be undone easily after being uploaded to the server."
498 + "<br/>"
499 + "Do you really want to delete?",
500 "You are about to delete {0} relations: {1}"
501 + "<br/>"
502 + "This step is rarely necessary and cannot be undone easily after being uploaded to the server."
503 + "<br/>"
504 + "Do you really want to delete?",
505 relations.size(), relations.size(), DefaultNameFormatter.getInstance().formatAsHtmlUnorderedList(relations))
506 + "</html>"));
507 return ConditionalOptionPaneUtil.showConfirmationDialog(
508 "delete_relations",
509 Main.parent,
510 msg,
511 tr("Delete relation?"),
512 JOptionPane.YES_NO_OPTION,
513 JOptionPane.QUESTION_MESSAGE,
514 JOptionPane.YES_OPTION);
515 }
516
517 @Override
518 public int hashCode() {
519 final int prime = 31;
520 int result = super.hashCode();
521 result = prime * result + ((clonedPrimitives == null) ? 0 : clonedPrimitives.hashCode());
522 result = prime * result + ((toDelete == null) ? 0 : toDelete.hashCode());
523 return result;
524 }
525
526 @Override
527 public boolean equals(Object obj) {
528 if (this == obj)
529 return true;
530 if (!super.equals(obj))
531 return false;
532 if (getClass() != obj.getClass())
533 return false;
534 DeleteCommand other = (DeleteCommand) obj;
535 if (clonedPrimitives == null) {
536 if (other.clonedPrimitives != null)
537 return false;
538 } else if (!clonedPrimitives.equals(other.clonedPrimitives))
539 return false;
540 if (toDelete == null) {
541 if (other.toDelete != null)
542 return false;
543 } else if (!toDelete.equals(other.toDelete))
544 return false;
545 return true;
546 }
547}
Note: See TracBrowser for help on using the repository browser.