* refactor Session::follow_slave to be easier to read and understand
[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
27 #include <glibmm/thread.h>
28
29 #include <ardour/ardour.h>
30 #include <ardour/session.h>
31 #include <ardour/timestamps.h>
32 #include <ardour/audio_diskstream.h>
33 #include <ardour/audioengine.h>
34 #include <ardour/slave.h>
35 #include <ardour/auditioner.h>
36 #include <ardour/cycles.h>
37 #include <ardour/cycle_timer.h>
38
39 #include <midi++/manager.h>
40
41 #include "i18n.h"
42
43 using namespace ARDOUR;
44 using namespace PBD;
45 using namespace std;
46
47 /** Called by the audio engine when there is work to be done with JACK.
48  * @param nframes Number of frames to process.
49  */
50 void
51 Session::process (nframes_t nframes)
52 {
53         // This is no more the appriopriate place to call cycle
54         // start. cycle_start needs to be called at the Route::roll()
55         // where the signals which we want to mixdown have been calculated.
56         //
57         MIDI::Manager::instance()->cycle_start(nframes);
58
59         _silent = false;
60
61         if (non_realtime_work_pending()) {
62                 if (!transport_work_requested ()) {
63                         post_transport ();
64                 } 
65         } 
66         
67         (this->*process_function) (nframes);
68         
69         // the ticker is for sending time information like MidiClock
70         nframes_t transport_frames = transport_frame();
71         BBT_Time  transport_bbt;
72         bbt_time(transport_frames, transport_bbt);
73         SMPTE::Time transport_smpte;
74         smpte_time(transport_frames, transport_smpte);
75         tick (transport_frames, transport_bbt, transport_smpte); /* EMIT SIGNAL */
76         
77         SendFeedback (); /* EMIT SIGNAL */
78         
79         MIDI::Manager::instance()->cycle_end();
80 }
81
82 void
83 Session::prepare_diskstreams ()
84 {
85         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
86         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
87                 (*i)->prepare ();
88         }
89 }
90
91 int
92 Session::no_roll (nframes_t nframes, nframes_t offset)
93 {
94         nframes_t end_frame = _transport_frame + nframes; // FIXME: varispeed + no_roll ??
95         int ret = 0;
96         bool declick = get_transport_declick_required();
97         boost::shared_ptr<RouteList> r = routes.reader ();
98
99         if (_click_io) {
100                 _click_io->silence (nframes, offset);
101         }
102
103         if (g_atomic_int_get (&processing_prohibited)) {
104                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
105                         (*i)->silence (nframes, offset);
106                 }
107                 return 0;
108         }
109
110         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
111                 
112                 if ((*i)->is_hidden()) {
113                         continue;
114                 }
115                 
116                 (*i)->set_pending_declick (declick);
117                 
118                 if ((*i)->no_roll (nframes, _transport_frame, end_frame, offset, non_realtime_work_pending(), 
119                                    actively_recording(), declick)) {
120                         error << string_compose(_("Session: error in no roll for %1"), (*i)->name()) << endmsg;
121                         ret = -1;
122                         break;
123                 }
124         }
125
126         return ret;
127 }
128
129 int
130 Session::process_routes (nframes_t nframes, nframes_t offset)
131 {
132         bool record_active;
133         int  declick = get_transport_declick_required();
134         bool rec_monitors = get_rec_monitors_input();
135         boost::shared_ptr<RouteList> r = routes.reader ();
136
137         if (transport_sub_state & StopPendingCapture) {
138                 /* force a declick out */
139                 declick = -1;
140         }
141
142         record_active = actively_recording(); // || (get_record_enabled() && get_punch_in());
143
144         const nframes_t start_frame = _transport_frame;
145         const nframes_t end_frame = _transport_frame + (nframes_t)floor(nframes * _transport_speed);
146
147         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
148
149                 int ret;
150
151                 if ((*i)->is_hidden()) {
152                         continue;
153                 }
154
155                 (*i)->set_pending_declick (declick);
156
157                 if ((ret = (*i)->roll (nframes, start_frame, end_frame, offset, declick, record_active, rec_monitors)) < 0) {
158
159                         /* we have to do this here. Route::roll() for an AudioTrack will have called AudioDiskstream::process(),
160                            and the DS will expect AudioDiskstream::commit() to be called. but we're aborting from that
161                            call path, so make sure we release any outstanding locks here before we return failure.
162                         */
163
164                         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
165                         for (DiskstreamList::iterator ids = dsl->begin(); ids != dsl->end(); ++ids) {
166                                 (*ids)->recover ();
167                         }
168
169                         stop_transport ();
170                         return -1;
171                 } 
172         }
173
174         return 0;
175 }
176
177 int
178 Session::silent_process_routes (nframes_t nframes, nframes_t offset)
179 {
180         bool record_active = actively_recording();
181         int  declick = get_transport_declick_required();
182         bool rec_monitors = get_rec_monitors_input();
183         boost::shared_ptr<RouteList> r = routes.reader ();
184
185         if (transport_sub_state & StopPendingCapture) {
186                 /* force a declick out */
187                 declick = -1;
188         }
189         
190         const nframes_t start_frame = _transport_frame;
191         const nframes_t end_frame = _transport_frame + lrintf(nframes * _transport_speed);
192
193         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
194
195                 int ret;
196
197                 if ((*i)->is_hidden()) {
198                         continue;
199                 }
200
201                 if ((ret = (*i)->silent_roll (nframes, start_frame, end_frame, offset, record_active, rec_monitors)) < 0) {
202                         
203                         /* we have to do this here. Route::roll() for an AudioTrack will have called AudioDiskstream::process(),
204                            and the DS will expect AudioDiskstream::commit() to be called. but we're aborting from that
205                            call path, so make sure we release any outstanding locks here before we return failure.
206                         */
207
208                         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
209                         for (DiskstreamList::iterator ids = dsl->begin(); ids != dsl->end(); ++ids) {
210                                 (*ids)->recover ();
211                         }
212
213                         stop_transport ();
214                         return -1;
215                 } 
216         }
217
218         return 0;
219 }
220
221 void
222 Session::commit_diskstreams (nframes_t nframes, bool &needs_butler)
223 {
224         int dret;
225         float pworst = 1.0f;
226         float cworst = 1.0f;
227
228         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
229         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
230
231                 if ((*i)->hidden()) {
232                         continue;
233                 }
234                 
235                 /* force all diskstreams not handled by a Route to call do their stuff.
236                    Note: the diskstreams that were handled by a route will just return zero
237                    from this call, because they know they were processed. So in fact, this
238                    also runs commit() for every diskstream.
239                  */
240
241                 if ((dret = (*i)->process (_transport_frame, nframes, 0, actively_recording(), get_rec_monitors_input())) == 0) {
242                         if ((*i)->commit (nframes)) {
243                                 needs_butler = true;
244                         }
245
246                 } else if (dret < 0) {
247                         (*i)->recover();
248                 }
249                 
250                 pworst = min (pworst, (*i)->playback_buffer_load());
251                 cworst = min (cworst, (*i)->capture_buffer_load());
252         }
253
254         uint32_t pmin = g_atomic_int_get (&_playback_load);
255         uint32_t pminold = g_atomic_int_get (&_playback_load_min);
256         uint32_t cmin = g_atomic_int_get (&_capture_load);
257         uint32_t cminold = g_atomic_int_get (&_capture_load_min);
258
259         g_atomic_int_set (&_playback_load, (uint32_t) floor (pworst * 100.0f));
260         g_atomic_int_set (&_capture_load, (uint32_t) floor (cworst * 100.0f));
261         g_atomic_int_set (&_playback_load_min, min (pmin, pminold));
262         g_atomic_int_set (&_capture_load_min, min (cmin, cminold));
263
264         if (actively_recording()) {
265                 set_dirty();
266         }
267 }
268
269 /** Process callback used when the auditioner is not active */
270 void
271 Session::process_with_events (nframes_t nframes)
272 {
273         Event*         ev;
274         nframes_t this_nframes;
275         nframes_t end_frame;
276         nframes_t offset;
277         bool session_needs_butler = false;
278         nframes_t stop_limit;
279         long           frames_moved;
280         
281         /* make sure the auditioner is silent */
282
283         if (auditioner) {
284                 auditioner->silence (nframes, 0);
285         }
286
287         /* handle any pending events */
288
289         while (pending_events.read (&ev, 1) == 1) {
290                 merge_event (ev);
291         }
292
293         /* if we are not in the middle of a state change,
294            and there are immediate events queued up,
295            process them. 
296         */
297
298         while (!non_realtime_work_pending() && !immediate_events.empty()) {
299                 Event *ev = immediate_events.front ();
300                 immediate_events.pop_front ();
301                 process_event (ev);
302         }
303
304         /* Events caused a transport change, send an MTC Full Frame (SMPTE) message.
305          * This is sent whether rolling or not, to give slaves an idea of ardour time
306          * on locates (and allow slow slaves to position and prepare for rolling)
307          */
308         if (_send_smpte_update) {
309                 send_full_time_code(nframes);
310         }
311
312         if (!process_can_proceed()) {
313                 _silent = true;
314                 return;
315         }
316
317         if (events.empty() || next_event == events.end()) {
318                 process_without_events (nframes);
319                 return;
320         }
321
322         end_frame = _transport_frame + (nframes_t)abs(floor(nframes * _transport_speed));
323
324         {
325                 Event* this_event;
326                 Events::iterator the_next_one;
327                 
328                 if (!process_can_proceed()) {
329                         _silent = true;
330                         return;
331                 }
332                 
333                 if (!_exporting && _slave) {
334                         if (!follow_slave (nframes, 0)) {
335                                 return;
336                         }
337                 } 
338
339                 if (_transport_speed == 0) {
340                         no_roll (nframes, 0);
341                         return;
342                 }
343         
344                 if (!_exporting) {
345                         send_midi_time_code_for_cycle (nframes);
346                 }
347
348                 if (actively_recording()) {
349                         stop_limit = max_frames;
350                 } else {
351
352                         if (Config->get_stop_at_session_end()) {
353                                 stop_limit = current_end_frame();
354                         } else {
355                                 stop_limit = max_frames;
356                         }
357                 }
358
359                 if (maybe_stop (stop_limit)) {
360                         no_roll (nframes, 0);
361                         return;
362                 } 
363
364                 this_event = *next_event;
365                 the_next_one = next_event;
366                 ++the_next_one;
367
368                 offset = 0;
369
370                 /* yes folks, here it is, the actual loop where we really truly
371                    process some audio */
372                 while (nframes) {
373
374                         this_nframes = nframes; /* real (jack) time relative */
375                         frames_moved = (long) floor (_transport_speed * nframes); /* transport relative */
376
377                         /* running an event, position transport precisely to its time */
378                         if (this_event && this_event->action_frame <= end_frame && this_event->action_frame >= _transport_frame) {
379                                 /* this isn't quite right for reverse play */
380                                 frames_moved = (long) (this_event->action_frame - _transport_frame);
381                                 this_nframes = (nframes_t) abs( floor(frames_moved / _transport_speed) );
382                         } 
383
384                         if (this_nframes) {
385                                 
386                                 click (_transport_frame, nframes, offset);
387                                 
388                                 /* now process frames between now and the first event in this block */
389                                 prepare_diskstreams ();
390
391                                 if (process_routes (this_nframes, offset)) {
392                                         no_roll (nframes, 0);
393                                         return;
394                                 }
395                                 
396                                 commit_diskstreams (this_nframes, session_needs_butler);
397
398                                 nframes -= this_nframes;
399                                 offset += this_nframes;
400                                 
401                                 if (frames_moved < 0) {
402                                         decrement_transport_position (-frames_moved);
403                                 } else {
404                                         increment_transport_position (frames_moved);
405                                 }
406
407                                 maybe_stop (stop_limit);
408                                 check_declick_out ();
409                         }
410
411                         /* now handle this event and all others scheduled for the same time */
412                         
413                         while (this_event && this_event->action_frame == _transport_frame) {
414                                 process_event (this_event);
415
416                                 if (the_next_one == events.end()) {
417                                         this_event = 0;
418                                 } else {
419                                         this_event = *the_next_one;
420                                         ++the_next_one;
421                                 }
422                         } 
423
424                         /* if an event left our state changing, do the right thing */
425
426                         if (non_realtime_work_pending()) {
427                                 no_roll (nframes, offset);
428                                 break;
429                         }
430
431                         /* this is necessary to handle the case of seamless looping */
432                         end_frame = _transport_frame + (nframes_t) floor (nframes * _transport_speed);
433                         
434                 }
435
436                 set_next_event ();
437
438         } /* implicit release of route lock */
439
440         if (session_needs_butler)
441                 summon_butler ();
442 }
443
444 void
445 Session::reset_slave_state ()
446 {
447         average_slave_delta = 1800;
448         delta_accumulator_cnt = 0;
449         have_first_delta_accumulator = false;
450         slave_state = Stopped;
451 }
452
453 bool
454 Session::transport_locked () const
455 {
456         Slave* sl = _slave;
457
458         if (!locate_pending() && ((Config->get_slave_source() == None) || (sl && sl->ok() && sl->locked()))) {
459                 return true;
460         }
461
462         return false;
463 }
464
465 bool
466 Session::follow_slave (nframes_t nframes, nframes_t offset)
467 {
468         float slave_speed;
469         nframes_t slave_transport_frame;
470         nframes_t this_delta;
471         int dir;
472         bool starting;
473
474         if (!_slave->ok()) {
475                 stop_transport ();
476                 Config->set_slave_source (None);
477                 goto noroll;
478         }
479         
480         _slave->speed_and_position (slave_speed, slave_transport_frame);
481
482         if (!_slave->locked()) {
483                 goto noroll;
484         }
485
486         if (slave_transport_frame > _transport_frame) {
487                 this_delta = slave_transport_frame - _transport_frame;
488                 dir = 1;
489         } else {
490                 this_delta = _transport_frame - slave_transport_frame;
491                 dir = -1;
492         }
493
494         if ((starting = _slave->starting())) {
495                 slave_speed = 0.0f;
496         }
497
498         if (_slave->is_always_synced() || Config->get_timecode_source_is_synced()) {
499
500                 /* if the TC source is synced, then we assume that its 
501                    speed is binary: 0.0 or 1.0
502                 */
503
504                 if (slave_speed != 0.0f) {
505                         slave_speed = 1.0f;
506                 } 
507
508         } else {
509
510                 /* TC source is able to drift relative to us (slave)
511                    so we need to keep track of the drift and adjust
512                    our speed to remain locked.
513                 */
514
515                 calculate_moving_average_of_slave_delta(dir, this_delta);
516         }
517         
518         track_slave_state(slave_speed, slave_transport_frame, this_delta, starting);
519
520         if (slave_state == Running && !_slave->is_always_synced() && !Config->get_timecode_source_is_synced()) {
521
522                 if (_transport_speed != 0.0f) {
523                         
524                         /* 
525                            note that average_dir is +1 or -1 
526                         */
527                         
528                         float delta;
529
530                         #ifdef USE_MOVING_AVERAGE_OF_SLAVE
531                                 if (average_slave_delta == 0) {
532                                         delta = this_delta;
533                                         delta *= dir;
534                                 } else {
535                                         delta = average_slave_delta;
536                                         delta *= average_dir;
537                                 }
538                         #else
539                                 delta = this_delta;
540                                 delta *= dir;
541                         #endif
542
543                         float adjusted_speed = slave_speed +
544                                 (delta /  float(_current_frame_rate));
545                         
546                         #ifdef DEBUG_SLAVES
547                         cerr << "adjust using " << delta
548                              << " towards " << adjusted_speed
549                              << " ratio = " << adjusted_speed / slave_speed
550                              << " current = " << _transport_speed
551                              << " slave @ " << slave_speed
552                              << endl;
553                         #endif
554                         
555                         request_transport_speed (adjusted_speed);
556                         
557                         if (abs(average_slave_delta) > (long) _slave->resolution()) {
558                                 cerr << "average slave delta greater than slave resolution, going to silent motion\n";
559                                 goto silent_motion;
560                         }
561                 }
562         } 
563         
564         #ifdef DEBUG_SLAVES
565         if (slave_speed != 0.0)
566         cerr << "delta = " << (int) (dir * this_delta)
567                  << " speed = " << slave_speed 
568                  << " ts = " << _transport_speed 
569                  << " M@ "<< slave_transport_frame << " S@ " << _transport_frame 
570                  << " avgdelta = " << average_slave_delta 
571                  << endl;
572         #endif  
573
574         if (!starting && !non_realtime_work_pending()) {
575                 /* speed is set, we're locked, and good to go */
576                 return true;
577         }
578
579   silent_motion:
580 #ifdef DEBUG_SLAVES     
581         cerr << "reached silent_motion:" <<endl;
582 #endif
583         
584         if (slave_speed && _transport_speed) {
585
586                 /* something isn't right, but we should move with the master
587                    for now.
588                 */
589
590                 bool need_butler;
591                 
592                 prepare_diskstreams ();
593                 silent_process_routes (nframes, offset);
594                 commit_diskstreams (nframes, need_butler);
595
596                 if (need_butler) {
597                         summon_butler ();
598                 }
599                 
600                 int32_t frames_moved = (int32_t) floor (_transport_speed * nframes);
601                 
602                 if (frames_moved < 0) {
603                         decrement_transport_position (-frames_moved);
604                 } else {
605                         increment_transport_position (frames_moved);
606                 }
607                 
608                 nframes_t stop_limit;
609                 
610                 if (actively_recording()) {
611                         stop_limit = max_frames;
612                 } else {
613                         if (Config->get_stop_at_session_end()) {
614                                 stop_limit = current_end_frame();
615                         } else {
616                                 stop_limit = max_frames;
617                         }
618                 }
619
620                 maybe_stop (stop_limit);
621         }
622
623   noroll:
624         /* don't move at all */
625 #ifdef DEBUG_SLAVES     
626         cerr << "reached no_roll:" <<endl;
627 #endif
628         no_roll (nframes, 0);
629         return false;
630 }
631
632 void
633 Session::calculate_moving_average_of_slave_delta(int dir, nframes_t this_delta)
634 {
635         if (delta_accumulator_cnt >= delta_accumulator_size) {
636                 have_first_delta_accumulator = true;
637                 delta_accumulator_cnt = 0;
638         }
639
640         if (delta_accumulator_cnt != 0 || this_delta < _current_frame_rate) {
641                 delta_accumulator[delta_accumulator_cnt++] = long(dir) * long(this_delta);
642         }
643         
644         if (have_first_delta_accumulator) {
645                 average_slave_delta = 0L;
646                 for (int i = 0; i < delta_accumulator_size; ++i) {
647                         average_slave_delta += delta_accumulator[i];
648                 }
649                 average_slave_delta /= long(delta_accumulator_size);
650                 if (average_slave_delta < 0L) {
651                         average_dir = -1;
652                         average_slave_delta = abs(average_slave_delta);
653                 } else {
654                         average_dir = 1;
655                 }
656         }
657 }
658
659 void
660 Session::track_slave_state(
661                 float slave_speed, 
662                 nframes_t slave_transport_frame, 
663                 nframes_t this_delta,
664                 bool starting)
665 {
666         if (slave_speed != 0.0f) {
667
668                 /* slave is running */
669
670                 switch (slave_state) {
671                 case Stopped:
672                         if (_slave->requires_seekahead()) {
673                                 slave_wait_end = slave_transport_frame + _current_frame_rate;
674                                 locate (slave_wait_end, false, false);
675                                 slave_state = Waiting;
676                                 starting = true;
677
678                         } else {
679
680                                 slave_state = Running;
681
682                                 Location* al = _locations.auto_loop_location();
683
684                                 if (al && play_loop && (slave_transport_frame < al->start() || slave_transport_frame > al->end())) {
685                                         // cancel looping
686                                         request_play_loop(false);
687                                 }
688
689                                 if (slave_transport_frame != _transport_frame) {
690                                         locate (slave_transport_frame, false, false);
691                                 }
692                         }
693                         break;
694
695                 case Waiting:
696                         break;
697
698                 default:
699                         break;
700
701                 }
702
703                 if (slave_state == Waiting) {
704
705 #ifdef DEBUG_SLAVES
706                         cerr << "waiting at " << slave_transport_frame << endl;
707 #endif                  
708                         if (slave_transport_frame >= slave_wait_end) {
709 #ifdef DEBUG_SLAVES
710                                 cerr << "\tstart at " << _transport_frame << endl;
711 #endif
712                                 slave_state = Running;
713
714                                 bool ok = true;
715                                 nframes_t frame_delta = slave_transport_frame - _transport_frame;
716
717                                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
718                                 
719                                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
720                                         if (!(*i)->can_internal_playback_seek (frame_delta)) {
721                                                 ok = false;
722                                                 break;
723                                         }
724                                 }
725
726                                 if (ok) {
727                                         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
728                                                 (*i)->internal_playback_seek (frame_delta);
729                                         }
730                                         _transport_frame += frame_delta;
731                                        
732                                 } else {
733                                         cerr << "cannot micro-seek\n";
734                                         /* XXX what? */
735                                 }
736
737                                 memset (delta_accumulator, 0, sizeof (long) * delta_accumulator_size);
738                                 average_slave_delta = 0L;
739                                 this_delta = 0;
740                         }
741                 }
742                 
743                 if (slave_state == Running && _transport_speed == 0.0f) {
744                         
745 #ifdef DEBUG_SLAVES
746                         cerr << "slave starts transport\n";
747 #endif
748                         start_transport ();
749                 } 
750
751         } else { // slave_speed is 0
752
753                 /* slave has stopped */
754
755                 if (_transport_speed != 0.0f) {
756
757 #ifdef DEBUG_SLAVES
758                         cerr << "slave stops transport: " << slave_speed << " frame: " << slave_transport_frame 
759                              << " tf = " << _transport_frame << endl;
760 #endif
761                         
762                         if (Config->get_slave_source() == JACK) {
763                                 last_stop_frame = _transport_frame;
764                         }
765
766                         stop_transport();
767                 }
768
769                 if (slave_transport_frame != _transport_frame) {
770 #ifdef DEBUG_SLAVES                     
771                         cerr << "slave stopped, move to " << slave_transport_frame << endl;
772 #endif
773                         force_locate (slave_transport_frame, false);
774                 }
775
776                 slave_state = Stopped;
777         }
778 }
779
780 void
781 Session::process_without_events (nframes_t nframes)
782 {
783         bool session_needs_butler = false;
784         nframes_t stop_limit;
785         long frames_moved;
786         nframes_t offset = 0;
787
788         if (!process_can_proceed()) {
789                 _silent = true;
790                 return;
791         }
792
793         if (!_exporting && _slave) {
794                 if (!follow_slave (nframes, 0)) {
795                         return;
796                 }
797         } 
798
799         if (_transport_speed == 0) {
800                 no_roll (nframes, 0);
801                 return;
802         }
803                 
804         if (!_exporting) {
805                 send_midi_time_code_for_cycle (nframes);
806         }
807
808         if (actively_recording()) {
809                 stop_limit = max_frames;
810         } else {
811                 if (Config->get_stop_at_session_end()) {
812                         stop_limit = current_end_frame();
813                 } else {
814                         stop_limit = max_frames;
815                 }
816         }
817                 
818         if (maybe_stop (stop_limit)) {
819                 no_roll (nframes, 0);
820                 return;
821         } 
822
823         if (maybe_sync_start (nframes, offset)) {
824                 return;
825         }
826
827         click (_transport_frame, nframes, offset);
828
829         prepare_diskstreams ();
830         
831         frames_moved = (long) floor (_transport_speed * nframes);
832
833         if (process_routes (nframes, offset)) {
834                 no_roll (nframes, offset);
835                 return;
836         }
837
838         commit_diskstreams (nframes, session_needs_butler);
839
840         if (frames_moved < 0) {
841                 decrement_transport_position (-frames_moved);
842         } else {
843                 increment_transport_position (frames_moved);
844         }
845
846         maybe_stop (stop_limit);
847         check_declick_out ();
848
849         if (session_needs_butler)
850                 summon_butler ();
851 }
852
853 /** Process callback used when the auditioner is active.
854  * @param nframes number of frames to process.
855  */
856 void
857 Session::process_audition (nframes_t nframes)
858 {
859         Event* ev;
860         boost::shared_ptr<RouteList> r = routes.reader ();
861
862         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
863                 if (!(*i)->is_hidden()) {
864                         (*i)->silence (nframes, 0);
865                 }
866         }
867
868         /* run the auditioner, and if it says we need butler service, ask for it */
869         
870         if (auditioner->play_audition (nframes) > 0) {
871                 summon_butler ();
872         } 
873
874         /* handle pending events */
875
876         while (pending_events.read (&ev, 1) == 1) {
877                 merge_event (ev);
878         }
879
880         /* if we are not in the middle of a state change,
881            and there are immediate events queued up,
882            process them. 
883         */
884
885         while (!non_realtime_work_pending() && !immediate_events.empty()) {
886                 Event *ev = immediate_events.front ();
887                 immediate_events.pop_front ();
888                 process_event (ev);
889         }
890
891         if (!auditioner->active()) {
892                 /* auditioner no longer active, so go back to the normal process callback */
893                 process_function = &Session::process_with_events;
894         }
895 }
896
897 bool
898 Session::maybe_sync_start (nframes_t& nframes, nframes_t& offset)
899 {
900         nframes_t sync_offset;
901
902         if (!waiting_for_sync_offset) {
903                 return false;
904         }
905
906         if (_engine.get_sync_offset (sync_offset) && sync_offset < nframes) {
907
908                 /* generate silence up to the sync point, then
909                    adjust nframes + offset to reflect whatever
910                    is left to do.
911                 */
912
913                 no_roll (sync_offset, 0);
914                 nframes -= sync_offset;
915                 offset += sync_offset;
916                 waiting_for_sync_offset = false;
917                 
918                 if (nframes == 0) {
919                         return true; // done, nothing left to process
920                 }
921                 
922         } else {
923
924                 /* sync offset point is not within this process()
925                    cycle, so just generate silence. and don't bother 
926                    with any fancy stuff here, just the minimal silence.
927                 */
928
929                 g_atomic_int_inc (&processing_prohibited);
930                 no_roll (nframes, 0);
931                 g_atomic_int_dec_and_test (&processing_prohibited);
932
933                 if (Config->get_locate_while_waiting_for_sync()) {
934                         if (micro_locate (nframes)) {
935                                 /* XXX ERROR !!! XXX */
936                         }
937                 }
938
939                 return true; // done, nothing left to process
940         }
941
942         return false;
943 }
944