* enlage MidiBuffer size to 128 bytes to allow for sysex events
[ardour.git] / libs / ardour / ardour / midi_buffer.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3     Author: Dave Robillard
4     
5     This program is free software; you can redistribute it and/or modify it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9     
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14     
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_midi_buffer_h__
21 #define __ardour_midi_buffer_h__
22
23 #include <midi++/event.h>
24 #include <ardour/buffer.h>
25
26 namespace ARDOUR {
27
28
29 /** Buffer containing 8-bit unsigned char (MIDI) data. */
30 class MidiBuffer : public Buffer
31 {
32 public:
33         MidiBuffer(size_t capacity);
34         ~MidiBuffer();
35
36         void silence(nframes_t dur, nframes_t offset=0);
37         
38         void read_from(const Buffer& src, nframes_t nframes, nframes_t offset);
39         
40         void copy(const MidiBuffer& copy);
41
42         bool     push_back(const Evoral::MIDIEvent& event);
43         bool     push_back(const jack_midi_event_t& event);
44         uint8_t* reserve(double time, size_t size);
45
46         void resize(size_t);
47
48         bool merge(const MidiBuffer& a, const MidiBuffer& b);
49         bool merge_in_place( const MidiBuffer &other );
50         
51         struct iterator {
52                 iterator(MidiBuffer& b, size_t i) : buffer(b), index(i) {}
53
54                 inline Evoral::MIDIEvent& operator*() const { return buffer[index]; }
55                 inline iterator& operator++() { ++index; return *this; } // prefix
56                 inline bool operator!=(const iterator& other) const { return index != other.index; }
57                 
58                 MidiBuffer& buffer;
59                 size_t      index;
60         };
61         
62         struct const_iterator {
63                 const_iterator(const MidiBuffer& b, size_t i) : buffer(b), index(i) {}
64
65                 inline const Evoral::MIDIEvent& operator*() const { return buffer[index]; }
66                 inline const_iterator& operator++() { ++index; return *this; } // prefix
67                 inline bool operator!=(const const_iterator& other) const { return index != other.index; }
68                 
69                 const MidiBuffer& buffer;
70                 size_t            index;
71         };
72
73         iterator begin() { return iterator(*this, 0); }
74         iterator end()   { return iterator(*this, _size); }
75
76         const_iterator begin() const { return const_iterator(*this, 0); }
77         const_iterator end()   const { return const_iterator(*this, _size); }
78
79 private:
80
81         friend class iterator;
82         friend class const_iterator;
83         
84         const Evoral::MIDIEvent& operator[](size_t i) const { assert(i < _size); return _events[i]; }
85         Evoral::MIDIEvent& operator[](size_t i) { assert(i < _size); return _events[i]; }
86
87         // FIXME: Eliminate this
88         static const size_t MAX_EVENT_SIZE = 128; // bytes
89         
90         /* We use _size as "number of events", so the size of _data is
91          * (_size * MAX_EVENT_SIZE)
92          */
93
94         /* FIXME: this is utter crap.  rewrite as a flat/packed buffer like MidiRingBuffer */
95
96         Evoral::MIDIEvent* _events; ///< Event structs that point to offsets in _data
97         uint8_t*           _data;   ///< MIDI, straight up.  No time stamps.
98 };
99
100
101 } // namespace ARDOUR
102
103 #endif // __ardour_midi_buffer_h__