save&restore gain levels; provide GUI control over relative route group bit; fix...
[ardour.git] / libs / ardour / ardour / 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
20 #ifndef __ardour_diskstream_h__
21 #define __ardour_diskstream_h__
22
23 #include <string>
24 #include <queue>
25 #include <map>
26 #include <vector>
27 #include <cmath>
28 #include <time.h>
29
30 #include <sigc++/signal.h>
31
32 #include <boost/utility.hpp>
33
34 #include "evoral/types.hpp"
35
36 #include "pbd/fastlog.h"
37 #include "pbd/ringbufferNPT.h"
38 #include "pbd/stateful.h"
39 #include "pbd/statefuldestructible.h" 
40
41 #include "ardour/ardour.h"
42 #include "ardour/location.h"
43 #include "ardour/session_object.h"
44 #include "ardour/types.h"
45 #include "ardour/utils.h"
46 #include "ardour/chan_count.h"
47
48 struct tm;
49
50 namespace ARDOUR {
51
52 class AudioEngine;
53 class IO;
54 class Playlist;
55 class Processor;
56 class Region;
57 class Send;
58 class Session;
59
60 class Diskstream : public SessionObject, public boost::noncopyable
61 {       
62   public:
63         enum Flag {
64                 Recordable  = 0x1,
65                 Hidden      = 0x2,
66                 Destructive = 0x4,
67                 NonLayered   = 0x8
68         };
69
70         Diskstream (Session &, const std::string& name, Flag f = Recordable);
71         Diskstream (Session &, const XMLNode&);
72         virtual ~Diskstream();
73         
74         bool set_name (const std::string& str);
75
76         ARDOUR::IO* io() const { return _io; }
77         void set_io (ARDOUR::IO& io);
78
79         virtual float playback_buffer_load() const = 0;
80         virtual float capture_buffer_load() const = 0;
81
82         void set_flag (Flag f)   { _flags = Flag (_flags | f); }
83         void unset_flag (Flag f) { _flags = Flag (_flags & ~f); }
84
85         AlignStyle alignment_style() const { return _alignment_style; }
86         void       set_align_style (AlignStyle);
87         void       set_persistent_align_style (AlignStyle a) { _persistent_alignment_style = a; }
88         
89         nframes_t roll_delay() const { return _roll_delay; }
90         void      set_roll_delay (nframes_t);
91
92         bool         record_enabled() const { return g_atomic_int_get (&_record_enabled); }
93         virtual void set_record_enabled (bool yn) = 0;
94
95         bool destructive() const { return _flags & Destructive; }
96         virtual int set_destructive (bool yn) { return -1; }
97         virtual int set_non_layered (bool yn) { return -1; }
98         virtual bool can_become_destructive (bool& requires_bounce) const { return false; }
99
100         bool           hidden()      const { return _flags & Hidden; }
101         bool           recordable()  const { return _flags & Recordable; }
102         bool           non_layered()  const { return _flags & NonLayered; }
103         bool           reversed()    const { return _actual_speed < 0.0f; }
104         double         speed()       const { return _visible_speed; }
105         
106         virtual void punch_in()  {}
107         virtual void punch_out() {}
108
109         void set_speed (double);
110         void non_realtime_set_speed ();
111         virtual void non_realtime_locate (nframes_t location) {};
112         virtual void playlist_modified ();
113
114         boost::shared_ptr<Playlist> playlist () { return _playlist; }
115
116         virtual int use_playlist (boost::shared_ptr<Playlist>);
117         virtual int use_new_playlist () = 0;
118         virtual int use_copy_playlist () = 0;
119
120         nframes_t current_capture_start() const { return capture_start_frame; }
121         nframes_t current_capture_end()   const { return capture_start_frame + capture_captured; }
122         nframes_t get_capture_start_frame (uint32_t n=0);
123         nframes_t get_captured_frames (uint32_t n=0);
124         
125         ChanCount n_channels() { return _n_channels; }
126
127         static nframes_t disk_io_frames() { return disk_io_chunk_frames; }
128         static void set_disk_io_chunk_frames (uint32_t n) { disk_io_chunk_frames = n; }
129
130         /* Stateful */
131         virtual XMLNode& get_state(void) = 0;
132         virtual int      set_state(const XMLNode& node) = 0;
133         
134         virtual void monitor_input (bool) {}
135
136         nframes_t    capture_offset() const { return _capture_offset; }
137         virtual void set_capture_offset ();
138
139         bool slaved() const      { return _slaved; }
140         void set_slaved(bool yn) { _slaved = yn; }
141
142         int set_loop (Location *loc);
143
144         std::list<boost::shared_ptr<Region> >& last_capture_regions () { return _last_capture_regions; }
145
146         void handle_input_change (IOChange, void *src);
147
148         void remove_region_from_last_capture (boost::weak_ptr<Region> wregion);
149
150         void move_processor_automation (boost::weak_ptr<Processor>,
151                         std::list< Evoral::RangeMove<nframes_t> > const &);
152
153         sigc::signal<void>            RecordEnableChanged;
154         sigc::signal<void>            SpeedChanged;
155         sigc::signal<void>            ReverseChanged;
156         sigc::signal<void>            PlaylistChanged;
157         sigc::signal<void>            AlignmentStyleChanged;
158         sigc::signal<void,Location *> LoopSet;
159
160         static sigc::signal<void>     DiskOverrun;
161         static sigc::signal<void>     DiskUnderrun;
162
163   protected:
164         friend class Session;
165
166         /* the Session is the only point of access for these because they require
167          * that the Session is "inactive" while they are called.
168          */
169
170         virtual void set_pending_overwrite (bool) = 0;
171         virtual int  overwrite_existing_buffers () = 0;
172         virtual void set_block_size (nframes_t) = 0;
173         virtual int  internal_playback_seek (nframes_t distance) = 0;
174         virtual int  can_internal_playback_seek (nframes_t distance) = 0;
175         virtual int  rename_write_sources () = 0;
176         virtual void reset_write_sources (bool, bool force = false) = 0;
177         virtual void non_realtime_input_change () = 0;
178
179         uint32_t read_data_count() const { return _read_data_count; }
180         uint32_t write_data_count() const { return _write_data_count; }
181
182   protected:
183         friend class Auditioner;
184         virtual int  seek (nframes_t which_sample, bool complete_refill = false) = 0;
185
186   protected:
187         friend class Track;
188
189         virtual void prepare ();
190         virtual int  process (nframes_t transport_frame, nframes_t nframes, bool can_record, bool rec_monitors_input) = 0;
191         virtual bool commit  (nframes_t nframes) = 0;
192         virtual void recover (); /* called if commit will not be called, but process was */
193
194         //private:
195         
196         enum TransitionType {
197                 CaptureStart = 0,
198                 CaptureEnd
199         };
200         
201         struct CaptureTransition {
202                 TransitionType   type;
203                 nframes_t   capture_val; ///< The start or end file frame position
204         };
205
206         /* The two central butler operations */
207         virtual int do_flush (RunContext context, bool force = false) = 0;
208         virtual int do_refill () = 0;
209         
210         /** For non-butler contexts (allocates temporary working buffers) */
211         virtual int do_refill_with_alloc() = 0;
212         
213         /* XXX fix this redundancy ... */
214
215         virtual void playlist_changed (Change);
216         virtual void playlist_deleted (boost::weak_ptr<Playlist>);
217         virtual void playlist_ranges_moved (std::list< Evoral::RangeMove<nframes_t> > const &);
218
219         virtual void transport_stopped (struct tm&, time_t, bool abort) = 0;
220         virtual void transport_looped (nframes_t transport_frame) = 0;
221
222         struct CaptureInfo {
223             uint32_t start;
224             uint32_t frames;
225         };
226
227         virtual void init (Flag);
228
229         virtual int use_new_write_source (uint32_t n=0) = 0;
230
231         virtual int find_and_use_playlist (const std::string&) = 0;
232
233         virtual void allocate_temporary_buffers () = 0;
234
235         virtual bool realtime_set_speed (double, bool global_change);
236
237         std::list<boost::shared_ptr<Region> > _last_capture_regions;
238
239         virtual int use_pending_capture_data (XMLNode& node) = 0;
240
241         virtual void get_input_sources () = 0;
242         virtual void check_record_status (nframes_t transport_frame, nframes_t nframes, bool can_record) = 0;
243         virtual void set_align_style_from_io() {}
244         virtual void setup_destructive_playlist () {}
245         virtual void use_destructive_playlist () {}
246
247         static nframes_t disk_io_chunk_frames;
248         std::vector<CaptureInfo*>  capture_info;
249         Glib::Mutex           capture_info_lock;
250
251         uint32_t i_am_the_modifier;
252
253         ARDOUR::IO*  _io;
254         ChanCount    _n_channels;
255
256         boost::shared_ptr<Playlist> _playlist;
257
258         mutable gint _record_enabled;
259         double       _visible_speed;
260         double       _actual_speed;
261         /* items needed for speed change logic */
262         bool         _buffer_reallocation_required;
263         bool         _seek_required;
264         
265         bool          force_refill;
266         nframes_t     capture_start_frame;
267         nframes_t     capture_captured;
268         bool          was_recording;
269         nframes_t     adjust_capture_position;
270         nframes_t    _capture_offset;
271         nframes_t    _roll_delay;
272         nframes_t     first_recordable_frame;
273         nframes_t     last_recordable_frame;
274         int           last_possibly_recording;
275         AlignStyle   _alignment_style;
276         bool         _scrubbing;
277         bool         _slaved;
278         bool         _processed;
279         Location*     loop_location;
280         nframes_t     overwrite_frame;
281         off_t         overwrite_offset;
282         bool          pending_overwrite;
283         bool          overwrite_queued;
284         IOChange      input_change_pending;
285         nframes_t     wrap_buffer_size;
286         nframes_t     speed_buffer_size;
287
288         double        _speed;   
289         double        _target_speed;
290         
291         nframes_t     file_frame;               
292         nframes_t     playback_sample;
293         nframes_t     playback_distance;
294         bool          commit_should_unlock;
295
296         uint32_t     _read_data_count;
297         uint32_t     _write_data_count;
298
299         bool          in_set_state;
300         AlignStyle   _persistent_alignment_style;
301         bool          first_input_change;
302
303         Glib::Mutex state_lock;
304
305         nframes_t scrub_start;
306         nframes_t scrub_buffer_size;
307         nframes_t scrub_offset;
308
309         sigc::connection ports_created_c;
310         sigc::connection plmod_connection;
311         sigc::connection plgone_connection;
312         sigc::connection plregion_connection;
313         
314         Flag _flags;
315 };
316
317 }; /* namespace ARDOUR */
318
319 #endif /* __ardour_diskstream_h__ */