-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose system-level grouping of MIDIPorts #148
Comments
Any thoughts on the actual API details? |
First, it is important that the My initial thought was to have another We may still want to add a |
Exposing more information of the underlying hardware is always good, IMHO. However, I'm not a big fan of the ALSA way, where you need to traverse a tree from top to bottom for iterating all ports. It forces advanced functionality (working with the device tree) on all programmers. So, for me, adding a |
My primary concern with this is that it will not be supported consistently across all systems - notably Windows, of course - and what this might mean to patterns of development. I think it if is "add a parent device attribute to MIDIPort, which can explictly be null" or something like that, I can be okay, but sadly developers can't rely on this. |
There is probably a way to extract the info on Windows. See https://msdn.microsoft.com/en-us/library/windows/hardware/ff536382%28v=vs.85%29.aspx. Chrome does something with this structure to extract the USB vendor and product numbers. If there is a way to link back to a hardware node, then this functionality can exist on Windows as well. |
What I've seen on Windows, it depends on the driver what and if information is exposed as interface GUID etc. For example, virtual port drivers don't have a hardware interface. But also for me, it's OK to allow |
How about providing a pseudo device that holds devices that do not have device information? |
I like the idea of either a single pseudo device for all unknown devices, or perhaps a pseudo device per port. |
if providing parent functionality, it's important that a program can accurately find out the port parents, and where parent information is unavailable. I don't see a use case for pseudo devices, or how they improve the API other than avoiding For me, using a pseudo device means that you need to be able to tell that it's the or a pseudo device, i.e. |
I'm with Florian on this. I think it would be a mistake to concoct fake
|
This needs WG input on milestone. |
v1, attribute on MIDIPort. |
I think the next step is to define the structure of the attribute. Here is a first draft:
Many of the attributes that might be in The only other possible missing thing is the port number for the device. In both ALSA and CoreMIDI, the ports on a device are strictly ordered, because they typically have an ordering on the physical device. (IN 1, OUT 1, IN 2, OUT 2, etc.) I am not sure if we should somehow record this index into the |
FYI, now chrome has a new backend using Windows 10 API behind a flag, and it use CM_Get_DevNode_Property to obtain device information. It seems that we can extract device grouping by traversing the device tree. |
Both ALSA and CoreMIDI (Mac) have a 2-level organization of MIDI ports. The first level (called Entity in CoreMIDI and Client in ALSA) typically corresponds to an application or single hardware device. The second level (called Endpoint in Core MIDI and Port in ALSA) corresponds to actual MIDI ports.
Most USB MIDI devices have a single Entity (the device itself), but multiple Endpoints (the individual MIDI ports on a interface device, or the internal connections on a keyboard or synth). This allows software to reflect the grouping implicit in the hardware.
Web MIDI only exposes the second concept, as
MIDIPort
. It would be nice to have a way to express the first level concept in WebMIDI, so that software can say "Port X" on the "Y MIDI interface", and display appropriately.The text was updated successfully, but these errors were encountered: