Remove no-longer used file.
[ardour.git] / libs / ardour / ardour / session.h
index 161b6e07ec84de8da15c15594c152338e0c5e39f..c408714c94728b4a0e63aca37d7c7467a3ed8b1b 100644 (file)
@@ -41,7 +41,6 @@
 #include "pbd/signals.h"
 #include "pbd/undo.h"
 
-#include "midi++/mmc.h"
 #include "midi++/types.h"
 
 #include "ardour/ardour.h"
@@ -64,6 +63,8 @@ class AEffect;
 
 namespace MIDI {
        class Port;
+       class MachineControl;
+       class Parser;
 }
 
 namespace PBD {
@@ -88,7 +89,6 @@ class AuxInput;
 class BufferSet;
 class Bundle;
 class Butler;
-class ControlProtocolInfo;
 class Diskstream;
 class ExportHandler;
 class ExportStatus;
@@ -119,6 +119,7 @@ class Slave;
 class Source;
 class TempoMap;
 class VSTPlugin;
+class Graph;
 class Track;
 
 extern void setup_enum_writer ();
@@ -178,12 +179,12 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        Glib::ustring peak_path (Glib::ustring) const;
 
-       static std::string change_source_path_by_name (std::string oldpath, std::string oldname, std::string newname, bool destructive);
+       std::string change_source_path_by_name (std::string oldpath, std::string oldname, std::string newname, bool destructive);
 
        std::string peak_path_from_audio_path (std::string) const;
        std::string new_audio_source_name (const std::string&, uint32_t nchans, uint32_t chan, bool destructive);
        std::string new_midi_source_name (const std::string&);
-       std::string new_source_path_from_name (DataType type, const std::string&);
+       std::string new_source_path_from_name (DataType type, const std::string&, bool as_stub = false);
        RouteList new_route_from_template (uint32_t how_many, const std::string& template_path);
 
        void process (nframes_t nframes);
@@ -277,8 +278,12 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        PBD::Signal0<void> Located;
 
        PBD::Signal1<void,RouteList&> RouteAdded;
+       /** Emitted when anything about any of our route groups changes */
        PBD::Signal0<void> RouteGroupChanged;
 
+        /* Step Editing status changed */
+        PBD::Signal1<void,bool> StepEditStatusChange;
+
        void queue_event (SessionEvent*);
 
        void request_roll_at_and_return (nframes_t start, nframes_t return_to);
@@ -292,12 +297,12 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        nframes_t  last_transport_start() const { return _last_roll_location; }
        void goto_end ();
        void goto_start ();
-       void set_session_start (nframes_t);
-       void set_session_end (nframes_t);
        void use_rf_shuttle_speed ();
        void allow_auto_play (bool yn);
        void request_transport_speed (double speed);
        void request_overwrite_buffer (Track *);
+       void adjust_playback_buffering();
+       void adjust_capture_buffering();
        void request_track_speed (Track *, double speed);
        void request_input_change_handling ();
 
@@ -327,7 +332,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        /* Locations */
 
-       Locations *locations() { return &_locations; }
+       Locations *locations() { return _locations; }
 
        PBD::Signal1<void,Location*>    auto_loop_location_changed;
        PBD::Signal1<void,Location*>    auto_punch_location_changed;
@@ -509,8 +514,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        int  cleanup_sources (CleanupReport&);
        int  cleanup_trash_sources (CleanupReport&);
 
-       int destroy_region (boost::shared_ptr<Region>);
-       int destroy_regions (std::list<boost::shared_ptr<Region> >);
+       int destroy_sources (std::list<boost::shared_ptr<Source> >);
 
        int remove_last_capture ();
 
@@ -529,9 +533,10 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        */
        static PBD::Signal0<int> AskAboutPendingState;
 
-       boost::shared_ptr<AudioFileSource> create_audio_source_for_session (size_t, std::string const &, uint32_t, bool);
-
-       boost::shared_ptr<MidiSource> create_midi_source_for_session (std::string const &);
+       boost::shared_ptr<AudioFileSource> create_audio_source_for_session (size_t, std::string const &, uint32_t, 
+                                                                            bool destructive, bool as_stub = false);
+        
+       boost::shared_ptr<MidiSource> create_midi_source_for_session (Track*, std::string const &, bool as_stub = false);
 
        boost::shared_ptr<Source> source_by_id (const PBD::ID&);
        boost::shared_ptr<Source> source_by_path_and_channel (const Glib::ustring&, uint16_t);
@@ -569,7 +574,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        /* flattening stuff */
 
-       boost::shared_ptr<Region> write_one_track (AudioTrack&, nframes_t start, nframes_t end,
+       boost::shared_ptr<Region> write_one_track (AudioTrack&, framepos_t start, framepos_t end,
                        bool overwrite, std::vector<boost::shared_ptr<Source> >&, InterThreadInfo& wot,
                        bool enable_processing = true);
        int freeze_all (InterThreadInfo&);
@@ -586,7 +591,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        void set_just_one_solo (boost::shared_ptr<Route>, bool, SessionEvent::RTeventCallback after = rt_cleanup);
        void set_mute (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
        void set_listen (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
-       void set_record_enable (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
+       void set_record_enabled (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
         void set_solo_isolated (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
 
        PBD::Signal1<void,bool> SoloActive;
@@ -634,31 +639,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        PBD::Signal1<void,boost::shared_ptr<Bundle> > BundleAdded;
        PBD::Signal1<void,boost::shared_ptr<Bundle> > BundleRemoved;
 
-       /* MIDI control */
-
-       void midi_panic(void);
-       int set_mtc_port (std::string port_tag);
-       int set_mmc_port (std::string port_tag);
-       int set_midi_port (std::string port_tag);
-       int set_midi_clock_port (std::string port_tag);
-       MIDI::Port *mtc_port() const { return _mtc_port; }
-       MIDI::Port *mmc_port() const { return _mmc_port; }
-       MIDI::Port *midi_port() const { return _midi_port; }
-       MIDI::Port *midi_clock_port() const { return _midi_clock_port; }
-
-       PBD::Signal0<void> MTC_PortChanged;
-       PBD::Signal0<void> MMC_PortChanged;
-       PBD::Signal0<void> MIDI_PortChanged;
-       PBD::Signal0<void> MIDIClock_PortChanged;
-
-       void set_trace_midi_input (bool, MIDI::Port* port = 0);
-       void set_trace_midi_output (bool, MIDI::Port* port = 0);
-
-       bool get_trace_midi_input(MIDI::Port *port = 0);
-       bool get_trace_midi_output(MIDI::Port *port = 0);
-
-       void set_mmc_receive_device_id (uint32_t id);
-       void set_mmc_send_device_id (uint32_t id);
+       void midi_panic ();
 
        /* Scrubbing */
 
@@ -775,7 +756,9 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
                PostTransportReverse            = 0x10000,
                PostTransportInputChange        = 0x20000,
                PostTransportCurveRealloc       = 0x40000,
-               PostTransportClearSubstate      = 0x80000
+               PostTransportClearSubstate      = 0x80000,
+               PostTransportAdjustPlaybackBuffering  = 0x100000,
+               PostTransportAdjustCaptureBuffering   = 0x200000
        };
 
        enum SlaveState {
@@ -788,6 +771,17 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        boost::shared_ptr<SessionPlaylists> playlists;
 
+       void send_mmc_locate (nframes64_t);
+       int send_full_time_code (nframes64_t);
+
+       PBD::Signal0<void> RouteOrderKeyChanged;
+
+        bool step_editing() const { return (_step_editors > 0); }
+
+       void request_suspend_timecode_transmission ();
+       void request_resume_timecode_transmission ();
+       bool timecode_transmission_suspended () const;
+
   protected:
        friend class AudioEngine;
        void set_block_size (nframes_t nframes);
@@ -806,9 +800,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
                PendingDeclickIn   = 0x1,
                PendingDeclickOut  = 0x2,
                StopPendingCapture = 0x4,
-               AutoReturning      = 0x10,
                PendingLocate      = 0x20,
-               PendingSetLoop     = 0x40
        };
 
        /* stuff used in process() should be close together to
@@ -882,8 +874,8 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        static const int delta_accumulator_size = 25;
        int delta_accumulator_cnt;
-       long delta_accumulator[delta_accumulator_size];
-       long average_slave_delta;
+       int32_t delta_accumulator[delta_accumulator_size];
+       int32_t average_slave_delta;
        int  average_dir;
        bool have_first_delta_accumulator;
 
@@ -947,15 +939,9 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        void check_declick_out ();
 
-       MIDI::MachineControl*    mmc;
-       MIDI::Port*             _mmc_port;
-       MIDI::Port*             _mtc_port;
-       MIDI::Port*             _midi_port;
-       MIDI::Port*             _midi_clock_port;
        std::string             _path;
        std::string             _name;
         bool                    _is_new;
-       bool                     session_send_mmc;
        bool                     session_send_mtc;
        bool                     session_midi_feedback;
        bool                     play_loop;
@@ -1027,13 +1013,16 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        void set_post_transport_work (PostTransportWork ptw) { g_atomic_int_set (&_post_transport_work, (gint) ptw); }
        void add_post_transport_work (PostTransportWork ptw);
 
+        void schedule_playback_buffering_adjustment ();
+        void schedule_capture_buffering_adjustment ();
+
        uint32_t    cumulative_rf_motion;
        uint32_t    rf_scale;
 
        void set_rf_speed (float speed);
        void reset_rf_scale (nframes_t frames_moved);
 
-       Locations        _locations;
+       Locations*       _locations;
        void              locations_changed ();
        void              locations_added (Location*);
        void              handle_locations_changed (Locations::LocationList&);
@@ -1085,8 +1074,6 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        /* MIDI Machine Control */
 
-       void deliver_mmc (MIDI::MachineControl::Command, nframes_t);
-
        void spp_start (MIDI::Parser&, nframes_t timestamp);
        void spp_continue (MIDI::Parser&, nframes_t timestamp);
        void spp_stop (MIDI::Parser&, nframes_t timestamp);
@@ -1114,7 +1101,6 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        MidiTimeoutList midi_timeouts;
        bool mmc_step_timeout ();
 
-       MIDI::byte mmc_buffer[32];
        MIDI::byte mtc_msg[16];
        MIDI::byte mtc_timecode_bits;   /* encoding of SMTPE type for MTC */
        MIDI::byte midi_msg[16];
@@ -1136,7 +1122,6 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        bool _send_timecode_update; ///< Flag to send a full frame (Timecode) MTC message this cycle
 
-       int send_full_time_code(nframes_t nframes);
        int send_midi_time_code_for_cycle(nframes_t nframes);
 
        nframes_t adjust_apparent_position (nframes_t frames);
@@ -1154,14 +1139,12 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        int           start_midi_thread ();
        void          terminate_midi_thread ();
 
-       int           use_config_midi_ports ();
-
        void set_play_loop (bool yn);
        void unset_play_loop ();
        void overwrite_some_buffers (Track *);
        void flush_all_inserts ();
        int  micro_locate (nframes_t distance);
-        void locate (nframes64_t, bool with_roll, bool with_flush, bool with_loop=false, bool force=false);
+        void locate (nframes64_t, bool with_roll, bool with_flush, bool with_loop=false, bool force=false, bool with_mmc=true);
         void start_locate (nframes64_t, bool with_roll, bool with_flush, bool with_loop=false, bool force=false);
        void force_locate (nframes64_t frame, bool with_roll = false);
        void set_track_speed (Track *, double speed);
@@ -1189,6 +1172,8 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        /* routes stuff */
 
+       boost::shared_ptr<Graph> route_graph;
+
        SerializedRCUManager<RouteList>  routes;
 
        void add_routes (RouteList&, bool save);
@@ -1201,8 +1186,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
 
        bool find_route_name (const char* base, uint32_t& id, char* name, size_t name_len);
        void count_existing_route_channels (ChanCount& in, ChanCount& out);
-       void auto_connect_route (boost::shared_ptr<Route> route,
-               ChanCount& existing_inputs, ChanCount& existing_outputs);
+       void auto_connect_route (boost::shared_ptr<Route> route, ChanCount& existing_inputs, ChanCount& existing_outputs, bool connect_inputs = true);
 
        /* mixer stuff */
 
@@ -1228,8 +1212,11 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        /* SOURCES */
 
        mutable Glib::Mutex source_lock;
+
+  public:      
        typedef std::map<PBD::ID,boost::shared_ptr<Source> > SourceMap;
 
+  private:     
        SourceMap sources;
 
   public:
@@ -1381,14 +1368,8 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
           based on max (requested,available)
        */
 
-       uint32_t n_physical_outputs;
-       uint32_t n_physical_inputs;
-
-       uint32_t n_physical_audio_outputs;
-       uint32_t n_physical_audio_inputs;
-
-       uint32_t n_physical_midi_outputs;
-       uint32_t n_physical_midi_inputs;
+       ChanCount n_physical_outputs;
+       ChanCount n_physical_inputs;
 
        int find_all_sources (std::string path, std::set<std::string>& result);
        int find_all_sources_across_snapshots (std::set<std::string>& result, bool exclude_this_snapshot);
@@ -1428,12 +1409,25 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
        void rt_set_mute (boost::shared_ptr<RouteList>, bool yn, bool group_override);
        void rt_set_listen (boost::shared_ptr<RouteList>, bool yn, bool group_override);
        void rt_set_solo_isolated (boost::shared_ptr<RouteList>, bool yn, bool group_override);
-       void rt_set_record_enable (boost::shared_ptr<RouteList>, bool yn, bool group_override);
+       void rt_set_record_enabled (boost::shared_ptr<RouteList>, bool yn, bool group_override);
 
        /** temporary list of Diskstreams used only during load of 2.X sessions */
        std::list<boost::shared_ptr<Diskstream> > _diskstreams_2X;
 
        void add_session_range_location (nframes_t, nframes_t);
+
+       void setup_midi_machine_control ();
+        void cleanup_stubfiles ();
+
+       void route_order_key_changed ();
+
+        void step_edit_status_change (bool);
+        uint32_t _step_editors;
+
+       /** true if timecode transmission by the transport is suspended, otherwise false */
+       mutable gint _suspend_timecode_transmission;
+
+       void update_locations_after_tempo_map_change (Locations::LocationList &);
 };
 
 } // namespace ARDOUR