changes for OS X support: change waf config define to COREAUDIO_SUPPORT, remove Plugi...
[ardour.git] / libs / ardour / source_factory.cc
index f886f952bdb676ca23fe4650d47115291ddfec3f..65f9d8da28144261ad5bbd959ae89af92acd5087 100644 (file)
 #include "pbd/pthread_utils.h"
 #include "pbd/stacktrace.h"
 
+#include "ardour/audioplaylist.h"
+#include "ardour/audio_playlist_source.h"
+#include "ardour/midi_playlist.h"
+#include "ardour/midi_playlist_source.h"
 #include "ardour/source_factory.h"
 #include "ardour/sndfilesource.h"
 #include "ardour/silentfilesource.h"
 #include "ardour/session.h"
 
 #ifdef  HAVE_COREAUDIO
-#define USE_COREAUDIO_FOR_FILES
-#endif
-
-#ifdef USE_COREAUDIO_FOR_FILES
 #include "ardour/coreaudiosource.h"
 #endif
 
@@ -124,7 +124,9 @@ boost::shared_ptr<Source>
 SourceFactory::createSilent (Session& s, const XMLNode& node, framecnt_t nframes, float sr)
 {
        Source* src = new SilentFileSource (s, node, nframes, sr);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
        // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
        boost::shared_ptr<Source> ret (src);
        // no analysis data - the file is non-existent
        SourceCreated (ret);
@@ -143,47 +145,76 @@ SourceFactory::create (Session& s, const XMLNode& node, bool defer_peaks)
 
        if (type == DataType::AUDIO) {
 
-               try {
-                       Source* src = new SndFileSource (s, node);
-                       // boost_debug_shared_ptr_mark_interesting (src, "Source");
-                       boost::shared_ptr<Source> ret (src);
-                       if (setup_peakfile (ret, defer_peaks)) {
-                               return boost::shared_ptr<Source>();
-                       }
-                       ret->check_for_analysis_data_on_disk ();
-                       SourceCreated (ret);
-                       return ret;
-               }
+               /* it could be nested */
 
-               catch (failed_constructor& err) {
+               if (node.property ("playlist") != 0) {
 
-#ifdef USE_COREAUDIO_FOR_FILES
+                       try {
+                               boost::shared_ptr<AudioPlaylistSource> ap (new AudioPlaylistSource (s, node));
+                               
+                               if (setup_peakfile (ap, true)) {
+                                       return boost::shared_ptr<Source>();
+                               }
 
-                       /* this is allowed to throw */
+                               ap->check_for_analysis_data_on_disk ();
 
-                       Source *src = new CoreAudioSource (s, node);
-                       // boost_debug_shared_ptr_mark_interesting (src, "Source");
-                       boost::shared_ptr<Source> ret (src);
+                               SourceCreated (ap);
+                               return ap;
 
-                       if (setup_peakfile (ret, defer_peaks)) {
-                               return boost::shared_ptr<Source>();
+                       } catch (failed_constructor&) {
+                               /* oh well, so much for that then ... */
                        }
 
-                       ret->check_for_analysis_data_on_disk ();
-                       SourceCreated (ret);
-                       return ret;
+               } else {
+
+
+                       try {
+                               Source* src = new SndFileSource (s, node);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
+                               // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
+                               boost::shared_ptr<Source> ret (src);
+                               if (setup_peakfile (ret, defer_peaks)) {
+                                       return boost::shared_ptr<Source>();
+                               }
+                               ret->check_for_analysis_data_on_disk ();
+                               SourceCreated (ret);
+                               return ret;
+                       }
+
+                       catch (failed_constructor& err) {
+
+#ifdef HAVE_COREAUDIO
+
+                               /* this is allowed to throw */
+
+                               Source *src = new CoreAudioSource (s, node);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
+                               // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
+                               boost::shared_ptr<Source> ret (src);
+
+                               if (setup_peakfile (ret, defer_peaks)) {
+                                       return boost::shared_ptr<Source>();
+                               }
+
+                               ret->check_for_analysis_data_on_disk ();
+                               SourceCreated (ret);
+                               return ret;
 #else
-                       throw; // rethrow
+                               throw; // rethrow
 #endif
+                       }
                }
-
        } else if (type == DataType::MIDI) {
-               Source* src = new SMFSource (s, node);
+               boost::shared_ptr<SMFSource> src (new SMFSource (s, node));
+               src->load_model (true, true);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                // boost_debug_shared_ptr_mark_interesting (src, "Source");
-               boost::shared_ptr<Source> ret (src);
-               ret->check_for_analysis_data_on_disk ();
-               SourceCreated (ret);
-               return ret;
+#endif
+               src->check_for_analysis_data_on_disk ();
+               SourceCreated (src);
+               return src;
        }
 
        return boost::shared_ptr<Source>();
@@ -200,9 +231,11 @@ SourceFactory::createReadable (DataType type, Session& s, const string& path,
                        try {
 
                                Source* src = new SndFileSource (s, path, chn, flags);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                                // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
                                boost::shared_ptr<Source> ret (src);
-                               
+
                                if (setup_peakfile (ret, defer_peaks)) {
                                        return boost::shared_ptr<Source>();
                                }
@@ -215,10 +248,12 @@ SourceFactory::createReadable (DataType type, Session& s, const string& path,
                        }
 
                        catch (failed_constructor& err) {
-#ifdef USE_COREAUDIO_FOR_FILES
+#ifdef HAVE_COREAUDIO
 
                                Source* src = new CoreAudioSource (s, path, chn, flags);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                                // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
                                boost::shared_ptr<Source> ret (src);
                                if (setup_peakfile (ret, defer_peaks)) {
                                        return boost::shared_ptr<Source>();
@@ -239,9 +274,12 @@ SourceFactory::createReadable (DataType type, Session& s, const string& path,
                }
 
        } else if (type == DataType::MIDI) {
-               
-               Source* src = new SMFSource (s, path, SMFSource::Flag(0));
+
+               SMFSource* src = new SMFSource (s, path, SMFSource::Flag(0));
+               src->load_model (true, true);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
                boost::shared_ptr<Source> ret (src);
 
                if (announce) {
@@ -269,7 +307,9 @@ SourceFactory::createWritable (DataType type, Session& s, const std::string& pat
                                (destructive
                                        ? Source::Flag (SndFileSource::default_writable_flags | Source::Destructive)
                                 : SndFileSource::default_writable_flags));
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                // boost_debug_shared_ptr_mark_interesting (src, "Source");
+#endif
                boost::shared_ptr<Source> ret (src);
 
                if (setup_peakfile (ret, defer_peaks)) {
@@ -285,19 +325,86 @@ SourceFactory::createWritable (DataType type, Session& s, const std::string& pat
 
        } else if (type == DataType::MIDI) {
                 // XXX writable flags should belong to MidiSource too
-               Source* src = new SMFSource (s, path, SndFileSource::default_writable_flags); 
+               boost::shared_ptr<SMFSource> src (new SMFSource (s, path, SndFileSource::default_writable_flags));
+               assert (src->writable ());
+
+               src->load_model (true, true);
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
                // boost_debug_shared_ptr_mark_interesting (src, "Source");
-               boost::shared_ptr<Source> ret (src);
+#endif
 
                // no analysis data - this is a new file
 
                if (announce) {
-                       SourceCreated (ret);
+                       SourceCreated (src);
                }
-               return ret;
+               return src;
 
        }
 
        return boost::shared_ptr<Source> ();
 }
 
+boost::shared_ptr<Source>
+SourceFactory::createFromPlaylist (DataType type, Session& s, boost::shared_ptr<Playlist> p, const PBD::ID& orig, const std::string& name,
+                                  uint32_t chn, frameoffset_t start, framecnt_t len, bool copy, bool defer_peaks)
+{
+       if (type == DataType::AUDIO) {
+               try {
+
+                       boost::shared_ptr<AudioPlaylist> ap = boost::dynamic_pointer_cast<AudioPlaylist>(p);
+
+                       if (ap) {
+
+                               if (copy) {
+                                       ap.reset (new AudioPlaylist (ap, start, len, name, true));
+                                       start = 0;
+                               }
+
+                               Source* src = new AudioPlaylistSource (s, orig, name, ap, chn, start, len, Source::Flag (0));
+                               boost::shared_ptr<Source> ret (src);
+
+                               if (setup_peakfile (ret, defer_peaks)) {
+                                       return boost::shared_ptr<Source>();
+                               }
+
+                               ret->check_for_analysis_data_on_disk ();
+                               SourceCreated (ret);
+                               return ret;
+                       }
+               }
+
+               catch (failed_constructor& err) {
+                       /* relax - return at function scope */
+               }
+
+       } else if (type == DataType::MIDI) {
+
+               try {
+
+                       boost::shared_ptr<MidiPlaylist> ap = boost::dynamic_pointer_cast<MidiPlaylist>(p);
+
+                       if (ap) {
+
+                               if (copy) {
+                                       ap.reset (new MidiPlaylist (ap, start, len, name, true));
+                                       start = 0;
+                               }
+
+                               Source* src = new MidiPlaylistSource (s, orig, name, ap, chn, start, len, Source::Flag (0));
+                               boost::shared_ptr<Source> ret (src);
+
+                               SourceCreated (ret);
+                               return ret;
+                       }
+               }
+
+               catch (failed_constructor& err) {
+                       /* relax - return at function scope */
+               }
+
+       }
+
+       return boost::shared_ptr<Source>();
+}
+