LTC generator checks itself if to send LTC or not.
[ardour.git] / libs / ardour / session_process.cc
1 /*
2     Copyright (C) 1999-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 #include <cmath>
21 #include <cerrno>
22 #include <algorithm>
23 #include <unistd.h>
24
25 #include "pbd/error.h"
26 #include "pbd/enumwriter.h"
27
28 #include <glibmm/threads.h>
29
30 #include "ardour/audioengine.h"
31 #include "ardour/auditioner.h"
32 #include "ardour/butler.h"
33 #include "ardour/cycle_timer.h"
34 #include "ardour/debug.h"
35 #include "ardour/graph.h"
36 #include "ardour/port.h"
37 #include "ardour/process_thread.h"
38 #include "ardour/session.h"
39 #include "ardour/slave.h"
40 #include "ardour/ticker.h"
41 #include "ardour/types.h"
42
43 #include "midi++/manager.h"
44 #include "midi++/mmc.h"
45
46 #include "i18n.h"
47
48 #include <xmmintrin.h>
49
50 using namespace ARDOUR;
51 using namespace PBD;
52 using namespace std;
53
54 /** Called by the audio engine when there is work to be done with JACK.
55  * @param nframes Number of frames to process.
56  */
57
58 void
59 Session::process (pframes_t nframes)
60 {
61         framepos_t transport_at_start = _transport_frame;
62
63         _silent = false;
64
65         if (processing_blocked()) {
66                 _silent = true;
67                 return;
68         }
69
70         if (non_realtime_work_pending()) {
71                 if (!_butler->transport_work_requested ()) {
72                         post_transport ();
73                 }
74         }
75
76         _engine.main_thread()->get_buffers ();
77
78         (this->*process_function) (nframes);
79
80         _engine.main_thread()->drop_buffers ();
81
82         /* deliver MIDI clock. Note that we need to use the transport frame
83          * position at the start of process(), not the value at the end of
84          * it. We may already have ticked() because of a transport state
85          * change, for example.
86          */
87
88         try {
89                 if (!_engine.freewheeling() && Config->get_send_midi_clock() && transport_speed() == 1.0f && midi_clock->has_midi_port()) {
90                         midi_clock->tick (transport_at_start);
91                 }
92         } catch (...) {
93                 /* don't bother with a message */
94         }
95
96         SendFeedback (); /* EMIT SIGNAL */
97 }
98
99 int
100 Session::fail_roll (pframes_t nframes)
101 {
102         return no_roll (nframes);
103 }
104
105 int
106 Session::no_roll (pframes_t nframes)
107 {
108         PT_TIMING_CHECK (4);
109         
110         framepos_t end_frame = _transport_frame + nframes; // FIXME: varispeed + no_roll ??
111         int ret = 0;
112         int declick = get_transport_declick_required();
113         boost::shared_ptr<RouteList> r = routes.reader ();
114
115         if (_click_io) {
116                 _click_io->silence (nframes);
117         }
118
119 #ifdef HAVE_LTC
120         ltc_tx_send_time_code_for_cycle (_transport_frame, end_frame, _target_transport_speed, _transport_speed, nframes);
121 #endif
122
123         if (_process_graph) {
124                 DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/no-roll\n");
125                 _process_graph->routes_no_roll( nframes, _transport_frame, end_frame, non_realtime_work_pending(), declick);
126         } else {
127                 PT_TIMING_CHECK (10);
128                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
129
130                         if ((*i)->is_hidden()) {
131                                 continue;
132                         }
133
134                         (*i)->set_pending_declick (declick);
135
136                         if ((*i)->no_roll (nframes, _transport_frame, end_frame, non_realtime_work_pending())) {
137                                 error << string_compose(_("Session: error in no roll for %1"), (*i)->name()) << endmsg;
138                                 ret = -1;
139                                 break;
140                         }
141                 }
142                 PT_TIMING_CHECK (11);
143         }
144
145         PT_TIMING_CHECK (5);
146         return ret;
147 }
148
149 /** @param need_butler to be set to true by this method if it needs the butler,
150  *  otherwise it must be left alone.
151  */
152 int
153 Session::process_routes (pframes_t nframes, bool& need_butler)
154 {
155         int  declick = get_transport_declick_required();
156         boost::shared_ptr<RouteList> r = routes.reader ();
157
158         if (transport_sub_state & StopPendingCapture) {
159                 /* force a declick out */
160                 declick = -1;
161         }
162
163         const framepos_t start_frame = _transport_frame;
164         const framepos_t end_frame = _transport_frame + floor (nframes * _transport_speed);
165         
166         if (_process_graph) {
167                 DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/process-routes\n");
168                 _process_graph->process_routes (nframes, start_frame, end_frame, declick, need_butler);
169         } else {
170
171                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
172
173                         int ret;
174
175                         if ((*i)->is_hidden()) {
176                                 continue;
177                         }
178
179                         (*i)->set_pending_declick (declick);
180
181                         bool b = false;
182
183                         if ((ret = (*i)->roll (nframes, start_frame, end_frame, declick, b)) < 0) {
184                                 stop_transport ();
185                                 return -1;
186                         }
187
188                         if (b) {
189                                 need_butler = true;
190                         }
191                 }
192         }
193
194         return 0;
195 }
196
197 /** @param need_butler to be set to true by this method if it needs the butler,
198  *  otherwise it must be left alone.
199  */
200 int
201 Session::silent_process_routes (pframes_t nframes, bool& need_butler)
202 {
203         boost::shared_ptr<RouteList> r = routes.reader ();
204
205         const framepos_t start_frame = _transport_frame;
206         const framepos_t end_frame = _transport_frame + lrintf(nframes * _transport_speed);
207
208         if (_process_graph) {
209                 _process_graph->silent_process_routes (nframes, start_frame, end_frame, need_butler);
210         } else {
211                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
212
213                         int ret;
214
215                         if ((*i)->is_hidden()) {
216                                 continue;
217                         }
218
219                         bool b = false;
220
221                         if ((ret = (*i)->silent_roll (nframes, start_frame, end_frame, b)) < 0) {
222                                 stop_transport ();
223                                 return -1;
224                         }
225
226                         if (b) {
227                                 need_butler = true;
228                         }
229                 }
230         }
231
232         return 0;
233 }
234
235 void
236 Session::get_track_statistics ()
237 {
238         float pworst = 1.0f;
239         float cworst = 1.0f;
240
241         boost::shared_ptr<RouteList> rl = routes.reader();
242         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
243
244                 boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
245
246                 if (!tr || tr->hidden()) {
247                         continue;
248                 }
249
250                 pworst = min (pworst, tr->playback_buffer_load());
251                 cworst = min (cworst, tr->capture_buffer_load());
252         }
253
254         g_atomic_int_set (&_playback_load, (uint32_t) floor (pworst * 100.0f));
255         g_atomic_int_set (&_capture_load, (uint32_t) floor (cworst * 100.0f));
256
257         if (actively_recording()) {
258                 set_dirty();
259         }
260 }
261
262 /** Process callback used when the auditioner is not active */
263 void
264 Session::process_with_events (pframes_t nframes)
265 {
266         PT_TIMING_CHECK (3);
267         
268         SessionEvent*  ev;
269         pframes_t      this_nframes;
270         framepos_t     end_frame;
271         bool           session_needs_butler = false;
272         framecnt_t     frames_moved;
273
274         /* make sure the auditioner is silent */
275
276         if (auditioner) {
277                 auditioner->silence (nframes);
278         }
279
280         /* handle any pending events */
281
282         while (pending_events.read (&ev, 1) == 1) {
283                 merge_event (ev);
284         }
285
286         /* if we are not in the middle of a state change,
287            and there are immediate events queued up,
288            process them.
289         */
290
291         while (!non_realtime_work_pending() && !immediate_events.empty()) {
292                 SessionEvent *ev = immediate_events.front ();
293                 immediate_events.pop_front ();
294                 process_event (ev);
295         }
296
297         /* Decide on what to do with quarter-frame MTC during this cycle */
298
299         bool const was_sending_qf_mtc = _send_qf_mtc;
300         double const tolerance = Config->get_mtc_qf_speed_tolerance() / 100.0;
301
302         if (_transport_speed != 0) {
303                 _send_qf_mtc = (
304                         Config->get_send_mtc () &&
305                         _transport_speed >= (1 - tolerance) &&
306                         _transport_speed <= (1 + tolerance)
307                         );
308
309                 if (_send_qf_mtc && !was_sending_qf_mtc) {
310                         /* we will re-start quarter-frame MTC this cycle, so send a full update to set things up */
311                         _send_timecode_update = true;
312                 }
313
314                 if (Config->get_send_mtc() && !_send_qf_mtc && _pframes_since_last_mtc > (frame_rate () / 4)) {
315                         /* we're sending MTC, but we're not sending QF MTC at the moment, and it's been
316                            a quarter of a second since we sent anything at all, so send a full MTC update
317                            this cycle.
318                         */
319                         _send_timecode_update = true;
320                 }
321
322                 _pframes_since_last_mtc += nframes;
323         }
324
325         /* Events caused a transport change (or we re-started sending
326          * MTC), so send an MTC Full Frame (Timecode) message.  This
327          * is sent whether rolling or not, to give slaves an idea of
328          * ardour time on locates (and allow slow slaves to position
329          * and prepare for rolling)
330          */
331         if (_send_timecode_update) {
332                 send_full_time_code (_transport_frame);
333         }
334
335         if (!process_can_proceed()) {
336                 _silent = true;
337                 return;
338         }
339
340         if (events.empty() || next_event == events.end()) {
341                 process_without_events (nframes);
342                 return;
343         }
344
345         if (_transport_speed == 1.0) {
346                 frames_moved = (framecnt_t) nframes;
347         } else {
348                 interpolation.set_target_speed (_target_transport_speed);
349                 interpolation.set_speed (_transport_speed);
350                 frames_moved = (framecnt_t) interpolation.interpolate (0, nframes, 0, 0);
351         }
352
353         end_frame = _transport_frame + frames_moved;
354
355         {
356                 SessionEvent* this_event;
357                 Events::iterator the_next_one;
358
359                 if (!process_can_proceed()) {
360                         _silent = true;
361                         return;
362                 }
363
364                 if (!_exporting && _slave) {
365                         if (!follow_slave (nframes)) {
366                                 return;
367                         }
368                 }
369
370                 if (_transport_speed == 0) {
371                         no_roll (nframes);
372                         return;
373                 }
374
375                 if (!_exporting && !timecode_transmission_suspended()) {
376                         send_midi_time_code_for_cycle (_transport_frame, end_frame, nframes);
377                 }
378
379                 framepos_t stop_limit = compute_stop_limit ();
380
381                 if (maybe_stop (stop_limit)) {
382                         no_roll (nframes);
383                         return;
384                 }
385
386                 this_event = *next_event;
387                 the_next_one = next_event;
388                 ++the_next_one;
389
390                 /* yes folks, here it is, the actual loop where we really truly
391                    process some audio
392                 */
393
394                 while (nframes) {
395
396                         this_nframes = nframes; /* real (jack) time relative */
397                         frames_moved = (framecnt_t) floor (_transport_speed * nframes); /* transport relative */
398
399                         /* running an event, position transport precisely to its time */
400                         if (this_event && this_event->action_frame <= end_frame && this_event->action_frame >= _transport_frame) {
401                                 /* this isn't quite right for reverse play */
402                                 frames_moved = (framecnt_t) (this_event->action_frame - _transport_frame);
403                                 this_nframes = abs (floor(frames_moved / _transport_speed));
404                         }
405
406                         if (this_nframes) {
407
408                                 click (_transport_frame, this_nframes);
409
410                                 if (process_routes (this_nframes, session_needs_butler)) {
411                                         fail_roll (nframes);
412                                         return;
413                                 }
414
415                                 get_track_statistics ();
416
417                                 nframes -= this_nframes;
418
419                                 if (frames_moved < 0) {
420                                         decrement_transport_position (-frames_moved);
421                                 } else {
422                                         increment_transport_position (frames_moved);
423                                 }
424
425                                 maybe_stop (stop_limit);
426                                 check_declick_out ();
427                         }
428
429                         _engine.split_cycle (this_nframes);
430
431                         /* now handle this event and all others scheduled for the same time */
432
433                         while (this_event && this_event->action_frame == _transport_frame) {
434                                 process_event (this_event);
435
436                                 if (the_next_one == events.end()) {
437                                         this_event = 0;
438                                 } else {
439                                         this_event = *the_next_one;
440                                         ++the_next_one;
441                                 }
442                         }
443
444                         /* if an event left our state changing, do the right thing */
445
446                         if (nframes && non_realtime_work_pending()) {
447                                 no_roll (nframes);
448                                 break;
449                         }
450
451                         /* this is necessary to handle the case of seamless looping */
452                         end_frame = _transport_frame + floor (nframes * _transport_speed);
453                 }
454
455                 set_next_event ();
456
457         } /* implicit release of route lock */
458
459         if (session_needs_butler) {
460                 _butler->summon ();
461         }
462 }
463
464 void
465 Session::reset_slave_state ()
466 {
467         average_slave_delta = 1800;
468         delta_accumulator_cnt = 0;
469         have_first_delta_accumulator = false;
470         _slave_state = Stopped;
471 }
472
473 bool
474 Session::transport_locked () const
475 {
476         Slave* sl = _slave;
477
478         if (!locate_pending() && (!config.get_external_sync() || (sl && sl->ok() && sl->locked()))) {
479                 return true;
480         }
481
482         return false;
483 }
484
485 bool
486 Session::follow_slave (pframes_t nframes)
487 {
488         double slave_speed;
489         framepos_t slave_transport_frame;
490         framecnt_t this_delta;
491         int dir;
492
493         if (!_slave->ok()) {
494                 stop_transport ();
495                 config.set_external_sync (false);
496                 goto noroll;
497         }
498
499         _slave->speed_and_position (slave_speed, slave_transport_frame);
500
501         DEBUG_TRACE (DEBUG::Slave, string_compose ("Slave position %1 speed %2\n", slave_transport_frame, slave_speed));
502
503         if (!_slave->locked()) {
504                 DEBUG_TRACE (DEBUG::Slave, "slave not locked\n");
505                 goto noroll;
506         }
507
508         if (slave_transport_frame > _transport_frame) {
509                 this_delta = slave_transport_frame - _transport_frame;
510                 dir = 1;
511         } else {
512                 this_delta = _transport_frame - slave_transport_frame;
513                 dir = -1;
514         }
515
516         if (_slave->starting()) {
517                 slave_speed = 0.0f;
518         }
519
520         if (_slave->is_always_synced() || Config->get_timecode_source_is_synced()) {
521
522                 /* if the TC source is synced, then we assume that its
523                    speed is binary: 0.0 or 1.0
524                 */
525
526                 if (slave_speed != 0.0f) {
527                         slave_speed = 1.0f;
528                 }
529
530         } else {
531
532                 /* if we are chasing and the average delta between us and the
533                    master gets too big, we want to switch to silent
534                    motion. so keep track of that here.
535                 */
536
537                 if (_slave_state == Running) {
538                         calculate_moving_average_of_slave_delta(dir, this_delta);
539                 }
540         }
541
542         track_slave_state (slave_speed, slave_transport_frame, this_delta);
543
544         DEBUG_TRACE (DEBUG::Slave, string_compose ("slave state %1 @ %2 speed %3 cur delta %4 avg delta %5\n",
545                                                    _slave_state, slave_transport_frame, slave_speed, this_delta, average_slave_delta));
546
547
548         if (_slave_state == Running && !_slave->is_always_synced() && !Config->get_timecode_source_is_synced()) {
549
550                 if (_transport_speed != 0.0f) {
551
552                         /*
553                            note that average_dir is +1 or -1
554                         */
555
556                         float delta;
557
558                         if (average_slave_delta == 0) {
559                                 delta = this_delta;
560                                 delta *= dir;
561                         } else {
562                                 delta = average_slave_delta;
563                                 delta *= average_dir;
564                         }
565
566 #ifndef NDEBUG
567                         if (slave_speed != 0.0) {
568                                 DEBUG_TRACE (DEBUG::Slave, string_compose ("delta = %1 speed = %2 ts = %3 M@%4 S@%5 avgdelta %6\n",
569                                                                            (int) (dir * this_delta),
570                                                                            slave_speed,
571                                                                            _transport_speed,
572                                                                            _transport_frame,
573                                                                            slave_transport_frame,
574                                                                            average_slave_delta));
575                         }
576 #endif
577
578                         if (_slave->give_slave_full_control_over_transport_speed()) {
579                                 set_transport_speed (slave_speed, false, false);
580                                 //std::cout << "set speed = " << slave_speed << "\n";
581                         } else {
582                                 float adjusted_speed = slave_speed + (1.5 * (delta /  float(_current_frame_rate)));
583                                 request_transport_speed (adjusted_speed);
584                                 DEBUG_TRACE (DEBUG::Slave, string_compose ("adjust using %1 towards %2 ratio %3 current %4 slave @ %5\n",
585                                                                            delta, adjusted_speed, adjusted_speed/slave_speed, _transport_speed,
586                                                                            slave_speed));
587                         }
588
589 #if 1
590                         if (!actively_recording() && (framecnt_t) abs(average_slave_delta) > _slave->resolution()) {
591                                 cerr << "average slave delta greater than slave resolution (" << _slave->resolution() << "), going to silent motion\n";
592                                 goto silent_motion;
593                         }
594 #endif
595                 }
596         }
597
598
599         if (_slave_state == Running && !non_realtime_work_pending()) {
600                 /* speed is set, we're locked, and good to go */
601                 return true;
602         }
603
604   silent_motion:
605         DEBUG_TRACE (DEBUG::Slave, "silent motion\n")
606         follow_slave_silently (nframes, slave_speed);
607
608   noroll:
609         /* don't move at all */
610         DEBUG_TRACE (DEBUG::Slave, "no roll\n")
611         no_roll (nframes);
612         return false;
613 }
614
615 void
616 Session::calculate_moving_average_of_slave_delta (int dir, framecnt_t this_delta)
617 {
618         if (delta_accumulator_cnt >= delta_accumulator_size) {
619                 have_first_delta_accumulator = true;
620                 delta_accumulator_cnt = 0;
621         }
622
623         if (delta_accumulator_cnt != 0 || this_delta < _current_frame_rate) {
624                 delta_accumulator[delta_accumulator_cnt++] = (framecnt_t) dir *  (framecnt_t) this_delta;
625         }
626
627         if (have_first_delta_accumulator) {
628                 average_slave_delta = 0L;
629                 for (int i = 0; i < delta_accumulator_size; ++i) {
630                         average_slave_delta += delta_accumulator[i];
631                 }
632                 average_slave_delta /= (int32_t) delta_accumulator_size;
633                 if (average_slave_delta < 0L) {
634                         average_dir = -1;
635                         average_slave_delta = abs(average_slave_delta);
636                 } else {
637                         average_dir = 1;
638                 }
639         }
640 }
641
642 void
643 Session::track_slave_state (float slave_speed, framepos_t slave_transport_frame, framecnt_t /*this_delta*/)
644 {
645         if (slave_speed != 0.0f) {
646
647                 /* slave is running */
648
649                 switch (_slave_state) {
650                 case Stopped:
651                         if (_slave->requires_seekahead()) {
652                                 slave_wait_end = slave_transport_frame + _slave->seekahead_distance ();
653                                 DEBUG_TRACE (DEBUG::Slave, string_compose ("slave stopped, but running, requires seekahead to %1\n", slave_wait_end));
654                                 /* we can call locate() here because we are in process context */
655                                 locate (slave_wait_end, false, false);
656                                 _slave_state = Waiting;
657
658                         } else {
659
660                                 DEBUG_TRACE (DEBUG::Slave, string_compose ("slave stopped -> running at %1\n", slave_transport_frame));
661
662                                 memset (delta_accumulator, 0, sizeof (int32_t) * delta_accumulator_size);
663                                 average_slave_delta = 0L;
664
665                                 Location* al = _locations->auto_loop_location();
666
667                                 if (al && play_loop && (slave_transport_frame < al->start() || slave_transport_frame > al->end())) {
668                                         // cancel looping
669                                         request_play_loop(false);
670                                 }
671
672                                 if (slave_transport_frame != _transport_frame) {
673                                         DEBUG_TRACE (DEBUG::Slave, string_compose ("require locate to run. eng: %1 -> sl: %2\n", _transport_frame, slave_transport_frame));
674                                         locate (slave_transport_frame, false, false);
675                                 }
676                                 _slave_state = Running;
677                         }
678                         break;
679
680                 case Waiting:
681                 default:
682                         break;
683                 }
684
685                 if (_slave_state == Waiting) {
686
687                         DEBUG_TRACE (DEBUG::Slave, string_compose ("slave waiting at %1\n", slave_transport_frame));
688
689                         if (slave_transport_frame >= slave_wait_end) {
690
691                                 DEBUG_TRACE (DEBUG::Slave, string_compose ("slave start at %1 vs %2\n", slave_transport_frame, _transport_frame));
692
693                                 _slave_state = Running;
694
695                                 /* now perform a "micro-seek" within the disk buffers to realign ourselves
696                                    precisely with the master.
697                                 */
698
699
700                                 bool ok = true;
701                                 framecnt_t frame_delta = slave_transport_frame - _transport_frame;
702
703                                 boost::shared_ptr<RouteList> rl = routes.reader();
704                                 for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
705                                         boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
706                                         if (tr && !tr->can_internal_playback_seek (frame_delta)) {
707                                                 ok = false;
708                                                 break;
709                                         }
710                                 }
711
712                                 if (ok) {
713                                         for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
714                                                 boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
715                                                 if (tr) {
716                                                         tr->internal_playback_seek (frame_delta);
717                                                 }
718                                         }
719                                         _transport_frame += frame_delta;
720
721                                 } else {
722                                         cerr << "cannot micro-seek\n";
723                                         /* XXX what? */
724                                 }
725                         }
726                 }
727
728                 if (_slave_state == Running && _transport_speed == 0.0f) {
729                         DEBUG_TRACE (DEBUG::Slave, "slave starts transport\n");
730                         start_transport ();
731                 }
732
733         } else { // slave_speed is 0
734
735                 /* slave has stopped */
736
737                 if (_transport_speed != 0.0f) {
738                         DEBUG_TRACE (DEBUG::Slave, string_compose ("slave stops transport: %1 frame %2 tf %3\n", slave_speed, slave_transport_frame, _transport_frame));
739                         stop_transport ();
740                 }
741
742                 if (slave_transport_frame != _transport_frame) {
743                         DEBUG_TRACE (DEBUG::Slave, string_compose ("slave stopped, move to %1\n", slave_transport_frame));
744                         force_locate (slave_transport_frame, false);
745                 }
746
747                 reset_slave_state();
748         }
749 }
750
751 void
752 Session::follow_slave_silently (pframes_t nframes, float slave_speed)
753 {
754         if (slave_speed && _transport_speed) {
755
756                 /* something isn't right, but we should move with the master
757                    for now.
758                 */
759
760                 bool need_butler;
761
762                 silent_process_routes (nframes, need_butler);
763
764                 get_track_statistics ();
765
766                 if (need_butler) {
767                         _butler->summon ();
768                 }
769
770                 int32_t frames_moved = (int32_t) floor (_transport_speed * nframes);
771
772                 if (frames_moved < 0) {
773                         decrement_transport_position (-frames_moved);
774                 } else {
775                         increment_transport_position (frames_moved);
776                 }
777
778                 framepos_t const stop_limit = compute_stop_limit ();
779                 maybe_stop (stop_limit);
780         }
781 }
782
783 void
784 Session::process_without_events (pframes_t nframes)
785 {
786         bool session_needs_butler = false;
787         framecnt_t frames_moved;
788
789         if (!process_can_proceed()) {
790                 _silent = true;
791                 return;
792         }
793
794         if (!_exporting && _slave) {
795                 if (!follow_slave (nframes)) {
796 #ifdef HAVE_LTC
797                         ltc_tx_send_time_code_for_cycle (_transport_frame, _transport_frame, 0, 0 , nframes);
798 #endif
799                         return;
800                 }
801         }
802
803         if (_transport_speed == 0) {
804                 fail_roll (nframes);
805                 return;
806         }
807
808         if (_transport_speed == 1.0) {
809                 frames_moved = (framecnt_t) nframes;
810         } else {
811                 interpolation.set_target_speed (_target_transport_speed);
812                 interpolation.set_speed (_transport_speed);
813                 frames_moved = (framecnt_t) interpolation.interpolate (0, nframes, 0, 0);
814         }
815
816         if (!_exporting && !timecode_transmission_suspended()) {
817                 send_midi_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, nframes);
818         }
819
820 #ifdef HAVE_LTC
821         ltc_tx_send_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, _target_transport_speed, _transport_speed, nframes);
822 #endif
823
824         framepos_t const stop_limit = compute_stop_limit ();
825
826         if (maybe_stop (stop_limit)) {
827                 fail_roll (nframes);
828                 return;
829         }
830
831         if (maybe_sync_start (nframes)) {
832                 return;
833         }
834
835         click (_transport_frame, nframes);
836
837         if (process_routes (nframes, session_needs_butler)) {
838                 fail_roll (nframes);
839                 return;
840         }
841
842         get_track_statistics ();
843
844         if (frames_moved < 0) {
845                 decrement_transport_position (-frames_moved);
846         } else {
847                 increment_transport_position (frames_moved);
848         }
849
850         maybe_stop (stop_limit);
851         check_declick_out ();
852
853         if (session_needs_butler) {
854                 _butler->summon ();
855         }
856 }
857
858 /** Process callback used when the auditioner is active.
859  * @param nframes number of frames to process.
860  */
861 void
862 Session::process_audition (pframes_t nframes)
863 {
864         SessionEvent* ev;
865         boost::shared_ptr<RouteList> r = routes.reader ();
866
867         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
868                 if (!(*i)->is_hidden()) {
869                         (*i)->silence (nframes);
870                 }
871         }
872
873         /* run the auditioner, and if it says we need butler service, ask for it */
874
875         if (auditioner->play_audition (nframes) > 0) {
876                 _butler->summon ();
877         }
878
879         /* if using a monitor section, run it because otherwise we don't hear anything */
880
881         if (auditioner->needs_monitor()) {
882                 _monitor_out->passthru (_transport_frame, _transport_frame + nframes, nframes, false);
883         }
884
885         /* handle pending events */
886
887         while (pending_events.read (&ev, 1) == 1) {
888                 merge_event (ev);
889         }
890
891         /* if we are not in the middle of a state change,
892            and there are immediate events queued up,
893            process them.
894         */
895
896         while (!non_realtime_work_pending() && !immediate_events.empty()) {
897                 SessionEvent *ev = immediate_events.front ();
898                 immediate_events.pop_front ();
899                 process_event (ev);
900         }
901
902         if (!auditioner->auditioning()) {
903                 /* auditioner no longer active, so go back to the normal process callback */
904                 process_function = &Session::process_with_events;
905         }
906 }
907
908 bool
909 Session::maybe_sync_start (pframes_t & nframes)
910 {
911         pframes_t sync_offset;
912
913         if (!waiting_for_sync_offset) {
914                 return false;
915         }
916
917         if (_engine.get_sync_offset (sync_offset) && sync_offset < nframes) {
918
919                 /* generate silence up to the sync point, then
920                    adjust nframes + offset to reflect whatever
921                    is left to do.
922                 */
923
924                 no_roll (sync_offset);
925                 nframes -= sync_offset;
926                 Port::increment_global_port_buffer_offset (sync_offset);
927                 waiting_for_sync_offset = false;
928
929                 if (nframes == 0) {
930                         return true; // done, nothing left to process
931                 }
932
933         } else {
934
935                 /* sync offset point is not within this process()
936                    cycle, so just generate silence. and don't bother
937                    with any fancy stuff here, just the minimal silence.
938                 */
939
940                 _silent = true;
941
942                 if (Config->get_locate_while_waiting_for_sync()) {
943                         if (micro_locate (nframes)) {
944                                 /* XXX ERROR !!! XXX */
945                         }
946                 }
947
948                 return true; // done, nothing left to process
949         }
950
951         return false;
952 }
953
954 void
955 Session::queue_event (SessionEvent* ev)
956 {
957         if (_state_of_the_state & Deletion) {
958                 return;
959         } else if (_state_of_the_state & Loading) {
960                 merge_event (ev);
961         } else {
962                 pending_events.write (&ev, 1);
963         }
964 }
965
966 void
967 Session::set_next_event ()
968 {
969         if (events.empty()) {
970                 next_event = events.end();
971                 return;
972         }
973
974         if (next_event == events.end()) {
975                 next_event = events.begin();
976         }
977
978         if ((*next_event)->action_frame > _transport_frame) {
979                 next_event = events.begin();
980         }
981
982         for (; next_event != events.end(); ++next_event) {
983                 if ((*next_event)->action_frame >= _transport_frame) {
984                         break;
985                 }
986         }
987 }
988
989 void
990 Session::process_event (SessionEvent* ev)
991 {
992         bool remove = true;
993         bool del = true;
994
995         /* if we're in the middle of a state change (i.e. waiting
996            for the butler thread to complete the non-realtime
997            part of the change), we'll just have to queue this
998            event for a time when the change is complete.
999         */
1000
1001         if (non_realtime_work_pending()) {
1002
1003                 /* except locates, which we have the capability to handle */
1004
1005                 if (ev->type != SessionEvent::Locate) {
1006                         immediate_events.insert (immediate_events.end(), ev);
1007                         _remove_event (ev);
1008                         return;
1009                 }
1010         }
1011
1012         DEBUG_TRACE (DEBUG::SessionEvents, string_compose ("Processing event: %1 @ %2\n", enum_2_string (ev->type), _transport_frame));
1013
1014         switch (ev->type) {
1015         case SessionEvent::SetLoop:
1016                 set_play_loop (ev->yes_or_no);
1017                 break;
1018
1019         case SessionEvent::AutoLoop:
1020                 if (play_loop) {
1021                         /* roll after locate, do not flush, set "with loop"
1022                            true only if we are seamless looping
1023                         */
1024                         start_locate (ev->target_frame, true, false, Config->get_seamless_loop());
1025                 }
1026                 remove = false;
1027                 del = false;
1028                 break;
1029
1030         case SessionEvent::AutoLoopDeclick:
1031                 if (play_loop) {
1032                         /* Request a declick fade-out and a fade-in; the fade-out will happen
1033                            at the end of the loop, and the fade-in at the start.
1034                         */
1035                         transport_sub_state |= (PendingLoopDeclickOut | PendingLoopDeclickIn);
1036                 }
1037                 remove = false;
1038                 del = false;
1039                 break;
1040
1041         case SessionEvent::Locate:
1042                 if (ev->yes_or_no) {
1043                         /* args: do not roll after locate, do flush, not with loop */
1044                         locate (ev->target_frame, false, true, false);
1045                 } else {
1046                         /* args: do not roll after locate, do flush, not with loop */
1047                         start_locate (ev->target_frame, false, true, false);
1048                 }
1049                 _send_timecode_update = true;
1050                 break;
1051
1052         case SessionEvent::LocateRoll:
1053                 if (ev->yes_or_no) {
1054                         /* args: roll after locate, do flush, not with loop */
1055                         locate (ev->target_frame, true, true, false);
1056                 } else {
1057                         /* args: roll after locate, do flush, not with loop */
1058                         start_locate (ev->target_frame, true, true, false);
1059                 }
1060                 _send_timecode_update = true;
1061                 break;
1062
1063         case SessionEvent::LocateRollLocate:
1064                 // locate is handled by ::request_roll_at_and_return()
1065                 _requested_return_frame = ev->target_frame;
1066                 request_locate (ev->target2_frame, true);
1067                 break;
1068
1069
1070         case SessionEvent::SetTransportSpeed:
1071                 set_transport_speed (ev->speed, ev->yes_or_no, ev->second_yes_or_no, ev->third_yes_or_no);
1072                 break;
1073
1074         case SessionEvent::PunchIn:
1075                 // cerr << "PunchIN at " << transport_frame() << endl;
1076                 if (config.get_punch_in() && record_status() == Enabled) {
1077                         enable_record ();
1078                 }
1079                 remove = false;
1080                 del = false;
1081                 break;
1082
1083         case SessionEvent::PunchOut:
1084                 // cerr << "PunchOUT at " << transport_frame() << endl;
1085                 if (config.get_punch_out()) {
1086                         step_back_from_record ();
1087                 }
1088                 remove = false;
1089                 del = false;
1090                 break;
1091
1092         case SessionEvent::StopOnce:
1093                 if (!non_realtime_work_pending()) {
1094                         stop_transport (ev->yes_or_no);
1095                         _clear_event_type (SessionEvent::StopOnce);
1096                 }
1097                 remove = false;
1098                 del = false;
1099                 break;
1100
1101         case SessionEvent::RangeStop:
1102                 if (!non_realtime_work_pending()) {
1103                         stop_transport (ev->yes_or_no);
1104                 }
1105                 remove = false;
1106                 del = false;
1107                 break;
1108
1109         case SessionEvent::RangeLocate:
1110                 /* args: roll after locate, do flush, not with loop */
1111                 start_locate (ev->target_frame, true, true, false);
1112                 remove = false;
1113                 del = false;
1114                 break;
1115
1116         case SessionEvent::Overwrite:
1117                 overwrite_some_buffers (static_cast<Track*>(ev->ptr));
1118                 break;
1119
1120         case SessionEvent::SetTrackSpeed:
1121                 set_track_speed (static_cast<Track*> (ev->ptr), ev->speed);
1122                 break;
1123
1124         case SessionEvent::SetSyncSource:
1125                 DEBUG_TRACE (DEBUG::Slave, "seen request for new slave\n");
1126                 use_sync_source (ev->slave);
1127                 break;
1128
1129         case SessionEvent::Audition:
1130                 set_audition (ev->region);
1131                 // drop reference to region
1132                 ev->region.reset ();
1133                 break;
1134
1135         case SessionEvent::InputConfigurationChange:
1136                 add_post_transport_work (PostTransportInputChange);
1137                 _butler->schedule_transport_work ();
1138                 break;
1139
1140         case SessionEvent::SetPlayAudioRange:
1141                 set_play_range (ev->audio_range, (ev->speed == 1.0f));
1142                 break;
1143
1144         case SessionEvent::RealTimeOperation:
1145                 process_rtop (ev);
1146                 del = false; // other side of RT request needs to clean up
1147                 break;
1148
1149         case SessionEvent::AdjustPlaybackBuffering:
1150                 schedule_playback_buffering_adjustment ();
1151                 break;
1152
1153         case SessionEvent::AdjustCaptureBuffering:
1154                 schedule_capture_buffering_adjustment ();
1155                 break;
1156
1157         case SessionEvent::SetTimecodeTransmission:
1158                 g_atomic_int_set (&_suspend_timecode_transmission, ev->yes_or_no ? 0 : 1);
1159                 break;
1160
1161         default:
1162           fatal << string_compose(_("Programming error: illegal event type in process_event (%1)"), ev->type) << endmsg;
1163                 /*NOTREACHED*/
1164                 break;
1165         };
1166
1167         if (remove) {
1168                 del = del && !_remove_event (ev);
1169         }
1170
1171         if (del) {
1172                 delete ev;
1173         }
1174 }
1175
1176 framepos_t
1177 Session::compute_stop_limit () const
1178 {
1179         if (!Config->get_stop_at_session_end ()) {
1180                 return max_framepos;
1181         }
1182         
1183         bool const punching_in = (config.get_punch_in () && _locations->auto_punch_location());
1184         bool const punching_out = (config.get_punch_out () && _locations->auto_punch_location());
1185
1186         if (actively_recording ()) {
1187                 /* permanently recording */
1188                 return max_framepos;
1189         } else if (punching_in && !punching_out) {
1190                 /* punching in but never out */
1191                 return max_framepos;
1192         } else if (punching_in && punching_out && _locations->auto_punch_location()->end() > current_end_frame()) {
1193                 /* punching in and punching out after session end */
1194                 return max_framepos;
1195         }
1196
1197         return current_end_frame ();
1198 }