// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.data; import java.util.Collection; import java.util.Iterator; import java.util.LinkedList; import java.util.Optional; import org.openstreetmap.josm.Main; import org.openstreetmap.josm.command.Command; import org.openstreetmap.josm.data.osm.DataSet; import org.openstreetmap.josm.data.osm.OsmPrimitive; import org.openstreetmap.josm.gui.layer.Layer; import org.openstreetmap.josm.gui.layer.LayerManager.LayerAddEvent; import org.openstreetmap.josm.gui.layer.LayerManager.LayerChangeListener; import org.openstreetmap.josm.gui.layer.LayerManager.LayerOrderChangeEvent; import org.openstreetmap.josm.gui.layer.LayerManager.LayerRemoveEvent; import org.openstreetmap.josm.gui.layer.OsmDataLayer; import org.openstreetmap.josm.gui.layer.OsmDataLayer.CommandQueueListener; import org.openstreetmap.josm.tools.CheckParameterUtil; /** * This is the global undo/redo handler for all {@link OsmDataLayer}s. * <p> * If you want to change a data layer, you can use {@link #add(Command)} to execute a command on it and make that command undoable. */ public class UndoRedoHandler implements LayerChangeListener { /** * All commands that were made on the dataset. Don't write from outside! */ public final LinkedList<Command> commands = new LinkedList<>(); /** * The stack for redoing commands */ public final LinkedList<Command> redoCommands = new LinkedList<>(); private final LinkedList<CommandQueueListener> listenerCommands = new LinkedList<>(); /** * Constructs a new {@code UndoRedoHandler}. */ public UndoRedoHandler() { Main.getLayerManager().addLayerChangeListener(this); } /** * Executes the command and add it to the intern command queue. * @param c The command to execute. Must not be {@code null}. */ public void addNoRedraw(final Command c) { CheckParameterUtil.ensureParameterNotNull(c, "c"); c.executeCommand(); commands.add(c); // Limit the number of commands in the undo list. // Currently you have to undo the commands one by one. If // this changes, a higher default value may be reasonable. if (commands.size() > Main.pref.getInteger("undo.max", 1000)) { commands.removeFirst(); } redoCommands.clear(); } /** * Fires a commands change event after adding a command. */ public void afterAdd() { fireCommandsChanged(); } /** * Executes the command and add it to the intern command queue. * @param c The command to execute. Must not be {@code null}. */ public synchronized void add(final Command c) { DataSet ds = Optional.ofNullable(c.getAffectedDataSet()).orElseGet(() -> Main.getLayerManager().getEditDataSet()); Collection<? extends OsmPrimitive> oldSelection = null; if (ds != null) { oldSelection = ds.getSelected(); } addNoRedraw(c); c.invalidateAffectedLayers(); afterAdd(); // the command may have changed the selection so tell the listeners about the current situation if (ds != null) { fireIfSelectionChanged(ds, oldSelection); } } /** * Undoes the last added command. */ public void undo() { undo(1); } /** * Undoes multiple commands. * @param num The number of commands to undo */ public synchronized void undo(int num) { if (commands.isEmpty()) return; DataSet ds = Main.getLayerManager().getEditDataSet(); Collection<? extends OsmPrimitive> oldSelection = null; if (ds != null) { oldSelection = ds.getSelected(); ds.beginUpdate(); } try { for (int i = 1; i <= num; ++i) { final Command c = commands.removeLast(); c.undoCommand(); c.invalidateAffectedLayers(); redoCommands.addFirst(c); if (commands.isEmpty()) { break; } } } finally { if (ds != null) { ds.endUpdate(); } } fireCommandsChanged(); if (ds != null) { fireIfSelectionChanged(ds, oldSelection); } } /** * Redoes the last undoed command. */ public void redo() { redo(1); } /** * Redoes multiple commands. * @param num The number of commands to redo */ public void redo(int num) { if (redoCommands.isEmpty()) return; DataSet ds = Main.getLayerManager().getEditDataSet(); Collection<? extends OsmPrimitive> oldSelection = ds.getSelected(); for (int i = 0; i < num; ++i) { final Command c = redoCommands.removeFirst(); c.executeCommand(); c.invalidateAffectedLayers(); commands.add(c); if (redoCommands.isEmpty()) { break; } } fireCommandsChanged(); fireIfSelectionChanged(ds, oldSelection); } private static void fireIfSelectionChanged(DataSet ds, Collection<? extends OsmPrimitive> oldSelection) { Collection<? extends OsmPrimitive> newSelection = ds.getSelected(); if (!oldSelection.equals(newSelection)) { ds.fireSelectionChanged(); } } /** * Fires a command change to all listeners. */ private void fireCommandsChanged() { for (final CommandQueueListener l : listenerCommands) { l.commandChanged(commands.size(), redoCommands.size()); } } /** * Resets the undo/redo list. */ public void clean() { redoCommands.clear(); commands.clear(); fireCommandsChanged(); } /** * Resets all commands that affect the given layer. * @param layer The layer that was affected. */ public void clean(Layer layer) { if (layer == null) return; boolean changed = false; for (Iterator<Command> it = commands.iterator(); it.hasNext();) { if (it.next().invalidBecauselayerRemoved(layer)) { it.remove(); changed = true; } } for (Iterator<Command> it = redoCommands.iterator(); it.hasNext();) { if (it.next().invalidBecauselayerRemoved(layer)) { it.remove(); changed = true; } } if (changed) { fireCommandsChanged(); } } @Override public void layerRemoving(LayerRemoveEvent e) { clean(e.getRemovedLayer()); } @Override public void layerAdded(LayerAddEvent e) { // Do nothing } @Override public void layerOrderChanged(LayerOrderChangeEvent e) { // Do nothing } /** * Removes a command queue listener. * @param l The command queue listener to remove */ public void removeCommandQueueListener(CommandQueueListener l) { listenerCommands.remove(l); } /** * Adds a command queue listener. * @param l The commands queue listener to add * @return {@code true} if the listener has been added, {@code false} otherwise */ public boolean addCommandQueueListener(CommandQueueListener l) { return listenerCommands.add(l); } }