Separate MidiBuffer and AudioBuffer into separate headers (trims the dependency tree...
[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 <ardour/buffer.h>
24
25 namespace ARDOUR {
26
27
28 /** Buffer containing 8-bit unsigned char (MIDI) data. */
29 class MidiBuffer : public Buffer
30 {
31 public:
32         MidiBuffer(size_t capacity);
33         
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         bool  push_back(const ARDOUR::MidiEvent& event);
41         bool  push_back(const jack_midi_event_t& event);
42         Byte* reserve(double time, size_t size);
43         
44         const MidiEvent& operator[](size_t i) const { assert(i < _size); return _events[i]; }
45         MidiEvent& operator[](size_t i) { assert(i < _size); return _events[i]; }
46
47         static size_t max_event_size() { return MAX_EVENT_SIZE; }
48
49 private:
50         // FIXME: Jack needs to tell us this
51         static const size_t MAX_EVENT_SIZE = 4; // bytes
52         
53         /* We use _size as "number of events", so the size of _data is
54          * (_size * MAX_EVENT_SIZE)
55          */
56
57         MidiEvent* _events; ///< Event structs that point to offsets in _data
58         Byte*      _data;   ///< MIDI, straight up.  No time stamps.
59 };
60
61
62 } // namespace ARDOUR
63
64 #endif // __ardour_midi_buffer_h__