2004-07-16 19:56:36 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2004-07-16 19:56:36 +00:00
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
2004-09-15 13:03:25 +00:00
|
|
|
#include <signal.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
#include <pulse/rtclock.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/timeval.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/module.h>
|
2009-04-05 02:13:43 +03:00
|
|
|
#include <pulsecore/core-rtclock.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/core-scache.h>
|
|
|
|
|
#include <pulsecore/core-subscribe.h>
|
|
|
|
|
#include <pulsecore/random.h>
|
2006-08-22 12:46:05 +00:00
|
|
|
#include <pulsecore/log.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include "core.h"
|
|
|
|
|
|
2009-08-21 21:27:44 +02:00
|
|
|
PA_DEFINE_PUBLIC_CLASS(pa_core, pa_msgobject);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
static int core_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
|
|
|
|
|
pa_core *c = PA_CORE(o);
|
|
|
|
|
|
|
|
|
|
pa_core_assert_ref(c);
|
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
|
|
case PA_CORE_MESSAGE_UNLOAD_MODULE:
|
2008-08-05 23:56:25 +02:00
|
|
|
pa_module_unload(c, userdata, TRUE);
|
2007-10-28 19:13:50 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void core_free(pa_object *o);
|
|
|
|
|
|
2008-10-01 01:14:36 +02:00
|
|
|
pa_core* pa_core_new(pa_mainloop_api *m, pa_bool_t shared, size_t shm_size) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_core* c;
|
2006-08-19 01:15:48 +00:00
|
|
|
pa_mempool *pool;
|
2007-10-28 19:13:50 +00:00
|
|
|
int j;
|
|
|
|
|
|
|
|
|
|
pa_assert(m);
|
2006-08-19 01:15:48 +00:00
|
|
|
|
2006-08-22 12:51:29 +00:00
|
|
|
if (shared) {
|
2008-10-01 01:14:36 +02:00
|
|
|
if (!(pool = pa_mempool_new(shared, shm_size))) {
|
2006-08-22 12:51:29 +00:00
|
|
|
pa_log_warn("failed to allocate shared memory pool. Falling back to a normal memory pool.");
|
2008-10-01 01:14:36 +02:00
|
|
|
shared = FALSE;
|
2006-08-22 12:51:29 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!shared) {
|
2008-10-01 01:14:36 +02:00
|
|
|
if (!(pool = pa_mempool_new(shared, shm_size))) {
|
2006-09-06 22:19:11 +00:00
|
|
|
pa_log("pa_mempool_new() failed.");
|
2006-08-22 12:51:29 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
2006-09-06 22:19:11 +00:00
|
|
|
}
|
2006-08-22 12:51:29 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
c = pa_msgobject_new(pa_core);
|
|
|
|
|
c->parent.parent.free = core_free;
|
|
|
|
|
c->parent.process_msg = core_process_msg;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-01-23 22:29:02 +01:00
|
|
|
c->state = PA_CORE_STARTUP;
|
2004-06-08 23:54:24 +00:00
|
|
|
c->mainloop = m;
|
2009-01-29 16:25:29 +01:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
c->clients = pa_idxset_new(NULL, NULL);
|
2009-01-29 16:25:29 +01:00
|
|
|
c->cards = pa_idxset_new(NULL, NULL);
|
2004-07-03 23:35:12 +00:00
|
|
|
c->sinks = pa_idxset_new(NULL, NULL);
|
|
|
|
|
c->sources = pa_idxset_new(NULL, NULL);
|
|
|
|
|
c->sink_inputs = pa_idxset_new(NULL, NULL);
|
2009-01-29 16:25:29 +01:00
|
|
|
c->source_outputs = pa_idxset_new(NULL, NULL);
|
|
|
|
|
c->modules = pa_idxset_new(NULL, NULL);
|
|
|
|
|
c->scache = pa_idxset_new(NULL, NULL);
|
|
|
|
|
|
|
|
|
|
c->namereg = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
|
|
|
|
c->shared = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-01-28 01:46:27 +01:00
|
|
|
c->default_source = NULL;
|
|
|
|
|
c->default_sink = NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-15 20:12:21 +00:00
|
|
|
c->default_sample_spec.format = PA_SAMPLE_S16NE;
|
|
|
|
|
c->default_sample_spec.rate = 44100;
|
|
|
|
|
c->default_sample_spec.channels = 2;
|
2009-02-21 16:32:42 +01:00
|
|
|
pa_channel_map_init_extend(&c->default_channel_map, c->default_sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->default_n_fragments = 4;
|
|
|
|
|
c->default_fragment_size_msec = 25;
|
2004-08-04 16:39:30 +00:00
|
|
|
|
2010-10-15 13:05:17 +03:00
|
|
|
c->sync_volume_safety_margin_usec = 8000;
|
|
|
|
|
c->sync_volume_extra_delay_usec = 0;
|
|
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
c->module_defer_unload_event = NULL;
|
|
|
|
|
c->scache_auto_unload_event = NULL;
|
2004-08-11 00:11:12 +00:00
|
|
|
|
|
|
|
|
c->subscription_defer_event = NULL;
|
2006-08-12 02:18:24 +00:00
|
|
|
PA_LLIST_HEAD_INIT(pa_subscription, c->subscriptions);
|
|
|
|
|
PA_LLIST_HEAD_INIT(pa_subscription_event, c->subscription_event_queue);
|
|
|
|
|
c->subscription_event_last = NULL;
|
2004-08-17 19:37:29 +00:00
|
|
|
|
2006-08-19 01:15:48 +00:00
|
|
|
c->mempool = pool;
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_silence_cache_init(&c->silence_cache);
|
2004-09-03 22:44:55 +00:00
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
c->exit_event = NULL;
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
c->exit_idle_time = -1;
|
2004-09-14 23:08:39 +00:00
|
|
|
c->scache_idle_time = 20;
|
2004-10-30 01:55:16 +00:00
|
|
|
|
2009-01-29 16:25:29 +01:00
|
|
|
c->flat_volumes = TRUE;
|
2007-11-01 02:58:26 +00:00
|
|
|
c->disallow_module_loading = FALSE;
|
2008-08-06 19:39:12 +02:00
|
|
|
c->disallow_exit = FALSE;
|
2009-01-29 16:25:29 +01:00
|
|
|
c->running_as_daemon = FALSE;
|
2007-11-01 02:58:26 +00:00
|
|
|
c->realtime_scheduling = FALSE;
|
|
|
|
|
c->realtime_priority = 5;
|
2007-11-21 01:30:40 +00:00
|
|
|
c->disable_remixing = FALSE;
|
2008-09-05 16:04:42 +03:00
|
|
|
c->disable_lfe_remixing = FALSE;
|
2010-10-15 13:05:17 +03:00
|
|
|
c->sync_volume = TRUE;
|
2009-01-29 16:25:29 +01:00
|
|
|
c->resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 3;
|
2006-07-19 17:44:19 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (j = 0; j < PA_CORE_HOOK_MAX; j++)
|
|
|
|
|
pa_hook_init(&c->hooks[j], c);
|
2006-08-13 16:19:56 +00:00
|
|
|
|
2004-12-12 22:58:53 +00:00
|
|
|
pa_random(&c->cookie, sizeof(c->cookie));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
#ifdef SIGPIPE
|
2004-09-15 13:03:25 +00:00
|
|
|
pa_check_signal_is_blocked(SIGPIPE);
|
2006-01-10 17:51:06 +00:00
|
|
|
#endif
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
pa_core_check_idle(c);
|
2008-08-03 18:53:43 +02:00
|
|
|
|
2009-01-23 22:29:02 +01:00
|
|
|
c->state = PA_CORE_RUNNING;
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
return c;
|
2004-08-19 23:14:59 +00:00
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static void core_free(pa_object *o) {
|
|
|
|
|
pa_core *c = PA_CORE(o);
|
|
|
|
|
int j;
|
|
|
|
|
pa_assert(c);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-01-23 22:29:02 +01:00
|
|
|
c->state = PA_CORE_SHUTDOWN;
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_module_unload_all(c);
|
2009-01-29 16:25:29 +01:00
|
|
|
pa_scache_free_all(c);
|
|
|
|
|
|
|
|
|
|
pa_assert(pa_idxset_isempty(c->scache));
|
|
|
|
|
pa_idxset_free(c->scache, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
pa_assert(pa_idxset_isempty(c->modules));
|
|
|
|
|
pa_idxset_free(c->modules, NULL, NULL);
|
2004-08-04 16:39:30 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pa_idxset_isempty(c->clients));
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(c->clients, NULL, NULL);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-01-15 18:29:16 +01:00
|
|
|
pa_assert(pa_idxset_isempty(c->cards));
|
|
|
|
|
pa_idxset_free(c->cards, NULL, NULL);
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pa_idxset_isempty(c->sinks));
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(c->sinks, NULL, NULL);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pa_idxset_isempty(c->sources));
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(c->sources, NULL, NULL);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pa_idxset_isempty(c->source_outputs));
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(c->source_outputs, NULL, NULL);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pa_idxset_isempty(c->sink_inputs));
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(c->sink_inputs, NULL, NULL);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-01-29 16:25:29 +01:00
|
|
|
pa_assert(pa_hashmap_isempty(c->namereg));
|
|
|
|
|
pa_hashmap_free(c->namereg, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
pa_assert(pa_hashmap_isempty(c->shared));
|
|
|
|
|
pa_hashmap_free(c->shared, NULL, NULL);
|
|
|
|
|
|
2004-08-11 00:11:12 +00:00
|
|
|
pa_subscription_free_all(c);
|
2004-09-04 00:27:36 +00:00
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
if (c->exit_event)
|
|
|
|
|
c->mainloop->time_free(c->exit_event);
|
2004-09-14 23:08:39 +00:00
|
|
|
|
2009-01-28 01:46:27 +01:00
|
|
|
pa_assert(!c->default_source);
|
|
|
|
|
pa_assert(!c->default_sink);
|
2004-08-17 19:37:29 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_silence_cache_done(&c->silence_cache);
|
2006-08-18 19:55:18 +00:00
|
|
|
pa_mempool_free(c->mempool);
|
2004-10-30 01:55:16 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
for (j = 0; j < PA_CORE_HOOK_MAX; j++)
|
2008-08-03 16:21:08 +02:00
|
|
|
pa_hook_done(&c->hooks[j]);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
|
|
|
|
pa_xfree(c);
|
2004-08-19 23:14:59 +00:00
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
static void exit_callback(pa_mainloop_api *m, pa_time_event *e, const struct timeval *t, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_core *c = userdata;
|
2008-08-06 19:39:12 +02:00
|
|
|
pa_assert(c->exit_event == e);
|
2004-09-04 00:27:36 +00:00
|
|
|
|
2008-09-05 03:17:48 +02:00
|
|
|
pa_log_info("We are idle, quitting...");
|
2008-08-06 19:39:12 +02:00
|
|
|
pa_core_exit(c, TRUE, 0);
|
2004-09-04 00:27:36 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
void pa_core_check_idle(pa_core *c) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
2004-09-04 00:27:36 +00:00
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
if (!c->exit_event &&
|
2008-06-11 16:55:43 +00:00
|
|
|
c->exit_idle_time >= 0 &&
|
|
|
|
|
pa_idxset_size(c->clients) == 0) {
|
|
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
c->exit_event = pa_core_rttime_new(c, pa_rtclock_now() + c->exit_idle_time * PA_USEC_PER_SEC, exit_callback, c);
|
2008-06-11 16:55:43 +00:00
|
|
|
|
2008-08-06 19:39:12 +02:00
|
|
|
} else if (c->exit_event && pa_idxset_size(c->clients) > 0) {
|
|
|
|
|
c->mainloop->time_free(c->exit_event);
|
|
|
|
|
c->exit_event = NULL;
|
2004-09-04 00:27:36 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-08-06 19:39:12 +02:00
|
|
|
|
|
|
|
|
int pa_core_exit(pa_core *c, pa_bool_t force, int retval) {
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
if (c->disallow_exit && !force)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
c->mainloop->quit(c->mainloop, retval);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2009-02-25 09:13:19 +01:00
|
|
|
|
|
|
|
|
void pa_core_maybe_vacuum(pa_core *c) {
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
if (!pa_idxset_isempty(c->sink_inputs) ||
|
|
|
|
|
!pa_idxset_isempty(c->source_outputs))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pa_log_debug("Hmm, no streams around, trying to vacuum.");
|
|
|
|
|
pa_mempool_vacuum(c->mempool);
|
|
|
|
|
}
|
2009-04-05 02:13:43 +03:00
|
|
|
|
|
|
|
|
pa_time_event* pa_core_rttime_new(pa_core *c, pa_usec_t usec, pa_time_event_cb_t cb, void *userdata) {
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(c->mainloop);
|
|
|
|
|
|
|
|
|
|
return c->mainloop->time_new(c->mainloop, pa_timeval_rtstore(&tv, usec, TRUE), cb, userdata);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_core_rttime_restart(pa_core *c, pa_time_event *e, pa_usec_t usec) {
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(c->mainloop);
|
|
|
|
|
|
|
|
|
|
c->mainloop->time_restart(e, pa_timeval_rtstore(&tv, usec, TRUE));
|
|
|
|
|
}
|