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