second (and hopefully) final part of changes to respond to header format changes...
[ArdourMidi.git] / libs / ardour / midi_ring_buffer.cc
blob2999621b70918d731be7b2517ff8dac685b9ad11
1 /*
2 Copyright (C) 2006-2008 Paul Davis
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.
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.
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.
19 #include "pbd/compose.h"
21 #include "ardour/debug.h"
22 #include "ardour/midi_ring_buffer.h"
23 #include "ardour/midi_buffer.h"
24 #include "ardour/event_type_map.h"
26 using namespace std;
27 using namespace ARDOUR;
28 using namespace PBD;
30 /** Read a block of MIDI events from buffer into a MidiBuffer.
32 * Timestamps of events returned are relative to start (i.e. event with stamp 0
33 * occurred at start), with offset added.
35 template<typename T>
36 size_t
37 MidiRingBuffer<T>::read(MidiBuffer& dst, nframes_t start, nframes_t end, nframes_t offset)
39 if (this->read_space() == 0) {
40 return 0;
43 T ev_time;
44 Evoral::EventType ev_type;
45 uint32_t ev_size;
47 size_t count = 0;
49 while (this->read_space() >= sizeof(T) + sizeof(Evoral::EventType) + sizeof(uint32_t)) {
51 this->full_peek(sizeof(T), (uint8_t*)&ev_time);
53 if (ev_time >= end) {
54 DEBUG_TRACE (DEBUG::MidiDiskstreamIO, string_compose ("MRB event @ %1 past end @ %2\n", ev_time, end));
55 break;
56 } else if (ev_time < start) {
57 DEBUG_TRACE (DEBUG::MidiDiskstreamIO, string_compose ("MRB event @ %1 before start @ %2\n", ev_time, start));
58 break;
59 } else {
60 DEBUG_TRACE (DEBUG::MidiDiskstreamIO, string_compose ("MRB event @ %1 in range %2 .. %3\n", ev_time, start, end));
63 bool success = read_prefix(&ev_time, &ev_type, &ev_size);
64 if (!success) {
65 cerr << "WARNING: error reading event prefix from MIDI ring" << endl;
66 continue;
69 // This event marks a loop end (i.e. the next event's timestamp will be non-monotonic)
70 if (ev_type == LoopEventType) {
71 /*ev_time -= start;
72 ev_time += offset;*/
73 cerr << "MRB loop boundary @ " << ev_time << endl;
75 // Return without reading data or writing to buffer (loop events have no data)
76 // FIXME: This is not correct, loses events after the loop this cycle
77 return count + 1;
80 uint8_t status;
81 success = this->full_peek(sizeof(uint8_t), &status);
82 assert(success); // If this failed, buffer is corrupt, all hope is lost
84 // Ignore event if it doesn't match channel filter
85 if (is_channel_event(status) && get_channel_mode() == FilterChannels) {
86 const uint8_t channel = status & 0x0F;
87 if (!(get_channel_mask() & (1L << channel))) {
88 // cerr << "MRB skipping event due to channel mask" << endl;
89 this->skip(ev_size); // Advance read pointer to next event
90 continue;
94 assert(ev_time >= start);
95 ev_time -= start;
96 ev_time += offset;
98 // write the timestamp to address (write_loc - 1)
99 uint8_t* write_loc = dst.reserve(ev_time, ev_size);
100 if (write_loc == NULL) {
101 cerr << "MRB: Unable to reserve space in buffer, event skipped";
102 this->skip (ev_size); // Advance read pointer to next event
103 continue;
106 // write MIDI buffer contents
107 success = read_contents (ev_size, write_loc);
109 #ifndef NDEBUG
110 DEBUG_STR_DECL(a);
111 DEBUG_STR_APPEND(a, string_compose ("wrote MidiEvent to Buffer (time=%1, start=%2 offset=%3)", ev_time, start, offset));
112 for (size_t i=0; i < ev_size; ++i) {
113 DEBUG_STR_APPEND(a,hex);
114 DEBUG_STR_APPEND(a,"0x");
115 DEBUG_STR_APPEND(a,(int)write_loc[i]);
116 DEBUG_STR_APPEND(a,' ');
118 DEBUG_STR_APPEND(a,'\n');
119 DEBUG_TRACE (DEBUG::MidiDiskstreamIO, DEBUG_STR(a).str());
120 #endif
122 if (success) {
123 if (is_channel_event(status) && get_channel_mode() == ForceChannel) {
124 write_loc[0] = (write_loc[0] & 0xF0) | (get_channel_mask() & 0x0F);
126 ++count;
127 } else {
128 cerr << "WARNING: error reading event contents from MIDI ring" << endl;
132 return count;
134 template<typename T>
135 void
136 MidiRingBuffer<T>::dump(ostream& str)
138 size_t rspace;
140 if ((rspace = this->read_space()) == 0) {
141 str << "MRB::dump: empty\n";
142 return;
145 T ev_time;
146 Evoral::EventType ev_type;
147 uint32_t ev_size;
148 size_t read_ptr = g_atomic_int_get (&this->_read_ptr);
150 str << "Dump @ " << read_ptr << endl;
152 while (1) {
153 uint8_t* wp;
154 uint8_t* data;
155 size_t write_ptr;
157 #define space(r,w) ((w > r) ? (w - r) : ((w - r + this->_size) % this->_size))
159 write_ptr = g_atomic_int_get (&this->_write_ptr);
160 if (space (read_ptr, write_ptr) < sizeof (T)) {
161 break;
164 wp = &this->_buf[read_ptr];
165 memcpy (&ev_time, wp, sizeof (T));
166 read_ptr = (read_ptr + sizeof (T)) % this->_size;
167 str << "time " << ev_time;
169 write_ptr = g_atomic_int_get (&this->_write_ptr);
170 if (space (read_ptr, write_ptr) < sizeof (ev_type)) {
171 break;
174 wp = &this->_buf[read_ptr];
175 memcpy (&ev_type, wp, sizeof (ev_type));
176 read_ptr = (read_ptr + sizeof (ev_type)) % this->_size;
177 str << " type " << ev_type;
179 write_ptr = g_atomic_int_get (&this->_write_ptr);
180 if (space (read_ptr, write_ptr) < sizeof (ev_size)) {
181 str << "!OUT!\n";
182 break;
185 wp = &this->_buf[read_ptr];
186 memcpy (&ev_size, wp, sizeof (ev_size));
187 read_ptr = (read_ptr + sizeof (ev_size)) % this->_size;
188 str << " size " << ev_size;
190 write_ptr = g_atomic_int_get (&this->_write_ptr);
191 if (space (read_ptr, write_ptr) < ev_size) {
192 str << "!OUT!\n";
193 break;
196 data = new uint8_t[ev_size];
198 wp = &this->_buf[read_ptr];
199 memcpy (data, wp, ev_size);
200 read_ptr = (read_ptr + ev_size) % this->_size;
202 for (uint32_t i = 0; i != ev_size; ++i) {
203 str << ' ' << hex << (int) data[i] << dec;
206 str << endl;
208 delete [] data;
213 template class MidiRingBuffer<nframes_t>;