2015-03-05 00:22:33 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2015-03-06 22:15:02 -05:00
|
|
|
#include <sstream>
|
2015-03-05 00:22:33 -05:00
|
|
|
#include <CoreAudio/HostTime.h>
|
|
|
|
|
2015-03-09 14:01:24 -04:00
|
|
|
#include "coremidi_io.h"
|
2015-03-09 18:28:18 -04:00
|
|
|
#include "coreaudio_backend.h"
|
2015-03-09 14:01:24 -04:00
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
2015-03-05 00:22:33 -05:00
|
|
|
static void notifyProc (const MIDINotification *message, void *refCon) {
|
|
|
|
CoreMidiIo *self = static_cast<CoreMidiIo*>(refCon);
|
|
|
|
self->notify_proc(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void midiInputCallback(const MIDIPacketList *list, void *procRef, void *srcRef) {
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo *self = static_cast<CoreMidiIo*> (procRef);
|
|
|
|
if (!self || !self->enabled()) {
|
|
|
|
// skip while freewheeling
|
|
|
|
return;
|
|
|
|
}
|
2015-03-05 00:22:33 -05:00
|
|
|
RingBuffer<uint8_t> * rb = static_cast<RingBuffer < uint8_t > *> (srcRef);
|
|
|
|
if (!rb) return;
|
2015-03-09 18:28:18 -04:00
|
|
|
MIDIPacket const *p = &list->packet[0];
|
|
|
|
for (UInt32 i = 0; i < list->numPackets; ++i) {
|
|
|
|
uint32_t len = ((p->length + 3)&~3) + sizeof(MIDITimeStamp) + sizeof(UInt16);
|
|
|
|
if (rb->write_space() < sizeof(uint32_t) + len) {
|
2015-03-05 00:22:33 -05:00
|
|
|
fprintf(stderr, "CoreMIDI: dropped MIDI event\n");
|
|
|
|
continue;
|
|
|
|
}
|
2015-03-09 18:28:18 -04:00
|
|
|
rb->write ((uint8_t*)&len, sizeof(uint32_t));
|
|
|
|
rb->write ((uint8_t*)p, len);
|
|
|
|
p = MIDIPacketNext (p);
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-08 13:11:38 -04:00
|
|
|
static std::string getPropertyString (MIDIObjectRef object, CFStringRef key)
|
2015-03-06 22:15:02 -05:00
|
|
|
{
|
2015-03-09 14:01:24 -04:00
|
|
|
CFStringRef name = NULL;
|
2015-03-07 20:51:09 -05:00
|
|
|
std::string rv = "";
|
2015-03-08 13:11:38 -04:00
|
|
|
if (noErr == MIDIObjectGetStringProperty(object, key, &name)) {
|
2015-03-07 20:51:09 -05:00
|
|
|
const CFIndex size = CFStringGetMaximumSizeForEncoding(CFStringGetLength(name), kCFStringEncodingUTF8);
|
|
|
|
char *tmp = (char*) malloc(size);
|
|
|
|
if (CFStringGetCString(name, tmp, size, kCFStringEncodingUTF8)) {
|
|
|
|
rv = tmp;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
CFRelease(name);
|
2015-03-06 22:15:02 -05:00
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2015-03-05 00:22:33 -05:00
|
|
|
|
2015-03-08 13:11:38 -04:00
|
|
|
static std::string getDisplayName (MIDIObjectRef object) {
|
|
|
|
return getPropertyString(object, kMIDIPropertyDisplayName);
|
|
|
|
}
|
|
|
|
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::CoreMidiIo()
|
2015-03-05 21:21:47 -05:00
|
|
|
: _midi_client (0)
|
|
|
|
, _input_endpoints (0)
|
|
|
|
, _output_endpoints (0)
|
|
|
|
, _input_ports (0)
|
|
|
|
, _output_ports (0)
|
|
|
|
, _input_queue (0)
|
2015-03-05 00:22:33 -05:00
|
|
|
, _rb (0)
|
|
|
|
, _n_midi_in (0)
|
|
|
|
, _n_midi_out (0)
|
|
|
|
, _time_at_cycle_start (0)
|
|
|
|
, _active (false)
|
2015-03-06 22:15:02 -05:00
|
|
|
, _enabled (true)
|
|
|
|
, _run (false)
|
2015-03-05 00:22:33 -05:00
|
|
|
, _changed_callback (0)
|
|
|
|
, _changed_arg (0)
|
|
|
|
{
|
2015-03-06 22:15:02 -05:00
|
|
|
pthread_mutex_init (&_discovery_lock, 0);
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::~CoreMidiIo()
|
2015-03-05 00:22:33 -05:00
|
|
|
{
|
2015-03-06 22:15:02 -05:00
|
|
|
pthread_mutex_lock (&_discovery_lock);
|
2015-03-05 00:22:33 -05:00
|
|
|
cleanup();
|
2015-03-06 22:15:02 -05:00
|
|
|
if (_midi_client) {
|
|
|
|
MIDIClientDispose(_midi_client);
|
|
|
|
_midi_client = 0;
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock (&_discovery_lock);
|
|
|
|
pthread_mutex_destroy (&_discovery_lock);
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::cleanup()
|
2015-03-05 00:22:33 -05:00
|
|
|
{
|
|
|
|
_active = false;
|
|
|
|
for (uint32_t i = 0 ; i < _n_midi_in ; ++i) {
|
2015-03-05 21:21:47 -05:00
|
|
|
MIDIPortDispose(_input_ports[i]);
|
|
|
|
_input_queue[i].clear();
|
2015-03-05 00:22:33 -05:00
|
|
|
delete _rb[i];
|
|
|
|
}
|
|
|
|
for (uint32_t i = 0 ; i < _n_midi_out ; ++i) {
|
2015-03-05 21:21:47 -05:00
|
|
|
MIDIPortDispose(_output_ports[i]);
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
|
2015-03-05 21:21:47 -05:00
|
|
|
free(_input_ports); _input_ports = 0;
|
|
|
|
free(_input_endpoints); _input_endpoints = 0;
|
|
|
|
free(_input_queue); _input_queue = 0;
|
|
|
|
free(_output_ports); _output_ports = 0;
|
|
|
|
free(_output_endpoints); _output_endpoints = 0;
|
2015-03-05 00:22:33 -05:00
|
|
|
free(_rb); _rb = 0;
|
|
|
|
|
|
|
|
_n_midi_in = 0;
|
|
|
|
_n_midi_out = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::start_cycle()
|
2015-03-05 00:22:33 -05:00
|
|
|
{
|
|
|
|
_time_at_cycle_start = AudioGetCurrentHostTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::notify_proc(const MIDINotification *message)
|
2015-03-05 00:22:33 -05:00
|
|
|
{
|
|
|
|
switch(message->messageID) {
|
|
|
|
case kMIDIMsgSetupChanged:
|
2015-03-05 21:21:47 -05:00
|
|
|
/* this one catches all of the added/removed/changed below */
|
|
|
|
//printf("kMIDIMsgSetupChanged\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
discover();
|
|
|
|
break;
|
|
|
|
case kMIDIMsgObjectAdded:
|
|
|
|
{
|
2015-03-05 21:21:47 -05:00
|
|
|
//const MIDIObjectAddRemoveNotification *n = (const MIDIObjectAddRemoveNotification*) message;
|
|
|
|
//printf("kMIDIMsgObjectAdded\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kMIDIMsgObjectRemoved:
|
|
|
|
{
|
2015-03-05 21:21:47 -05:00
|
|
|
//const MIDIObjectAddRemoveNotification *n = (const MIDIObjectAddRemoveNotification*) message;
|
|
|
|
//printf("kMIDIMsgObjectRemoved\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kMIDIMsgPropertyChanged:
|
|
|
|
{
|
2015-03-05 21:21:47 -05:00
|
|
|
//const MIDIObjectPropertyChangeNotification *n = (const MIDIObjectPropertyChangeNotification*) message;
|
|
|
|
//printf("kMIDIMsgObjectRemoved\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kMIDIMsgThruConnectionsChanged:
|
2015-03-05 21:21:47 -05:00
|
|
|
//printf("kMIDIMsgThruConnectionsChanged\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
break;
|
|
|
|
case kMIDIMsgSerialPortOwnerChanged:
|
2015-03-05 21:21:47 -05:00
|
|
|
//printf("kMIDIMsgSerialPortOwnerChanged\n");
|
2015-03-05 00:22:33 -05:00
|
|
|
break;
|
|
|
|
case kMIDIMsgIOError:
|
2015-03-05 21:21:47 -05:00
|
|
|
fprintf(stderr, "kMIDIMsgIOError\n");
|
|
|
|
discover();
|
2015-03-05 00:22:33 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
CoreMidiIo::recv_event (uint32_t port, double cycle_time_us, uint64_t &time, uint8_t *d, size_t &s)
|
|
|
|
{
|
|
|
|
if (!_active || _time_at_cycle_start == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
assert(port < _n_midi_in);
|
|
|
|
|
2015-03-09 18:28:18 -04:00
|
|
|
const size_t minsize = 1 + sizeof(uint32_t) + sizeof(MIDITimeStamp) + sizeof(UInt16);
|
|
|
|
|
|
|
|
while (_rb[port]->read_space() > minsize) {
|
2015-03-05 00:22:33 -05:00
|
|
|
MIDIPacket packet;
|
2015-03-09 18:28:18 -04:00
|
|
|
size_t rv;
|
|
|
|
uint32_t s = 0;
|
|
|
|
rv = _rb[port]->read((uint8_t*)&s, sizeof(uint32_t));
|
|
|
|
assert(rv == sizeof(uint32_t));
|
|
|
|
rv = _rb[port]->read((uint8_t*)&packet, s);
|
|
|
|
assert(rv == s);
|
2015-03-06 22:15:02 -05:00
|
|
|
_input_queue[port].push_back(boost::shared_ptr<CoreMIDIPacket>(new _CoreMIDIPacket (&packet)));
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
UInt64 start = _time_at_cycle_start;
|
|
|
|
UInt64 end = AudioConvertNanosToHostTime(AudioConvertHostTimeToNanos(_time_at_cycle_start) + cycle_time_us * 1e3);
|
|
|
|
|
2015-03-05 21:21:47 -05:00
|
|
|
for (CoreMIDIQueue::iterator it = _input_queue[port].begin (); it != _input_queue[port].end (); ) {
|
2015-03-05 00:22:33 -05:00
|
|
|
if ((*it)->timeStamp < end) {
|
|
|
|
if ((*it)->timeStamp < start) {
|
|
|
|
uint64_t dt = AudioConvertHostTimeToNanos(start - (*it)->timeStamp);
|
2015-03-09 19:09:01 -04:00
|
|
|
if (dt > 1e7) { // 10ms,
|
|
|
|
#ifndef NDEBUG
|
|
|
|
printf("Dropped Stale Midi Event. dt:%.2fms\n", dt * 1e-6);
|
|
|
|
#endif
|
2015-03-05 21:21:47 -05:00
|
|
|
it = _input_queue[port].erase(it);
|
2015-03-05 00:22:33 -05:00
|
|
|
continue;
|
2015-03-09 19:09:01 -04:00
|
|
|
} else {
|
|
|
|
#if 0
|
|
|
|
printf("Stale Midi Event. dt:%.2fms\n", dt * 1e-6);
|
|
|
|
#endif
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
time = 0;
|
|
|
|
} else {
|
|
|
|
time = AudioConvertHostTimeToNanos((*it)->timeStamp - start);
|
|
|
|
}
|
|
|
|
s = std::min(s, (size_t) (*it)->length);
|
|
|
|
if (s > 0) {
|
|
|
|
memcpy(d, (*it)->data, s);
|
|
|
|
}
|
2015-03-05 21:21:47 -05:00
|
|
|
_input_queue[port].erase(it);
|
2015-03-05 00:22:33 -05:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
++it;
|
|
|
|
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-09 18:28:18 -04:00
|
|
|
int
|
|
|
|
CoreMidiIo::send_events (uint32_t port, double timescale, const void *b)
|
|
|
|
{
|
|
|
|
if (!_active || _time_at_cycle_start == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(port < _n_midi_out);
|
|
|
|
const UInt64 ts = AudioConvertHostTimeToNanos(_time_at_cycle_start);
|
|
|
|
|
|
|
|
const CoreMidiBuffer *src = static_cast<CoreMidiBuffer const *>(b);
|
|
|
|
|
|
|
|
int32_t bytes[8192]; // int for alignment
|
|
|
|
MIDIPacketList *mpl = (MIDIPacketList*)bytes;
|
|
|
|
MIDIPacket *cur = MIDIPacketListInit(mpl);
|
|
|
|
|
|
|
|
for (CoreMidiBuffer::const_iterator mit = src->begin (); mit != src->end (); ++mit) {
|
|
|
|
assert((*mit)->size() < 256);
|
|
|
|
cur = MIDIPacketListAdd(mpl, sizeof(bytes), cur,
|
|
|
|
AudioConvertNanosToHostTime(ts + (*mit)->timestamp() / timescale),
|
|
|
|
(*mit)->size(), (*mit)->data());
|
|
|
|
if (!cur) {
|
|
|
|
#ifndef DEBUG
|
|
|
|
printf("CoreMidi: Packet list overflow, dropped events\n");
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mpl->numPackets > 0) {
|
|
|
|
MIDISend(_output_ports[port], _output_endpoints[port], mpl);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-05 00:22:33 -05:00
|
|
|
int
|
|
|
|
CoreMidiIo::send_event (uint32_t port, double reltime_us, const uint8_t *d, const size_t s)
|
|
|
|
{
|
|
|
|
if (!_active || _time_at_cycle_start == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(port < _n_midi_out);
|
|
|
|
UInt64 ts = AudioConvertHostTimeToNanos(_time_at_cycle_start);
|
|
|
|
ts += reltime_us * 1e3;
|
|
|
|
|
|
|
|
// TODO use a single packet list.. queue all events first..
|
|
|
|
MIDIPacketList pl;
|
|
|
|
|
|
|
|
pl.numPackets = 1;
|
|
|
|
MIDIPacket *mp = &(pl.packet[0]);
|
|
|
|
|
|
|
|
mp->timeStamp = AudioConvertNanosToHostTime(ts);
|
|
|
|
mp->length = s;
|
|
|
|
assert(s < 256);
|
|
|
|
memcpy(mp->data, d, s);
|
|
|
|
|
2015-03-05 21:21:47 -05:00
|
|
|
MIDISend(_output_ports[port], _output_endpoints[port], &pl);
|
2015-03-05 00:22:33 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-08 13:11:38 -04:00
|
|
|
|
2015-03-06 22:15:02 -05:00
|
|
|
std::string
|
2015-03-08 13:11:38 -04:00
|
|
|
CoreMidiIo::port_id (uint32_t port, bool input)
|
2015-03-06 22:15:02 -05:00
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
if (input) {
|
2015-03-08 13:11:38 -04:00
|
|
|
ss << "system:midi_capture_";
|
|
|
|
SInt32 id;
|
|
|
|
if (noErr == MIDIObjectGetIntegerProperty(_input_endpoints[port], kMIDIPropertyUniqueID, &id)) {
|
2015-03-11 13:18:37 -04:00
|
|
|
ss << (unsigned int)id;
|
2015-03-08 13:11:38 -04:00
|
|
|
} else {
|
|
|
|
ss << port;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ss << "system:midi_playback_";
|
|
|
|
SInt32 id;
|
|
|
|
if (noErr == MIDIObjectGetIntegerProperty(_output_endpoints[port], kMIDIPropertyUniqueID, &id)) {
|
2015-03-11 13:18:37 -04:00
|
|
|
ss << (unsigned int)id;
|
2015-03-08 13:11:38 -04:00
|
|
|
} else {
|
|
|
|
ss << port;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
CoreMidiIo::port_name (uint32_t port, bool input)
|
|
|
|
{
|
|
|
|
if (input) {
|
2015-03-06 22:15:02 -05:00
|
|
|
if (port < _n_midi_in) {
|
2015-03-08 13:11:38 -04:00
|
|
|
return getDisplayName(_input_endpoints[port]);
|
2015-03-06 22:15:02 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (port < _n_midi_out) {
|
2015-03-08 13:11:38 -04:00
|
|
|
return getDisplayName(_output_endpoints[port]);
|
2015-03-06 22:15:02 -05:00
|
|
|
}
|
|
|
|
}
|
2015-03-08 13:11:38 -04:00
|
|
|
return "";
|
2015-03-06 22:15:02 -05:00
|
|
|
}
|
|
|
|
|
2015-03-05 00:22:33 -05:00
|
|
|
void
|
2015-03-06 22:15:02 -05:00
|
|
|
CoreMidiIo::start () {
|
|
|
|
_run = true;
|
|
|
|
if (!_midi_client) {
|
|
|
|
OSStatus err;
|
|
|
|
err = MIDIClientCreate(CFSTR("Ardour"), ¬ifyProc, this, &_midi_client);
|
|
|
|
if (noErr != err) {
|
|
|
|
fprintf(stderr, "Creating Midi Client failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
discover();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CoreMidiIo::stop ()
|
2015-03-05 00:22:33 -05:00
|
|
|
{
|
2015-03-06 22:15:02 -05:00
|
|
|
_run = false;
|
|
|
|
pthread_mutex_lock (&_discovery_lock);
|
2015-03-05 00:22:33 -05:00
|
|
|
cleanup();
|
2015-03-06 22:15:02 -05:00
|
|
|
pthread_mutex_unlock (&_discovery_lock);
|
|
|
|
#if 0
|
|
|
|
if (_midi_client) {
|
|
|
|
MIDIClientDispose(_midi_client);
|
|
|
|
_midi_client = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CoreMidiIo::discover()
|
|
|
|
{
|
|
|
|
if (!_run || !_midi_client) { return; }
|
|
|
|
|
|
|
|
if (pthread_mutex_trylock (&_discovery_lock)) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-05 00:22:33 -05:00
|
|
|
|
2015-03-06 22:15:02 -05:00
|
|
|
cleanup();
|
2015-03-05 00:22:33 -05:00
|
|
|
|
|
|
|
ItemCount srcCount = MIDIGetNumberOfSources();
|
|
|
|
ItemCount dstCount = MIDIGetNumberOfDestinations();
|
|
|
|
|
|
|
|
if (srcCount > 0) {
|
2015-03-05 21:21:47 -05:00
|
|
|
_input_ports = (MIDIPortRef *) malloc (srcCount * sizeof(MIDIPortRef));
|
|
|
|
_input_endpoints = (MIDIEndpointRef*) malloc (srcCount * sizeof(MIDIEndpointRef));
|
|
|
|
_input_queue = (CoreMIDIQueue*) calloc (srcCount, sizeof(CoreMIDIQueue));
|
2015-03-05 00:22:33 -05:00
|
|
|
_rb = (RingBuffer<uint8_t> **) malloc (srcCount * sizeof(RingBuffer<uint8_t>*));
|
|
|
|
}
|
|
|
|
if (dstCount > 0) {
|
2015-03-05 21:21:47 -05:00
|
|
|
_output_ports = (MIDIPortRef *) malloc (dstCount * sizeof(MIDIPortRef));
|
|
|
|
_output_endpoints = (MIDIEndpointRef*) malloc (dstCount * sizeof(MIDIEndpointRef));
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (ItemCount i = 0; i < srcCount; i++) {
|
|
|
|
OSStatus err;
|
|
|
|
MIDIEndpointRef src = MIDIGetSource(i);
|
2015-03-06 22:15:02 -05:00
|
|
|
if (!src) continue;
|
|
|
|
#ifndef NDEBUG
|
|
|
|
printf("MIDI IN DEVICE: %s\n", getDisplayName(src).c_str());
|
|
|
|
#endif
|
|
|
|
|
2015-03-05 00:22:33 -05:00
|
|
|
CFStringRef port_name;
|
|
|
|
port_name = CFStringCreateWithFormat(NULL, NULL, CFSTR("midi_capture_%lu"), i);
|
|
|
|
|
2015-03-05 21:21:47 -05:00
|
|
|
err = MIDIInputPortCreate (_midi_client, port_name, midiInputCallback, this, &_input_ports[_n_midi_in]);
|
2015-03-05 00:22:33 -05:00
|
|
|
if (noErr != err) {
|
|
|
|
fprintf(stderr, "Cannot create Midi Output\n");
|
|
|
|
continue;
|
|
|
|
}
|
2015-03-11 07:23:05 -04:00
|
|
|
_rb[_n_midi_in] = new RingBuffer<uint8_t>(32768);
|
2015-03-05 21:21:47 -05:00
|
|
|
_input_queue[_n_midi_in] = CoreMIDIQueue();
|
|
|
|
MIDIPortConnectSource(_input_ports[_n_midi_in], src, (void*) _rb[_n_midi_in]);
|
2015-03-05 00:22:33 -05:00
|
|
|
CFRelease(port_name);
|
2015-03-05 21:21:47 -05:00
|
|
|
_input_endpoints[_n_midi_in] = src;
|
2015-03-05 00:22:33 -05:00
|
|
|
++_n_midi_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ItemCount i = 0; i < dstCount; i++) {
|
|
|
|
MIDIEndpointRef dst = MIDIGetDestination(i);
|
|
|
|
CFStringRef port_name;
|
|
|
|
port_name = CFStringCreateWithFormat(NULL, NULL, CFSTR("midi_playback_%lu"), i);
|
|
|
|
|
|
|
|
OSStatus err;
|
2015-03-05 21:21:47 -05:00
|
|
|
err = MIDIOutputPortCreate (_midi_client, port_name, &_output_ports[_n_midi_out]);
|
2015-03-05 00:22:33 -05:00
|
|
|
if (noErr != err) {
|
|
|
|
fprintf(stderr, "Cannot create Midi Output\n");
|
|
|
|
continue;
|
|
|
|
}
|
2015-03-06 22:15:02 -05:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
printf("MIDI OUT DEVICE: %s\n", getDisplayName(dst).c_str());
|
|
|
|
#endif
|
|
|
|
|
2015-03-05 21:21:47 -05:00
|
|
|
MIDIPortConnectSource(_output_ports[_n_midi_out], dst, NULL);
|
2015-03-05 00:22:33 -05:00
|
|
|
CFRelease(port_name);
|
2015-03-05 21:21:47 -05:00
|
|
|
_output_endpoints[_n_midi_out] = dst;
|
2015-03-05 00:22:33 -05:00
|
|
|
++_n_midi_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_changed_callback) {
|
|
|
|
_changed_callback(_changed_arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
_active = true;
|
2015-03-06 22:15:02 -05:00
|
|
|
pthread_mutex_unlock (&_discovery_lock);
|
2015-03-05 00:22:33 -05:00
|
|
|
}
|