changes in logic used by source cleanup to avoid endless recursion in sessions with...
[ardour.git] / libs / ardour / ardour / midi_state_tracker.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Torben Hohn
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_state_tracker_h__
21 #define __ardour_midi_state_tracker_h__
22
23 #include <glibmm/threads.h>
24
25 #include "ardour/midi_buffer.h"
26
27 namespace Evoral {
28 template <typename T> class EventSink;
29 }
30
31 namespace ARDOUR {
32
33 class MidiSource;
34
35 /** Tracks played notes, so they can be resolved in potential stuck note
36  * situations (e.g. looping, transport stop, etc).
37  */
38 class LIBARDOUR_API MidiStateTracker
39 {
40 public:
41         MidiStateTracker();
42
43         void track (const MidiBuffer::const_iterator& from, const MidiBuffer::const_iterator& to);
44         void track (const uint8_t* evbuf);
45         void add (uint8_t note, uint8_t chn);
46         void remove (uint8_t note, uint8_t chn);
47         void resolve_notes (MidiBuffer& buffer, framepos_t time);
48         void resolve_notes (Evoral::EventSink<framepos_t>& buffer, framepos_t time);
49         void resolve_notes (MidiSource& src, const Glib::Threads::Mutex::Lock& lock, Evoral::Beats time);
50         void dump (std::ostream&);
51         void reset ();
52         bool empty() const { return _on == 0; }
53         uint16_t on() const { return _on; }
54         bool active (uint8_t note, uint8_t channel) {
55                 return _active_notes[(channel*128)+note] > 0;
56         }
57
58         template<typename Time>
59         void track (const Evoral::Event<Time>& ev) {
60                 track (ev.buffer());
61         }
62
63 private:
64         uint8_t  _active_notes[128*16];
65         uint16_t _on;
66 };
67
68
69 } // namespace ARDOUR
70
71 #endif // __ardour_midi_state_tracker_h__