pipewire/pipewire/server/data-loop.c
Wim Taymans c3b73ba47d Add versions to structures
Use versions instead of size
Remove user_data from callbacks, we can simply pass the callback struct.
2017-06-14 18:32:39 +02:00

214 lines
5.2 KiB
C

/* PipeWire
* Copyright (C) 2016 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <pthread.h>
#include <errno.h>
#include <sys/resource.h>
#include "pipewire/client/log.h"
#include "pipewire/client/rtkit.h"
#include "pipewire/server/data-loop.h"
/** \cond */
struct impl {
struct pw_data_loop this;
struct spa_source *event;
bool running;
pthread_t thread;
};
/** \endcond */
static void make_realtime(struct pw_data_loop *this)
{
struct sched_param sp;
struct pw_rtkit_bus *system_bus;
struct rlimit rl;
int r, rtprio;
long long rttime;
rtprio = 20;
rttime = 20000;
spa_zero(sp);
sp.sched_priority = rtprio;
if (pthread_setschedparam(pthread_self(), SCHED_OTHER | SCHED_RESET_ON_FORK, &sp) == 0) {
pw_log_debug("SCHED_OTHER|SCHED_RESET_ON_FORK worked.");
return;
}
system_bus = pw_rtkit_bus_get_system();
rl.rlim_cur = rl.rlim_max = rttime;
if ((r = setrlimit(RLIMIT_RTTIME, &rl)) < 0)
pw_log_debug("setrlimit() failed: %s", strerror(errno));
if (rttime >= 0) {
r = getrlimit(RLIMIT_RTTIME, &rl);
if (r >= 0 && (long long) rl.rlim_max > rttime) {
pw_log_debug("Clamping rlimit-rttime to %lld for RealtimeKit", rttime);
rl.rlim_cur = rl.rlim_max = rttime;
if ((r = setrlimit(RLIMIT_RTTIME, &rl)) < 0)
pw_log_debug("setrlimit() failed: %s", strerror(errno));
}
}
if ((r = pw_rtkit_make_realtime(system_bus, 0, rtprio)) < 0) {
pw_log_debug("could not make thread realtime: %s", strerror(r));
} else {
pw_log_debug("thread made realtime");
}
pw_rtkit_bus_free(system_bus);
}
static void *do_loop(void *user_data)
{
struct impl *impl = user_data;
struct pw_data_loop *this = &impl->this;
int res;
make_realtime(this);
pw_log_debug("data-loop %p: enter thread", this);
pw_loop_enter(impl->this.loop);
while (impl->running) {
if ((res = pw_loop_iterate(this->loop, -1)) < 0)
pw_log_warn("data-loop %p: iterate error %d", this, res);
}
pw_log_debug("data-loop %p: leave thread", this);
pw_loop_leave(impl->this.loop);
return NULL;
}
static void do_stop(struct spa_loop_utils *utils, struct spa_source *source, void *data)
{
struct impl *impl = data;
impl->running = false;
}
/** Create a new \ref pw_data_loop.
* \return a newly allocated data loop
*
* \memberof pw_data_loop
*/
struct pw_data_loop *pw_data_loop_new(void)
{
struct impl *impl;
struct pw_data_loop *this;
impl = calloc(1, sizeof(struct impl));
if (impl == NULL)
return NULL;
pw_log_debug("data-loop %p: new", impl);
this = &impl->this;
this->loop = pw_loop_new();
if (this->loop == NULL)
goto no_loop;
pw_signal_init(&this->destroy_signal);
impl->event = pw_loop_add_event(this->loop, do_stop, impl);
return this;
no_loop:
free(impl);
return NULL;
}
/** Destroy a data loop
* \param loop the data loop to destroy
* \memberof pw_data_loop
*/
void pw_data_loop_destroy(struct pw_data_loop *loop)
{
struct impl *impl = SPA_CONTAINER_OF(loop, struct impl, this);
pw_log_debug("data-loop %p: destroy", impl);
pw_signal_emit(&loop->destroy_signal, loop);
pw_data_loop_stop(loop);
pw_loop_destroy_source(loop->loop, impl->event);
pw_loop_destroy(loop->loop);
free(impl);
}
/** Start a data loop
* \param loop the data loop to start
* \return 0 if ok, -1 on error
*
* This will start the realtime thread that manages the loop.
*
* \memberof pw_data_loop
*/
int pw_data_loop_start(struct pw_data_loop *loop)
{
struct impl *impl = SPA_CONTAINER_OF(loop, struct impl, this);
if (!impl->running) {
int err;
impl->running = true;
if ((err = pthread_create(&impl->thread, NULL, do_loop, impl)) != 0) {
pw_log_warn("data-loop %p: can't create thread: %s", impl, strerror(err));
impl->running = false;
return SPA_RESULT_ERROR;
}
}
return SPA_RESULT_OK;
}
/** Stop a data loop
* \param loop the data loop to Stop
* \return \ref SPA_RESULT_OK
*
* This will stop and join the realtime thread that manages the loop.
*
* \memberof pw_data_loop
*/
int pw_data_loop_stop(struct pw_data_loop *loop)
{
struct impl *impl = SPA_CONTAINER_OF(loop, struct impl, this);
if (impl->running) {
pw_loop_signal_event(impl->this.loop, impl->event);
pthread_join(impl->thread, NULL);
}
return SPA_RESULT_OK;
}
/** Check if we are inside the data loop
* \param loop the data loop to check
* \return true is the current thread is the data loop thread
*
* \memberof pw_data_loop
*/
bool pw_data_loop_in_thread(struct pw_data_loop * loop)
{
struct impl *impl = SPA_CONTAINER_OF(loop, struct impl, this);
return pthread_equal(impl->thread, pthread_self());
}