summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/diskstream.h
blob: a72289acd115889be4346d1254817b9d2c8db254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
    Copyright (C) 2000 Paul Davis 

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    $Id: diskstream.h 579 2006-06-12 19:56:37Z essej $
*/

#ifndef __ardour_diskstream_h__
#define __ardour_diskstream_h__

#include <sigc++/signal.h>

#include <cmath>
#include <string>
#include <queue>
#include <map>
#include <vector>

#include <time.h>

#include <pbd/fastlog.h>
#include <pbd/ringbufferNPT.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/stateful.h>

struct tm;

namespace ARDOUR {

class AudioEngine;
class Send;
class Session;
class Playlist;
//class FileSource;
class IO;

/* FIXME: There are (obviously) far too many virtual functions in this ATM.
 * Just to get things off the ground, they'll be removed. */

class Diskstream : public Stateful, public sigc::trackable
{	
  public:
	enum Flag {
		Recordable = 0x1,
		Hidden = 0x2,
		Destructive = 0x4
	};

	Diskstream (Session &, const string& name, Flag f = Recordable);
	Diskstream (Session &, const XMLNode&);

	string name () const { return _name; }
	virtual int set_name (string str, void* src);

	ARDOUR::IO* io() const { return _io; }
	virtual void set_io (ARDOUR::IO& io) = 0;

	virtual Diskstream& ref() { _refcnt++; return *this; }
	void unref() { if (_refcnt) _refcnt--; if (_refcnt == 0) delete this; }
	uint32_t refcnt() const { return _refcnt; }

	virtual float playback_buffer_load() const = 0;
	virtual float capture_buffer_load() const = 0;

	void set_flag (Flag f)   { _flags |= f; }
	void unset_flag (Flag f) { _flags &= ~f; }

	AlignStyle alignment_style() const { return _alignment_style; }
	void set_align_style (AlignStyle);
	void set_persistent_align_style (AlignStyle a) { _persistent_alignment_style = a; }
	
	jack_nframes_t roll_delay() const { return _roll_delay; }
	void set_roll_delay (jack_nframes_t);

	bool record_enabled() const { return g_atomic_int_get (&_record_enabled); }
	virtual void set_record_enabled (bool yn, void *src) = 0;

	bool destructive() const { return _flags & Destructive; }
	virtual void set_destructive (bool yn);

	id_t   id()          const { return _id; }
	bool   hidden()      const { return _flags & Hidden; }
	bool   recordable()  const { return _flags & Recordable; }
	bool   reversed()    const { return _actual_speed < 0.0f; }
	double speed()       const { return _visible_speed; }
	
	virtual void punch_in()  {}
	virtual void punch_out() {}

	virtual void set_speed (double);
	virtual void non_realtime_set_speed () = 0;

	virtual Playlist *playlist () = 0;
	virtual int use_new_playlist () = 0;
	virtual int use_playlist (Playlist *) = 0;
	virtual int use_copy_playlist () = 0;

	virtual void start_scrub (jack_nframes_t where) = 0;
	virtual void end_scrub () = 0;

	jack_nframes_t current_capture_start() const { return capture_start_frame; }
	jack_nframes_t current_capture_end()   const { return capture_start_frame + capture_captured; }
	jack_nframes_t get_capture_start_frame (uint32_t n=0);
	jack_nframes_t get_captured_frames (uint32_t n=0);
	
	uint32_t n_channels() { return _n_channels; }

	static jack_nframes_t disk_io_frames() { return disk_io_chunk_frames; }
	static void set_disk_io_chunk_frames (uint32_t n) { disk_io_chunk_frames = n; }

	/* Stateful */
	virtual XMLNode& get_state(void) = 0;
	virtual int      set_state(const XMLNode& node) = 0;
	
	// FIXME: makes sense for all diskstream types?
	virtual void monitor_input (bool) {}

	jack_nframes_t capture_offset() const { return _capture_offset; }
	virtual void   set_capture_offset ();

	bool slaved() const      { return _slaved; }
	void set_slaved(bool yn) { _slaved = yn; }

	virtual int set_loop (Location *loc);
	sigc::signal<void,Location *> LoopSet;

	std::list<Region*>& last_capture_regions () { return _last_capture_regions; }

	virtual void handle_input_change (IOChange, void *src);

	sigc::signal<void,void*> record_enable_changed;
	sigc::signal<void>       speed_changed;
	sigc::signal<void,void*> reverse_changed;
	sigc::signal<void>       PlaylistChanged;
	sigc::signal<void>       AlignmentStyleChanged;

	static sigc::signal<void>                DiskOverrun;
	static sigc::signal<void>                DiskUnderrun;
	static sigc::signal<void,Diskstream*>    DiskstreamCreated; // XXX use a ref with sigc2
	//static sigc::signal<void,list<Source*>*> DeleteSources;
	
	XMLNode* deprecated_io_node;

  protected:
	friend class Session;

	/* the Session is the only point of access for these
	   because they require that the Session is "inactive"
	   while they are called.
	*/

	virtual void set_pending_overwrite (bool) = 0;
	virtual int  overwrite_existing_buffers () = 0;
	virtual void reverse_scrub_buffer (bool to_forward) = 0;
	virtual void set_block_size (jack_nframes_t) = 0;
	virtual int  internal_playback_seek (jack_nframes_t distance) = 0;
	virtual int  can_internal_playback_seek (jack_nframes_t distance) = 0;
	virtual int  rename_write_sources () = 0;
	virtual void reset_write_sources (bool, bool force = false) = 0;
	virtual void non_realtime_input_change () = 0;

	uint32_t read_data_count() const { return _read_data_count; }
	uint32_t write_data_count() const { return _write_data_count; }

  protected:
	friend class Auditioner;
	virtual int  seek (jack_nframes_t which_sample, bool complete_refill = false) = 0;

  protected:
	friend class Track;

	virtual void prepare ();
	virtual int  process (jack_nframes_t transport_frame, jack_nframes_t nframes, jack_nframes_t offset, bool can_record, bool rec_monitors_input) = 0;
	virtual bool commit  (jack_nframes_t nframes) = 0;
	virtual void recover (); /* called if commit will not be called, but process was */

	//private:
	
	/* use unref() to destroy a diskstream */
	virtual ~Diskstream();

	enum TransitionType {
		CaptureStart = 0,
		CaptureEnd
	};
	
	struct CaptureTransition {
		TransitionType   type;
		// the start or end file frame pos
		jack_nframes_t   capture_val;
	};

	/* the two central butler operations */

	virtual int do_flush (char * workbuf, bool force = false) = 0;
	//int do_refill (Sample *mixdown_buffer, float *gain_buffer, char *workbuf);
	
	virtual int non_realtime_do_refill() = 0;

	//int read (Sample* buf, Sample* mixdown_buffer, float* gain_buffer, char * workbuf, jack_nframes_t& start, jack_nframes_t cnt, 
	//	  ChannelInfo& channel_info, int channel, bool reversed);
	
	/* XXX fix this redundancy ... */

	virtual void playlist_changed (Change);
	virtual void playlist_modified ();
	virtual void playlist_deleted (Playlist*) = 0;
	virtual void session_controls_changed (Session::ControlType) = 0;

	virtual void finish_capture (bool rec_monitors_input) = 0;
	virtual void clean_up_capture (struct tm&, time_t, bool abort) = 0;
	virtual void transport_stopped (struct tm&, time_t, bool abort) = 0;

	struct CaptureInfo {
	    uint32_t start;
	    uint32_t frames;
	};

	virtual void init (Flag);

	//void init_channel (ChannelInfo &chan);
	//void destroy_channel (ChannelInfo &chan);

	virtual int use_new_write_source (uint32_t n=0) = 0;
	virtual int use_new_fade_source (uint32_t n=0) = 0;

	virtual int find_and_use_playlist (const string&) = 0;

	//void allocate_temporary_buffers ();

	virtual int  create_input_port () = 0;
	virtual int  connect_input_port () = 0;
	virtual int  seek_unlocked (jack_nframes_t which_sample) = 0;

	virtual int ports_created () = 0;

	virtual bool realtime_set_speed (double, bool global_change);
	//void non_realtime_set_speed ();

	std::list<Region*> _last_capture_regions;
	//std::vector<FileSource*> capturing_sources;
	virtual int use_pending_capture_data (XMLNode& node) = 0;

	virtual void get_input_sources () = 0;
	virtual void check_record_status (jack_nframes_t transport_frame, jack_nframes_t nframes, bool can_record) = 0;
	//void set_align_style_from_io();
	virtual void setup_destructive_playlist () = 0;
	//void use_destructive_playlist ();

	// Wouldn't hurt for this thing to do on a diet:
	
	static jack_nframes_t disk_io_chunk_frames;
	vector<CaptureInfo*>  capture_info;
	Glib::Mutex           capture_info_lock;

	uint32_t i_am_the_modifier;

	string            _name;
	ARDOUR::Session&  _session;
	ARDOUR::IO*       _io;
	uint32_t          _n_channels;
	id_t              _id;

	mutable gint             _record_enabled;
	double                   _visible_speed;
	double                   _actual_speed;
	/* items needed for speed change logic */
	bool                     _buffer_reallocation_required;
	bool                     _seek_required;
	
	bool                      force_refill;
	jack_nframes_t            capture_start_frame;
	jack_nframes_t            capture_captured;
	bool                      was_recording;
	jack_nframes_t            adjust_capture_position;
	jack_nframes_t           _capture_offset;
	jack_nframes_t           _roll_delay;
	jack_nframes_t            first_recordable_frame;
	jack_nframes_t            last_recordable_frame;
	int                       last_possibly_recording;
	AlignStyle               _alignment_style;
	bool                     _scrubbing;
	bool                     _slaved;
	bool                     _processed;
	Location*                 loop_location;
	jack_nframes_t            overwrite_frame;
	off_t                     overwrite_offset;
	bool                      pending_overwrite;
	bool                      overwrite_queued;
	IOChange                  input_change_pending;
	jack_nframes_t            wrap_buffer_size;
	jack_nframes_t            speed_buffer_size;

	uint64_t                  last_phase;
	uint64_t                  phi;
	
	jack_nframes_t            file_frame;		
	jack_nframes_t            playback_sample;
	jack_nframes_t            playback_distance;

	uint32_t                 _read_data_count;
	uint32_t                 _write_data_count;

	bool                      in_set_state;
	AlignStyle               _persistent_alignment_style;
	bool                      first_input_change;

	Glib::Mutex  state_lock;

	jack_nframes_t scrub_start;
	jack_nframes_t scrub_buffer_size;
	jack_nframes_t scrub_offset;

	uint32_t _refcnt;

	sigc::connection ports_created_c;
	sigc::connection plmod_connection;
	sigc::connection plstate_connection;
	sigc::connection plgone_connection;
	
	unsigned char _flags;

};

}; /* namespace ARDOUR */

#endif /* __ardour_diskstream_h__ */