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
|
/*
Copyright (C) 2010 Devin Anderson
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <memory>
#include "JackFFADOMidiOutputPort.h"
#include "JackMidiUtil.h"
#include "JackError.h"
using Jack::JackFFADOMidiOutputPort;
JackFFADOMidiOutputPort::JackFFADOMidiOutputPort(size_t non_rt_size,
size_t max_non_rt_messages,
size_t max_rt_messages)
{
event = 0;
read_queue = new JackMidiBufferReadQueue();
std::unique_ptr<JackMidiBufferReadQueue> read_queue_ptr(read_queue);
send_queue = new JackFFADOMidiSendQueue();
std::unique_ptr<JackFFADOMidiSendQueue> send_queue_ptr(send_queue);
raw_queue = new JackMidiRawOutputWriteQueue(send_queue, non_rt_size,
max_non_rt_messages,
max_rt_messages);
send_queue_ptr.release();
read_queue_ptr.release();
}
JackFFADOMidiOutputPort::~JackFFADOMidiOutputPort()
{
delete raw_queue;
delete read_queue;
delete send_queue;
}
void
JackFFADOMidiOutputPort::Process(JackMidiBuffer *port_buffer,
uint32_t *output_buffer,
jack_nframes_t frames)
{
read_queue->ResetMidiBuffer(port_buffer);
send_queue->ResetOutputBuffer(output_buffer, frames);
jack_nframes_t boundary_frame = GetLastFrame() + frames;
if (! event) {
event = read_queue->DequeueEvent();
}
for (; event; event = read_queue->DequeueEvent()) {
switch (raw_queue->EnqueueEvent(event)) {
case JackMidiWriteQueue::BUFFER_FULL:
// Processing events early might free up some space in the raw
// output queue.
raw_queue->Process(boundary_frame);
switch (raw_queue->EnqueueEvent(event)) {
case JackMidiWriteQueue::BUFFER_TOO_SMALL:
// This shouldn't really happen. It indicates a bug if it
// does.
jack_error("JackFFADOMidiOutputPort::Process - **BUG** "
"JackMidiRawOutputWriteQueue::EnqueueEvent "
"returned `BUFFER_FULL`, and then returned "
"`BUFFER_TOO_SMALL` after a `Process()` call.");
// Fallthrough on purpose
case JackMidiWriteQueue::OK:
continue;
default:
return;
}
case JackMidiWriteQueue::BUFFER_TOO_SMALL:
jack_error("JackFFADOMidiOutputPort::Process - The write queue "
"couldn't enqueue a %d-byte event. Dropping event.",
event->size);
// Fallthrough on purpose
case JackMidiWriteQueue::OK:
continue;
default:
// This is here to stop compilers from warning us about not
// handling enumeration values.
;
}
break;
}
raw_queue->Process(boundary_frame);
}
|