MSVC won't allow floating point types to be mapped directly to enums
[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 LIBARDOUR_API 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_beats(const Glib::Threads::Mutex::Lock& lock, const Evoral::Event<Evoral::Beats>& ev);
49         void append_event_frames(const Glib::Threads::Mutex::Lock& lock, const Evoral::Event<framepos_t>& ev, framepos_t source_start);
50         void load_model(const Glib::Threads::Mutex::Lock& lock, bool force_reload=false);
51         void destroy_model(const Glib::Threads::Mutex::Lock& lock);
52
53 protected:
54         friend class SourceFactory;
55
56         MidiPlaylistSource (Session&, const PBD::ID& orig, const std::string& name, boost::shared_ptr<MidiPlaylist>, uint32_t chn,
57                             frameoffset_t begin, framecnt_t len, Source::Flag flags);
58         MidiPlaylistSource (Session&, const XMLNode&);
59
60
61         void flush_midi(const Lock& lock);
62
63         framecnt_t read_unlocked (const Lock&                    lock,
64                                   Evoral::EventSink<framepos_t>& dst,
65                                   framepos_t                     position,
66                                   framepos_t                     start,
67                                   framecnt_t                     cnt,
68                                   MidiStateTracker*              tracker,
69                                   MidiChannelFilter*             filter) const;
70
71         framecnt_t write_unlocked (const Lock&                 lock,
72                                    MidiRingBuffer<framepos_t>& dst,
73                                    framepos_t                  position,
74                                    framecnt_t                  cnt);
75
76 private:
77         int set_state (const XMLNode&, int version, bool with_descendants);
78         framecnt_t _length;
79 };
80
81 } /* namespace */
82
83 #endif /* __ardour_midi_playlist_source_h__ */