#data-structures #sync #listener #api-bindings #valuetree #undoredo

aloe-valuetree

A comprehensive data tree management system with synchronization, undo/redo capabilities, and listener-driven event handling. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 2, 2025

#52 in #listener

36 downloads per month
Used in 155 crates (20 directly)

GPL-3.0 license

1.5MB
10K SLoC

Aloe ValueTree

Aloe ValueTree is a sophisticated and extendable crate offering an infrastructure for crafting intricate data trees in Rust. It empowers developers to manage hierarchical data with undo/redo capability while maintaining data integrity through listener notifications.

Features

  • Tree Data Structure: Aloe ValueTree is designed for handling free-form data structures that resemble XML trees. Each ValueTree node can have any number of properties and child nodes.
  • Undo/Redo Capabilities: Modifications to properties and structures within the tree can be tracked and reverted using a connected UndoManager.
  • Reference Counting: Trees are lightweight references to shared data, thus ensuring efficient memory usage.
  • Listeners: Enable event-driven programming by allowing listeners to be attached to instances of Value and ValueTree nodes.
  • Remote Synchronization: Utilize ValueTreeSynchroniser for synchronizing ValueTrees across different platforms by transmitting encoded changes.

Application

The Aloe ValueTree implementation provides a plethora of traits and structs ensuring fine-grained control over data changes:

  • ValueTreeSynchroniser: Facilitates state synchronization by encoding changes in a ValueTree for remote sharing.
  • ValueListener & ValueTreeListener: Interfaces for listening to and responding to changes within the Value and ValueTree structures.
  • CachedValue and ValueWithDefault: Provide wrapped properties and safeguard against missing tree properties by supplying default values if needed.

Usage

To effectively harness the power of Aloe ValueTree, you'll implement traits such as ValueListener and ValueTreeListener to hook into changes within your data structures, and utilize ValueTreeSynchroniser to propagate changes over a network architecture.

impl MyListener {
    fn on_tree_change(&self, tree: &mut ValueTree, property: &Identifier) {
        // Handle the change
    }
}

License

Distributed under the GPL-3.0 License.

Repository

Hosted on GitHub.


This README.md is generated by an AI model and may not be 100% accurate but should be quite informative.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–27MB
~365K SLoC