Move Diskstream ownership to Track, so that Session no longer holds lists of Diskstre...
[ardour.git] / libs / ardour / track.cc
index 58d8c1b3065692320e1a4ad3230a8458afe8871b..a7325189c81547b98c464879811daf242d58c393 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2006 Paul Davis 
+    Copyright (C) 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
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
-#include <pbd/error.h>
-#include <sigc++/retype.h>
-#include <sigc++/retype_return.h>
-#include <sigc++/bind.h>
-
-#include <ardour/track.h>
-#include <ardour/diskstream.h>
-#include <ardour/session.h>
-#include <ardour/redirect.h>
-#include <ardour/audioregion.h>
-#include <ardour/audiosource.h>
-#include <ardour/route_group_specialized.h>
-#include <ardour/insert.h>
-#include <ardour/audioplaylist.h>
-#include <ardour/panner.h>
-#include <ardour/utils.h>
-#include <ardour/connection.h>
+#include "pbd/error.h"
+
+#include "ardour/amp.h"
+#include "ardour/audioplaylist.h"
+#include "ardour/audioregion.h"
+#include "ardour/audiosource.h"
+#include "ardour/debug.h"
+#include "ardour/delivery.h"
+#include "ardour/diskstream.h"
+#include "ardour/io_processor.h"
+#include "ardour/meter.h"
+#include "ardour/port.h"
+#include "ardour/processor.h"
+#include "ardour/route_group_specialized.h"
+#include "ardour/session.h"
+#include "ardour/track.h"
+#include "ardour/utils.h"
 
 #include "i18n.h"
 
@@ -40,39 +40,29 @@ using namespace ARDOUR;
 using namespace PBD;
 
 Track::Track (Session& sess, string name, Route::Flag flag, TrackMode mode, DataType default_type)
-       : Route (sess, name, 1, -1, -1, -1, flag, default_type)
-       , _diskstream (0)
-       ,  _rec_enable_control (*this)
+       : Route (sess, name, flag, default_type)
+        , _saved_meter_point (_meter_point)
+        , _mode (mode)
+       , _rec_enable_control (new RecEnableControllable(*this))
 {
-       _declickable = true;
        _freeze_record.state = NoFreeze;
-       _saved_meter_point = _meter_point;
-       _mode = mode;
-}
-
-Track::Track (Session& sess, const XMLNode& node, DataType default_type)
-       : Route (sess, "to be renamed", 0, 0, -1, -1, Route::Flag(0), default_type)
-       , _diskstream (0)
-       , _rec_enable_control (*this)
-{
-       _freeze_record.state = NoFreeze;
-       _declickable = true;
-       _saved_meter_point = _meter_point;
+        _declickable = true;
 }
 
 Track::~Track ()
 {
-       if (_diskstream) {
-               _diskstream->unref();
-       }
+       DEBUG_TRACE (DEBUG::Destruction, string_compose ("track %1 destructor\n", _name));
 }
 
-void
-Track::set_meter_point (MeterPoint p, void *src)
+int
+Track::init ()
 {
-       Route::set_meter_point (p, src);
-}
+        if (Route::init ()) {
+                return -1;
+        }
 
+        return 0;
+}
 XMLNode&
 Track::get_state ()
 {
@@ -88,31 +78,41 @@ Track::get_template ()
 void
 Track::toggle_monitor_input ()
 {
-       for (vector<Port*>::iterator i = _inputs.begin(); i != _inputs.end(); ++i) {
-               (*i)->request_monitor_input(!(*i)->monitoring_input());
+       for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
+               i->ensure_monitor_input(!i->monitoring_input());
        }
 }
 
-jack_nframes_t
+ARDOUR::nframes_t
 Track::update_total_latency ()
 {
-       _own_latency = 0;
+       nframes_t old = _output->effective_latency();
+       nframes_t own_latency = _output->user_latency();
 
-       for (RedirectList::iterator i = _redirects.begin(); i != _redirects.end(); ++i) {
+       for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
                if ((*i)->active ()) {
-                       _own_latency += (*i)->latency ();
+                       own_latency += (*i)->signal_latency ();
                }
        }
 
-       set_port_latency (_own_latency);
+#undef DEBUG_LATENCY
+#ifdef DEBUG_LATENCY
+       cerr << _name << ": internal redirect (final) latency = " << own_latency << endl;
+#endif
 
-       return _own_latency;
-}
+       _output->set_port_latency (own_latency);
+
+       if (old != own_latency) {
+               _output->set_latency_delay (own_latency);
+               signal_latency_changed (); /* EMIT SIGNAL */
+       }
 
+       return _output->effective_latency();
+}
 
 Track::FreezeRecord::~FreezeRecord ()
 {
-       for (vector<FreezeRecordInsertInfo*>::iterator i = insert_info.begin(); i != insert_info.end(); ++i) {
+       for (vector<FreezeRecordProcessorInfo*>::iterator i = processor_info.begin(); i != processor_info.end(); ++i) {
                delete *i;
        }
 }
@@ -124,7 +124,7 @@ Track::freeze_state() const
 }
 
 Track::RecEnableControllable::RecEnableControllable (Track& s)
-       : track (s)
+       : Controllable (X_("recenable")), track (s)
 {
 }
 
@@ -145,36 +145,34 @@ Track::RecEnableControllable::get_value (void) const
 bool
 Track::record_enabled () const
 {
-       return _diskstream->record_enabled ();
+       return _diskstream && _diskstream->record_enabled ();
 }
 
 bool
 Track::can_record()
 {
        bool will_record = true;
-       for (size_t i = 0; i < _inputs.size() && will_record; i++) {
-               if (!_inputs[i]->connected())
+       for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end() && will_record; ++i) {
+               if (!i->connected())
                        will_record = false;
        }
 
        return will_record;
 }
-       
+
 void
 Track::set_record_enable (bool yn, void *src)
 {
-       if (_freeze_record.state == Frozen) {
+       if (!_session.writable()) {
                return;
        }
 
-       if (_mix_group && src != _mix_group && _mix_group->is_active()) {
-               _mix_group->apply (&Track::set_record_enable, yn, _mix_group);
+       if (_freeze_record.state == Frozen) {
                return;
        }
 
-       // Do not set rec enabled if the track can't record.
-       if (yn && !can_record()) {
-               error << string_compose( _("Can not arm track '%1'. Check the input connections"), name() ) << endmsg;
+       if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_recenable()) {
+               _route_group->apply (&Track::set_record_enable, yn, _route_group);
                return;
        }
 
@@ -182,56 +180,478 @@ Track::set_record_enable (bool yn, void *src)
        if (!_diskstream->record_enabled()) {
                _saved_meter_point = _meter_point;
        }
-       
+
        _diskstream->set_record_enabled (yn);
 
        if (_diskstream->record_enabled()) {
-               set_meter_point (MeterInput, this);
+               if (_meter_point != MeterCustom) {
+                       set_meter_point (MeterInput);
+               }
        } else {
-               set_meter_point (_saved_meter_point, this);
+               set_meter_point (_saved_meter_point);
        }
 
-       _rec_enable_control.Changed ();
+       _rec_enable_control->Changed ();
 }
 
-void
-Track::set_mode (TrackMode m)
-{
-       if (_diskstream) {
-               if (_mode != m) {
-                       _mode = m;
-                       _diskstream->set_destructive (m == Destructive);
-                       ModeChanged();
-               }
-       }
-}
 
-int
-Track::set_name (string str, void *src)
+bool
+Track::set_name (const string& str)
 {
-       int ret;
+       bool ret;
 
        if (record_enabled() && _session.actively_recording()) {
                /* this messes things up if done while recording */
-               return -1;
+               return false;
        }
 
        if (_diskstream->set_name (str)) {
-               return -1;
+               return false;
        }
 
        /* save state so that the statefile fully reflects any filename changes */
 
-       if ((ret = IO::set_name (str, src)) == 0) {
+       if ((ret = Route::set_name (str)) == 0) {
                _session.save_state ("");
        }
+
        return ret;
 }
 
 void
-Track::set_latency_delay (jack_nframes_t longest_session_latency)
+Track::set_latency_delay (nframes_t longest_session_latency)
 {
        Route::set_latency_delay (longest_session_latency);
        _diskstream->set_roll_delay (_roll_delay);
 }
 
+void
+Track::zero_diskstream_id_in_xml (XMLNode& node)
+{
+       if (node.property ("diskstream-id")) {
+               node.add_property ("diskstream-id", "0");
+       }
+}
+
+int
+Track::no_roll (nframes_t nframes, framepos_t start_frame, framepos_t end_frame,
+               bool session_state_changing, bool can_record, bool /*rec_monitors_input*/)
+{
+       if (n_outputs().n_total() == 0) {
+               return 0;
+       }
+
+       if (!_active) {
+               silence (nframes);
+               return 0;
+       }
+
+       if (session_state_changing) {
+               if (_session.transport_speed() != 0.0f) {
+                       /* we're rolling but some state is changing (e.g. our diskstream contents)
+                          so we cannot use them. Be silent till this is over. Don't declick.
+
+                          XXX note the absurdity of ::no_roll() being called when we ARE rolling!
+                       */
+                       passthru_silence (start_frame, end_frame, nframes, 0);
+                       return 0;
+               }
+               /* we're really not rolling, so we're either delivery silence or actually
+                  monitoring, both of which are safe to do while session_state_changing is true.
+               */
+       }
+
+       _diskstream->check_record_status (start_frame, nframes, can_record);
+
+       bool send_silence;
+
+       if (_have_internal_generator) {
+               /* since the instrument has no input streams,
+                  there is no reason to send any signal
+                  into the route.
+               */
+               send_silence = true;
+       } else {
+               if (!Config->get_tape_machine_mode()) {
+                       /*
+                          ADATs work in a strange way..
+                          they monitor input always when stopped.and auto-input is engaged.
+                       */
+                       if ((Config->get_monitoring_model() == SoftwareMonitoring)
+                                       && (_session.config.get_auto_input () || _diskstream->record_enabled())) {
+                               send_silence = false;
+                       } else {
+                               send_silence = true;
+                       }
+               } else {
+                       /*
+                          Other machines switch to input on stop if the track is record enabled,
+                          regardless of the auto input setting (auto input only changes the
+                          monitoring state when the transport is rolling)
+                       */
+                       if ((Config->get_monitoring_model() == SoftwareMonitoring)
+                                       && _diskstream->record_enabled()) {
+                               send_silence = false;
+                       } else {
+                               send_silence = true;
+                       }
+               }
+       }
+
+       _amp->apply_gain_automation(false);
+
+       if (send_silence) {
+
+               /* if we're sending silence, but we want the meters to show levels for the signal,
+                  meter right here.
+               */
+
+               if (_have_internal_generator) {
+                       passthru_silence (start_frame, end_frame, nframes, 0);
+               } else {
+                       if (_meter_point == MeterInput) {
+                               _input->process_input (_meter, start_frame, end_frame, nframes);
+                       }
+                       passthru_silence (start_frame, end_frame, nframes, 0);
+               }
+
+       } else {
+
+               /* we're sending signal, but we may still want to meter the input.
+                */
+
+               passthru (start_frame, end_frame, nframes, false);
+       }
+
+       _main_outs->flush (nframes, end_frame - start_frame - 1);
+
+       return 0;
+}
+
+int
+Track::silent_roll (nframes_t nframes, framepos_t /*start_frame*/, framepos_t /*end_frame*/,
+                   bool can_record, bool rec_monitors_input, bool& need_butler)
+{
+       if (n_outputs().n_total() == 0 && _processors.empty()) {
+               return 0;
+       }
+
+       if (!_active) {
+               silence (nframes);
+               return 0;
+       }
+
+       _silent = true;
+       _amp->apply_gain_automation(false);
+
+       silence (nframes);
+
+       return _diskstream->process (_session.transport_frame(), nframes, can_record, rec_monitors_input, need_butler);
+}
+
+ChanCount
+Track::input_streams () const
+{
+        ChanCount cc = _input->n_ports ();
+
+        if (cc.n_total() == 0 && _diskstream) {
+                return cc = _diskstream->n_channels();
+        }
+
+        return cc;
+}
+
+void
+Track::set_diskstream (boost::shared_ptr<Diskstream> ds)
+{
+       _diskstream = ds;
+       
+       ds->PlaylistChanged.connect_same_thread (*this, boost::bind (&Track::diskstream_playlist_changed, this));
+       diskstream_playlist_changed ();
+       ds->RecordEnableChanged.connect_same_thread (*this, boost::bind (&Track::diskstream_record_enable_changed, this));
+       ds->SpeedChanged.connect_same_thread (*this, boost::bind (&Track::diskstream_speed_changed, this));
+       ds->AlignmentStyleChanged.connect_same_thread (*this, boost::bind (&Track::diskstream_alignment_style_changed, this));
+}
+
+void
+Track::diskstream_playlist_changed ()
+{
+       PlaylistChanged (); /* EMIT SIGNAL */
+}
+
+void
+Track::diskstream_record_enable_changed ()
+{
+       RecordEnableChanged (); /* EMIT SIGNAL */
+}
+
+void
+Track::diskstream_speed_changed ()
+{
+       SpeedChanged (); /* EMIT SIGNAL */
+}
+
+void
+Track::diskstream_alignment_style_changed ()
+{
+       AlignmentStyleChanged (); /* EMIT SIGNAL */
+}
+
+boost::shared_ptr<Playlist>
+Track::playlist ()
+{
+       return _diskstream->playlist ();
+}
+
+void
+Track::monitor_input (bool m)
+{
+       _diskstream->monitor_input (m);
+}
+
+bool
+Track::destructive () const
+{
+       return _diskstream->destructive ();
+}
+
+list<boost::shared_ptr<Region> > &
+Track::last_capture_regions ()
+{
+       return _diskstream->last_capture_regions ();
+}
+
+void
+Track::set_capture_offset ()
+{
+       _diskstream->set_capture_offset ();
+}
+
+void
+Track::reset_write_sources (bool r, bool force)
+{
+       _diskstream->reset_write_sources (r, force);
+}
+
+float
+Track::playback_buffer_load () const
+{
+       return _diskstream->playback_buffer_load ();
+}
+
+float
+Track::capture_buffer_load () const
+{
+       return _diskstream->capture_buffer_load ();
+}
+
+int
+Track::do_refill ()
+{
+       return _diskstream->do_refill ();
+}
+
+int
+Track::do_flush (RunContext c, bool force)
+{
+       return _diskstream->do_flush (c, force);
+}
+
+void
+Track::set_pending_overwrite (bool o)
+{
+       _diskstream->set_pending_overwrite (o);
+}
+
+int
+Track::seek (nframes_t s, bool complete_refill)
+{
+       return _diskstream->seek (s, complete_refill);
+}
+
+bool
+Track::hidden () const
+{
+       return _diskstream->hidden ();
+}
+
+int
+Track::can_internal_playback_seek (nframes_t d)
+{
+       return _diskstream->can_internal_playback_seek (d);
+}
+
+int
+Track::internal_playback_seek (nframes_t d)
+{
+       return _diskstream->internal_playback_seek (d);
+}
+
+void
+Track::non_realtime_input_change ()
+{
+       _diskstream->non_realtime_input_change ();
+}
+
+void
+Track::non_realtime_locate (nframes_t p)
+{
+       _diskstream->non_realtime_locate (p);
+}
+
+void
+Track::non_realtime_set_speed ()
+{
+       _diskstream->non_realtime_set_speed ();
+}
+
+int
+Track::overwrite_existing_buffers ()
+{
+       return _diskstream->overwrite_existing_buffers ();
+}
+
+nframes_t
+Track::get_captured_frames (uint32_t n)
+{
+       return _diskstream->get_captured_frames (n);
+}
+
+int
+Track::set_loop (Location* l)
+{
+       return _diskstream->set_loop (l);
+}
+
+void
+Track::transport_looped (nframes_t f)
+{
+       _diskstream->transport_looped (f);
+}
+
+bool
+Track::realtime_set_speed (double s, bool g)
+{
+       return _diskstream->realtime_set_speed (s, g);
+}
+
+void
+Track::transport_stopped_wallclock (struct tm & n, time_t t, bool g)
+{
+       _diskstream->transport_stopped_wallclock (n, t, g);
+}
+
+bool
+Track::pending_overwrite () const
+{
+       return _diskstream->pending_overwrite ();
+}
+
+double
+Track::speed () const
+{
+       return _diskstream->speed ();
+}
+
+void
+Track::prepare_to_stop (framepos_t p)
+{
+       _diskstream->prepare_to_stop (p);
+}
+
+void
+Track::set_slaved (bool s)
+{
+       _diskstream->set_slaved (s);
+}
+
+ChanCount
+Track::n_channels ()
+{
+       return _diskstream->n_channels ();
+}
+
+nframes_t
+Track::get_capture_start_frame (uint32_t n)
+{
+       return _diskstream->get_capture_start_frame (n);
+}
+
+AlignStyle
+Track::alignment_style () const
+{
+       return _diskstream->alignment_style ();
+}
+
+void
+Track::set_record_enabled (bool r)
+{
+       _diskstream->set_record_enabled (r);
+}
+
+nframes_t
+Track::current_capture_start () const
+{
+       return _diskstream->current_capture_start ();
+}
+
+nframes_t
+Track::current_capture_end () const
+{
+       return _diskstream->current_capture_end ();
+}
+
+void
+Track::playlist_modified ()
+{
+       _diskstream->playlist_modified ();
+}
+
+int
+Track::use_playlist (boost::shared_ptr<Playlist> p)
+{
+       return _diskstream->use_playlist (p);
+}
+
+int
+Track::use_copy_playlist ()
+{
+       return _diskstream->use_copy_playlist ();
+}
+
+int
+Track::use_new_playlist ()
+{
+       return _diskstream->use_new_playlist ();
+}
+
+uint32_t
+Track::read_data_count () const
+{
+       return _diskstream->read_data_count ();
+}
+
+void
+Track::set_align_style (AlignStyle s)
+{
+       _diskstream->set_align_style (s);
+}
+
+uint32_t
+Track::write_data_count () const
+{
+       return _diskstream->write_data_count ();
+}
+
+PBD::ID const &
+Track::diskstream_id () const
+{
+       return _diskstream->id ();
+}
+
+void
+Track::set_block_size (nframes_t n)
+{
+       Route::set_block_size (n);
+       _diskstream->set_block_size (n);
+}