2004-06-08 23:54:24 +00:00
|
|
|
#ifndef foocorehfoo
|
|
|
|
|
#define foocorehfoo
|
|
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
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
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
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.
|
|
|
|
|
|
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.
|
|
|
|
|
***/
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/mainloop-api.h>
|
|
|
|
|
#include <pulse/sample.h>
|
2006-08-13 16:19:56 +00:00
|
|
|
|
2006-08-12 02:18:24 +00:00
|
|
|
#include <pulsecore/idxset.h>
|
|
|
|
|
#include <pulsecore/hashmap.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/memblock.h>
|
|
|
|
|
#include <pulsecore/resampler.h>
|
|
|
|
|
#include <pulsecore/queue.h>
|
2006-08-12 02:18:24 +00:00
|
|
|
#include <pulsecore/llist.h>
|
2006-08-13 16:19:56 +00:00
|
|
|
#include <pulsecore/hook-list.h>
|
|
|
|
|
|
|
|
|
|
typedef struct pa_core pa_core;
|
|
|
|
|
|
|
|
|
|
#include <pulsecore/core-subscribe.h>
|
|
|
|
|
#include <pulsecore/sink-input.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-06-19 23:51:58 +00:00
|
|
|
/* The core structure of PulseAudio. Every PulseAudio daemon contains
|
2004-11-21 21:31:28 +00:00
|
|
|
* exactly one of these. It is used for storing kind of global
|
|
|
|
|
* variables for the daemon. */
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_core {
|
2004-12-12 22:58:53 +00:00
|
|
|
/* A random value which may be used to identify this instance of
|
2006-06-19 23:51:58 +00:00
|
|
|
* PulseAudio. Not cryptographically secure in any way. */
|
2004-12-12 22:58:53 +00:00
|
|
|
uint32_t cookie;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_mainloop_api *mainloop;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* idxset of all kinds of entities */
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache, *autoload_idxset;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* Some hashmaps for all sorts of entities */
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_hashmap *namereg, *autoload_hashmap, *properties;
|
2004-08-04 16:39:30 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* The name of the default sink/source */
|
2004-08-04 16:39:30 +00:00
|
|
|
char *default_source_name, *default_sink_name;
|
2004-07-15 20:12:21 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec default_sample_spec;
|
|
|
|
|
pa_time_event *module_auto_unload_event;
|
|
|
|
|
pa_defer_event *module_defer_unload_event;
|
2004-08-11 00:11:12 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_defer_event *subscription_defer_event;
|
2006-08-12 02:18:24 +00:00
|
|
|
PA_LLIST_HEAD(pa_subscription, subscriptions);
|
|
|
|
|
PA_LLIST_HEAD(pa_subscription_event, subscription_event_queue);
|
|
|
|
|
pa_subscription_event *subscription_event_last;
|
2004-08-17 19:37:29 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memblock_stat *memblock_stat;
|
2004-09-03 22:44:55 +00:00
|
|
|
|
2005-09-16 00:08:02 +00:00
|
|
|
int disallow_module_loading, running_as_daemon;
|
2004-09-14 23:08:39 +00:00
|
|
|
int exit_idle_time, module_idle_time, scache_idle_time;
|
2004-09-04 00:27:36 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_time_event *quit_event;
|
2004-09-14 23:08:39 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_time_event *scache_auto_unload_event;
|
2004-09-17 19:45:44 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_resample_method_t resample_method;
|
2006-07-19 17:44:19 +00:00
|
|
|
|
|
|
|
|
int is_system_instance;
|
2006-08-13 16:19:56 +00:00
|
|
|
|
|
|
|
|
/* hooks */
|
2006-08-13 19:52:43 +00:00
|
|
|
pa_hook
|
|
|
|
|
hook_sink_input_new,
|
|
|
|
|
hook_sink_disconnect,
|
|
|
|
|
hook_source_output_new,
|
|
|
|
|
hook_source_disconnect;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_core* pa_core_new(pa_mainloop_api *m);
|
|
|
|
|
void pa_core_free(pa_core*c);
|
2004-11-21 21:31:28 +00:00
|
|
|
|
|
|
|
|
/* Check whether noone is connected to this core */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_core_check_quit(pa_core *c);
|
2004-09-04 00:27:36 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#endif
|