fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / ardour / file_source.h
index 4b1dbf2b6cb5dd51542cc7aee9a8a73c08f57536..00fb74b426114370723a717526744c9ea78f0451 100644 (file)
@@ -44,9 +44,9 @@ class LIBARDOUR_API MissingSource : public std::exception
 /** A source associated with a file on disk somewhere */
 class LIBARDOUR_API FileSource : virtual public Source {
 public:
-       virtual ~FileSource () {}
+       virtual ~FileSource ();
 
-       virtual const std::string& path() const { return _path; }
+       const std::string& path() const { return _path; }
 
        virtual bool safe_file_extension (const std::string& path) const = 0;
 
@@ -74,14 +74,24 @@ public:
 
        void inc_use_count ();
        bool removable () const;
+        bool is_stub () const;
 
        const std::string& origin() const { return _origin; }
 
        virtual void set_path (const std::string&);
-       
+
        static PBD::Signal2<int,std::string,std::vector<std::string> > AmbiguousFileName;
 
-protected:
+       void existence_check ();
+       virtual void prevent_deletion ();
+
+       /** Rename the file on disk referenced by this source to \param newname
+        */
+       int rename (const std::string& name);
+
+       virtual void close () = 0;
+
+  protected:
        FileSource (Session& session, DataType type,
                    const std::string& path,
                    const std::string& origin,
@@ -100,9 +110,6 @@ protected:
        uint16_t    _channel;
        bool        _within_session;
        std::string _origin;
-       bool        _open;
-
-       void prevent_deletion ();
 };
 
 } // namespace ARDOUR