Remove pointless Byte typedef that didn't really match any other typedef in ardour...
[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 MIDI::Event& 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         
50         struct iterator {
51                 iterator(MidiBuffer& b, size_t i) : buffer(b), index(i) {}
52
53                 inline MIDI::Event& operator*() const { return buffer[index]; }
54                 inline iterator& operator++() { ++index; return *this; } // prefix
55                 inline bool operator!=(const iterator& other) const { return index != other.index; }
56                 
57                 MidiBuffer& buffer;
58                 size_t      index;
59         };
60         
61         struct const_iterator {
62                 const_iterator(const MidiBuffer& b, size_t i) : buffer(b), index(i) {}
63
64                 inline const MIDI::Event& operator*() const { return buffer[index]; }
65                 inline const_iterator& operator++() { ++index; return *this; } // prefix
66                 inline bool operator!=(const const_iterator& other) const { return index != other.index; }
67                 
68                 const MidiBuffer& buffer;
69                 size_t            index;
70         };
71
72         iterator begin() { return iterator(*this, 0); }
73         iterator end()   { return iterator(*this, _size); }
74
75         const_iterator begin() const { return const_iterator(*this, 0); }
76         const_iterator end()   const { return const_iterator(*this, _size); }
77
78 private:
79
80         friend class iterator;
81         friend class const_iterator;
82         
83         const MIDI::Event& operator[](size_t i) const { assert(i < _size); return _events[i]; }
84         MIDI::Event& operator[](size_t i) { assert(i < _size); return _events[i]; }
85
86         // FIXME: Eliminate this
87         static const size_t MAX_EVENT_SIZE = 4; // bytes
88         
89         /* We use _size as "number of events", so the size of _data is
90          * (_size * MAX_EVENT_SIZE)
91          */
92
93         /* FIXME: this is utter crap.  rewrite as a flat/packed buffer like MidiRingBuffer */
94
95         MIDI::Event* _events; ///< Event structs that point to offsets in _data
96         uint8_t*     _data;   ///< MIDI, straight up.  No time stamps.
97 };
98
99
100 } // namespace ARDOUR
101
102 #endif // __ardour_midi_buffer_h__