UndoService
This is a simple undo/redo service based on the Memento pattern. It uses delegates to get and set state. You can use different services to track different parts of the application state. The main advantage of this is that you don’t have to store the whole of the application state on every change.
Features
- Multiple undo/redo stacks can be used concurrently, reducing memory imprint.
- Undo/Redo can be performed interchangeably on the state of the application whole or on specific parts.
- No requirement to write custom classes or methods as it uses generic stacks and delegate methods.
- Optional cap on the size of Undo stacks.
- Recorded states can be tagged. Tag values are present in the arguments of the StateSet event, which is raised on Undo or Redo.
Usage
myString = "my original string";
var undoService = new UndoService<string>(GetStringState, SetStringState, null);
myString = "Something different";
undoService.RecordState();
undoService.Undo(); //myString = "my original string"
The simplest approach is to use a single UndoService for application state. Alternatively you can use separate UndoServices for different sections in conjunction with an UndoServiceAggregate. This means that the whole of the application state does not need to be recorded on each change.
To create an UndoService, pass the delegate methods that are used to get and set the state. To use it, invoke RecordState() after making changes to the state. Note that the initial state is recorded automatically when the UndoService is initialized. Reset() will clear the undo and the redo stack. Use the service’s CanUndo and CanRedo properties to enable/disable Undo/Redo commands.
You can use the IsStateChanged flag to keep track of any unsaved changes to your application state (if applicable). The flag is set to true when RecordState() is invoked. ClearIsStateChangedFlag() and Reset() both clear it.
Single UndoService Example
// We will demonstrate change tracking on this string.
private string _statefulString;
// This is the method to get the state of the tracked object.
// (If you have an existing method, you can just put it in a wrapper to match the delegate signature.)
private void GetStringState(out string state)
{
state = _statefulString;
}
// Method to set the state.
private void SetStringState(string value)
{
_statefulString = value;
}
public void UndoRedoTest()
{
var undoServiceForString = new UndoService<string>(GetStringState, SetStringState, null);
_statefulString = "One";
undoServiceForString.RecordState();
_statefulString = "Two";
undoServiceForString.RecordState();
undoServiceForString.Undo();
Assert.IsTrue(_statefulString.Equals("One"));
undoServiceForString.Redo();
Assert.IsTrue(_statefulString.Equals("Two"));
}
GetState() and SetState() methods
GetState() and SetState() must use deep copies. This means that they must not create shared references between their arguments and the object being tracked. (An exception is immutable objects.) Otherwise changes to the tracked object can cause changes in its saved states as well.
If you have methods for saving and loading state in place then you are likely to be able to use these via wrappers.
Methods of performing deep copies are discussed in the following links:
- https://stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-of-an-object-in-net
- https://stackoverflow.com/questions/78536/deep-cloning-objects
For the GetState and SetState methods, here are two examples of what not to do, and one example that works. The full code for these examples is in the Test project.
GetState()
Broken GetState examples
public void BrokenGetState1(out MyClass state)
{
state = _objectBeingTracked; // BROKEN - Any changes to _objectBeingTracked will be applied to the saved state as well.
}
public void BrokenGetState2(out MyClass state)
{
state = new MyClass { Id = _objectBeingTracked.Id, MutableMember = _objectBeingTracked.MutableMember }; // BROKEN - Any changes to _objectBeingTracked.MutableMember will be applied to the saved state as well.
}
Working GetState example
public void WorkingGetState(out string state)
{
// Any method to perform a deep copy will work here. This one was chosen for brevity.
state = JsonConvert.SerializeObject(_objectBeingTracked, new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.Auto });
}
SetState()
Broken SetState Examples
public void BrokenSetState1(MyClass state)
{
_objectBeingTracked = state; // BROKEN - After an undo is performed, changes to _objectBeingTracked will be applied to the saved state as well.
}
public void BrokenSetState2(MyClass state)
{
_objectBeingTracked.Id = state.Id;
_objectBeingTracked.MutableMember = state.MutableMember; // BROKEN - After an undo is performed, changes to _objectBeingTracked.MutableMember will be applied to the saved state as well.
}
Working SetState Example
private void WorkingSetState(string state)
{
// Any method of deep copy will work here. This approach was chosen for brevity.
_objectBeingTracked = JsonConvert.DeserializeObject<MyClass>(state, new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.Auto });
}
The type parameter of the UndoService is the type used to record state, which can be different from the type of the object being tracked. In the examples above, WorkingGetState() and WorkingSetState() serialize and deserialize the state of the tracked object to a JSON string. Therefore UndoService
_undoService = new UndoService<string>(WorkingGetState,WorkingSetState);
To create an UndoServiceAggregate, pass it an IUndoService array. To use it, invoke RecordState() in the child UndoServices to record changes. Generally undo and redo would be done via the UndoServiceAggregate. However, you can also do so in the child UndoServices directly to undo the last changes to specific elements.
UndoServiceAggregate Example
// We will use an UndoService to track changes to this
private string _statefulString;
// We will use a second UndoService to track changes to this.
private int _statefulInt;
public void AggregateUndoServiceUndoRedoTest()
{
// Create the UndoServiceAggregate by passing an IUndoService array
var undoServiceForInt = new UndoService<int>(GetIntState, SetIntState, null);
var undoServiceForString = new UndoService<string>(GetStringState, SetStringState, null);
IUndoService[] subservices = { undoServiceForInt, undoServiceForString };
var serviceAggregate = new UndoServiceAggregate(subservices);
// Use the Undo services to track changes to their associated objects.
_statefulInt = 1;
undoServiceForInt.RecordState();
_statefulString = "One";
undoServiceForString.RecordState();
_statefulInt = 2;
undoServiceForInt.RecordState();
_statefulInt = 3;
undoServiceForInt.RecordState();
_statefulString = "Two";
undoServiceForString.RecordState();
// Use the Service Aggregate to undo/redo the most recent changes.
serviceAggregate.Undo();
Assert.IsTrue(_statefulString.Equals("One"));
Assert.IsTrue(_statefulInt == 3);
serviceAggregate.Undo();
Assert.IsTrue(_statefulString.Equals("One"));
Assert.IsTrue(_statefulInt == 2);
serviceAggregate.Undo();
Assert.IsTrue(_statefulString.Equals("One"));
Assert.IsTrue(_statefulInt == 1);
serviceAggregate.Redo();
Assert.IsTrue(_statefulString.Equals("One"));
Assert.IsTrue(_statefulInt == 2);
serviceAggregate.Redo();
Assert.IsTrue(_statefulString.Equals("One"));
Assert.IsTrue(_statefulInt == 3);
serviceAggregate.Redo();
Assert.IsTrue(_statefulString.Equals("Two"));
Assert.IsTrue(_statefulInt == 3);
}
// These are the methods to get/access state, used by the UndoServices above.
private void GetStringState(out string state)
{
state = _statefulString;
}
private void SetStringState(string value)
{
_statefulString = value;
}
private void GetIntState(out int state)
{
state = _statefulInt;
}
private void SetIntState(int value)
{
_statefulInt = value;
}
Refer to the unit test project in the source repository for examples of other features.
Checklist
If you run into problems, check the following:
- Make sure you invoke RecordState() after making changes, not before.
- Make sure you don’t invoke RecordState() in the delegate method that sets the state. Otherwise it will be invoked during a Redo() operation and extra states will be added incorrectly.
- If you are loading a state and need to reset the undoservice, invoke Reset() after the new state has been set.
- Make sure that your GetState() and SetState() methods perform deep copies.
If you run into problems that aren’t resolved by the above, please raise an issue or send an email.
Public Interfaces
- IStateTracker is used to record changes to state. It is implemented by UndoService.
- IUndoRedo is used to execute Undo and Redo operations. It is implemented by UndoService and UndoServiceAggregate.
- IUndoService is used to both record state and perform undo/redo. It is implemented by UndoService.
Links
- Home
- Source Repository
- Nuget Package
- Exd Pic - A free Windows app for making interactive pictures that uses UndoService.
Copyright 2020 Peter Dongan. Licence: MIT