Part 1 of loading 2.X sessions; some things work, some things don't, hacks a-plenty.
[ardour.git] / libs / ardour / ardour / diskstream.h
index 955f2ed8e7c6bad3dc72b9703c86cc6bcf13a69a..5427dc644dc4c2cf8d0bd5a89dd0d54f9a17dd40 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2006 Paul Davis 
+    Copyright (C) 2000-2006 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
 #ifndef __ardour_diskstream_h__
 #define __ardour_diskstream_h__
 
-#include <sigc++/signal.h>
-
-#include <cmath>
 #include <string>
 #include <queue>
 #include <map>
 #include <vector>
-
+#include <cmath>
 #include <time.h>
 
-#include <pbd/fastlog.h>
-#include <pbd/ringbufferNPT.h>
-#include <pbd/stateful.h>
-#include <pbd/statefuldestructible.h> 
+#include <sigc++/signal.h>
+
+#include <boost/utility.hpp>
+
+#include "evoral/types.hpp"
 
-#include <ardour/ardour.h>
-#include <ardour/configuration.h>
-#include <ardour/session.h>
-#include <ardour/route_group.h>
-#include <ardour/route.h>
-#include <ardour/port.h>
-#include <ardour/utils.h>
+#include "pbd/fastlog.h"
+#include "pbd/ringbufferNPT.h"
+#include "pbd/stateful.h"
+#include "pbd/statefuldestructible.h"
+
+#include "ardour/ardour.h"
+#include "ardour/location.h"
+#include "ardour/session_object.h"
+#include "ardour/types.h"
+#include "ardour/utils.h"
+#include "ardour/chan_count.h"
 
 struct tm;
 
 namespace ARDOUR {
 
 class AudioEngine;
+class IO;
+class Playlist;
+class Processor;
+class Region;
+class Route;
 class Send;
 class Session;
-class Playlist;
-class IO;
 
-class Diskstream : public SessionObject
-{      
+class Diskstream : public SessionObject, public boost::noncopyable
+{
   public:
        enum Flag {
-               Recordable = 0x1,
-               Hidden = 0x2,
-               Destructive = 0x4
+               Recordable  = 0x1,
+               Hidden      = 0x2,
+               Destructive = 0x4,
+               NonLayered   = 0x8
        };
 
-       Diskstream (Session &, const string& name, Flag f = Recordable);
+       Diskstream (Session &, const std::string& name, Flag f = Recordable);
        Diskstream (Session &, const XMLNode&);
        virtual ~Diskstream();
-       
-       bool set_name (const string& str);
 
-       ARDOUR::IO* io() const { return _io; }
-       void set_io (ARDOUR::IO& io);
+       bool set_name (const std::string& str);
+
+       boost::shared_ptr<ARDOUR::IO> io() const { return _io; }
+       void set_route (ARDOUR::Route&);
 
        virtual float playback_buffer_load() const = 0;
        virtual float capture_buffer_load() const = 0;
@@ -80,7 +86,7 @@ class Diskstream : public SessionObject
        AlignStyle alignment_style() const { return _alignment_style; }
        void       set_align_style (AlignStyle);
        void       set_persistent_align_style (AlignStyle a) { _persistent_alignment_style = a; }
-       
+
        nframes_t roll_delay() const { return _roll_delay; }
        void      set_roll_delay (nframes_t);
 
@@ -88,20 +94,22 @@ class Diskstream : public SessionObject
        virtual void set_record_enabled (bool yn) = 0;
 
        bool destructive() const { return _flags & Destructive; }
-       virtual int set_destructive (bool yn) { return -1; }
-       virtual bool can_become_destructive (bool& requires_bounce) const { return false; }
+       virtual int set_destructive (bool /*yn*/) { return -1; }
+       virtual int set_non_layered (bool /*yn*/) { return -1; }
+       virtual bool can_become_destructive (bool& /*requires_bounce*/) const { return false; }
 
        bool           hidden()      const { return _flags & Hidden; }
        bool           recordable()  const { return _flags & Recordable; }
+       bool           non_layered()  const { return _flags & NonLayered; }
        bool           reversed()    const { return _actual_speed < 0.0f; }
        double         speed()       const { return _visible_speed; }
-       
+
        virtual void punch_in()  {}
        virtual void punch_out() {}
 
        void set_speed (double);
        void non_realtime_set_speed ();
-       virtual void non_realtime_locate (nframes_t location) {};
+       virtual void non_realtime_locate (nframes_t /*location*/) {};
        virtual void playlist_modified ();
 
        boost::shared_ptr<Playlist> playlist () { return _playlist; }
@@ -114,7 +122,7 @@ class Diskstream : public SessionObject
        nframes_t current_capture_end()   const { return capture_start_frame + capture_captured; }
        nframes_t get_capture_start_frame (uint32_t n=0);
        nframes_t get_captured_frames (uint32_t n=0);
-       
+
        ChanCount n_channels() { return _n_channels; }
 
        static nframes_t disk_io_frames() { return disk_io_chunk_frames; }
@@ -122,7 +130,7 @@ class Diskstream : public SessionObject
 
        /* Stateful */
        virtual XMLNode& get_state(void) = 0;
-       virtual int      set_state(const XMLNode& node) = 0;
+       virtual int      set_state(const XMLNode&, int version = 3000) = 0;
        
        virtual void monitor_input (bool) {}
 
@@ -140,7 +148,8 @@ class Diskstream : public SessionObject
 
        void remove_region_from_last_capture (boost::weak_ptr<Region> wregion);
 
-       void move_processor_automation (boost::weak_ptr<Processor>, Evoral::RangeMoveList const &);
+       void move_processor_automation (boost::weak_ptr<Processor>,
+                       std::list< Evoral::RangeMove<nframes_t> > const &);
 
        sigc::signal<void>            RecordEnableChanged;
        sigc::signal<void>            SpeedChanged;
@@ -179,48 +188,48 @@ class Diskstream : public SessionObject
        friend class Track;
 
        virtual void prepare ();
-       virtual int  process (nframes_t transport_frame, nframes_t nframes, nframes_t offset, bool can_record, bool rec_monitors_input) = 0;
+       virtual int  process (nframes_t transport_frame, nframes_t nframes, bool can_record, bool rec_monitors_input) = 0;
        virtual bool commit  (nframes_t nframes) = 0;
        virtual void recover (); /* called if commit will not be called, but process was */
 
        //private:
-       
+
        enum TransitionType {
                CaptureStart = 0,
                CaptureEnd
        };
-       
+
        struct CaptureTransition {
                TransitionType   type;
                nframes_t   capture_val; ///< The start or end file frame position
        };
 
        /* The two central butler operations */
-       virtual int do_flush (Session::RunContext context, bool force = false) = 0;
+       virtual int do_flush (RunContext context, bool force = false) = 0;
        virtual int do_refill () = 0;
-       
+
        /** For non-butler contexts (allocates temporary working buffers) */
        virtual int do_refill_with_alloc() = 0;
-       
+
        /* XXX fix this redundancy ... */
 
        virtual void playlist_changed (Change);
        virtual void playlist_deleted (boost::weak_ptr<Playlist>);
-       virtual void playlist_ranges_moved (Evoral::RangeMoveList const &);
+       virtual void playlist_ranges_moved (std::list< Evoral::RangeMove<nframes_t> > const &);
 
        virtual void transport_stopped (struct tm&, time_t, bool abort) = 0;
        virtual void transport_looped (nframes_t transport_frame) = 0;
 
        struct CaptureInfo {
-           uint32_t start;
-           uint32_t frames;
+               uint32_t start;
+               uint32_t frames;
        };
 
        virtual void init (Flag);
 
        virtual int use_new_write_source (uint32_t n=0) = 0;
 
-       virtual int find_and_use_playlist (const string&) = 0;
+       virtual int find_and_use_playlist (const std::string&) = 0;
 
        virtual void allocate_temporary_buffers () = 0;
 
@@ -242,58 +251,58 @@ class Diskstream : public SessionObject
 
        uint32_t i_am_the_modifier;
 
-       ARDOUR::IO*       _io;
-       ChanCount         _n_channels;
+       boost::shared_ptr<ARDOUR::IO>  _io;
+       Route*       _route;
+       ChanCount    _n_channels;
 
        boost::shared_ptr<Playlist> _playlist;
 
-       mutable gint             _record_enabled;
-       double                   _visible_speed;
-       double                   _actual_speed;
+       mutable gint _record_enabled;
+       double       _visible_speed;
+       double       _actual_speed;
        /* items needed for speed change logic */
-       bool                     _buffer_reallocation_required;
-       bool                     _seek_required;
-       
-       bool                      force_refill;
-       nframes_t            capture_start_frame;
-       nframes_t            capture_captured;
-       bool                      was_recording;
-       nframes_t            adjust_capture_position;
-       nframes_t           _capture_offset;
-       nframes_t           _roll_delay;
-       nframes_t            first_recordable_frame;
-       nframes_t            last_recordable_frame;
-       int                       last_possibly_recording;
-       AlignStyle               _alignment_style;
-       bool                     _scrubbing;
-       bool                     _slaved;
-       bool                     _processed;
-       Location*                 loop_location;
-       nframes_t            overwrite_frame;
-       off_t                     overwrite_offset;
-       bool                      pending_overwrite;
-       bool                      overwrite_queued;
-       IOChange                  input_change_pending;
-       nframes_t            wrap_buffer_size;
-       nframes_t            speed_buffer_size;
-
-       uint64_t                  last_phase;
-       uint64_t                  phi;
-       uint64_t                  target_phi;
-       
-       nframes_t            file_frame;                
-       nframes_t            playback_sample;
-       nframes_t            playback_distance;
-       bool                 commit_should_unlock;
-
-       uint32_t                 _read_data_count;
-       uint32_t                 _write_data_count;
-
-       bool                      in_set_state;
-       AlignStyle               _persistent_alignment_style;
-       bool                      first_input_change;
-
-       Glib::Mutex  state_lock;
+       bool         _buffer_reallocation_required;
+       bool         _seek_required;
+
+       bool          force_refill;
+       nframes_t     capture_start_frame;
+       nframes_t     capture_captured;
+       bool          was_recording;
+       nframes_t     adjust_capture_position;
+       nframes_t    _capture_offset;
+       nframes_t    _roll_delay;
+       nframes_t     first_recordable_frame;
+       nframes_t     last_recordable_frame;
+       int           last_possibly_recording;
+       AlignStyle   _alignment_style;
+       bool         _scrubbing;
+       bool         _slaved;
+       bool         _processed;
+       Location*     loop_location;
+       nframes_t     overwrite_frame;
+       off_t         overwrite_offset;
+       bool          pending_overwrite;
+       bool          overwrite_queued;
+       IOChange      input_change_pending;
+       nframes_t     wrap_buffer_size;
+       nframes_t     speed_buffer_size;
+
+       double        _speed;
+       double        _target_speed;
+
+       nframes_t     file_frame;
+       nframes_t     playback_sample;
+       nframes_t     playback_distance;
+       bool          commit_should_unlock;
+
+       uint32_t     _read_data_count;
+       uint32_t     _write_data_count;
+
+       bool          in_set_state;
+       AlignStyle   _persistent_alignment_style;
+       bool          first_input_change;
+
+       Glib::Mutex state_lock;
 
        nframes_t scrub_start;
        nframes_t scrub_buffer_size;
@@ -303,8 +312,10 @@ class Diskstream : public SessionObject
        sigc::connection plmod_connection;
        sigc::connection plgone_connection;
        sigc::connection plregion_connection;
-       
+
        Flag _flags;
+
+       void route_going_away ();
 };
 
 }; /* namespace ARDOUR */