main fix: when transport stops, clear per-region per-playlist note trackers even...
[ardour.git] / libs / ardour / ardour / midi_buffer.h
1 /*
2     Copyright (C) 2006-2009 Paul Davis
3     Author: David 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 "evoral/midi_util.h"
24 #include "midi++/event.h"
25 #include "ardour/buffer.h"
26 #include "ardour/event_type_map.h"
27
28 namespace ARDOUR {
29
30
31 /** Buffer containing 8-bit unsigned char (MIDI) data. */
32 class MidiBuffer : public Buffer
33 {
34 public:
35         typedef framepos_t TimeType;
36
37         MidiBuffer(size_t capacity);
38         ~MidiBuffer();
39
40         void silence (framecnt_t nframes, framecnt_t offset = 0);
41         void read_from (const Buffer& src, framecnt_t nframes, framecnt_t dst_offset = 0, framecnt_t src_offset = 0);
42         void merge_from (const Buffer& src, framecnt_t nframes, framecnt_t dst_offset = 0, framecnt_t src_offset = 0);
43
44         void copy(const MidiBuffer& copy);
45
46         bool     push_back(const Evoral::MIDIEvent<TimeType>& event);
47         bool     push_back(const jack_midi_event_t& event);
48         bool     push_back(TimeType time, size_t size, const uint8_t* data);
49         uint8_t* reserve(TimeType time, size_t size);
50
51         void resize(size_t);
52
53         bool merge_in_place(const MidiBuffer &other);
54
55         template<typename BufferType, typename EventType>
56         struct iterator_base {
57                 iterator_base<BufferType, EventType>(BufferType& b, framecnt_t o) : buffer(b), offset(o) {}
58                 inline EventType operator*() const {
59                         uint8_t* ev_start = buffer._data + offset + sizeof(TimeType);
60                         int event_size = Evoral::midi_event_size(ev_start);
61                         assert(event_size >= 0);
62                         return EventType(EventTypeMap::instance().midi_event_type(*ev_start),
63                                         *((TimeType*)(buffer._data + offset)),
64                                         event_size, ev_start);
65                 }
66                 inline EventType operator*() {
67                         uint8_t* ev_start = buffer._data + offset + sizeof(TimeType);
68                         int event_size = Evoral::midi_event_size(ev_start);
69                         assert(event_size >= 0);
70                         return EventType(EventTypeMap::instance().midi_event_type(*ev_start),
71                                         *((TimeType*)(buffer._data + offset)),
72                                         event_size, ev_start);
73                 }
74
75                 inline iterator_base<BufferType, EventType>& operator++() {
76                         uint8_t* ev_start = buffer._data + offset + sizeof(TimeType);
77                         int event_size = Evoral::midi_event_size(ev_start);
78                         assert(event_size >= 0);
79                         offset += sizeof(TimeType) + event_size;
80                         return *this;
81                 }
82                 inline bool operator!=(const iterator_base<BufferType, EventType>& other) const {
83                         return (&buffer != &other.buffer) || (offset != other.offset);
84                 }
85                 inline bool operator==(const iterator_base<BufferType, EventType>& other) const {
86                         return (&buffer == &other.buffer) && (offset == other.offset);
87                 }
88                 BufferType&     buffer;
89                 size_t          offset;
90         };
91
92         typedef iterator_base< MidiBuffer, Evoral::MIDIEvent<TimeType> >             iterator;
93         typedef iterator_base< const MidiBuffer, const Evoral::MIDIEvent<TimeType> > const_iterator;
94
95         iterator begin() { return iterator(*this, 0); }
96         iterator end()   { return iterator(*this, _size); }
97
98         const_iterator begin() const { return const_iterator(*this, 0); }
99         const_iterator end()   const { return const_iterator(*this, _size); }
100
101         uint8_t* data() const { return _data; }
102
103         /**
104          * returns true if the message with the second argument as its MIDI
105          * status byte should preceed the message with the first argument as
106          * its MIDI status byte.
107          */
108         static bool second_simultaneous_midi_byte_is_first (uint8_t, uint8_t);
109         
110 private:
111         friend class iterator_base< MidiBuffer, Evoral::MIDIEvent<TimeType> >;
112         friend class iterator_base< const MidiBuffer, const Evoral::MIDIEvent<TimeType> >;
113
114         uint8_t* _data; ///< timestamp, event, timestamp, event, ...
115 };
116
117
118 } // namespace ARDOUR
119
120 #endif // __ardour_midi_buffer_h__