merge (squash) with scenechange topic branch to provide MIDI-driven scene change...
[ardour.git] / libs / ardour / source_factory.cc
1 /*
2     Copyright (C) 2000-2006 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     $Id$
19 */
20
21 #ifdef WAF_BUILD
22 #include "libardour-config.h"
23 #endif
24
25 #include "pbd/boost_debug.h"
26 #include "pbd/error.h"
27 #include "pbd/convert.h"
28 #include "pbd/pthread_utils.h"
29 #include "pbd/stacktrace.h"
30
31 #include "ardour/audioplaylist.h"
32 #include "ardour/audio_playlist_source.h"
33 #include "ardour/midi_playlist.h"
34 #include "ardour/midi_playlist_source.h"
35 #include "ardour/source_factory.h"
36 #include "ardour/sndfilesource.h"
37 #include "ardour/silentfilesource.h"
38 #include "ardour/smf_source.h"
39 #include "ardour/session.h"
40
41 #ifdef  HAVE_COREAUDIO
42 #include "ardour/coreaudiosource.h"
43 #endif
44
45
46 #include "i18n.h"
47
48 using namespace ARDOUR;
49 using namespace std;
50 using namespace PBD;
51
52 PBD::Signal1<void,boost::shared_ptr<Source> > SourceFactory::SourceCreated;
53 Glib::Threads::Cond SourceFactory::PeaksToBuild;
54 Glib::Threads::Mutex SourceFactory::peak_building_lock;
55 std::list<boost::weak_ptr<AudioSource> > SourceFactory::files_with_peaks;
56
57 static void
58 peak_thread_work ()
59 {
60         SessionEvent::create_per_thread_pool (X_("PeakFile Builder "), 64);
61
62         while (true) {
63
64                 SourceFactory::peak_building_lock.lock ();
65
66           wait:
67                 if (SourceFactory::files_with_peaks.empty()) {
68                         SourceFactory::PeaksToBuild.wait (SourceFactory::peak_building_lock);
69                 }
70
71                 if (SourceFactory::files_with_peaks.empty()) {
72                         goto wait;
73                 }
74
75                 boost::shared_ptr<AudioSource> as (SourceFactory::files_with_peaks.front().lock());
76                 SourceFactory::files_with_peaks.pop_front ();
77                 SourceFactory::peak_building_lock.unlock ();
78
79                 if (!as) {
80                         continue;
81                 }
82
83                 as->setup_peakfile ();
84         }
85 }
86
87 void
88 SourceFactory::init ()
89 {
90         for (int n = 0; n < 2; ++n) {
91                 Glib::Threads::Thread::create (sigc::ptr_fun (::peak_thread_work));
92         }
93 }
94
95 int
96 SourceFactory::setup_peakfile (boost::shared_ptr<Source> s, bool async)
97 {
98         boost::shared_ptr<AudioSource> as (boost::dynamic_pointer_cast<AudioSource> (s));
99
100         if (as) {
101
102                 if (async) {
103
104                         Glib::Threads::Mutex::Lock lm (peak_building_lock);
105                         files_with_peaks.push_back (boost::weak_ptr<AudioSource> (as));
106                         PeaksToBuild.broadcast ();
107
108                 } else {
109
110                         if (as->setup_peakfile ()) {
111                                 error << string_compose("SourceFactory: could not set up peakfile for %1", as->name()) << endmsg;
112                                 return -1;
113                         }
114                 }
115         }
116
117         return 0;
118 }
119
120 boost::shared_ptr<Source>
121 SourceFactory::createSilent (Session& s, const XMLNode& node, framecnt_t nframes, float sr)
122 {
123         Source* src = new SilentFileSource (s, node, nframes, sr);
124 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
125         // boost_debug_shared_ptr_mark_interesting (src, "Source");
126 #endif
127         boost::shared_ptr<Source> ret (src);
128         // no analysis data - the file is non-existent
129         SourceCreated (ret);
130         return ret;
131 }
132
133 boost::shared_ptr<Source>
134 SourceFactory::create (Session& s, const XMLNode& node, bool defer_peaks)
135 {
136         DataType type = DataType::AUDIO;
137         const XMLProperty* prop = node.property("type");
138
139         if (prop) {
140                 type = DataType (prop->value());
141         }
142
143         if (type == DataType::AUDIO) {
144
145                 /* it could be nested */
146
147                 if (node.property ("playlist") != 0) {
148
149                         try {
150                                 boost::shared_ptr<AudioPlaylistSource> ap (new AudioPlaylistSource (s, node));
151                                 
152                                 if (setup_peakfile (ap, true)) {
153                                         return boost::shared_ptr<Source>();
154                                 }
155
156                                 ap->check_for_analysis_data_on_disk ();
157
158                                 SourceCreated (ap);
159                                 return ap;
160
161                         } catch (failed_constructor&) {
162                                 /* oh well, so much for that then ... */
163                         }
164
165                 } else {
166
167
168                         try {
169                                 Source* src = new SndFileSource (s, node);
170 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
171                                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
172 #endif
173                                 boost::shared_ptr<Source> ret (src);
174                                 if (setup_peakfile (ret, defer_peaks)) {
175                                         return boost::shared_ptr<Source>();
176                                 }
177                                 ret->check_for_analysis_data_on_disk ();
178                                 SourceCreated (ret);
179                                 return ret;
180                         }
181
182                         catch (failed_constructor& err) {
183
184 #ifdef HAVE_COREAUDIO
185
186                                 /* this is allowed to throw */
187
188                                 Source *src = new CoreAudioSource (s, node);
189 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
190                                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
191 #endif
192                                 boost::shared_ptr<Source> ret (src);
193
194                                 if (setup_peakfile (ret, defer_peaks)) {
195                                         return boost::shared_ptr<Source>();
196                                 }
197
198                                 ret->check_for_analysis_data_on_disk ();
199                                 SourceCreated (ret);
200                                 return ret;
201 #else
202                                 throw; // rethrow
203 #endif
204                         }
205                 }
206         } else if (type == DataType::MIDI) {
207                 boost::shared_ptr<SMFSource> src (new SMFSource (s, node));
208                 src->load_model (true, true);
209 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
210                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
211 #endif
212                 src->check_for_analysis_data_on_disk ();
213                 SourceCreated (src);
214                 return src;
215         }
216
217         return boost::shared_ptr<Source>();
218 }
219
220 boost::shared_ptr<Source>
221 SourceFactory::createExternal (DataType type, Session& s, const string& path,
222                                int chn, Source::Flag flags, bool announce, bool defer_peaks)
223 {
224         if (type == DataType::AUDIO) {
225                 
226                 if (!(flags & Destructive)) {
227
228                         try {
229
230                                 Source* src = new SndFileSource (s, path, chn, flags);
231 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
232                                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
233 #endif
234                                 boost::shared_ptr<Source> ret (src);
235
236                                 if (setup_peakfile (ret, defer_peaks)) {
237                                         return boost::shared_ptr<Source>();
238                                 }
239
240                                 ret->check_for_analysis_data_on_disk ();
241                                 if (announce) {
242                                         SourceCreated (ret);
243                                 }
244                                 return ret;
245                         }
246
247                         catch (failed_constructor& err) {
248 #ifdef HAVE_COREAUDIO
249
250                                 Source* src = new CoreAudioSource (s, path, chn, flags);
251 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
252                                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
253 #endif
254                                 boost::shared_ptr<Source> ret (src);
255                                 if (setup_peakfile (ret, defer_peaks)) {
256                                         return boost::shared_ptr<Source>();
257                                 }
258                                 ret->check_for_analysis_data_on_disk ();
259                                 if (announce) {
260                                         SourceCreated (ret);
261                                 }
262                                 return ret;
263
264 #else
265                                 throw; // rethrow
266 #endif
267                         }
268
269                 } else {
270                         // eh?
271                 }
272
273         } else if (type == DataType::MIDI) {
274
275                 boost::shared_ptr<SMFSource> src (new SMFSource (s, path, SMFSource::Flag(0)));
276                 src->load_model (true, true);
277 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
278                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
279 #endif
280
281                 if (announce) {
282                         SourceCreated (src);
283                 }
284
285                 return src;
286
287         }
288
289         return boost::shared_ptr<Source>();
290 }
291
292 boost::shared_ptr<Source>
293 SourceFactory::createWritable (DataType type, Session& s, const std::string& path, 
294                                bool destructive, framecnt_t rate, bool announce, bool defer_peaks)
295 {
296         /* this might throw failed_constructor(), which is OK */
297
298         if (type == DataType::AUDIO) {
299                 Source* src = new SndFileSource (s, path, string(),
300                                                  s.config.get_native_file_data_format(),
301                                                  s.config.get_native_file_header_format(),
302                                                  rate,
303                                                  (destructive
304                                                   ? Source::Flag (SndFileSource::default_writable_flags | Source::Destructive)
305                                                   : SndFileSource::default_writable_flags));
306 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
307                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
308 #endif
309                 boost::shared_ptr<Source> ret (src);
310
311                 if (setup_peakfile (ret, defer_peaks)) {
312                         return boost::shared_ptr<Source>();
313                 }
314
315                 // no analysis data - this is a new file
316
317                 if (announce) {
318                         SourceCreated (ret);
319                 }
320                 return ret;
321
322         } else if (type == DataType::MIDI) {
323                 // XXX writable flags should belong to MidiSource too
324                 boost::shared_ptr<SMFSource> src (new SMFSource (s, path, SndFileSource::default_writable_flags));
325                 assert (src->writable ());
326
327                 src->load_model (true, true);
328 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
329                 // boost_debug_shared_ptr_mark_interesting (src, "Source");
330 #endif
331
332                 // no analysis data - this is a new file
333
334                 if (announce) {
335                         SourceCreated (src);
336                 }
337                 return src;
338
339         }
340
341         return boost::shared_ptr<Source> ();
342 }
343
344 boost::shared_ptr<Source>
345 SourceFactory::createFromPlaylist (DataType type, Session& s, boost::shared_ptr<Playlist> p, const PBD::ID& orig, const std::string& name,
346                                    uint32_t chn, frameoffset_t start, framecnt_t len, bool copy, bool defer_peaks)
347 {
348         if (type == DataType::AUDIO) {
349                 try {
350
351                         boost::shared_ptr<AudioPlaylist> ap = boost::dynamic_pointer_cast<AudioPlaylist>(p);
352
353                         if (ap) {
354
355                                 if (copy) {
356                                         ap.reset (new AudioPlaylist (ap, start, len, name, true));
357                                         start = 0;
358                                 }
359
360                                 Source* src = new AudioPlaylistSource (s, orig, name, ap, chn, start, len, Source::Flag (0));
361                                 boost::shared_ptr<Source> ret (src);
362
363                                 if (setup_peakfile (ret, defer_peaks)) {
364                                         return boost::shared_ptr<Source>();
365                                 }
366
367                                 ret->check_for_analysis_data_on_disk ();
368                                 SourceCreated (ret);
369                                 return ret;
370                         }
371                 }
372
373                 catch (failed_constructor& err) {
374                         /* relax - return at function scope */
375                 }
376
377         } else if (type == DataType::MIDI) {
378
379                 try {
380
381                         boost::shared_ptr<MidiPlaylist> ap = boost::dynamic_pointer_cast<MidiPlaylist>(p);
382
383                         if (ap) {
384
385                                 if (copy) {
386                                         ap.reset (new MidiPlaylist (ap, start, len, name, true));
387                                         start = 0;
388                                 }
389
390                                 Source* src = new MidiPlaylistSource (s, orig, name, ap, chn, start, len, Source::Flag (0));
391                                 boost::shared_ptr<Source> ret (src);
392
393                                 SourceCreated (ret);
394                                 return ret;
395                         }
396                 }
397
398                 catch (failed_constructor& err) {
399                         /* relax - return at function scope */
400                 }
401
402         }
403
404         return boost::shared_ptr<Source>();
405 }
406