Fix sketchy casts.
[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/utils.h"
39 #include "ardour/diskstream.h"
40 #include "ardour/audioplaylist.h"
41 #include "ardour/port.h"
42 #include "ardour/interpolation.h"
43
44 struct tm;
45
46 namespace ARDOUR {
47
48 class AudioEngine;
49 class Send;
50 class Session;
51 class AudioPlaylist;
52 class AudioFileSource;
53 class IO;
54
55 class AudioDiskstream : public Diskstream
56 {
57   public:
58         AudioDiskstream (Session &, const std::string& name, Diskstream::Flag f = Recordable);
59         AudioDiskstream (Session &, const XMLNode&);
60         ~AudioDiskstream();
61
62         float playback_buffer_load() const;
63         float capture_buffer_load() const;
64
65         std::string input_source (uint32_t n=0) const {
66                 boost::shared_ptr<ChannelList> c = channels.reader();
67                 if (n < c->size()) {
68                         return (*c)[n]->source ? (*c)[n]->source->name() : "";
69                 } else {
70                         return "";
71                 }
72         }
73
74         Port *input_source_port (uint32_t n=0) const {
75                 boost::shared_ptr<ChannelList> c = channels.reader();
76                 if (n < c->size()) return (*c)[n]->source; return 0;
77         }
78
79         void set_record_enabled (bool yn);
80         int set_destructive (bool yn);
81         int set_non_layered (bool yn);
82         bool can_become_destructive (bool& requires_bounce) const;
83
84         float peak_power(uint32_t n = 0) {
85                 boost::shared_ptr<ChannelList> c = channels.reader();
86                 ChannelInfo* chaninfo = (*c)[n];
87                 float x = chaninfo->peak_power;
88                 chaninfo->peak_power = 0.0f;
89                 if (x > 0.0f) {
90                         return 20.0f * fast_log10(x);
91                 } else {
92                         return minus_infinity();
93                 }
94         }
95
96         boost::shared_ptr<AudioPlaylist> audio_playlist () { return boost::dynamic_pointer_cast<AudioPlaylist>(_playlist); }
97
98         int use_playlist (boost::shared_ptr<Playlist>);
99         int use_new_playlist ();
100         int use_copy_playlist ();
101
102         Sample *playback_buffer (uint32_t n = 0) {
103                 boost::shared_ptr<ChannelList> c = channels.reader();
104                 if (n < c->size())
105                         return (*c)[n]->current_playback_buffer;
106                 return 0;
107         }
108
109         Sample *capture_buffer (uint32_t n = 0) {
110                 boost::shared_ptr<ChannelList> c = channels.reader();
111                 if (n < c->size())
112                         return (*c)[n]->current_capture_buffer;
113                 return 0;
114         }
115
116         boost::shared_ptr<AudioFileSource> write_source (uint32_t n=0) {
117                 boost::shared_ptr<ChannelList> c = channels.reader();
118                 if (n < c->size())
119                         return (*c)[n]->write_source;
120                 return boost::shared_ptr<AudioFileSource>();
121         }
122
123         int add_channel (uint32_t how_many);
124         int remove_channel (uint32_t how_many);
125
126         /* stateful */
127
128         XMLNode& get_state(void);
129         int      set_state(const XMLNode& node, int version);
130
131         void monitor_input (bool);
132
133         static void swap_by_ptr (Sample *first, Sample *last) {
134                 while (first < last) {
135                         Sample tmp = *first;
136                         *first++ = *last;
137                         *last-- = tmp;
138                 }
139         }
140
141         static void swap_by_ptr (Sample *first, Sample *last, nframes_t n) {
142                 while (n--) {
143                         Sample tmp = *first;
144                         *first++ = *last;
145                         *last-- = tmp;
146                 }
147         }
148
149         CubicInterpolation interpolation;
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         void non_realtime_locate (nframes_t location);
170
171   protected:
172         friend class Auditioner;
173         int  seek (nframes_t which_sample, bool complete_refill = false);
174
175   protected:
176         friend class AudioTrack;
177
178         int  process (nframes_t transport_frame, nframes_t nframes, bool can_record, bool rec_monitors_input);
179         bool commit  (nframes_t nframes);
180
181   private:
182
183         struct ChannelInfo {
184
185                 ChannelInfo (nframes_t buffer_size, nframes_t speed_buffer_size, nframes_t wrap_buffer_size);
186                 ~ChannelInfo ();
187
188                 Sample     *playback_wrap_buffer;
189                 Sample     *capture_wrap_buffer;
190                 Sample     *speed_buffer;
191
192                 float       peak_power;
193
194                 boost::shared_ptr<AudioFileSource> fades_source;
195                 boost::shared_ptr<AudioFileSource> write_source;
196
197                 /// the Port that our audio data comes from
198                 Port         *source;
199                 Sample       *current_capture_buffer;
200                 Sample       *current_playback_buffer;
201
202                 RingBufferNPT<Sample> *playback_buf;
203                 RingBufferNPT<Sample> *capture_buf;
204
205                 Sample* scrub_buffer;
206                 Sample* scrub_forward_buffer;
207                 Sample* scrub_reverse_buffer;
208
209                 RingBufferNPT<Sample>::rw_vector playback_vector;
210                 RingBufferNPT<Sample>::rw_vector capture_vector;
211
212                 RingBufferNPT<CaptureTransition> * capture_transition_buf;
213                 // the following are used in the butler thread only
214                 nframes_t                     curr_capture_cnt;
215         };
216
217         typedef std::vector<ChannelInfo*> ChannelList;
218
219         void process_varispeed_playback(nframes_t nframes, boost::shared_ptr<ChannelList> c);
220
221         /* The two central butler operations */
222         int do_flush (RunContext context, bool force = false);
223         int do_refill () { return _do_refill(_mixdown_buffer, _gain_buffer); }
224
225         int do_refill_with_alloc ();
226
227         int read (Sample* buf, Sample* mixdown_buffer, float* gain_buffer,
228                         nframes_t& start, nframes_t cnt,
229                         ChannelInfo* channel_info, int channel, bool reversed);
230
231         void finish_capture (bool rec_monitors_input, boost::shared_ptr<ChannelList>);
232         void transport_stopped (struct tm&, time_t, bool abort);
233         void transport_looped (nframes_t transport_frame);
234
235         void init (Diskstream::Flag);
236
237         void init_channel (ChannelInfo &chan);
238         void destroy_channel (ChannelInfo &chan);
239
240         int use_new_write_source (uint32_t n=0);
241
242         int find_and_use_playlist (const std::string &);
243
244         void allocate_temporary_buffers ();
245
246         int use_pending_capture_data (XMLNode& node);
247
248         void get_input_sources ();
249         void prepare_record_status(nframes_t capture_start_frame);
250         void set_align_style_from_io();
251         void setup_destructive_playlist ();
252         void use_destructive_playlist ();
253
254         void engage_record_enable ();
255         void disengage_record_enable ();
256
257         // Working buffers for do_refill (butler thread)
258         static void allocate_working_buffers();
259         static void free_working_buffers();
260
261         static size_t  _working_buffers_size;
262         static Sample* _mixdown_buffer;
263         static gain_t* _gain_buffer;
264
265         std::vector<boost::shared_ptr<AudioFileSource> > capturing_sources;
266
267         SerializedRCUManager<ChannelList> channels;
268
269  /* really */
270   private:
271         int _do_refill (Sample *mixdown_buffer, float *gain_buffer);
272
273         int add_channel_to (boost::shared_ptr<ChannelList>, uint32_t how_many);
274         int remove_channel_from (boost::shared_ptr<ChannelList>, uint32_t how_many);
275
276 };
277
278 } // namespace ARDOUR
279
280 #endif /* __ardour_audio_diskstream_h__ */