Dynamic Data is a portable class library which brings the power of Reactive Extensions (Rx) to collections.
February 2019 marked the release of ReactiveUI 9 — the cross-platform framework for building GUI applications on the Microsoft .NET platform. ReactiveUI is a tool for tight integration of reactive extensions with the MVVM design pattern. You could familiarize yourself with the framework via a series of videos or the welcome page of the documentation. The ReactiveUI 9 update includes numerous fixes and improvements, but probably the most crucial and interesting one is integration with the DynamicData framework, allowing you to work with dynamic collections in Reactive fashion. Let’s find out what we can use DynamicData for and how this powerful reactive framework works under the hood!
Introduction
Let’s first determine the use cases for DynamicData and find out what we don’t like about the default tools for working with dynamic datasets from the System.Collections.ObjectModel
namespace.
The MVVM template, as we know, assumes the division of responsibility between the model layer, the presentation layer and the app presentation model, also known as the view model. The model layer is represented by domain entities and services and doesn’t know anything about the view model layer. The model encapsulates the entire complex logic of the app, while the view model delegates operations to the model, providing the access to information on the current state of the app through observable properties, commands and collections, to the view. The default tool for working with dynamic properties is the INotifyPropertyChanged
interface, for working with user actions — ICommand
, and for working with collections — the INotifyCollectionChanged
interface, as well as such implementations, as ObservableCollection<T>
and ReadOnlyObservableCollection<T>
.
Implementations of the INotifyPropertyChanged
and the ICommand
interfaces are usually up to the developer and the used MVVM framework, but using the default ObservableCollection<T>
imposes a number of limitations! For example, we can’t mutate the collection from a background thread without Dispatcher.Invoke
or a similar call, and that would’ve been super useful for synchronizing data arrays with the server via a background operation. Worth noting, that when using the clean MVVM architecture, the model layer shouldn’t know anything about the used GUI framework, and should be compatible with the model layer in MVC or MVP terminology. That’s why those numerous Dispatcher.Invoke
calls in domain services violate the responsibility segregation principle.
Of course, we could declare an event in a domain service, and transmit a chunk with changed items as event arguments, then subscribe to the event, encapsulate the Dispatcher.Invoke
call behind an interface, so our app won’t depend on any GUI framework, call that interface from the view model and modify ObservableCollection<T>
accordingly, but there’s a much more elegant way of dealing with such issues without the need to reinvent the wheel. What are we waiting for, then?
Reactive Extensions. Managing Observable Data Streams
To fully understand the abstractions introduced by DynamicData, and how to work with changing reactive data sets, let's recall what reactive programming is and how to use it in the context of the Microsoft .NET platform and the MVVM design pattern. The way of organizing the interaction between program components can be interactive or reactive. With the interactive approach, the consumer receives data from the producer synchronously (pull-based, T, IEnumerable), and with the reactive approach, the producer pushes data to the consumer asynchronously (push-based, Task, IObservable).
Reactive programming is programming with asynchronous data streams, and reactive extensions is the reactive programming implementation, based on the IObservable
and IObserver
interfaces from the System namespace, defining a series of LINQ-like operations on the IObservable
interface, known as LINQ over Observable. Reactive extensions support .NET Standard and run wherever Microsoft .NET runs.
ReactiveUI offers application developers to take the advantage of using the reactive implementations for the ICommand
and INotifyPropertyChanged
interfaces, by providing such tools as ReactiveCommand<TIn, TOut>
and WhenAnyValue
. WhenAnyValue
allows you to convert a property of a class that implements the INotifyPropertyChanged
interface to an event stream of type IObservable<T>
, this simplifies the implementation of dependent properties.
ReactiveCommand<TIn, TOut>
allows you to work with a command as with IObservable<TOut>
, which is published whenever a command completes execution. Also, any command has a ThrownExceptions
property of type IObservable<Exception>
.
Until this time, we’ve been working with IObservable<T>
, as with an event that publishes a new value of type T
whenever the state of the object being observed changes. Simply put, IObservable<T>
is a stream of events, a collection of type T
stretched in time.
Of course, we could work with collections just as easily and naturally — whenever a collection changes, we could publish a new collection with changed elements. In this case, the published value would be of type IEnumerable<T>
or more specialized, and the observable stream itself would be of type IObservable<IEnumerable<T>>
. But, as a critically-minded reader correctly notes, this is fraught with critical performance issues, especially if there are not a dozen elements in our collection, but a hundred, or even a few thousand!
Introduction to DynamicData
DynamicData is a library that allows you to use the power of reactive extensions when working with collections. Rx is extremely powerful, but out of the box provides nothing to assist with managing collections, and DynamicData fixes this. In most applications, there is a need to dynamically update collections — usually, a collection is populated with items when the application starts, and then the collection is updated asynchronously, synchronizing information with a server or a database. Modern applications are quite complex, and it is often necessary to create projections of collections — filter, transform, or sort elements. DynamicData was designed to get rid of the incredibly complex code that we would need to manage dynamically changing data sets. The tool is actively developing and refining, and now more than 60 operators are supported for working with collections.
DynamicData is not an alternative implementation of ObservableCollection<T>
. DynamicData’s architecture is based primarily on domain-driven programming concepts. The ideology of use is based on the fact that you control a certain data source, a collection to which the code responsible for synchronizing and mutating data has access. Next, you apply a series of operators to the data source, with the help of those operators you can declaratively transform the data without the need to manually create and modify other collections. In fact, with DynamicData you separate read and write operations, and you can only read in a reactive way — therefore, the inherited collections will always stay synchronized with the source.
Instead of the classic IObservable<T>
, DynamicData defines operations on IObservable<IChangeSet<T>>
and IObservable<IChangeSet<TValue, TKey>>
, where IChangeSet
is a chunk containing information about the change of the collection, including the type of change and the affected elements. This approach can significantly improve performance of the code for working with collections, written in a reactive manner. You can always transform IObservable<IChangeSet<T>>
into IObservable<IEnumerable<T>>
, if it becomes necessary to access all elements of a collection at once. If this sounds difficult — don’t worry, the code examples below will make everything clear!
DynamicData in Action
Let's look at a number of examples in order to better understand how DynamicData works, how it differs from System.Reactive
and what tasks ordinary developers of GUI software it can help solve. Let's start with a comprehensive example published on GitHub. In this example, the data source is SourceCache<Trade, long>
containing a collection of transactions. The goal is to show only active transactions, transform models into proxy objects, sort the collection.
In the example above, when changing SourceCache
that is the source of the data, ReadOnlyObservableCollection
also changes accordingly. At the same time, when removing items from the collection, the Dispose
method will get called, the collection will always be updated only from the GUI thread and will remain sorted and filtered. Cool, now we have no Dispatcher.Invoke
calls and the code is simple and readable!
Data Sources. SourceList and SourceCache
DynamicData provides two specialized collections that can be used as a mutable data source. These collections are SourceList<TObject>
and SourceCache<TObject, TKey>
. It is recommended to use SourceCache
whenever TObject
has a unique key, otherwise use SourceList
. These objects provide the familiar for .NET developers API for collection management — such methods, as Add
, Remove
, Insert
. To convert data sources to IObservable<IChangeSet<T>>
or to IObservable<IChangeSet<T, TKey>>
, use the .Connect()
operator. For example, if you have a service that periodically updates a collection of items in the background, you can easily synchronize the list of these items with the GUI, without the Dispatcher.Invoke
and similar boilerplate code:
With the help of the powerful DynamicData operators, we can transform IObservable<IChangeSet<Trade>>
into ReadOnlyObservableCollection
declared in our view model.
In addition to Transform
, Filter
and Sort
operators, DynamicData supports grouping, logical operations, collection flattening, the use of aggregate functions, the elimination of identical elements, element counting, and even virtualization at the view model level. You can read more about all the operators in the project's README on GitHub.
Aside from SourceList
and SourceCache
, the DynamicData library includes a single-threaded mutable collection implementation — ObservableCollectionExtended
. To synchronize two collections in your view model, declare one of them as ObservableCollectionExtended
, and the other as ReadOnlyObservableCollection
, and then use the ToObservableChangeSet
operator, that does almost the same thing as Connect, but is intended to work with ObservableCollection
.
DynamicData also supports change tracking in classes that implement the INotifyPropertyChanged
interface. For example, if you would like to receive notifications each time a property changes, use the AutoRefresh
operator and pass in the required property selector. AutoRefresh
and other DynamicData operators can allow you to effortlessly validate a giant number of forms and nested forms displayed on the screen!
You can create complex UIs using DynamicData functionality, and it’s especially relevant for systems displaying a large amount of data in real time, like instant messaging apps and monitoring systems.
Conclusion
ReactiveX is a powerful tool allowing you to work with event streams and with the UI, write portable and maintainable code and solve complex tasks in a simple and elegant way. ReactiveUI allows .NET developers to integrate reactive extensions into their projects using the MVVM architecture with reactive implementations of INotifyPropertyChanged
and ICommand
, while DynamicData takes care of collection management by implementing INotifyCollectionChanged
, expanding the capabilities of reactive extensions with the focus on performance.
Ref Link1
Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site. For more info:- Xamarin App Development
ReplyDelete