dramatic change in logic and naming for operations related to adding a MIDI region...
[ardour.git] / libs / ardour / ardour / smf_source.h
index e2f36b07ecbe33e690da3d40a77a978f235694eb..193330ef3688686c3e3c60e358d5a988233a6f7e 100644 (file)
@@ -34,10 +34,10 @@ namespace ARDOUR {
 template<typename T> class MidiRingBuffer;
 
 /** Standard Midi File (Type 0) Source */
-class SMFSource : public MidiSource, public FileSource, public Evoral::SMF {
+class LIBARDOUR_API SMFSource : public MidiSource, public FileSource, public Evoral::SMF {
 public:
        /** Constructor for existing external-to-session files */
-       SMFSource (Session& session, const std::string& path, 
+       SMFSource (Session& session, const std::string& path,
                        Source::Flag flags = Source::Flag(0));
 
        /** Constructor for existing in-session files */
@@ -45,17 +45,16 @@ public:
 
        virtual ~SMFSource ();
 
-       bool safe_file_extension (const std::string& path) const {
+        bool safe_file_extension (const std::string& path) const {
                return safe_midi_file_extension(path);
        }
 
-       bool set_name (const std::string& newname) { return (set_source_name(newname, false) == 0); }
-
        void append_event_unlocked_beats (const Evoral::Event<Evoral::MusicalTime>& ev);
        void append_event_unlocked_frames (const Evoral::Event<framepos_t>& ev, framepos_t source_start);
 
        void mark_streaming_midi_write_started (NoteMode mode);
        void mark_streaming_write_completed ();
+       void mark_midi_streaming_write_completed (Evoral::Sequence<Evoral::MusicalTime>::StuckNoteOption, Evoral::MusicalTime when = 0);
 
        XMLNode& get_state ();
        int set_state (const XMLNode&, int version);
@@ -64,26 +63,27 @@ public:
        void destroy_model ();
 
        void flush_midi ();
-
-       static void set_header_position_offset (framecnt_t offset, bool negative);
+       void ensure_disk_file ();
 
        static bool safe_midi_file_extension (const std::string& path);
 
+       void prevent_deletion ();
+
   protected:
-        void set_path (const std::string& newpath);
-        
+       void set_path (const std::string& newpath);
+
   private:
-        int open_for_write ();
+       int open_for_write ();
 
        framecnt_t read_unlocked (Evoral::EventSink<framepos_t>& dst,
-                                 framepos_t position,
-                                 framepos_t start,
-                                 framecnt_t cnt,
-                                 MidiStateTracker* tracker) const;
+                                 framepos_t                     position,
+                                 framepos_t                     start,
+                                 framecnt_t                     cnt,
+                                 MidiStateTracker*              tracker) const;
 
        framecnt_t write_unlocked (MidiRingBuffer<framepos_t>& src,
-                                  framepos_t position,
-                                  framecnt_t cnt);
+                                  framepos_t                  position,
+                                  framecnt_t                  cnt);
 
        double    _last_ev_time_beats;
        framepos_t _last_ev_time_frames;