Command History Library
Overview
This library provides a command history mechanism for managing and executing commands with undo and redo capabilities. It includes various modules and traits to facilitate the implementation of command patterns in Rust.
Features
- Simple Command History: A straightforward implementation of command history with undo and redo functionality.
- Concurrent Command History: A thread-safe version of command history using
ArcandMutex. - Shared Context: A utility for managing shared state across commands.
- Traits: Defines the necessary traits for commands and command histories.
Modules
concurrent_command_history
Provides a thread-safe implementation of command history.
shared_context
Defines a shared context structure that can be used across multiple commands.
simple_command_history
Implements a basic command history with undo and redo capabilities.
traits
Contains the traits required for commands and command histories:
commandcommand_historymutable_commandmutable_command_history
Usage
Add the following to your Cargo.toml to include the command_history library from crates.io:
[]
= "1.0.0"
Then, you can use the library in your project as follows:
use *;
// Your command implementation and usage here
Example
use *;
Testing
The library includes comprehensive tests for all modules. To run the tests, use:
License
This project is licensed under either of:
- MIT license
- Apache License, Version 2.0
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.