]> code.delx.au - pulseaudio/blob - src/pulsecore/core.h
maintain a global silence memblock cache
[pulseaudio] / src / pulsecore / core.h
1 #ifndef foocorehfoo
2 #define foocorehfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10
11 PulseAudio is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as published
13 by the Free Software Foundation; either version 2 of the License,
14 or (at your option) any later version.
15
16 PulseAudio is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with PulseAudio; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 USA.
25 ***/
26
27 #include <pulse/mainloop-api.h>
28 #include <pulse/sample.h>
29
30 #include <pulsecore/idxset.h>
31 #include <pulsecore/hashmap.h>
32 #include <pulsecore/memblock.h>
33 #include <pulsecore/resampler.h>
34 #include <pulsecore/queue.h>
35 #include <pulsecore/llist.h>
36 #include <pulsecore/hook-list.h>
37 #include <pulsecore/asyncmsgq.h>
38 #include <pulsecore/sample-util.h>
39
40 typedef struct pa_core pa_core;
41
42 #include <pulsecore/core-subscribe.h>
43 #include <pulsecore/sink-input.h>
44 #include <pulsecore/msgobject.h>
45
46 typedef enum pa_core_hook {
47 PA_CORE_HOOK_SINK_NEW,
48 PA_CORE_HOOK_SINK_FIXATE,
49 PA_CORE_HOOK_SINK_PUT,
50 PA_CORE_HOOK_SINK_UNLINK,
51 PA_CORE_HOOK_SINK_UNLINK_POST,
52 PA_CORE_HOOK_SINK_STATE_CHANGED,
53 PA_CORE_HOOK_SINK_PROPLIST_CHANGED,
54 PA_CORE_HOOK_SOURCE_NEW,
55 PA_CORE_HOOK_SOURCE_FIXATE,
56 PA_CORE_HOOK_SOURCE_PUT,
57 PA_CORE_HOOK_SOURCE_UNLINK,
58 PA_CORE_HOOK_SOURCE_UNLINK_POST,
59 PA_CORE_HOOK_SOURCE_STATE_CHANGED,
60 PA_CORE_HOOK_SOURCE_PROPLIST_CHANGED,
61 PA_CORE_HOOK_SINK_INPUT_NEW,
62 PA_CORE_HOOK_SINK_INPUT_FIXATE,
63 PA_CORE_HOOK_SINK_INPUT_PUT,
64 PA_CORE_HOOK_SINK_INPUT_UNLINK,
65 PA_CORE_HOOK_SINK_INPUT_UNLINK_POST,
66 PA_CORE_HOOK_SINK_INPUT_MOVE,
67 PA_CORE_HOOK_SINK_INPUT_MOVE_POST,
68 PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED,
69 PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED,
70 PA_CORE_HOOK_SOURCE_OUTPUT_NEW,
71 PA_CORE_HOOK_SOURCE_OUTPUT_FIXATE,
72 PA_CORE_HOOK_SOURCE_OUTPUT_PUT,
73 PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK,
74 PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK_POST,
75 PA_CORE_HOOK_SOURCE_OUTPUT_MOVE,
76 PA_CORE_HOOK_SOURCE_OUTPUT_MOVE_POST,
77 PA_CORE_HOOK_SOURCE_OUTPUT_STATE_CHANGED,
78 PA_CORE_HOOK_SOURCE_OUTPUT_PROPLIST_CHANGED,
79 PA_CORE_HOOK_MAX
80 } pa_core_hook_t;
81
82 /* The core structure of PulseAudio. Every PulseAudio daemon contains
83 * exactly one of these. It is used for storing kind of global
84 * variables for the daemon. */
85
86 struct pa_core {
87 pa_msgobject parent;
88
89 /* A random value which may be used to identify this instance of
90 * PulseAudio. Not cryptographically secure in any way. */
91 uint32_t cookie;
92
93 pa_mainloop_api *mainloop;
94
95 /* idxset of all kinds of entities */
96 pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache, *autoload_idxset;
97
98 /* Some hashmaps for all sorts of entities */
99 pa_hashmap *namereg, *autoload_hashmap, *properties;
100
101 /* The name of the default sink/source */
102 char *default_source_name, *default_sink_name;
103
104 pa_sample_spec default_sample_spec;
105 unsigned default_n_fragments, default_fragment_size_msec;
106
107 pa_time_event *module_auto_unload_event;
108 pa_defer_event *module_defer_unload_event;
109
110 pa_defer_event *subscription_defer_event;
111 PA_LLIST_HEAD(pa_subscription, subscriptions);
112 PA_LLIST_HEAD(pa_subscription_event, subscription_event_queue);
113 pa_subscription_event *subscription_event_last;
114
115 pa_mempool *mempool;
116 pa_silence_cache silence_cache;
117
118 int exit_idle_time, module_idle_time, scache_idle_time;
119
120 pa_time_event *quit_event;
121
122 pa_time_event *scache_auto_unload_event;
123
124 pa_bool_t disallow_module_loading, running_as_daemon;
125 pa_resample_method_t resample_method;
126 pa_bool_t is_system_instance;
127 pa_bool_t realtime_scheduling;
128 int realtime_priority;
129 pa_bool_t disable_remixing;
130
131 /* hooks */
132 pa_hook hooks[PA_CORE_HOOK_MAX];
133 };
134
135 PA_DECLARE_CLASS(pa_core);
136 #define PA_CORE(o) pa_core_cast(o)
137
138 enum {
139 PA_CORE_MESSAGE_UNLOAD_MODULE,
140 PA_CORE_MESSAGE_MAX
141 };
142
143 pa_core* pa_core_new(pa_mainloop_api *m, int shared);
144
145 /* Check whether noone is connected to this core */
146 void pa_core_check_quit(pa_core *c);
147
148 #endif