don't use PA_GCC_UNUSED anymore
[profile/ivi/pulseaudio.git] / src / pulsecore / core.c
1 /***
2   This file is part of PulseAudio.
3
4   Copyright 2004-2006 Lennart Poettering
5   Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6
7   PulseAudio is free software; you can redistribute it and/or modify
8   it under the terms of the GNU Lesser General Public License as published
9   by the Free Software Foundation; either version 2 of the License,
10   or (at your option) any later version.
11
12   PulseAudio is distributed in the hope that it will be useful, but
13   WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public License
18   along with PulseAudio; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20   USA.
21 ***/
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <signal.h>
30
31 #include <pulse/timeval.h>
32 #include <pulse/xmalloc.h>
33
34 #include <pulsecore/module.h>
35 #include <pulsecore/sink.h>
36 #include <pulsecore/source.h>
37 #include <pulsecore/namereg.h>
38 #include <pulsecore/core-util.h>
39 #include <pulsecore/core-scache.h>
40 #include <pulsecore/autoload.h>
41 #include <pulsecore/core-subscribe.h>
42 #include <pulsecore/shared.h>
43 #include <pulsecore/random.h>
44 #include <pulsecore/log.h>
45 #include <pulsecore/macro.h>
46
47 #include "core.h"
48
49 static PA_DEFINE_CHECK_TYPE(pa_core, pa_msgobject);
50
51 static int core_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
52     pa_core *c = PA_CORE(o);
53
54     pa_core_assert_ref(c);
55
56     switch (code) {
57
58         case PA_CORE_MESSAGE_UNLOAD_MODULE:
59             pa_module_unload(c, userdata, TRUE);
60             return 0;
61
62         default:
63             return -1;
64     }
65 }
66
67 static void core_free(pa_object *o);
68
69 pa_core* pa_core_new(pa_mainloop_api *m, int shared) {
70     pa_core* c;
71     pa_mempool *pool;
72     int j;
73
74     pa_assert(m);
75
76     if (shared) {
77         if (!(pool = pa_mempool_new(shared))) {
78             pa_log_warn("failed to allocate shared memory pool. Falling back to a normal memory pool.");
79             shared = 0;
80         }
81     }
82
83     if (!shared) {
84         if (!(pool = pa_mempool_new(shared))) {
85             pa_log("pa_mempool_new() failed.");
86             return NULL;
87         }
88     }
89
90     c = pa_msgobject_new(pa_core);
91     c->parent.parent.free = core_free;
92     c->parent.process_msg = core_process_msg;
93
94     c->mainloop = m;
95     c->clients = pa_idxset_new(NULL, NULL);
96     c->sinks = pa_idxset_new(NULL, NULL);
97     c->sources = pa_idxset_new(NULL, NULL);
98     c->source_outputs = pa_idxset_new(NULL, NULL);
99     c->sink_inputs = pa_idxset_new(NULL, NULL);
100
101     c->default_source_name = c->default_sink_name = NULL;
102
103     c->modules = NULL;
104     c->namereg = NULL;
105     c->scache = NULL;
106     c->autoload_idxset = NULL;
107     c->autoload_hashmap = NULL;
108     c->running_as_daemon = FALSE;
109
110     c->default_sample_spec.format = PA_SAMPLE_S16NE;
111     c->default_sample_spec.rate = 44100;
112     c->default_sample_spec.channels = 2;
113     c->default_n_fragments = 4;
114     c->default_fragment_size_msec = 25;
115
116     c->module_auto_unload_event = NULL;
117     c->module_defer_unload_event = NULL;
118     c->scache_auto_unload_event = NULL;
119
120     c->subscription_defer_event = NULL;
121     PA_LLIST_HEAD_INIT(pa_subscription, c->subscriptions);
122     PA_LLIST_HEAD_INIT(pa_subscription_event, c->subscription_event_queue);
123     c->subscription_event_last = NULL;
124
125     c->mempool = pool;
126     pa_silence_cache_init(&c->silence_cache);
127
128     c->exit_event = NULL;
129
130     c->exit_idle_time = -1;
131     c->module_idle_time = 20;
132     c->scache_idle_time = 20;
133
134     c->resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 3;
135
136     c->disallow_module_loading = FALSE;
137     c->disallow_exit = FALSE;
138     c->realtime_scheduling = FALSE;
139     c->realtime_priority = 5;
140     c->disable_remixing = FALSE;
141
142     for (j = 0; j < PA_CORE_HOOK_MAX; j++)
143         pa_hook_init(&c->hooks[j], c);
144
145     pa_shared_init(c);
146
147     pa_random(&c->cookie, sizeof(c->cookie));
148
149 #ifdef SIGPIPE
150     pa_check_signal_is_blocked(SIGPIPE);
151 #endif
152
153     pa_core_check_idle(c);
154
155     return c;
156 }
157
158 static void core_free(pa_object *o) {
159     pa_core *c = PA_CORE(o);
160     int j;
161     pa_assert(c);
162
163     pa_module_unload_all(c);
164     pa_assert(!c->modules);
165
166     pa_assert(pa_idxset_isempty(c->clients));
167     pa_idxset_free(c->clients, NULL, NULL);
168
169     pa_assert(pa_idxset_isempty(c->sinks));
170     pa_idxset_free(c->sinks, NULL, NULL);
171
172     pa_assert(pa_idxset_isempty(c->sources));
173     pa_idxset_free(c->sources, NULL, NULL);
174
175     pa_assert(pa_idxset_isempty(c->source_outputs));
176     pa_idxset_free(c->source_outputs, NULL, NULL);
177
178     pa_assert(pa_idxset_isempty(c->sink_inputs));
179     pa_idxset_free(c->sink_inputs, NULL, NULL);
180
181     pa_scache_free(c);
182     pa_namereg_free(c);
183     pa_autoload_free(c);
184     pa_subscription_free_all(c);
185
186     if (c->exit_event)
187         c->mainloop->time_free(c->exit_event);
188
189     pa_xfree(c->default_source_name);
190     pa_xfree(c->default_sink_name);
191
192     pa_silence_cache_done(&c->silence_cache);
193     pa_mempool_free(c->mempool);
194
195     pa_shared_cleanup(c);
196
197     for (j = 0; j < PA_CORE_HOOK_MAX; j++)
198         pa_hook_done(&c->hooks[j]);
199
200     pa_xfree(c);
201 }
202
203 static void exit_callback(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
204     pa_core *c = userdata;
205     pa_assert(c->exit_event == e);
206
207     pa_core_exit(c, TRUE, 0);
208 }
209
210 void pa_core_check_idle(pa_core *c) {
211     pa_assert(c);
212
213     if (!c->exit_event &&
214         c->exit_idle_time >= 0 &&
215         pa_idxset_size(c->clients) == 0) {
216
217         struct timeval tv;
218         pa_gettimeofday(&tv);
219         tv.tv_sec+= c->exit_idle_time;
220
221         c->exit_event = c->mainloop->time_new(c->mainloop, &tv, exit_callback, c);
222
223     } else if (c->exit_event && pa_idxset_size(c->clients) > 0) {
224         c->mainloop->time_free(c->exit_event);
225         c->exit_event = NULL;
226     }
227 }
228
229 int pa_core_exit(pa_core *c, pa_bool_t force, int retval) {
230     pa_assert(c);
231
232     if (c->disallow_exit && !force)
233         return -1;
234
235     c->mainloop->quit(c->mainloop, retval);
236     return 0;
237 }