Fix compilation with --no-lv2 (#0006169).
[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 "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*/, frameoffset_t begin, framecnt_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 framecnt_t
118 MidiPlaylistSource::length (framepos_t)  const
119 {
120         pair<framepos_t,framepos_t> extent = _playlist->get_extent();
121         return extent.second - extent.first;
122 }
123
124 framecnt_t
125 MidiPlaylistSource::read_unlocked (const Lock& lock,
126                                    Evoral::EventSink<framepos_t>& dst,
127                                    framepos_t /*position*/,
128                                    framepos_t start, framecnt_t cnt,
129                                    MidiStateTracker*) const
130 {
131         boost::shared_ptr<MidiPlaylist> mp = boost::dynamic_pointer_cast<MidiPlaylist> (_playlist);
132
133         if (!mp) {
134                 return 0;
135         }
136
137         return mp->read (dst, start, cnt);
138 }
139
140 framecnt_t
141 MidiPlaylistSource::write_unlocked (const Lock&,
142                                     MidiRingBuffer<framepos_t>&,
143                                     framepos_t,
144                                     framecnt_t)
145 {
146         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::write_unlocked() called - should be impossible") << endmsg;
147         abort(); /*NOTREACHED*/
148         return 0;
149 }
150
151 void
152 MidiPlaylistSource::append_event_beats(const Glib::Threads::Mutex::Lock& /*lock*/, const Evoral::Event<Evoral::Beats>& /*ev*/)
153 {
154         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_beats() called - should be impossible") << endmsg;
155         abort(); /*NOTREACHED*/
156 }
157
158 void
159 MidiPlaylistSource::append_event_frames(const Glib::Threads::Mutex::Lock& /*lock*/, const Evoral::Event<framepos_t>& /* ev */, framepos_t /*source_start*/)
160 {
161         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_frames() called - should be impossible") << endmsg;
162         abort(); /*NOTREACHED*/
163 }
164
165 void
166 MidiPlaylistSource::load_model (const Glib::Threads::Mutex::Lock&, bool)
167 {
168         /* nothing to do */
169 }
170
171 void
172 MidiPlaylistSource::destroy_model (const Glib::Threads::Mutex::Lock&)
173 {
174         /* nothing to do */
175 }
176
177 void
178 MidiPlaylistSource::flush_midi (const Lock& lock)
179 {
180 }
181
182
183 bool
184 MidiPlaylistSource::empty () const
185 {
186         return !_playlist || _playlist->empty();
187 }
188