fix behaviour of AsyncMIDIPort so that large amounts of data are handled well.
[ardour.git] / libs / ardour / async_midi_port.cc
1 /*
2     Copyright (C) 1998 Paul Barton-Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <iostream>
22 #include <vector>
23
24 #include <glibmm/timer.h>
25
26 #include "pbd/error.h"
27 #include "pbd/stacktrace.h"
28
29 #include "midi++/types.h"
30
31 #include "ardour/async_midi_port.h"
32 #include "ardour/audioengine.h"
33 #include "ardour/midi_buffer.h"
34
35 using namespace MIDI;
36 using namespace ARDOUR;
37 using namespace std;
38 using namespace PBD;
39
40 pthread_t AsyncMIDIPort::_process_thread;
41
42 #define port_engine AudioEngine::instance()->port_engine()
43
44 AsyncMIDIPort::AsyncMIDIPort (string const & name, PortFlags flags)
45         : MidiPort (name, flags)
46         , MIDI::Port (name, MIDI::Port::Flags (0))
47         , _currently_in_cycle (false)
48         , _last_write_timestamp (0)
49         , have_timer (false)
50         , output_fifo (2048)
51         , input_fifo (1024)
52         , _xthread (true)
53 {
54 }
55
56 AsyncMIDIPort::~AsyncMIDIPort ()
57 {
58 }
59
60 void
61 AsyncMIDIPort::set_timer (boost::function<MIDI::framecnt_t (void)>& f)
62 {
63         timer = f;
64         have_timer = true;
65 }
66
67 void
68 AsyncMIDIPort::flush_output_fifo (MIDI::pframes_t nframes)
69 {
70         RingBuffer< Evoral::Event<double> >::rw_vector vec = { { 0, 0 }, { 0, 0 } };
71         size_t written = 0;
72
73         output_fifo.get_read_vector (&vec);
74
75         MidiBuffer& mb (get_midi_buffer (nframes));
76
77         if (vec.len[0]) {
78                 Evoral::Event<double>* evp = vec.buf[0];
79
80                 assert (evp->size());
81                 assert (evp->buffer());
82
83                 for (size_t n = 0; n < vec.len[0]; ++n, ++evp) {
84                         if (mb.push_back (evp->time(), evp->size(), evp->buffer())) {
85                                 written++;
86                         }
87                 }
88         }
89
90         if (vec.len[1]) {
91                 Evoral::Event<double>* evp = vec.buf[1];
92
93                 assert (evp->size());
94                 assert (evp->buffer());
95
96                 for (size_t n = 0; n < vec.len[1]; ++n, ++evp) {
97                         if (mb.push_back (evp->time(), evp->size(), evp->buffer())) {
98                                 written++;
99                         }
100                 }
101         }
102
103         /* do this "atomically" after we're done pushing events into the
104          * MidiBuffer
105          */
106
107         output_fifo.increment_read_idx (written);
108 }
109
110 void
111 AsyncMIDIPort::cycle_start (MIDI::pframes_t nframes)
112 {
113         _currently_in_cycle = true;
114         MidiPort::cycle_start (nframes);
115
116         /* dump anything waiting in the output FIFO at the start of the port
117          * buffer
118          */
119
120         if (ARDOUR::Port::sends_output()) {
121                 flush_output_fifo (nframes);
122         }
123
124         /* copy incoming data from the port buffer into the input FIFO
125            and if necessary wakeup the reader
126         */
127
128         if (ARDOUR::Port::receives_input()) {
129                 MidiBuffer& mb (get_midi_buffer (nframes));
130                 framecnt_t when;
131
132                 if (have_timer) {
133                         when = timer ();
134                 } else {
135                         when = AudioEngine::instance()->sample_time_at_cycle_start();
136                 }
137
138                 for (MidiBuffer::iterator b = mb.begin(); b != mb.end(); ++b) {
139                         if (!have_timer) {
140                                 when += (*b).time();
141                         }
142                         input_fifo.write (when, (Evoral::EventType) 0, (*b).size(), (*b).buffer());
143                 }
144
145                 if (!mb.empty()) {
146                         _xthread.wakeup ();
147                 }
148         }
149 }
150
151 void
152 AsyncMIDIPort::cycle_end (MIDI::pframes_t nframes)
153 {
154         if (ARDOUR::Port::sends_output()) {
155                 /* move any additional data from output FIFO into the port
156                    buffer.
157                 */
158                 flush_output_fifo (nframes);
159         }
160
161         MidiPort::cycle_end (nframes);
162
163         _currently_in_cycle = false;
164 }
165
166 /** wait for the output FIFO to be emptied by successive process() callbacks.
167  *
168  * Cannot be called from a processing thread.
169  */
170 void
171 AsyncMIDIPort::drain (int check_interval_usecs)
172 {
173         RingBuffer< Evoral::Event<double> >::rw_vector vec = { { 0, 0 }, { 0, 0} };
174
175         if (!AudioEngine::instance()->running() || AudioEngine::instance()->session() == 0) {
176                 /* no more process calls - it will never drain */
177                 return;
178         }
179
180
181         if (is_process_thread()) {
182                 error << "Process thread called MIDI::AsyncMIDIPort::drain() - this cannot work" << endmsg;
183                 return;
184         }
185
186         while (1) {
187                 output_fifo.get_write_vector (&vec);
188                 if (vec.len[0] + vec.len[1] >= output_fifo.bufsize() - 1) {
189                         break;
190                 }
191                 Glib::usleep (check_interval_usecs);
192         }
193 }
194
195 int
196 AsyncMIDIPort::write (const MIDI::byte * msg, size_t msglen, MIDI::timestamp_t timestamp)
197 {
198         int ret = 0;
199
200         if (!ARDOUR::Port::sends_output()) {
201                 return ret;
202         }
203
204         if (!is_process_thread()) {
205
206                 /* this is the best estimate of "when" this MIDI data is being
207                  * delivered
208                  */
209
210                 _parser->set_timestamp (AudioEngine::instance()->sample_time() + timestamp);
211                 for (size_t n = 0; n < msglen; ++n) {
212                         _parser->scanner (msg[n]);
213                 }
214
215                 Glib::Threads::Mutex::Lock lm (output_fifo_lock);
216                 RingBuffer< Evoral::Event<double> >::rw_vector vec = { { 0, 0 }, { 0, 0} };
217
218                 output_fifo.get_write_vector (&vec);
219
220                 if (vec.len[0] + vec.len[1] < 1) {
221                         error << "no space in FIFO for non-process thread MIDI write" << endmsg;
222                         return 0;
223                 }
224
225                 if (vec.len[0]) {
226                         /* force each event inside the ringbuffer to own its
227                            own buffer, but let that be null and of zero size
228                            initially. When ::set() is called, the buffer will
229                            be allocated to hold a *copy* of the data we're
230                            storing, and then that buffer will be used over and
231                            over, occasionally being upwardly resized as
232                            necessary.
233                         */
234                         if (!vec.buf[0]->owns_buffer()) {
235                                 vec.buf[0]->set_buffer (0, 0, true);
236                         }
237                         vec.buf[0]->set (msg, msglen, timestamp);
238                 } else {
239                         /* see comment in previous branch of if() statement */
240                         if (!vec.buf[1]->owns_buffer()) {
241                                 vec.buf[1]->set_buffer (0, 0, true);
242                         }
243                         vec.buf[1]->set (msg, msglen, timestamp);
244                 }
245
246                 output_fifo.increment_write_idx (1);
247
248                 ret = msglen;
249
250         } else {
251
252                 _parser->set_timestamp (AudioEngine::instance()->sample_time_at_cycle_start() + timestamp);
253                 for (size_t n = 0; n < msglen; ++n) {
254                         _parser->scanner (msg[n]);
255                 }
256
257                 if (timestamp >= _cycle_nframes) {
258                         std::cerr << "attempting to write MIDI event of " << msglen << " MIDI::bytes at time "
259                                   << timestamp << " of " << _cycle_nframes
260                                   << " (this will not work - needs a code fix)"
261                                   << std::endl;
262                 }
263
264                 /* This is the process thread, which makes checking
265                  * _currently_in_cycle atomic and safe, since it is only
266                  * set from cycle_start() and cycle_end(), also called
267                  * only from the process thread.
268                  */
269
270                 if (_currently_in_cycle) {
271
272                         MidiBuffer& mb (get_midi_buffer (_cycle_nframes));
273
274                         if (timestamp == 0) {
275                                 timestamp = _last_write_timestamp;
276                         }
277
278                         if (mb.push_back (timestamp, msglen, msg)) {
279                                 ret = msglen;
280                                 _last_write_timestamp = timestamp;
281
282                         } else {
283                                 cerr << "AsyncMIDIPort (" << ARDOUR::Port::name() << "): write of " << msglen << " @ " << timestamp << " failed\n" << endl;
284                                 PBD::stacktrace (cerr, 20);
285                                 ret = 0;
286                         }
287                 } else {
288                         cerr << "write to JACK midi port failed: not currently in a process cycle." << endl;
289                         PBD::stacktrace (cerr, 20);
290                 }
291         }
292
293         return ret;
294 }
295
296
297 int
298 AsyncMIDIPort::read (MIDI::byte *, size_t)
299 {
300         if (!ARDOUR::Port::receives_input()) {
301                 return 0;
302         }
303
304         timestamp_t time;
305         Evoral::EventType type;
306         uint32_t size;
307         vector<MIDI::byte> buffer(input_fifo.capacity());
308
309         while (input_fifo.read (&time, &type, &size, &buffer[0])) {
310                 _parser->set_timestamp (time);
311                 for (uint32_t i = 0; i < size; ++i) {
312                         _parser->scanner (buffer[i]);
313                 }
314         }
315
316         return 0;
317 }
318
319 void
320 AsyncMIDIPort::parse (MIDI::framecnt_t)
321 {
322         MIDI::byte buf[1];
323
324         /* see ::read() to realize why buf is not used */
325         read (buf, sizeof (buf));
326 }
327
328 void
329 AsyncMIDIPort::set_process_thread (pthread_t thr)
330 {
331         _process_thread = thr;
332 }
333
334 bool
335 AsyncMIDIPort::is_process_thread()
336 {
337         return pthread_equal (pthread_self(), _process_thread);
338 }
339