merged with 1697 revision of trunk (which is post-rc1 but pre-rc2
[ardour.git] / libs / ardour / ardour / audio_diskstream.h
1 /*
2     Copyright (C) 2000-2006 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_audio_diskstream_h__
20 #define __ardour_audio_diskstream_h__
21
22 #include <sigc++/signal.h>
23
24 #include <cmath>
25 #include <string>
26 #include <queue>
27 #include <map>
28 #include <vector>
29
30 #include <time.h>
31
32 #include <pbd/fastlog.h>
33 #include <pbd/ringbufferNPT.h>
34 #include <pbd/stateful.h> 
35 #include <pbd/rcu.h> 
36
37 #include <ardour/ardour.h>
38 #include <ardour/configuration.h>
39 #include <ardour/session.h>
40 #include <ardour/route_group.h>
41 #include <ardour/route.h>
42 #include <ardour/port.h>
43 #include <ardour/utils.h>
44 #include <ardour/diskstream.h>
45 #include <ardour/audioplaylist.h>
46
47 struct tm;
48
49 namespace ARDOUR {
50
51 class AudioEngine;
52 class Send;
53 class Session;
54 class AudioPlaylist;
55 class AudioFileSource;
56 class IO;
57
58 class AudioDiskstream : public Diskstream
59 {       
60   public:
61         AudioDiskstream (Session &, const string& name, Diskstream::Flag f = Recordable);
62         AudioDiskstream (Session &, const XMLNode&);
63         ~AudioDiskstream();
64
65         float playback_buffer_load() const;
66         float capture_buffer_load() const;
67
68         string input_source (uint32_t n=0) const {
69                 boost::shared_ptr<ChannelList> c = channels.reader();
70                 if (n < c->size()) {
71                         return (*c)[n]->source ? (*c)[n]->source->name() : "";
72                 } else {
73                         return ""; 
74                 }
75         }
76
77         Port *input_source_port (uint32_t n=0) const { 
78                 boost::shared_ptr<ChannelList> c = channels.reader();
79                 if (n < c->size()) return (*c)[n]->source; return 0; 
80         }
81
82         void set_record_enabled (bool yn);
83         int set_destructive (bool yn);
84         bool can_become_destructive (bool& requires_bounce) const;
85
86         float peak_power(uint32_t n = 0) { 
87                 boost::shared_ptr<ChannelList> c = channels.reader();
88                 ChannelInfo* chaninfo = (*c)[n];
89                 float x = chaninfo->peak_power;
90                 chaninfo->peak_power = 0.0f;
91                 if (x > 0.0f) {
92                         return 20.0f * fast_log10(x);
93                 } else {
94                         return minus_infinity();
95                 }
96         }
97         
98         boost::shared_ptr<AudioPlaylist> audio_playlist () { return boost::dynamic_pointer_cast<AudioPlaylist>(_playlist); }
99
100         int use_playlist (boost::shared_ptr<Playlist>);
101         int use_new_playlist ();
102         int use_copy_playlist ();
103
104         Sample *playback_buffer (uint32_t n = 0) {
105                 boost::shared_ptr<ChannelList> c = channels.reader();
106                 if (n < c->size())
107                         return (*c)[n]->current_playback_buffer;
108                 return 0;
109         }
110         
111         Sample *capture_buffer (uint32_t n = 0) {
112                 boost::shared_ptr<ChannelList> c = channels.reader();
113                 if (n < c->size())
114                         return (*c)[n]->current_capture_buffer;
115                 return 0;
116         }
117
118         boost::shared_ptr<AudioFileSource> write_source (uint32_t n=0) {
119                 boost::shared_ptr<ChannelList> c = channels.reader();
120                 if (n < c->size())
121                         return (*c)[n]->write_source;
122                 return boost::shared_ptr<AudioFileSource>();
123         }
124
125         int add_channel (uint32_t how_many);
126         int remove_channel (uint32_t how_many);
127         
128         /* stateful */
129
130         XMLNode& get_state(void);
131         int      set_state(const XMLNode& node);
132
133         void monitor_input (bool);
134
135         static void swap_by_ptr (Sample *first, Sample *last) {
136                 while (first < last) {
137                         Sample tmp = *first;
138                         *first++ = *last;
139                         *last-- = tmp;
140                 }
141         }
142
143         static void swap_by_ptr (Sample *first, Sample *last, nframes_t n) {
144                 while (n--) {
145                         Sample tmp = *first;
146                         *first++ = *last;
147                         *last-- = tmp;
148                 }
149         }
150
151         XMLNode* deprecated_io_node;
152
153   protected:
154         friend class Session;
155
156         /* the Session is the only point of access for these
157            because they require that the Session is "inactive"
158            while they are called.
159         */
160
161         void set_pending_overwrite(bool);
162         int  overwrite_existing_buffers ();
163         void set_block_size (nframes_t);
164         int  internal_playback_seek (nframes_t distance);
165         int  can_internal_playback_seek (nframes_t distance);
166         int  rename_write_sources ();
167         void reset_write_sources (bool, bool force = false);
168         void non_realtime_input_change ();
169
170   protected:
171         friend class Auditioner;
172         int  seek (nframes_t which_sample, bool complete_refill = false);
173
174   protected:
175         friend class AudioTrack;
176
177         int  process (nframes_t transport_frame, nframes_t nframes, nframes_t offset, bool can_record, bool rec_monitors_input);
178         bool commit  (nframes_t nframes);
179
180   private:
181
182         struct ChannelInfo {
183             
184             ChannelInfo (nframes_t buffer_size, nframes_t speed_buffer_size, nframes_t wrap_buffer_size);
185             ~ChannelInfo ();
186
187             Sample     *playback_wrap_buffer;
188             Sample     *capture_wrap_buffer;
189             Sample     *speed_buffer;
190             
191             float       peak_power;
192             
193             boost::shared_ptr<AudioFileSource> fades_source;
194             boost::shared_ptr<AudioFileSource> write_source;
195             
196             Port         *source;
197             Sample       *current_capture_buffer;
198             Sample       *current_playback_buffer;
199             
200             RingBufferNPT<Sample> *playback_buf;
201             RingBufferNPT<Sample> *capture_buf;
202             
203             Sample* scrub_buffer;
204             Sample* scrub_forward_buffer;
205             Sample* scrub_reverse_buffer;
206             
207             RingBufferNPT<Sample>::rw_vector playback_vector;
208             RingBufferNPT<Sample>::rw_vector capture_vector;
209             
210             RingBufferNPT<CaptureTransition> * capture_transition_buf;
211             // the following are used in the butler thread only
212             nframes_t                     curr_capture_cnt;
213         };
214
215         typedef std::vector<ChannelInfo*> ChannelList;
216
217         /* The two central butler operations */
218         int do_flush (Session::RunContext context, bool force = false);
219         int do_refill () { return _do_refill(_mixdown_buffer, _gain_buffer); }
220         
221         int do_refill_with_alloc ();
222
223         int read (Sample* buf, Sample* mixdown_buffer, float* gain_buffer,
224                   nframes_t& start, nframes_t cnt, 
225                   ChannelInfo* channel_info, int channel, bool reversed);
226
227         void finish_capture (bool rec_monitors_input, boost::shared_ptr<ChannelList>);
228         void transport_stopped (struct tm&, time_t, bool abort);
229
230         void init (Diskstream::Flag);
231
232         void init_channel (ChannelInfo &chan);
233         void destroy_channel (ChannelInfo &chan);
234         
235         int use_new_write_source (uint32_t n=0);
236
237         int find_and_use_playlist (const string&);
238
239         void allocate_temporary_buffers ();
240
241         int use_pending_capture_data (XMLNode& node);
242
243         void get_input_sources ();
244         void check_record_status (nframes_t transport_frame, nframes_t nframes, bool can_record);
245         void set_align_style_from_io();
246         void setup_destructive_playlist ();
247         void use_destructive_playlist ();
248
249         void engage_record_enable ();
250         void disengage_record_enable ();
251
252         // Working buffers for do_refill (butler thread)
253         static void allocate_working_buffers();
254         static void free_working_buffers();
255
256         static size_t  _working_buffers_size;
257         static Sample* _mixdown_buffer;
258         static gain_t* _gain_buffer;
259
260         std::vector<boost::shared_ptr<AudioFileSource> > capturing_sources;
261         
262         SerializedRCUManager<ChannelList> channels;
263         
264  /* really */
265   private:
266         int _do_refill (Sample *mixdown_buffer, float *gain_buffer);
267
268         int add_channel_to (boost::shared_ptr<ChannelList>, uint32_t how_many);
269         int remove_channel_from (boost::shared_ptr<ChannelList>, uint32_t how_many);
270
271 };
272
273 } // namespace ARDOUR
274
275 #endif /* __ardour_audio_diskstream_h__ */