Robin Gareus
74c4ca3e52
the rest from `tools/convert_boost.sh`. * replace boost::function, boost::bind with std::function and std::bind. This required some manual fixes, notably std::placeholders, some static_casts<>, and boost::function::clear -> = {}.
188 lines
4.5 KiB
C++
188 lines
4.5 KiB
C++
/*
|
|
* Copyright (C) 2017-2024 Robin Gareus <robin@gareus.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifdef HAVE_IOPRIO
|
|
#include <sys/syscall.h>
|
|
#endif
|
|
|
|
#include "pbd/compose.h"
|
|
#include "pbd/cpus.h"
|
|
#include "pbd/debug.h"
|
|
#include "pbd/failed_constructor.h"
|
|
#include "pbd/pthread_utils.h"
|
|
|
|
#include "temporal/tempo.h"
|
|
|
|
#include "ardour/debug.h"
|
|
#include "ardour/disk_reader.h"
|
|
#include "ardour/io_tasklist.h"
|
|
#include "ardour/process_thread.h"
|
|
#include "ardour/rc_configuration.h"
|
|
#include "ardour/session_event.h"
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
using namespace ARDOUR;
|
|
|
|
IOTaskList::IOTaskList (uint32_t n_threads)
|
|
: _n_threads (n_threads)
|
|
, _terminate (false)
|
|
, _exec_sem ("io thread exec", 0)
|
|
, _idle_sem ("io thread idle", 0)
|
|
{
|
|
assert (n_threads <= hardware_concurrency ());
|
|
|
|
if (n_threads < 2) {
|
|
return;
|
|
}
|
|
|
|
bool use_rt;
|
|
int policy;
|
|
|
|
switch (Config->get_io_thread_policy ()) {
|
|
case 1:
|
|
use_rt = true;
|
|
policy = SCHED_FIFO;
|
|
break;
|
|
case 2:
|
|
use_rt = true;
|
|
policy = SCHED_RR;
|
|
break;
|
|
default:
|
|
use_rt = false;
|
|
policy = SCHED_OTHER;
|
|
break;
|
|
}
|
|
|
|
#ifdef PLATFORM_WINDOWS
|
|
policy = SCHED_OTHER;
|
|
#endif
|
|
|
|
DEBUG_TRACE (PBD::DEBUG::IOTaskList, string_compose ("IOTaskList starting %1 threads with sched policy = %2\n", _n_threads, policy));
|
|
|
|
_workers.resize (_n_threads);
|
|
for (uint32_t i = 0; i < _n_threads; ++i) {
|
|
if (!use_rt || pbd_realtime_pthread_create ("I/O", policy, PBD_RT_PRI_IOFX, 0, &_workers[i], &_worker_thread, this)) {
|
|
if (use_rt && i == 0) {
|
|
PBD::warning << _("IOTaskList: cannot acquire realtime permissions.") << endmsg;
|
|
}
|
|
if (pbd_pthread_create (0, &_workers[i], &_worker_thread, this)) {
|
|
std::cerr << "Failed to start IOTaskList thread\n";
|
|
throw failed_constructor ();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
IOTaskList::~IOTaskList ()
|
|
{
|
|
_terminate.store (true);
|
|
for (size_t i = 0; i < _workers.size (); ++i) {
|
|
_exec_sem.signal ();
|
|
}
|
|
for (auto const& t : _workers) {
|
|
pthread_join (t, NULL);
|
|
}
|
|
}
|
|
|
|
void
|
|
IOTaskList::push_back (std::function<void ()> fn)
|
|
{
|
|
_tasks.push_back (fn);
|
|
}
|
|
|
|
void
|
|
IOTaskList::process ()
|
|
{
|
|
assert (strcmp (pthread_name (), "butler") == 0);
|
|
if (_n_threads > 1 && _tasks.size () > 2) {
|
|
uint32_t wakeup = std::min<uint32_t> (_n_threads, _tasks.size ());
|
|
DEBUG_TRACE (PBD::DEBUG::IOTaskList, string_compose ("IOTaskList process wakeup %1 thread for %2 tasks.\n", wakeup, _tasks.size ()))
|
|
for (uint32_t i = 0; i < wakeup; ++i) {
|
|
_exec_sem.signal ();
|
|
}
|
|
for (uint32_t i = 0; i < wakeup; ++i) {
|
|
_idle_sem.wait ();
|
|
}
|
|
} else {
|
|
DEBUG_TRACE (PBD::DEBUG::IOTaskList, string_compose ("IOTaskList process %1 task(s) in main thread.\n", _tasks.size ()))
|
|
for (auto const& fn : _tasks) {
|
|
fn ();
|
|
}
|
|
}
|
|
_tasks.clear ();
|
|
}
|
|
|
|
void*
|
|
IOTaskList::_worker_thread (void* me)
|
|
{
|
|
IOTaskList* self = static_cast<IOTaskList*> (me);
|
|
|
|
uint32_t id = self->_n_workers.fetch_add (1);
|
|
char name[64];
|
|
snprintf (name, 64, "IO-%u-%p", id, (void*)DEBUG_THREAD_SELF);
|
|
pthread_set_name (name);
|
|
|
|
SessionEvent::create_per_thread_pool (name, 64);
|
|
PBD::notify_event_loops_about_thread_creation (pthread_self (), name, 64);
|
|
|
|
DiskReader::allocate_working_buffers ();
|
|
ARDOUR::ProcessThread* pt = new ProcessThread ();
|
|
pt->get_buffers ();
|
|
|
|
#ifdef HAVE_IOPRIO
|
|
/* compare to Butler::_thread_work */
|
|
// ioprio_set (IOPRIO_WHO_PROCESS, 0 /*calling thread*/, IOPRIO_PRIO_VALUE (IOPRIO_CLASS_RT, 4))
|
|
syscall (SYS_ioprio_set, 1, 0, (1 << 13) | 4);
|
|
#endif
|
|
|
|
self->io_thread ();
|
|
|
|
DiskReader::free_working_buffers ();
|
|
pt->drop_buffers ();
|
|
delete pt;
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
IOTaskList::io_thread ()
|
|
{
|
|
while (1) {
|
|
_exec_sem.wait ();
|
|
if (_terminate.load ()) {
|
|
break;
|
|
}
|
|
|
|
Temporal::TempoMap::fetch ();
|
|
|
|
while (1) {
|
|
std::function<void()> fn;
|
|
Glib::Threads::Mutex::Lock lm (_tasks_mutex);
|
|
if (_tasks.empty ()) {
|
|
break;
|
|
}
|
|
fn = _tasks.back ();
|
|
_tasks.pop_back ();
|
|
lm.release ();
|
|
|
|
fn ();
|
|
}
|
|
_idle_sem.signal ();
|
|
}
|
|
}
|