Trim include dependency graph, especially for io.h and session.h.
[ardour.git] / libs / ardour / ardour / audio_diskstream.h
index 18f8328cfd55cd102621a44a0f7e9cc1b0219bcf..8f081ab58dbca91d8f26888ab674a8546b1d06e9 100644 (file)
 #include <pbd/fastlog.h>
 #include <pbd/ringbufferNPT.h>
 #include <pbd/stateful.h> 
+#include <pbd/rcu.h> 
 
 #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 <ardour/diskstream.h>
 #include <ardour/audioplaylist.h>
+#include <ardour/port.h>
 
 struct tm;
 
@@ -61,28 +59,32 @@ class AudioDiskstream : public Diskstream
        AudioDiskstream (Session &, const XMLNode&);
        ~AudioDiskstream();
 
-       const PBD::ID& id() const { return _id; }
-
        float playback_buffer_load() const;
        float capture_buffer_load() const;
 
        string input_source (uint32_t n=0) const {
-               if (n < channels.size()) {
-                       return channels[n].source ? channels[n].source->name() : "";
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               if (n < c->size()) {
+                       return (*c)[n]->source ? (*c)[n]->source->name() : "";
                } else {
                        return ""; 
                }
        }
 
        Port *input_source_port (uint32_t n=0) const { 
-               if (n < channels.size()) return channels[n].source; return 0; 
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               if (n < c->size()) return (*c)[n]->source; return 0; 
        }
 
        void set_record_enabled (bool yn);
-
-       float peak_power(uint32_t n=0) { 
-               float x = channels[n].peak_power;
-               channels[n].peak_power = 0.0f;
+       int set_destructive (bool yn);
+       bool can_become_destructive (bool& requires_bounce) const;
+
+       float peak_power(uint32_t n = 0) { 
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               ChannelInfo* chaninfo = (*c)[n];
+               float x = chaninfo->peak_power;
+               chaninfo->peak_power = 0.0f;
                if (x > 0.0f) {
                        return 20.0f * fast_log10(x);
                } else {
@@ -90,33 +92,35 @@ class AudioDiskstream : public Diskstream
                }
        }
        
-       AudioPlaylist* audio_playlist () { return dynamic_cast<AudioPlaylist*>(_playlist); }
+       boost::shared_ptr<AudioPlaylist> audio_playlist () { return boost::dynamic_pointer_cast<AudioPlaylist>(_playlist); }
 
-       int use_playlist (Playlist *);
+       int use_playlist (boost::shared_ptr<Playlist>);
        int use_new_playlist ();
        int use_copy_playlist ();
 
-       Sample *playback_buffer (uint32_t n=0) {
-               if (n < channels.size())
-                       return channels[n].current_playback_buffer;
+       Sample *playback_buffer (uint32_t n = 0) {
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               if (n < c->size())
+                       return (*c)[n]->current_playback_buffer;
                return 0;
        }
        
-       Sample *capture_buffer (uint32_t n=0) {
-               if (n < channels.size())
-                       return channels[n].current_capture_buffer;
+       Sample *capture_buffer (uint32_t n = 0) {
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               if (n < c->size())
+                       return (*c)[n]->current_capture_buffer;
                return 0;
        }
 
-       AudioFileSource *write_source (uint32_t n=0) {
-               if (n < channels.size())
-                       return channels[n].write_source;
-               return 0;
+       boost::shared_ptr<AudioFileSource> write_source (uint32_t n=0) {
+               boost::shared_ptr<ChannelList> c = channels.reader();
+               if (n < c->size())
+                       return (*c)[n]->write_source;
+               return boost::shared_ptr<AudioFileSource>();
        }
 
-       int add_channel ();
-       int remove_channel ();
-       
+       int add_channel (uint32_t how_many);
+       int remove_channel (uint32_t how_many);
        
        /* stateful */
 
@@ -133,7 +137,7 @@ class AudioDiskstream : public Diskstream
                }
        }
 
-       static void swap_by_ptr (Sample *first, Sample *last, jack_nframes_t n) {
+       static void swap_by_ptr (Sample *first, Sample *last, nframes_t n) {
                while (n--) {
                        Sample tmp = *first;
                        *first++ = *last;
@@ -141,10 +145,50 @@ class AudioDiskstream : public Diskstream
                }
        }
 
-       std::list<Region*>& last_capture_regions () { return _last_capture_regions; }
-
        XMLNode* deprecated_io_node;
 
+       /**
+        * Calculate the playback distance during varispeed playback.
+        * Important for Session::process to know exactly, how many frames
+        * were passed by.
+        */
+       static nframes_t calculate_varispeed_playback_distance(
+                       nframes_t nframes, 
+                       uint64_t& the_last_phase, 
+                       uint64_t& the_phi,
+                       uint64_t& the_target_phi)
+       {
+               // calculate playback distance in the same way 
+               // as in AudioDiskstream::process_varispeed_playback
+               uint64_t    phase = the_last_phase;
+               int64_t     phi_delta;
+               nframes_t   i = 0;
+               
+               const int64_t fractional_part_mask  = 0xFFFFFF;
+               const Sample  binary_scaling_factor = 16777216.0f;
+
+               if (the_phi != the_target_phi) {
+                       phi_delta = ((int64_t)(the_target_phi - the_phi)) / nframes;
+               } else {
+                       phi_delta = 0;
+               }
+
+               Sample fractional_phase_part;
+
+               i = 0;
+               phase = the_last_phase;
+
+               for (nframes_t outsample = 0; outsample < nframes; ++outsample) {
+                       i = phase >> 24;
+                       fractional_phase_part = (phase & fractional_part_mask) / binary_scaling_factor;
+                       phase += the_phi + phi_delta;
+               }
+
+               the_last_phase = (phase & fractional_part_mask);
+               the_phi = the_target_phi;
+               return i; // + 1;
+       }
+       
   protected:
        friend class Session;
 
@@ -155,67 +199,78 @@ class AudioDiskstream : public Diskstream
 
        void set_pending_overwrite(bool);
        int  overwrite_existing_buffers ();
-       void set_block_size (jack_nframes_t);
-       int  internal_playback_seek (jack_nframes_t distance);
-       int  can_internal_playback_seek (jack_nframes_t distance);
+       void set_block_size (nframes_t);
+       int  internal_playback_seek (nframes_t distance);
+       int  can_internal_playback_seek (nframes_t distance);
        int  rename_write_sources ();
        void reset_write_sources (bool, bool force = false);
        void non_realtime_input_change ();
+       void non_realtime_locate (nframes_t location);
 
   protected:
        friend class Auditioner;
-       int  seek (jack_nframes_t which_sample, bool complete_refill = false);
+       int  seek (nframes_t which_sample, bool complete_refill = false);
 
   protected:
        friend class AudioTrack;
 
-       int  process (jack_nframes_t transport_frame, jack_nframes_t nframes, jack_nframes_t offset, bool can_record, bool rec_monitors_input);
-       bool commit  (jack_nframes_t nframes);
+       int  process (nframes_t transport_frame, nframes_t nframes, nframes_t offset, bool can_record, bool rec_monitors_input);
+       bool commit  (nframes_t nframes);
 
   private:
 
        struct ChannelInfo {
-
-               Sample     *playback_wrap_buffer;
-               Sample     *capture_wrap_buffer;
-               Sample     *speed_buffer;
-
-               float       peak_power;
-
-               AudioFileSource   *fades_source;
-               AudioFileSource   *write_source;
-
-               Port         *source;
-               Sample       *current_capture_buffer;
-               Sample       *current_playback_buffer;
-
-               RingBufferNPT<Sample> *playback_buf;
-               RingBufferNPT<Sample> *capture_buf;
-
-               Sample* scrub_buffer;
-               Sample* scrub_forward_buffer;
-               Sample* scrub_reverse_buffer;
-
-               RingBufferNPT<Sample>::rw_vector playback_vector;
-               RingBufferNPT<Sample>::rw_vector capture_vector;
-
-               RingBufferNPT<CaptureTransition> * capture_transition_buf;
-               // the following are used in the butler thread only
-               jack_nframes_t                     curr_capture_cnt;
+           
+           ChannelInfo (nframes_t buffer_size, nframes_t speed_buffer_size, nframes_t wrap_buffer_size);
+           ~ChannelInfo ();
+
+           Sample     *playback_wrap_buffer;
+           Sample     *capture_wrap_buffer;
+           Sample     *speed_buffer;
+           
+           float       peak_power;
+           
+           boost::shared_ptr<AudioFileSource> fades_source;
+           boost::shared_ptr<AudioFileSource> write_source;
+
+           /// the Port that our audio data comes from
+           Port         *source;
+           Sample       *current_capture_buffer;
+           Sample       *current_playback_buffer;
+           
+           RingBufferNPT<Sample> *playback_buf;
+           RingBufferNPT<Sample> *capture_buf;
+           
+           Sample* scrub_buffer;
+           Sample* scrub_forward_buffer;
+           Sample* scrub_reverse_buffer;
+           
+           RingBufferNPT<Sample>::rw_vector playback_vector;
+           RingBufferNPT<Sample>::rw_vector capture_vector;
+           
+           RingBufferNPT<CaptureTransition> * capture_transition_buf;
+           // the following are used in the butler thread only
+           nframes_t                     curr_capture_cnt;
        };
 
+       typedef std::vector<ChannelInfo*> ChannelList;
+
+       void process_varispeed_playback(nframes_t nframes, boost::shared_ptr<ChannelList> c);
+       
        /* The two central butler operations */
-       int do_flush (Session::RunContext context, bool force = false);
+       int do_flush (RunContext context, bool force = false);
        int do_refill () { return _do_refill(_mixdown_buffer, _gain_buffer); }
        
-       int do_refill_with_alloc();
+       int do_refill_with_alloc ();
 
        int read (Sample* buf, Sample* mixdown_buffer, float* gain_buffer,
-               jack_nframes_t& start, jack_nframes_t cnt, 
-               ChannelInfo& channel_info, int channel, bool reversed);
+                 nframes_t& start, nframes_t cnt, 
+                 ChannelInfo* channel_info, int channel, bool reversed);
+
 
-       void finish_capture (bool rec_monitors_input);
+       void finish_capture (bool rec_monitors_input, boost::shared_ptr<ChannelList>);
        void transport_stopped (struct tm&, time_t, bool abort);
+       void transport_looped (nframes_t transport_frame);
 
        void init (Diskstream::Flag);
 
@@ -231,7 +286,7 @@ class AudioDiskstream : public Diskstream
        int use_pending_capture_data (XMLNode& node);
 
        void get_input_sources ();
-       void check_record_status (jack_nframes_t transport_frame, jack_nframes_t nframes, bool can_record);
+       void check_record_status (nframes_t transport_frame, nframes_t nframes, bool can_record);
        void set_align_style_from_io();
        void setup_destructive_playlist ();
        void use_destructive_playlist ();
@@ -247,14 +302,17 @@ class AudioDiskstream : public Diskstream
        static Sample* _mixdown_buffer;
        static gain_t* _gain_buffer;
 
-       // Uh, /really/ private? (there should probably be less friends of Diskstream)
-       int _do_refill (Sample *mixdown_buffer, float *gain_buffer);
-       
+       std::vector<boost::shared_ptr<AudioFileSource> > capturing_sources;
        
-       std::vector<AudioFileSource*> capturing_sources;
+       SerializedRCUManager<ChannelList> channels;
        
-       typedef vector<ChannelInfo> ChannelList;
-       ChannelList channels;
+ /* really */
+  private:
+       int _do_refill (Sample *mixdown_buffer, float *gain_buffer);
+
+       int add_channel_to (boost::shared_ptr<ChannelList>, uint32_t how_many);
+       int remove_channel_from (boost::shared_ptr<ChannelList>, uint32_t how_many);
+
 };
 
 } // namespace ARDOUR