totally untested initial code for MidiPlaylistSource, to provide for compound MIDI...
[ardour.git] / libs / ardour / ardour / midi_playlist_source.h
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_midi_playlist_source_h__
21 #define __ardour_midi_playlist_source_h__
22
23 #include <string>
24
25 #include <boost/shared_ptr.hpp>
26
27 #include "ardour/ardour.h"
28 #include "ardour/midi_source.h"
29 #include "ardour/playlist_source.h"
30
31 namespace ARDOUR {
32
33 class MidiPlaylist;
34
35 class MidiPlaylistSource : public MidiSource, public PlaylistSource {
36   public:
37     virtual ~MidiPlaylistSource ();
38
39     bool empty() const;
40     framecnt_t length (framepos_t) const;
41
42     framecnt_t read_unlocked (Sample *dst, framepos_t start, framecnt_t cnt) const;
43     framecnt_t write_unlocked (Sample *src, framecnt_t cnt);
44     
45     XMLNode& get_state ();
46     int set_state (const XMLNode&, int version);
47
48     void append_event_unlocked_beats(const Evoral::Event<Evoral::MusicalTime>& ev);
49     void append_event_unlocked_frames(const Evoral::Event<framepos_t>& ev, framepos_t source_start);
50     void load_model(bool lock=true, bool force_reload=false);
51     void destroy_model();
52
53     static void ensure_buffers_for_level (uint32_t);
54
55   protected:
56     friend class SourceFactory;
57
58     MidiPlaylistSource (Session&, const PBD::ID& orig, const std::string& name, boost::shared_ptr<MidiPlaylist>, uint32_t chn,
59                         frameoffset_t begin, framecnt_t len, Source::Flag flags);
60     MidiPlaylistSource (Session&, const XMLNode&);
61     
62     
63     void flush_midi();
64
65     framepos_t read_unlocked (Evoral::EventSink<framepos_t>& dst,
66                                       framepos_t position,
67                                       framepos_t start, framecnt_t cnt,
68                                       MidiStateTracker* tracker) const;
69     
70     framepos_t write_unlocked (MidiRingBuffer<framepos_t>& dst,
71                                            framepos_t position,
72                                            framecnt_t cnt);
73   private:
74     int set_state (const XMLNode&, int version, bool with_descendants);
75     framecnt_t _length;
76 };
77         
78 } /* namespace */
79
80 #endif /* __ardour_midi_playlist_source_h__ */