1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2015,2016 Felipe F. Tonello <eu@felipetonello.com>
* Copyright (C) 2016 ROLI Ltd.
*
*/
#ifndef LIBMIDI_H
#define LIBMIDI_H
#include <stdint.h>
#include <stdbool.h>
#include <alsa/asoundlib.h>
#define MIDI_UUID "03B80E5A-EDE8-4B33-A751-6CE34EC4C700"
#define MIDI_IO_UUID "7772E5DB-3868-4112-A1A9-F2669D106BF3"
#define MIDI_MAX_TIMESTAMP 8191
#define MIDI_MSG_MAX_SIZE 12
#define MIDI_SYSEX_MAX_SIZE (4 * 1024)
struct midi_buffer {
uint8_t *data;
size_t len;
};
/* MIDI I/O Write parser */
struct midi_write_parser {
int64_t rtime; /* last writer's real time */
snd_seq_event_type_t rstatus; /* running status event type */
struct midi_buffer midi_stream; /* MIDI I/O byte stream */
size_t stream_size; /* what is the maximum size of the midi_stream array */
snd_midi_event_t *midi_ev; /* midi<->seq event */
};
int midi_write_init(struct midi_write_parser *parser, size_t buffer_size);
static inline void midi_write_free(struct midi_write_parser *parser)
{
free(parser->midi_stream.data);
snd_midi_event_free(parser->midi_ev);
}
static inline void midi_write_reset(struct midi_write_parser *parser)
{
parser->rstatus = SND_SEQ_EVENT_NONE;
parser->midi_stream.len = 0;
}
static inline bool midi_write_has_data(const struct midi_write_parser *parser)
{
return parser->midi_stream.len > 0;
}
static inline const uint8_t * midi_write_data(const struct midi_write_parser *parser)
{
return parser->midi_stream.data;
}
static inline size_t midi_write_data_size(const struct midi_write_parser *parser)
{
return parser->midi_stream.len;
}
typedef void (*midi_read_ev_cb)(const struct midi_write_parser *parser, void *);
/* It creates BLE-MIDI raw packets from the a sequencer event. If the packet
is full, then it calls write_cb and resets its internal state as many times
as necessary.
*/
void midi_read_ev(struct midi_write_parser *parser, const snd_seq_event_t *ev,
midi_read_ev_cb write_cb, void *user_data);
/* MIDI I/O Read parser */
struct midi_read_parser {
uint8_t rstatus; /* running status byte */
int64_t rtime; /* last reader's real time */
int16_t timestamp; /* last MIDI-BLE timestamp */
int8_t timestamp_low; /* MIDI-BLE timestampLow from the current packet */
int8_t timestamp_high; /* MIDI-BLE timestampHigh from the current packet */
struct midi_buffer sysex_stream; /* SysEx stream */
snd_midi_event_t *midi_ev; /* midi<->seq event */
};
int midi_read_init(struct midi_read_parser *parser);
static inline void midi_read_free(struct midi_read_parser *parser)
{
free(parser->sysex_stream.data);
snd_midi_event_free(parser->midi_ev);
}
static inline void midi_read_reset(struct midi_read_parser *parser)
{
parser->rstatus = 0;
parser->timestamp_low = 0;
parser->timestamp_high = 0;
}
/* Parses raw BLE-MIDI messages and populates a sequencer event representing the
current MIDI message. It returns how much raw data was processed.
*/
size_t midi_read_raw(struct midi_read_parser *parser, const uint8_t *data,
size_t size, snd_seq_event_t *ev /* OUT */);
#endif /* LIBMIDI_H */
|