Improved ExportProfileManager error handling, and added some missing (?) initialization
[ardour.git] / libs / ardour / source_factory.cc
index c6b19c860030523156b83f0e865b581ba480df23..0b7c0f3d9e4cc658c0cbc2e2652b4a4c91bcfaf3 100644 (file)
@@ -21,6 +21,7 @@
 #include <pbd/error.h>
 #include <pbd/convert.h>
 #include <pbd/pthread_utils.h>
+#include <pbd/stacktrace.h>
 
 #include <ardour/source_factory.h>
 #include <ardour/sndfilesource.h>
 #include <ardour/configuration.h>
 #include <ardour/smf_source.h>
 
-#ifdef HAVE_COREAUDIO
+#ifdef  HAVE_COREAUDIO
+#define USE_COREAUDIO_FOR_FILES
+#endif
+
+#ifdef USE_COREAUDIO_FOR_FILES
 #include <ardour/coreaudiosource.h>
 #endif
 
+
 #include "i18n.h"
 
 using namespace ARDOUR;
@@ -40,7 +46,7 @@ using namespace PBD;
 
 sigc::signal<void,boost::shared_ptr<Source> > SourceFactory::SourceCreated;
 Glib::Cond* SourceFactory::PeaksToBuild;
-Glib::StaticMutex SourceFactory::peak_building_lock;
+Glib::StaticMutex SourceFactory::peak_building_lock = GLIBMM_STATIC_MUTEX_INIT;
 std::list<boost::weak_ptr<AudioSource> > SourceFactory::files_with_peaks;
 
 static void 
@@ -60,7 +66,7 @@ peak_thread_work ()
                if (SourceFactory::files_with_peaks.empty()) {
                        goto wait;
                }
-               
+
                boost::shared_ptr<AudioSource> as (SourceFactory::files_with_peaks.front().lock());
                SourceFactory::files_with_peaks.pop_front ();
                SourceFactory::peak_building_lock.unlock ();
@@ -112,36 +118,59 @@ boost::shared_ptr<Source>
 SourceFactory::createSilent (Session& s, const XMLNode& node, nframes_t nframes, float sr)
 {
        boost::shared_ptr<Source> ret (new SilentFileSource (s, node, nframes, sr));
+       // no analysis data - the file is non-existent
        SourceCreated (ret);
        return ret;
 }
 
-#ifdef USE_COREAUDIO_FOR_FILES
 boost::shared_ptr<Source>
 SourceFactory::create (Session& s, const XMLNode& node, bool defer_peaks)
 {
-       try {
-               boost::shared_ptr<Source> ret (new CoreAudioSource (s, node));
-               if (!defer_peaks) {
-                       if (setup_peakfile (ret, false)) {
-                               return boost::shared_ptr<Source>();
-                       }
-               }
-               SourceCreated (ret);
-               return ret;
-       } 
+       DataType type = DataType::AUDIO;
+       const XMLProperty* prop = node.property("type");
 
+       if (!prop) {
+               return boost::shared_ptr<Source>();
+       }
 
-       catch (failed_constructor& err) {       
+       type = DataType (prop->value());
 
-               /* this is allowed to throw */
+       if (type == DataType::AUDIO) {
+
+               try {
+                       
+                       boost::shared_ptr<Source> ret (new SndFileSource (s, node));
+                       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) {
 
-               boost::shared_ptr<Source> ret (new SndFileSource (s, node));
-               if (!defer_peaks) {
-                       if (setup_peakfile (ret, false)) {
+#ifdef USE_COREAUDIO_FOR_FILES
+               
+                       /* this is allowed to throw */
+                       
+                       boost::shared_ptr<Source> ret (new CoreAudioSource (s, node));
+                       
+                       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 
+#endif
                }
+
+       } else if (type == DataType::MIDI) {
+               boost::shared_ptr<Source> ret (new SMFSource (s, node));
+               ret->check_for_analysis_data_on_disk ();
                SourceCreated (ret);
                return ret;
        }
@@ -149,84 +178,61 @@ SourceFactory::create (Session& s, const XMLNode& node, bool defer_peaks)
        return boost::shared_ptr<Source>();
 }
 
-#else
-
-boost::shared_ptr<Source>
-SourceFactory::create (Session& s, const XMLNode& node, bool defer_peaks)
-{
-       /* this is allowed to throw */
-
-       boost::shared_ptr<Source> ret (new SndFileSource (s, node));
-       
-       if (!defer_peaks) {
-               if (setup_peakfile (ret, false)) {
-                       return boost::shared_ptr<Source>();
-               }
-       }
-       
-       SourceCreated (ret);
-       return ret;
-}
-
-#endif // USE_COREAUDIO_FOR_FILES
-
 boost::shared_ptr<Source>
 SourceFactory::createReadable (DataType type, Session& s, string path, int chn, AudioFileSource::Flag flags, bool announce, bool defer_peaks)
 {
        if (type == DataType::AUDIO) {
-       
-#ifdef HAVE_COREAUDIO
-               try {
-                       boost::shared_ptr<Source> ret (new CoreAudioSource (s, path, chn, flags));
-                       if (!defer_peaks) {
-                               if (setup_peakfile (ret, false)) {
+
+               if (!(flags & Destructive)) {
+                       
+                       try {
+                               
+                               boost::shared_ptr<Source> ret (new SndFileSource (s, path, chn, flags));
+                               
+                               if (setup_peakfile (ret, defer_peaks)) {
                                        return boost::shared_ptr<Source>();
                                }
+                               
+                               ret->check_for_analysis_data_on_disk ();
+                               if (announce) {
+                                       SourceCreated (ret);
+                               }
+                               return ret;
                        }
-                       if (announce) {
-                               SourceCreated (ret);
-                       }
-                       return ret;
-               }
-               
-               catch (failed_constructor& err) {
-                       boost::shared_ptr<Source> ret (new SndFileSource (s, path, chn, flags));
-                       if (!defer_peaks) {
-                               if (setup_peakfile (ret, false)) {
+                       
+                       catch (failed_constructor& err) {
+#ifdef USE_COREAUDIO_FOR_FILES
+                               
+                               boost::shared_ptr<Source> ret (new CoreAudioSource (s, path, chn, flags));
+                               if (setup_peakfile (ret, defer_peaks)) {
                                        return boost::shared_ptr<Source>();
                                }
-                       }
-                       if (announce) {
-                               SourceCreated (ret);
-                       }
-                       return ret;
-               }
+                               ret->check_for_analysis_data_on_disk ();
+                               if (announce) {
+                                       SourceCreated (ret);
+                               }
+                               return ret;
+                               
 #else
-               boost::shared_ptr<Source> ret (new SndFileSource (s, path, chn, flags));
-
-               if (!defer_peaks) {
-                       if (setup_peakfile (ret, false)) {
-                               return boost::shared_ptr<Source>();
+                               throw; // rethrow
+#endif
                        }
-               }
 
-               if (announce) {
-                       SourceCreated (ret);
+               } else {
+                       // eh?
                }
-
-               return ret;
-#endif
-               
+       
        } else if (type == DataType::MIDI) {
-
+               
                // FIXME: flags?
                boost::shared_ptr<Source> ret (new SMFSource (s, path, SMFSource::Flag(0)));
-
+               
                if (announce) {
                        SourceCreated (ret);
                }
 
                return ret;
+
        }
 
        return boost::shared_ptr<Source>();
@@ -246,11 +252,12 @@ SourceFactory::createWritable (DataType type, Session& s, std::string path, bool
                                                (destructive ? AudioFileSource::Flag (SndFileSource::default_writable_flags | AudioFileSource::Destructive) :
                                                 SndFileSource::default_writable_flags)));      
 
-               if (!defer_peaks) {
-                       if (setup_peakfile (ret, false)) {
-                               return boost::shared_ptr<Source>();
-                       }
+               if (setup_peakfile (ret, defer_peaks)) {
+                       return boost::shared_ptr<Source>();
                }
+               
+               // no analysis data - this is a new file
+
                if (announce) {
                        SourceCreated (ret);
                }
@@ -259,6 +266,8 @@ SourceFactory::createWritable (DataType type, Session& s, std::string path, bool
        } else if (type == DataType::MIDI) {
 
                boost::shared_ptr<Source> ret (new SMFSource (s, path));
+       
+               // no analysis data - this is a new file
                
                if (announce) {
                        SourceCreated (ret);