ardour
midi_playlist_source.h
Go to the documentation of this file.
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 
36 public:
37  virtual ~MidiPlaylistSource ();
38 
39  bool empty() 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);
59 
60 
61  void flush_midi(const Lock& lock);
62 
63  framecnt_t read_unlocked (const Lock& lock,
66  framepos_t start,
67  framecnt_t cnt,
68  MidiStateTracker* tracker,
69  MidiChannelFilter* filter) const;
70 
71  framecnt_t write_unlocked (const Lock& lock,
74  framecnt_t cnt);
75 
76 private:
77  int set_state (const XMLNode&, int version, bool with_descendants);
79 };
80 
81 } /* namespace */
82 
83 #endif /* __ardour_midi_playlist_source_h__ */
Glib::Threads::Mutex::Lock Lock
Definition: source.h:54
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > start
Definition: region.cc:63
Definition: id.h:32
int64_t framecnt_t
Definition: types.h:76
float Sample
Definition: types.h:54
Definition: amp.h:29
int64_t framepos_t
Definition: types.h:66
int64_t frameoffset_t
Definition: types.h:71
#define LIBARDOUR_API
const char * name
Definition: xml++.h:95
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > position
Definition: region.cc:65
LIBARDOUR_API PBD::PropertyDescriptor< framecnt_t > length
Definition: region.cc:64