add copyright comments
[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 (Evoral::EventSink<framepos_t>& dst,
126                                    framepos_t /*position*/,
127                                    framepos_t start, framecnt_t cnt,
128                                    MidiStateTracker*) const
129 {
130         boost::shared_ptr<MidiPlaylist> mp = boost::dynamic_pointer_cast<MidiPlaylist> (_playlist);
131
132         if (!mp) {
133                 return 0;
134         }
135
136         return mp->read (dst, start, cnt);
137 }
138
139 framecnt_t
140 MidiPlaylistSource::write_unlocked (MidiRingBuffer<framepos_t>&,
141                                     framepos_t,
142                                     framecnt_t)
143 {
144         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::write_unlocked() called - should be impossible") << endmsg;
145         /*NOTREACHED*/
146         return 0;
147 }
148
149 void
150 MidiPlaylistSource::append_event_unlocked_beats(const Evoral::Event<Evoral::MusicalTime>& /*ev*/)
151 {
152         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_unlocked_beats() called - should be impossible") << endmsg;
153         /*NOTREACHED*/
154 }
155
156 void
157 MidiPlaylistSource::append_event_unlocked_frames(const Evoral::Event<framepos_t>& /* ev */, framepos_t /*source_start*/)
158 {
159         fatal << string_compose (_("programming error: %1"), "MidiPlaylistSource::append_event_unlocked_frames() called - should be impossible") << endmsg;
160         /*NOTREACHED*/
161 }
162
163 void
164 MidiPlaylistSource::load_model (bool, bool)
165 {
166         /* nothing to do */
167 }
168
169 void
170 MidiPlaylistSource::destroy_model ()
171 {
172         /* nothing to do */
173 }
174
175 void
176 MidiPlaylistSource::flush_midi ()
177 {
178 }
179
180
181 bool
182 MidiPlaylistSource::empty () const
183 {
184         return !_playlist || _playlist->empty();
185 }
186