-
Owners:
@ywwg@acolombier
-
Implementation Status:
Partially implemented -
Related Issues and PRs:
TL;DR: Allow controllers to set and get data objects of arbitrary type for sharing between the controller code and the engine. Think: ControlObjects of arbitrary type that controllers can declare.
There are multiple scenarios where controllers need to share and access data outside the container of the controller mapping file. This includes situations where some controllers expose more than one USB device that need to communicate with each other, or when a DJ connects multiple instances of the same hardware to Mixxx.
ControlObjects are the normal way we share data, but:
- Controllers can't declare control objects.
- Putting controller-specific data inside Mixxx itself would be bad and lead to bloat.
- Controllers need to share more types of data than just double values.
Goals and use cases for the solution as proposed in How:
- Namespacing: Allow different controllers to declare same-named data objects without risk of collisions
- Support controllers with screens that require communication from HID to separate Bulk USB devices (Traktor S4 MK3).
- Build a data model foundation for users with multiple instances of the same controller (CDJ-2000).
- Ensure that the API could support the features we may wish to add in the future, such as global namespace, without breaking controller mappings that use the API defined here.
Users of modern controllers or multiple controllers will appreciate this work. Specifically, this work is required to fully support the Traktor S4 MK3, which has separate devices for the controller and the two screens (two total USB devices).
- We do not intend to fully support the multi-device scenario yet, that needs further design to associate specific devices with specific controller configurations.
- We do not intend to immediately support "global" objects accessible across namespaces, like "universal shift".
"Universal Shift" refers to the idea that a shift button pressed on one controller can be detected by any and all other controllers. This may be a useful use-case but creates a lot of difficulties, so for now Universal Shift is out of scope for this first implementation.
We will create a central object inside Mixxx that contains a triple-keyed map:
- Namespace (string)
- Grouping (string)
- Key (string)
- Value (QVariant)
- Key (string)
- Grouping (string)
Namespace is a string that is unique to each controller mapping
definition. All connected controllers of the same model will share the same
namespace. e.g. Two CDJ-2000's will both have a namespace like CDJ_2000. No
two hardware mappings will have the same namespace, and we can enforce that with
a precommit check.
Grouping is a logical value defined by the controller mapping definition. It
can be like a Mixxx-style group ("[Channel1]") but it can be any arbitrary
string. Many controllers will want to define something like deck1 to refer to
a device that can itself be assigned to multiple mixxx channels. This document
does not use the word group, instead preferring grouping, to try to
differentiate Mixxx-style "groups" from this concept, which is a distinct
abstraction.
The controller mapping decides how these groups behave and Mixxx does no enforcement of them. To reiterate: even if a "grouping" "looks like" a Mixxx group, it is not.
Key is a logical value defined by the controller mapping definition. It could
refer to a button, light, knob, or abstract name.
The controller mapping decides how these groups behave and Mixxx does no enforcement of them. Similar to "grouping", keys bear no relation to equivalent Mixxx keys.
The shift button on the left side of a Traktor S4MK3 would be stored this way:
pseudocode:
sharedData["S4MK3"]["deck1"]["shift"] = true
The shared data API should be roughly the same across Controllers, QML, and C++. The primary difference is that C++ will have access to the namespace value at all times, whereas controllers and QML will have that value elided.
The controller javascript has access to the shared data object through three functions:
excuse the pseudo-js:
engine.GetSharedData(grouping: string, key: string): Error | any
namespace is set automatically by the engine code, so controllers can't get
that wrong.
This function returns error if the value is not found.
engine.SetSharedData(grouping: string, key: string, value: any): void
namespace is set automatically by the engine code, so controllers can't get
that wrong.
Calling "set" triggers "updated" signals to all subscribers across the engine, QML (e.g. controller screen code), and controllers.
Controllers do not get notified about updates they initiated themselves, to prevent circular signal loops.
Controllers get notified about data updates via a standard callback, which they can optionally implement:
function SharedDataUpdated(grouping: string, key: string, value: any){}
Controllers get update calls for each updated item separately, and can handle them however they wish. There is no effect (no logging or error) If a controller does not implement this function.
The following are possible future extensions to this proposal that are currently out of scope and will not be implemented in the first version, but we want to make sure to leave room in case we add them in the future:
There is a possibility controller authors may want access to signals sent from other controllers, for instance a "universal shift" button. For this purpose we may choose to allow controller to "subscribe" to updates from other namespaces, or all namespaces, in a read-only fashion. In this scenario, controllers would not have the ability to write updates to namespaces outside their own. This may be brittle because controllers would need to know about all possible valid namespaces, so this feature would need more care to make it maintainable.
Another possibility is that we may want a "global" namespaces that all controllers can read and write to. This would be another way to support a "universal shift" button. This would have to be carefully managed to prevent collisions between controller configs. One way to do this would be to "bless" specific groupings and keys for the global namespace, and controller authors would have to add their requested global grouping/key to Mixxx.
The original implementation did not have groupings and keys and instead had a single namespaced data blob that controllers had to manage themselves. This approach requires a lot more work on the part of the controller author to merge and manage the data object.
- Build on the existing PR to implement the desired API
- Rewrite the Traktor S4 MK3 mapping to support the new API.