80219cb9a30ef3c8dd24ea8e4576df03e4d61ae2
[ardour.git] / libs / ardour / midi_playlist_source.cc
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 #ifdef WAF_BUILD
20 #include "libardour-config.h"
21 #endif
22
23 #include "pbd/error.h"
24
25 #include "ardour/midi_playlist.h"
26 #include "ardour/midi_playlist_source.h"
27
28 #include "pbd/i18n.h"
29
30 using namespace std;
31 using namespace ARDOUR;
32 using namespace PBD;
33
34 namespace ARDOUR {
35 class MidiStateTracker;
36 class Session;
37 template <typename T> class MidiRingBuffer;
38 }
39
40 namespace Evoral {
41 template <typename T> class EventSink;
42 template <typename Time> class Event;
43 }
44
45 /*******************************************************************************
46 As of May 2011, it appears too complex to support compound regions for MIDI
47 because of the need to be able to edit the data represented by the region.  It
48 seems that it would be a better idea to render the consituent regions into a
49 new MIDI file and create a new region based on that, an operation we have been
50 calling "consolidate"
51
52 This code has been in place as a stub in case anyone gets any brilliant ideas
53 on other ways to approach this issue.
54 ********************************************************************************/
55
56 MidiPlaylistSource::MidiPlaylistSource (Session& s, const ID& orig, const std::string& name, boost::shared_ptr<MidiPlaylist> p,
57                                         uint32_t /*chn*/, sampleoffset_t begin, samplecnt_t len, Source::Flag flags)
58         : Source (s, DataType::MIDI, name)
59         , MidiSource (s, name, flags)
60         , PlaylistSource (s, orig, name, p, DataType::MIDI, begin, len, flags)
61 {
62 }
63
64 MidiPlaylistSource::MidiPlaylistSource (Session& s, const XMLNode& node)
65         : Source (s, node)
66         , MidiSource (s, node)
67         , PlaylistSource (s, node)
68 {
69         /* PlaylistSources are never writable, renameable, removable or destructive */
70         _flags = Flag (_flags & ~(Writable|CanRename|Removable|RemovableIfEmpty|RemoveAtDestroy|Destructive));
71
72         /* ancestors have already called ::set_state() in their XML-based
73            constructors.
74         */
75
76         if (set_state (node, Stateful::loading_state_version, false)) {
77                 throw failed_constructor ();
78         }
79 }
80
81 MidiPlaylistSource::~MidiPlaylistSource ()
82 {
83 }
84
85 XMLNode&
86 MidiPlaylistSource::get_state ()
87 {
88         XMLNode& node (MidiSource::get_state ());
89
90         /* merge PlaylistSource state */
91
92         PlaylistSource::add_state (node);
93
94         return node;
95 }
96
97 int
98 MidiPlaylistSource::set_state (const XMLNode& node, int version)
99 {
100         return set_state (node, version, true);
101 }
102
103 int
104 MidiPlaylistSource::set_state (const XMLNode& node, int version, bool with_descendants)
105 {
106         if (with_descendants) {
107                 if (Source::set_state (node, version) ||
108                     MidiSource::set_state (node, version) ||
109                     PlaylistSource::set_state (node, version)) {
110                         return -1;
111                 }
112         }
113
114         return 0;
115 }
116
117 samplecnt_t
118 MidiPlaylistSource::length (samplepos_t)  const
119 {
120         pair<samplepos_t,samplepos_t> extent = _playlist->get_extent();
121         return extent.second - extent.first;
122 }
123
124 samplecnt_t
125 MidiPlaylistSource::read_unlocked (const Lock& lock,
126                                    Evoral::EventSink<samplepos_t>& dst,
127                                    samplepos_t /*position*/,
128                                    samplepos_t start,
129                                    samplecnt_t cnt,
130                                    Evoral::Range<samplepos_t>* loop_range,
131                                    MidiStateTracker*,
132                                    MidiChannelFilter*) const
133 {
134         boost::shared_ptr<MidiPlaylist> mp = boost::dynamic_pointer_cast<MidiPlaylist> (_playlist);
135
136         if (!mp) {
137                 return 0;
138         }
139
140         return mp->read (dst, start, cnt, loop_range);
141 }
142
143 samplecnt_t
144 MidiPlaylistSource::write_unlocked (const Lock&,
145                                     MidiRingBuffer<samplepos_t>&,
146                                     samplepos_t,
147                                     samplecnt_t)
148 {
149         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::write_unlocked() called - should be impossible") << endmsg;
150         abort(); /*NOTREACHED*/
151         return 0;
152 }
153
154 void
155 MidiPlaylistSource::append_event_beats(const Glib::Threads::Mutex::Lock& /*lock*/, const Evoral::Event<Evoral::Beats>& /*ev*/)
156 {
157         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_beats() called - should be impossible") << endmsg;
158         abort(); /*NOTREACHED*/
159 }
160
161 void
162 MidiPlaylistSource::append_event_samples(const Glib::Threads::Mutex::Lock& /*lock*/, const Evoral::Event<samplepos_t>& /* ev */, samplepos_t /*source_start*/)
163 {
164         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_samples() called - should be impossible") << endmsg;
165         abort(); /*NOTREACHED*/
166 }
167
168 void
169 MidiPlaylistSource::load_model (const Glib::Threads::Mutex::Lock&, bool)
170 {
171         /* nothing to do */
172 }
173
174 void
175 MidiPlaylistSource::destroy_model (const Glib::Threads::Mutex::Lock&)
176 {
177         /* nothing to do */
178 }
179
180 void
181 MidiPlaylistSource::flush_midi (const Lock& lock)
182 {
183 }
184
185
186 bool
187 MidiPlaylistSource::empty () const
188 {
189         return !_playlist || _playlist->empty();
190 }
191