never remove tape track source files even if empty, reconnect editor mute/solo buttons
[ardour.git] / libs / ardour / ardour / audiofilesource.h
index ecbac569d52416587e3a9959ee5b67b073b93c2f..507a464421d0831fbec97adbc54d3e591aabf599 100644 (file)
@@ -42,7 +42,8 @@ class AudioFileSource : public AudioSource {
                Removable = 0x8,
                RemovableIfEmpty = 0x10,
                RemoveAtDestroy = 0x20,
-               BuildPeaks = 0x40
+               NoPeakFile = 0x40,
+               Destructive = 0x80
        };
 
        virtual ~AudioFileSource ();
@@ -55,16 +56,6 @@ class AudioFileSource : public AudioSource {
 
        static void set_peak_dir (string dir) { peak_dir = dir; }
 
-       /* factory for an existing but not-used-in-session audio file. this exists
-          because there maybe multiple back-end derivations of AudioFileSource,
-          some of which can handle formats that cannot be handled by others.
-          For example, CoreAudioFileSource can handle MP3 files, which SndFileSource
-          cannot.
-        */
-
-       static AudioFileSource* create (string path_plus_channel);
-       static AudioFileSource* create (const XMLNode&);
-
        static bool get_soundfile_info (string path, SoundFileInfo& _info, string& error);
 
        void set_allow_remove_if_empty (bool yn);
@@ -84,7 +75,7 @@ class AudioFileSource : public AudioSource {
 
        int move_to_trash (const string trash_dir_name);
 
-       static bool is_empty (string path);
+       static bool is_empty (Session&, string path);
        void mark_streaming_write_completed ();
 
        void   mark_take (string);
@@ -95,9 +86,9 @@ class AudioFileSource : public AudioSource {
        static void set_bwf_serial_number (int);
        
        static void set_search_path (string);
-       static void set_header_position_offset (jack_nframes_t offset, bool negative);
+       static void set_header_position_offset (jack_nframes_t offset );
 
-       static sigc::signal<void,struct tm*, time_t> HeaderPositionOffsetChanged;
+       static sigc::signal<void> HeaderPositionOffsetChanged;
 
        XMLNode& get_state ();
        int set_state (const XMLNode&);
@@ -107,22 +98,22 @@ class AudioFileSource : public AudioSource {
           to cause issues.
        */
 
-       void handle_header_position_change (struct tm*, time_t tnow);
+       virtual void handle_header_position_change () {}
 
   protected:
        
        /* constructor to be called for existing external-to-session files */
 
-       AudioFileSource (std::string path, Flag flags);
+       AudioFileSource (Session&, std::string path, Flag flags);
 
        /* constructor to be called for new in-session files */
 
-       AudioFileSource (std::string path, Flag flags,
+       AudioFileSource (Session&, std::string path, Flag flags,
                         SampleFormat samp_format, HeaderFormat hdr_format);
 
        /* constructor to be called for existing in-session files */
 
-       AudioFileSource (const XMLNode&);
+       AudioFileSource (Session&, const XMLNode&);
 
        int init (string idstr, bool must_exist);
 
@@ -130,7 +121,6 @@ class AudioFileSource : public AudioSource {
        string        _path;
        Flag          _flags;
        string        _take_id;
-       bool           allow_remove_if_empty;
        uint64_t       timeline_position;
 
        static string peak_dir;
@@ -141,7 +131,6 @@ class AudioFileSource : public AudioSource {
        static char bwf_serial_number[13];
 
        static uint64_t header_position_offset;
-       static bool     header_position_negative;
 
        virtual void set_timeline_position (jack_nframes_t pos);
        virtual void set_header_timeline_position () = 0;
@@ -151,7 +140,7 @@ class AudioFileSource : public AudioSource {
        bool writable() const { return _flags & Writable; }
 };
 
-}; /* namespace ARDOUR */
+} // namespace ARDOUR
 
 #endif /* __ardour_audiofilesource_h__ */