Various changes to PresentationInfo and a small consolidation of sorters.
[ardour.git] / libs / ardour / ardour / slave.h
1 /*
2     Copyright (C) 2002 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_slave_h__
21 #define __ardour_slave_h__
22
23 #include <vector>
24
25 #include <glibmm/threads.h>
26
27 #include <ltc.h>
28
29 #include "pbd/signals.h"
30
31 #include "timecode/time.h"
32
33 #include "ardour/libardour_visibility.h"
34 #include "ardour/types.h"
35 #include "midi++/parser.h"
36 #include "midi++/types.h"
37
38
39 /* used for approximate_current_delta(): */
40 #define PLUSMINUS(A) ( ((A)<0) ? "-" : (((A)>0) ? "+" : "\u00B1") )
41 #define LEADINGZERO(A) ( (A)<10 ? "   " : (A)<100 ? "  " : (A)<1000 ? " " : "" )
42
43 namespace ARDOUR {
44
45 class TempoMap;
46 class Session;
47 class AudioEngine;
48 class MidiPort;
49
50 /**
51  * @class Slave
52  *
53  * @brief The Slave interface can be used to sync ARDOURs tempo to an external source
54  * like MTC, MIDI Clock, etc.
55  *
56  * The name of the interface may be a bit misleading: A subclass of Slave actually
57  * acts as a time master for ARDOUR, that means ARDOUR will try to follow the
58  * speed and transport position of the implementation of Slave.
59  * Therefore it is rather that class, that makes ARDOUR a slave by connecting it
60  * to its external time master.
61  */
62 class LIBARDOUR_API Slave {
63   public:
64         Slave() { }
65         virtual ~Slave() {}
66
67         /**
68          * This is the most important function to implement:
69          * Each process cycle, Session::follow_slave will call this method.
70          *  and after the method call they should
71          *
72          * Session::follow_slave will then try to follow the given
73          * <em>position</em> using a delay locked loop (DLL),
74          * starting with the first given transport speed.
75          * If the values of speed and position contradict each other,
76          * ARDOUR will always follow the position and disregard the speed.
77          * Although, a correct speed is important so that ARDOUR
78          * can sync to the master time source quickly.
79          *
80          * For background information on delay locked loops,
81          * see http://www.kokkinizita.net/papers/usingdll.pdf
82          *
83          * The method has the following precondition:
84          * <ul>
85          *   <li>
86          *       Slave::ok() should return true, otherwise playback will stop
87          *       immediately and the method will not be called
88          *   </li>
89          *   <li>
90          *     when the references speed and position are passed into the Slave
91          *     they are uninitialized
92          *   </li>
93          * </ul>
94          *
95          * After the method call the following postconditions should be met:
96          * <ul>
97          *    <li>
98          *       The first position value on transport start should be 0,
99          *       otherwise ARDOUR will try to locate to the new position
100          *       rather than move to it
101          *    </li>
102          *    <li>
103          *      the references speed and position should be assigned
104          *      to the Slaves current requested transport speed
105          *      and transport position.
106          *    </li>
107          *   <li>
108          *     Slave::resolution() should be greater than the maximum distance of
109          *     ARDOURs transport position to the slaves requested transport position.
110          *   </li>
111          *   <li>Slave::locked() should return true, otherwise Session::no_roll will be called</li>
112          *   <li>Slave::starting() should be false, otherwise the transport will not move until it becomes true</li>     *
113          * </ul>
114          *
115          * @param speed - The transport speed requested
116          * @param position - The transport position requested
117          * @return - The return value is currently ignored (see Session::follow_slave)
118          */
119         virtual bool speed_and_position (double& speed, framepos_t& position) = 0;
120
121         /**
122          * reports to ARDOUR whether the Slave is currently synced to its external
123          * time source.
124          *
125          * @return - when returning false, the transport will stop rolling
126          */
127         virtual bool locked() const = 0;
128
129         /**
130          * reports to ARDOUR whether the slave is in a sane state
131          *
132          * @return - when returning false, the transport will be stopped and the slave
133          * disconnected from ARDOUR.
134          */
135         virtual bool ok() const = 0;
136
137         /**
138          * reports to ARDOUR whether the slave is in the process of starting
139          * to roll
140          *
141          * @return - when returning false, transport will not move until this method returns true
142          */
143         virtual bool starting() const { return false; }
144
145         /**
146          * @return - the timing resolution of the Slave - If the distance of ARDOURs transport
147          * to the slave becomes greater than the resolution, sound will stop
148          */
149         virtual framecnt_t resolution() const = 0;
150
151         /**
152          * @return - when returning true, ARDOUR will wait for seekahead_distance() before transport
153          * starts rolling
154          */
155         virtual bool requires_seekahead () const = 0;
156
157         /**
158          * @return the number of frames that this slave wants to seek ahead. Relevant
159          * only if requires_seekahead() returns true.
160          */
161
162         virtual framecnt_t seekahead_distance() const { return 0; }
163
164         /**
165          * @return - when returning true, ARDOUR will use transport speed 1.0 no matter what
166          *           the slave returns
167          */
168         virtual bool is_always_synced() const { return false; }
169
170         /**
171          * @return - whether ARDOUR should use the slave speed without any adjustments
172          */
173         virtual bool give_slave_full_control_over_transport_speed() const { return false; }
174
175         /**
176          * @return - current time-delta between engine and sync-source
177          */
178         virtual std::string approximate_current_delta() const { return ""; }
179
180 };
181
182 /// We need this wrapper for testability, it's just too hard to mock up a session class
183 class LIBARDOUR_API ISlaveSessionProxy {
184   public:
185         virtual ~ISlaveSessionProxy() {}
186         virtual TempoMap&  tempo_map()                  const   { return *((TempoMap *) 0); }
187         virtual framecnt_t frame_rate()                 const   { return 0; }
188         virtual pframes_t  frames_per_cycle()           const   { return 0; }
189         virtual framepos_t audible_frame ()             const   { return 0; }
190         virtual framepos_t transport_frame ()           const   { return 0; }
191         virtual pframes_t  frames_since_cycle_start ()  const   { return 0; }
192         virtual framepos_t sample_time_at_cycle_start() const   { return 0; }
193         virtual framepos_t frame_time ()                const   { return 0; }
194
195         virtual void request_locate (framepos_t /*frame*/, bool with_roll = false) {
196                 (void) with_roll;
197         }
198         virtual void request_transport_speed (double /*speed*/)                   {}
199 };
200
201
202 /// The Session Proxy for use in real Ardour
203 class LIBARDOUR_API SlaveSessionProxy : public ISlaveSessionProxy {
204         Session&    session;
205
206   public:
207         SlaveSessionProxy(Session &s) : session(s) {}
208
209         TempoMap&  tempo_map()                   const;
210         framecnt_t frame_rate()                  const;
211         pframes_t  frames_per_cycle()            const;
212         framepos_t audible_frame ()              const;
213         framepos_t transport_frame ()            const;
214         pframes_t  frames_since_cycle_start ()   const;
215         framepos_t sample_time_at_cycle_start()  const;
216         framepos_t frame_time ()                 const;
217
218         void request_locate (framepos_t frame, bool with_roll = false);
219         void request_transport_speed (double speed);
220 };
221
222 struct LIBARDOUR_API SafeTime {
223         volatile int guard1;
224         framepos_t   position;
225         framepos_t   timestamp;
226         double       speed;
227         volatile int guard2;
228
229         SafeTime() {
230                 guard1 = 0;
231                 position = 0;
232                 timestamp = 0;
233                 speed = 0;
234                 guard2 = 0;
235         }
236 };
237
238 class LIBARDOUR_API TimecodeSlave : public Slave {
239   public:
240         TimecodeSlave () {}
241
242         virtual Timecode::TimecodeFormat apparent_timecode_format() const = 0;
243
244         /* this is intended to be used by a UI and polled from a timeout. it should
245            return a string describing the current position of the TC source. it
246            should NOT do any computation, but should use a cached value
247            of the TC source position.
248         */
249         virtual std::string approximate_current_position() const = 0;
250
251         framepos_t        timecode_offset;
252         bool              timecode_negative_offset;
253
254         PBD::Signal1<void, bool> ActiveChanged;
255 };
256
257 class LIBARDOUR_API MTC_Slave : public TimecodeSlave {
258   public:
259         MTC_Slave (Session&, MidiPort&);
260         ~MTC_Slave ();
261
262         void rebind (MidiPort&);
263         bool speed_and_position (double&, framepos_t&);
264
265         bool locked() const;
266         bool ok() const;
267         void handle_locate (const MIDI::byte*);
268
269         framecnt_t resolution () const;
270         bool requires_seekahead () const { return false; }
271         framecnt_t seekahead_distance() const;
272         bool give_slave_full_control_over_transport_speed() const;
273
274         Timecode::TimecodeFormat apparent_timecode_format() const;
275         std::string approximate_current_position() const;
276         std::string approximate_current_delta() const;
277
278   private:
279         Session&    session;
280         MidiPort*   port;
281         PBD::ScopedConnectionList port_connections;
282         PBD::ScopedConnection     config_connection;
283         bool        can_notify_on_unknown_rate;
284
285         static const int frame_tolerance;
286
287         SafeTime       current;
288         framepos_t     mtc_frame;               /* current time */
289         double         mtc_frame_dll;
290         framepos_t     last_inbound_frame;      /* when we got it; audio clocked */
291         MIDI::byte     last_mtc_fps_byte;
292         framepos_t     window_begin;
293         framepos_t     window_end;
294         framepos_t     first_mtc_timestamp;
295         bool           did_reset_tc_format;
296         Timecode::TimecodeFormat saved_tc_format;
297         Glib::Threads::Mutex    reset_lock;
298         uint32_t       reset_pending;
299         bool           reset_position;
300         int            transport_direction;
301         int            busy_guard1;
302         int            busy_guard2;
303
304         double         speedup_due_to_tc_mismatch;
305         double         quarter_frame_duration;
306         Timecode::TimecodeFormat mtc_timecode;
307         Timecode::TimecodeFormat a3e_timecode;
308         Timecode::Time timecode;
309         bool           printed_timecode_warning;
310         frameoffset_t  current_delta;
311
312         /* DLL - chase MTC */
313         double t0; ///< time at the beginning of the MTC quater frame
314         double t1; ///< calculated end of the MTC quater frame
315         double e2; ///< second order loop error
316         double b, c, omega; ///< DLL filter coefficients
317
318         /* DLL - sync engine */
319         int    engine_dll_initstate;
320         double te0; ///< time at the beginning of the engine process
321         double te1; ///< calculated sync time
322         double ee2; ///< second order loop error
323         double be, ce, oe; ///< DLL filter coefficients
324
325         void reset (bool with_pos);
326         void queue_reset (bool with_pos);
327         void maybe_reset ();
328
329         void update_mtc_qtr (MIDI::Parser&, int, framepos_t);
330         void update_mtc_time (const MIDI::byte *, bool, framepos_t);
331         void update_mtc_status (MIDI::MTC_Status);
332         void read_current (SafeTime *) const;
333         void reset_window (framepos_t);
334         bool outside_window (framepos_t) const;
335         void init_mtc_dll(framepos_t, double);
336         void init_engine_dll (framepos_t, framepos_t);
337         void parse_timecode_offset();
338         void parameter_changed(std::string const & p);
339 };
340
341 class LIBARDOUR_API LTC_Slave : public TimecodeSlave {
342 public:
343         LTC_Slave (Session&);
344         ~LTC_Slave ();
345
346         bool speed_and_position (double&, framepos_t&);
347
348         bool locked() const;
349         bool ok() const;
350
351         framecnt_t resolution () const;
352         bool requires_seekahead () const { return false; }
353         framecnt_t seekahead_distance () const { return 0; }
354         bool give_slave_full_control_over_transport_speed() const { return true; }
355
356         Timecode::TimecodeFormat apparent_timecode_format() const;
357         std::string approximate_current_position() const;
358         std::string approximate_current_delta() const;
359
360   private:
361         void parse_ltc(const pframes_t, const Sample* const, const framecnt_t);
362         void process_ltc(framepos_t const);
363         void init_engine_dll (framepos_t, int32_t);
364         bool detect_discontinuity(LTCFrameExt *, int, bool);
365         bool detect_ltc_fps(int, bool);
366         bool equal_ltc_frame_time(LTCFrame *a, LTCFrame *b);
367         void reset();
368         void resync_xrun();
369         void resync_latency();
370         void parse_timecode_offset();
371         void parameter_changed(std::string const & p);
372
373         Session&       session;
374         bool           did_reset_tc_format;
375         Timecode::TimecodeFormat saved_tc_format;
376
377         LTCDecoder *   decoder;
378         double         frames_per_ltc_frame;
379         Timecode::Time timecode;
380         LTCFrameExt    prev_frame;
381         bool           fps_detected;
382
383         framecnt_t     monotonic_cnt;
384         framecnt_t     last_timestamp;
385         framecnt_t     last_ltc_frame;
386         double         ltc_speed;
387         frameoffset_t  current_delta;
388         int            delayedlocked;
389
390         int            ltc_detect_fps_cnt;
391         int            ltc_detect_fps_max;
392         bool           printed_timecode_warning;
393         bool           sync_lock_broken;
394         Timecode::TimecodeFormat ltc_timecode;
395         Timecode::TimecodeFormat a3e_timecode;
396
397         PBD::ScopedConnectionList port_connections;
398         PBD::ScopedConnection     config_connection;
399         LatencyRange  ltc_slave_latency;
400
401         /* DLL - chase LTC */
402         int    transport_direction;
403         int    engine_dll_initstate;
404         double t0; ///< time at the beginning of the MTC quater frame
405         double t1; ///< calculated end of the MTC quater frame
406         double e2; ///< second order loop error
407         double b, c; ///< DLL filter coefficients
408 };
409
410 class LIBARDOUR_API MIDIClock_Slave : public Slave {
411   public:
412         MIDIClock_Slave (Session&, MidiPort&, int ppqn = 24);
413
414         /// Constructor for unit tests
415         MIDIClock_Slave (ISlaveSessionProxy* session_proxy = 0, int ppqn = 24);
416         ~MIDIClock_Slave ();
417
418         void rebind (MidiPort&);
419         bool speed_and_position (double&, framepos_t&);
420
421         bool locked() const;
422         bool ok() const;
423         bool starting() const;
424
425         framecnt_t resolution () const;
426         bool requires_seekahead () const { return false; }
427         bool give_slave_full_control_over_transport_speed() const { return true; }
428
429         void set_bandwidth (double a_bandwith) { bandwidth = a_bandwith; }
430         std::string approximate_current_delta() const;
431
432   protected:
433         ISlaveSessionProxy* session;
434         PBD::ScopedConnectionList port_connections;
435
436         /// pulses per quarter note for one MIDI clock frame (default 24)
437         int         ppqn;
438
439         /// the duration of one ppqn in frame time
440         double      one_ppqn_in_frames;
441
442         /// the timestamp of the first MIDI clock message
443         framepos_t  first_timestamp;
444
445         /// the time stamp and should-be transport position of the last inbound MIDI clock message
446         framepos_t  last_timestamp;
447         double      should_be_position;
448
449         /// the number of midi clock messages received (zero-based)
450         /// since start
451         long midi_clock_count;
452
453         //the delay locked loop (DLL), see www.kokkinizita.net/papers/usingdll.pdf
454
455         /// time at the beginning of the MIDI clock frame
456         double t0;
457
458         /// calculated end of the MIDI clock frame
459         double t1;
460
461         /// loop error = real value - expected value
462         double e;
463
464         /// second order loop error
465         double e2;
466
467         /// DLL filter bandwidth
468         double bandwidth;
469
470         /// DLL filter coefficients
471         double b, c, omega;
472
473         frameoffset_t  current_delta;
474
475         void reset ();
476         void start (MIDI::Parser& parser, framepos_t timestamp);
477         void contineu (MIDI::Parser& parser, framepos_t timestamp);
478         void stop (MIDI::Parser& parser, framepos_t timestamp);
479         void position (MIDI::Parser& parser, MIDI::byte* message, size_t size);
480         // we can't use continue because it is a C++ keyword
481         void calculate_one_ppqn_in_frames_at(framepos_t time);
482         framepos_t calculate_song_position(uint16_t song_position_in_sixteenth_notes);
483         void calculate_filter_coefficients();
484         void update_midi_clock (MIDI::Parser& parser, framepos_t timestamp);
485         void read_current (SafeTime *) const;
486         bool stop_if_no_more_clock_events(framepos_t& pos, framepos_t now);
487
488         /// whether transport should be rolling
489         bool _started;
490
491         /// is true if the MIDI Start message has just been received until
492         /// the first MIDI Clock Event
493         bool _starting;
494 };
495
496 class LIBARDOUR_API Engine_Slave : public Slave
497 {
498   public:
499         Engine_Slave (AudioEngine&);
500         ~Engine_Slave ();
501
502         bool speed_and_position (double& speed, framepos_t& pos);
503
504         bool starting() const { return _starting; }
505         bool locked() const;
506         bool ok() const;
507         framecnt_t resolution () const { return 1; }
508         bool requires_seekahead () const { return false; }
509         bool is_always_synced() const { return true; }
510
511   private:
512         AudioEngine& engine;
513         bool _starting;
514 };
515
516 } /* namespace */
517
518 #endif /* __ardour_slave_h__ */