remove Glib::ustring from libardour; allow any characters except '/' and '\' in paths...
[ardour.git] / libs / ardour / source.cc
index 61ace5a72b843297dd1b0fb1c66d8e2cf6d81cd8..6ab907ba169861826872028e0015e23e8f0ff551 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000 Paul Davis 
+    Copyright (C) 2000 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #include <glibmm/thread.h>
 #include <glibmm/miscutils.h>
 #include <glibmm/fileutils.h>
-#include <pbd/xml++.h>
-#include <pbd/pthread_utils.h>
-#include <pbd/enumwriter.h>
+#include "pbd/xml++.h"
+#include "pbd/pthread_utils.h"
+#include "pbd/enumwriter.h"
 
-#include <ardour/playlist.h>
-#include <ardour/session.h>
-#include <ardour/source.h>
-#include <ardour/transient_detector.h>
+#include "ardour/debug.h"
+#include "ardour/session.h"
+#include "ardour/source.h"
+#include "ardour/transient_detector.h"
 
 #include "i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
+using namespace PBD;
 
 Source::Source (Session& s, DataType type, const string& name, Flag flags)
        : SessionObject(s, name)
        , _type(type)
        , _flags(flags)
        , _timeline_position(0)
+        , _use_count (0)
 {
        _analysed = false;
        _timestamp = 0;
-       _in_use = 0;
+       fix_writable_flags ();
 }
 
-Source::Source (Session& s, const XMLNode& node) 
+Source::Source (Session& s, const XMLNode& node)
        : SessionObject(s, "unnamed source")
        , _type(DataType::AUDIO)
        , _flags (Flag (Writable|CanRename))
        , _timeline_position(0)
+        , _use_count (0)
 {
        _timestamp = 0;
        _analysed = false;
-       _in_use = 0;
 
-       if (set_state (node) || _type == DataType::NIL) {
+       if (set_state (node, Stateful::loading_state_version) || _type == DataType::NIL) {
                throw failed_constructor();
        }
+
+       fix_writable_flags ();
 }
 
 Source::~Source ()
 {
-       notify_callbacks ();
+       DEBUG_TRACE (DEBUG::Destruction, string_compose ("Source %1 destructor %2\n", _name, this));
+}
+
+void
+Source::fix_writable_flags ()
+{
+       if (!_session.writable()) {
+               _flags = Flag (_flags & ~(Writable|Removable|RemovableIfEmpty|RemoveAtDestroy|CanRename));
+       }
 }
 
 XMLNode&
@@ -98,7 +110,7 @@ Source::get_state ()
 }
 
 int
-Source::set_state (const XMLNode& node)
+Source::set_state (const XMLNode& node, int /*version*/)
 {
        const XMLProperty* prop;
 
@@ -107,7 +119,7 @@ Source::set_state (const XMLNode& node)
        } else {
                return -1;
        }
-       
+
        if ((prop = node.property ("id")) != 0) {
                _id = prop->value ();
        } else {
@@ -121,14 +133,14 @@ Source::set_state (const XMLNode& node)
        if ((prop = node.property ("timestamp")) != 0) {
                sscanf (prop->value().c_str(), "%ld", &_timestamp);
        }
-       
+
        if ((prop = node.property (X_("flags"))) != 0) {
                _flags = Flag (string_2_enum (prop->value(), _flags));
        } else {
                _flags = Flag (0);
 
        }
-       
+
        /* old style, from the period when we had DestructiveFileSource */
        if ((prop = node.property (X_("destructive"))) != 0) {
                _flags = Flag (_flags | Destructive);
@@ -137,52 +149,6 @@ Source::set_state (const XMLNode& node)
        return 0;
 }
 
-void
-Source::add_playlist (boost::shared_ptr<Playlist> pl)
-{
-       std::pair<PlaylistMap::iterator,bool> res;
-       std::pair<boost::shared_ptr<Playlist>, uint32_t> newpair (pl, 1);
-       Glib::Mutex::Lock lm (_playlist_lock);
-
-       res = _playlists.insert (newpair);
-
-       if (!res.second) {
-               /* it already existed, bump count */
-               res.first->second++;
-       }
-               
-       pl->GoingAway.connect (bind (
-                       mem_fun (*this, &Source::remove_playlist),
-                       boost::weak_ptr<Playlist> (pl)));
-}
-
-void
-Source::remove_playlist (boost::weak_ptr<Playlist> wpl)
-{
-       boost::shared_ptr<Playlist> pl (wpl.lock());
-
-       if (!pl) {
-               return;
-       }
-
-       PlaylistMap::iterator x;
-       Glib::Mutex::Lock lm (_playlist_lock);
-
-       if ((x = _playlists.find (pl)) != _playlists.end()) {
-               if (x->second > 1) {
-                       x->second--;
-               } else {
-                       _playlists.erase (x);
-               }
-       }
-}
-
-uint32_t
-Source::used () const
-{
-       return _playlists.size();
-}
-
 bool
 Source::has_been_analysed() const
 {
@@ -197,7 +163,7 @@ Source::set_been_analysed (bool yn)
                Glib::Mutex::Lock lm (_analysis_lock);
                _analysed = yn;
        }
-       
+
        if (yn) {
                load_transients (get_transients_path());
                AnalysisChanged(); // EMIT SIGNAL
@@ -212,7 +178,7 @@ Source::load_transients (const string& path)
        if (!file) {
                return -1;
        }
-       
+
        transients.clear ();
 
        stringstream strstr;
@@ -230,14 +196,14 @@ Source::load_transients (const string& path)
        return 0;
 }
 
-string 
+string
 Source::get_transients_path () const
 {
        vector<string> parts;
        string s;
 
        /* old sessions may not have the analysis directory */
-       
+
        _session.ensure_subdirs ();
 
        s = _session.analysis_dir ();
@@ -247,12 +213,12 @@ Source::get_transients_path () const
        s += '.';
        s += TransientDetector::operational_identifier();
        parts.push_back (s);
-       
+
        return Glib::build_filename (parts);
 }
 
 bool
-Source::check_for_analysis_data_on_disk () 
+Source::check_for_analysis_data_on_disk ()
 {
        /* looks to see if the analysis files for this source are on disk.
           if so, mark us already analysed.
@@ -274,10 +240,12 @@ Source::check_for_analysis_data_on_disk ()
 void
 Source::mark_for_remove ()
 {
-       // This operation is not allowed for sources for destructive tracks or embedded files.
-       // Fortunately mark_for_remove() is never called for embedded files. This function
-       // must be fixed if that ever happens.
-       if (_flags & Destructive) {
+       // This operation is not allowed for sources for destructive tracks or out-of-session files.
+
+       /* XXX need a way to detect _within_session() condition here - move it from FileSource? 
+        */
+
+       if ((_flags & Destructive)) { 
                return;
        }
 
@@ -304,3 +272,23 @@ Source::set_allow_remove_if_empty (bool yn)
        }
 }
 
+void
+Source::inc_use_count ()
+{
+        g_atomic_int_inc (&_use_count);
+}
+
+void
+Source::dec_use_count ()
+{
+#ifndef NDEBUG
+        gint oldval = g_atomic_int_exchange_and_add (&_use_count, -1);
+        if (oldval <= 0) {
+                cerr << "Bad use dec for " << name() << endl;
+                abort ();
+        }
+        assert (oldval > 0);
+#else 
+        g_atomic_int_exchange_and_add (&_use_count, -1);
+#endif
+}