CombineMIDI

0.3.0

Connect MIDI using async-await to SwiftUI (or UIKit)
mkj-is/CombineMIDI

What's New

Variable-length messages

2022-01-26T15:48:27Z

What's Changed

  • Allow for variable-length messages by @fcanas in #8
  • Messages as byte arrays by @mkj-is in #9

New Contributors

  • @fcanas made their first contribution in #8

Full Changelog: 0.2.0...0.3.0

CombineMIDI

Build

Swift package made for easy connection of MIDI controllers to SwiftUI (or UIKit) using Combine and async-await.

This package was created as a part of UIKonf 2020 talk Combine: Connect MIDI signals to SwiftUI. It's main goal is to read messages from all MIDI sources and to be able to present these values in the user interface.

For more guidance, demos and history see materials for the talk:

Installation

Add this package to your Xcode project or add following line to your Package.swift file:

.package(url: "https://github.com/mkj-is/CombineMIDI.git", from: "0.3.0")

Features

  • Supports macOS 10.15+ and iOS 13.0+.
  • Type-safe wrapper for MIDI messages (events).
  • Wrapper for the C-style MIDI client in CoreMIDI.
  • Combine Publisher for listening to MIDI messages.
  • MIDI AsyncStream for processing MIDI messages.

Usage

First you need to create a MIDI client, it should be sufficient to create only one client per app (you can optionally pass name of the client as the initializer parameter):

let client = MIDIClient(name: "My app MIDI client")

Async-await

The first thing you probably want to do is to filter the messages which are relevant to you and get the values.

let stream = client.stream
    .filter { $0.status == .controlChange }
    .compactMap(\.data2)

The you can process messages in a simple for-loop. The loop will be running indefinitely until the task enclosing it will be cancelled.

for await message in stream {
    ...
}

Combine

When using Combine, you create a publisher and it automatically connects to all sources and listens to all messages on subscribtion.

Do not forget to receive those events on the main thread when subscribing on the user interface. To prevent dispatching too soon the publisher is emitting on the thread used by CoreMIDI, so you can quickly filter all the messages.

cancellable = client
    .publisher()
    .filter { $0.status == .controlChange }
    .compactMap(\.data2)
    .receive(on: RunLoop.main)
    .sink { value in
        ...
    }

Next steps

This library is small on purpose and there is a large potential for improvement:

  • New MIDI controllers are not detected when the subscription was already made.
  • All MIDI sources are connected during the first subscription, there is currently no way to select a particular device.
  • Sending messages back to other destinations using the client is not possible.

Contributing

All contributions are welcome.

Project was created by Matěj Kašpar Jirásek.

Project is licensed under MIT license.

Description

  • Swift Tools 5.5.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Apr 11 2024 23:24:54 GMT-0900 (Hawaii-Aleutian Daylight Time)