more MIDI I/O debugging output
[ardour2.git] / libs / ardour / butler.cc
blob46bb830cbe19717070dc9e5a7f99754c0a1921e9
1 /*
2 Copyright (C) 1999-2009 Paul Davis
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.
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.
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.
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <unistd.h>
23 #include <poll.h>
24 #include "pbd/error.h"
25 #include "pbd/pthread_utils.h"
26 #include "ardour/butler.h"
27 #include "ardour/crossfade.h"
28 #include "ardour/io.h"
29 #include "ardour/midi_diskstream.h"
30 #include "ardour/session.h"
31 #include "ardour/track.h"
32 #include "ardour/auditioner.h"
34 #include "i18n.h"
36 using namespace PBD;
38 static float _read_data_rate;
39 static float _write_data_rate;
41 namespace ARDOUR {
43 Butler::Butler(Session& s)
44 : SessionHandleRef (s)
45 , thread(0)
46 , audio_dstream_capture_buffer_size(0)
47 , audio_dstream_playback_buffer_size(0)
48 , midi_dstream_buffer_size(0)
49 , pool_trash(16)
51 g_atomic_int_set(&should_do_transport_work, 0);
52 SessionEvent::pool->set_trash (&pool_trash);
54 Config->ParameterChanged.connect_same_thread (*this, boost::bind (&Butler::config_changed, this, _1));
57 Butler::~Butler()
59 terminate_thread ();
62 void
63 Butler::config_changed (std::string p)
65 if (p == "playback-buffer-seconds") {
66 /* size is in Samples, not bytes */
67 audio_dstream_playback_buffer_size = (uint32_t) floor (Config->get_audio_playback_buffer_seconds() * _session.frame_rate());
68 _session.adjust_playback_buffering ();
69 } else if (p == "capture-buffer-seconds") {
70 audio_dstream_capture_buffer_size = (uint32_t) floor (Config->get_audio_capture_buffer_seconds() * _session.frame_rate());
71 _session.adjust_capture_buffering ();
75 int
76 Butler::start_thread()
78 const float rate = (float)_session.frame_rate();
80 /* size is in Samples, not bytes */
81 audio_dstream_capture_buffer_size = (uint32_t) floor (Config->get_audio_capture_buffer_seconds() * rate);
82 audio_dstream_playback_buffer_size = (uint32_t) floor (Config->get_audio_playback_buffer_seconds() * rate);
84 /* size is in bytes
85 * XXX: Jack needs to tell us the MIDI buffer size
86 * (i.e. how many MIDI bytes we might see in a cycle)
88 midi_dstream_buffer_size = (uint32_t) floor (Config->get_midi_track_buffer_seconds() * rate);
90 MidiDiskstream::set_readahead_frames ((framecnt_t) (Config->get_midi_readahead() * rate));
92 Crossfade::set_buffer_size (audio_dstream_playback_buffer_size);
94 should_run = false;
96 if (pipe (request_pipe)) {
97 error << string_compose(_("Cannot create transport request signal pipe (%1)"),
98 strerror (errno)) << endmsg;
99 return -1;
102 if (fcntl (request_pipe[0], F_SETFL, O_NONBLOCK)) {
103 error << string_compose(_("UI: cannot set O_NONBLOCK on butler request pipe (%1)"),
104 strerror (errno)) << endmsg;
105 return -1;
108 if (fcntl (request_pipe[1], F_SETFL, O_NONBLOCK)) {
109 error << string_compose(_("UI: cannot set O_NONBLOCK on butler request pipe (%1)"),
110 strerror (errno)) << endmsg;
111 return -1;
114 if (pthread_create_and_store ("disk butler", &thread, _thread_work, this)) {
115 error << _("Session: could not create butler thread") << endmsg;
116 return -1;
119 //pthread_detach (thread);
121 return 0;
124 void
125 Butler::terminate_thread ()
127 if (thread) {
128 void* status;
129 const char c = Request::Quit;
130 (void) ::write (request_pipe[1], &c, 1);
131 pthread_join (thread, &status);
135 void *
136 Butler::_thread_work (void* arg)
138 SessionEvent::create_per_thread_pool ("butler events", 4096);
139 pthread_set_name (X_("butler"));
140 return ((Butler *) arg)->thread_work ();
143 void *
144 Butler::thread_work ()
146 uint32_t err = 0;
147 int32_t bytes;
148 bool compute_io;
149 microseconds_t begin, end;
151 struct pollfd pfd[1];
152 bool disk_work_outstanding = false;
153 RouteList::iterator i;
155 while (true) {
156 pfd[0].fd = request_pipe[0];
157 pfd[0].events = POLLIN|POLLERR|POLLHUP;
159 if (poll (pfd, 1, (disk_work_outstanding ? 0 : -1)) < 0) {
161 if (errno == EINTR) {
162 continue;
165 error << string_compose (_("poll on butler request pipe failed (%1)"),
166 strerror (errno))
167 << endmsg;
168 break;
171 if (pfd[0].revents & ~POLLIN) {
172 error << string_compose (_("Error on butler thread request pipe: fd=%1 err=%2"), pfd[0].fd, pfd[0].revents) << endmsg;
173 break;
176 if (pfd[0].revents & POLLIN) {
178 char req;
180 /* empty the pipe of all current requests */
182 while (1) {
183 size_t nread = ::read (request_pipe[0], &req, sizeof (req));
184 if (nread == 1) {
186 switch ((Request::Type) req) {
188 case Request::Wake:
189 break;
191 case Request::Run:
192 should_run = true;
193 break;
195 case Request::Pause:
196 should_run = false;
197 break;
199 case Request::Quit:
200 pthread_exit_pbd (0);
201 /*NOTREACHED*/
202 break;
204 default:
205 break;
208 } else if (nread == 0) {
209 break;
210 } else if (errno == EAGAIN) {
211 break;
212 } else {
213 fatal << _("Error reading from butler request pipe") << endmsg;
214 /*NOTREACHED*/
220 bytes = 0;
221 compute_io = true;
223 restart:
224 disk_work_outstanding = false;
226 if (transport_work_requested()) {
227 _session.butler_transport_work ();
230 begin = get_microseconds();
232 boost::shared_ptr<RouteList> rl = _session.get_routes();
234 RouteList rl_with_auditioner = *rl;
235 rl_with_auditioner.push_back (_session.the_auditioner());
237 // for (i = dsl->begin(); i != dsl->end(); ++i) {
238 // cerr << "BEFORE " << (*i)->name() << ": pb = " << (*i)->playback_buffer_load() << " cp = " << (*i)->capture_buffer_load() << endl;
239 // }
241 for (i = rl_with_auditioner.begin(); !transport_work_requested() && should_run && i != rl_with_auditioner.end(); ++i) {
243 boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
245 if (!tr) {
246 continue;
249 boost::shared_ptr<IO> io = tr->input ();
251 if (io && !io->active()) {
252 /* don't read inactive tracks */
253 continue;
256 switch (tr->do_refill ()) {
257 case 0:
258 bytes += tr->read_data_count();
259 break;
260 case 1:
261 bytes += tr->read_data_count();
262 disk_work_outstanding = true;
263 break;
265 default:
266 compute_io = false;
267 error << string_compose(_("Butler read ahead failure on dstream %1"), (*i)->name()) << endmsg;
268 break;
273 if (i != rl_with_auditioner.begin() && i != rl_with_auditioner.end()) {
274 /* we didn't get to all the streams */
275 disk_work_outstanding = true;
278 if (!err && transport_work_requested()) {
279 goto restart;
282 if (compute_io) {
283 end = get_microseconds();
284 if (end - begin > 0) {
285 _read_data_rate = (float) bytes / (float) (end - begin);
286 } else {
287 _read_data_rate = 0; // infinity better
291 bytes = 0;
292 compute_io = true;
293 begin = get_microseconds();
295 for (i = rl->begin(); !transport_work_requested() && should_run && i != rl->end(); ++i) {
296 // cerr << "write behind for " << (*i)->name () << endl;
298 boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
300 if (!tr) {
301 continue;
304 /* note that we still try to flush diskstreams attached to inactive routes
307 switch (tr->do_flush (ButlerContext)) {
308 case 0:
309 bytes += tr->write_data_count();
310 break;
311 case 1:
312 bytes += tr->write_data_count();
313 disk_work_outstanding = true;
314 break;
316 default:
317 err++;
318 compute_io = false;
319 error << string_compose(_("Butler write-behind failure on dstream %1"), (*i)->name()) << endmsg;
320 /* don't break - try to flush all streams in case they
321 are split across disks.
326 if (err && _session.actively_recording()) {
327 /* stop the transport and try to catch as much possible
328 captured state as we can.
330 _session.request_stop ();
333 if (i != rl->begin() && i != rl->end()) {
334 /* we didn't get to all the streams */
335 disk_work_outstanding = true;
338 if (!err && transport_work_requested()) {
339 goto restart;
342 if (compute_io) {
343 // there are no apparent users for this calculation?
344 end = get_microseconds();
345 if (end - begin > 0) {
346 _write_data_rate = (float) bytes / (float) (end - begin);
347 } else {
348 _write_data_rate = 0; // Well, infinity would be better
352 if (!disk_work_outstanding) {
353 _session.refresh_disk_space ();
358 Glib::Mutex::Lock lm (request_lock);
360 if (should_run && (disk_work_outstanding || transport_work_requested())) {
361 // for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
362 // cerr << "AFTER " << (*i)->name() << ": pb = " << (*i)->playback_buffer_load() << " cp = " << (*i)->capture_buffer_load() << endl;
363 // }
365 goto restart;
368 paused.signal();
371 empty_pool_trash ();
374 pthread_exit_pbd (0);
375 /*NOTREACHED*/
376 return (0);
379 void
380 Butler::schedule_transport_work ()
382 g_atomic_int_inc (&should_do_transport_work);
383 summon ();
386 void
387 Butler::summon ()
389 char c = Request::Run;
390 (void) ::write (request_pipe[1], &c, 1);
393 void
394 Butler::stop ()
396 Glib::Mutex::Lock lm (request_lock);
397 char c = Request::Pause;
398 (void) ::write (request_pipe[1], &c, 1);
399 paused.wait(request_lock);
402 void
403 Butler::wait_until_finished ()
405 Glib::Mutex::Lock lm (request_lock);
406 char c = Request::Wake;
407 (void) ::write (request_pipe[1], &c, 1);
408 paused.wait(request_lock);
411 bool
412 Butler::transport_work_requested () const
414 return g_atomic_int_get(&should_do_transport_work);
417 float
418 Butler::read_data_rate () const
420 /* disk i/o in excess of 10000MB/sec indicate the buffer cache
421 in action. ignore it.
423 return _read_data_rate > 10485.7600000f ? 0.0f : _read_data_rate;
426 float
427 Butler::write_data_rate () const
429 /* disk i/o in excess of 10000MB/sec indicate the buffer cache
430 in action. ignore it.
432 return _write_data_rate > 10485.7600000f ? 0.0f : _write_data_rate;
435 void
436 Butler::empty_pool_trash ()
438 /* look in the trash, deleting empty pools until we come to one that is not empty */
440 RingBuffer<CrossThreadPool*>::rw_vector vec;
441 pool_trash.get_read_vector (&vec);
443 guint deleted = 0;
445 for (int i = 0; i < 2; ++i) {
446 for (guint j = 0; j < vec.len[i]; ++j) {
447 if (vec.buf[i][j]->empty()) {
448 delete vec.buf[i][j];
449 ++deleted;
450 } else {
451 /* found a non-empty pool, so stop deleting */
452 if (deleted) {
453 pool_trash.increment_read_idx (deleted);
455 return;
460 if (deleted) {
461 pool_trash.increment_read_idx (deleted);
465 void
466 Butler::drop_references ()
468 SessionEvent::pool->set_trash (0);
472 } // namespace ARDOUR