Rework memory management to allow shared memory data transfer. The central idea
[profile/ivi/pulseaudio-panda.git] / src / pulsecore / core.c
1 /* $Id$ */
2
3 /***
4   This file is part of PulseAudio.
5  
6   PulseAudio is free software; you can redistribute it and/or modify
7   it under the terms of the GNU Lesser General Public License as published
8   by the Free Software Foundation; either version 2 of the License,
9   or (at your option) any later version.
10  
11   PulseAudio is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   General Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public License
17   along with PulseAudio; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <assert.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/props.h>
43 #include <pulsecore/random.h>
44
45 #include "core.h"
46
47 pa_core* pa_core_new(pa_mainloop_api *m, int shared) {
48     pa_core* c;
49     
50     c = pa_xnew(pa_core, 1);
51
52     c->mainloop = m;
53     c->clients = pa_idxset_new(NULL, NULL);
54     c->sinks = pa_idxset_new(NULL, NULL);
55     c->sources = pa_idxset_new(NULL, NULL);
56     c->source_outputs = pa_idxset_new(NULL, NULL);
57     c->sink_inputs = pa_idxset_new(NULL, NULL);
58
59     c->default_source_name = c->default_sink_name = NULL;
60
61     c->modules = NULL;
62     c->namereg = NULL;
63     c->scache = NULL;
64     c->autoload_idxset = NULL;
65     c->autoload_hashmap = NULL;
66     c->running_as_daemon = 0;
67
68     c->default_sample_spec.format = PA_SAMPLE_S16NE;
69     c->default_sample_spec.rate = 44100;
70     c->default_sample_spec.channels = 2;
71
72     c->module_auto_unload_event = NULL;
73     c->module_defer_unload_event = NULL;
74     c->scache_auto_unload_event = NULL;
75
76     c->subscription_defer_event = NULL;
77     PA_LLIST_HEAD_INIT(pa_subscription, c->subscriptions);
78     PA_LLIST_HEAD_INIT(pa_subscription_event, c->subscription_event_queue);
79     c->subscription_event_last = NULL;
80
81     c->mempool = pa_mempool_new(shared);
82
83     c->disallow_module_loading = 0;
84
85     c->quit_event = NULL;
86
87     c->exit_idle_time = -1;
88     c->module_idle_time = 20;
89     c->scache_idle_time = 20;
90
91     c->resample_method = PA_RESAMPLER_SRC_SINC_FASTEST;
92
93     c->is_system_instance = 0;
94
95     pa_hook_init(&c->hook_sink_input_new, c);
96     pa_hook_init(&c->hook_sink_disconnect, c);
97     pa_hook_init(&c->hook_source_output_new, c);
98     pa_hook_init(&c->hook_source_disconnect, c);
99
100     pa_property_init(c);
101
102     pa_random(&c->cookie, sizeof(c->cookie));
103     
104 #ifdef SIGPIPE
105     pa_check_signal_is_blocked(SIGPIPE);
106 #endif
107     return c;
108 }
109
110 void pa_core_free(pa_core *c) {
111     assert(c);
112
113     pa_module_unload_all(c);
114     assert(!c->modules);
115
116     assert(pa_idxset_isempty(c->clients));
117     pa_idxset_free(c->clients, NULL, NULL);
118     
119     assert(pa_idxset_isempty(c->sinks));
120     pa_idxset_free(c->sinks, NULL, NULL);
121
122     assert(pa_idxset_isempty(c->sources));
123     pa_idxset_free(c->sources, NULL, NULL);
124     
125     assert(pa_idxset_isempty(c->source_outputs));
126     pa_idxset_free(c->source_outputs, NULL, NULL);
127     
128     assert(pa_idxset_isempty(c->sink_inputs));
129     pa_idxset_free(c->sink_inputs, NULL, NULL);
130
131     pa_scache_free(c);
132     pa_namereg_free(c);
133     pa_autoload_free(c);
134     pa_subscription_free_all(c);
135
136     if (c->quit_event)
137         c->mainloop->time_free(c->quit_event);
138
139     pa_xfree(c->default_source_name);
140     pa_xfree(c->default_sink_name);
141
142     pa_mempool_free(c->mempool);
143
144     pa_property_cleanup(c);
145
146     pa_hook_free(&c->hook_sink_input_new);
147     pa_hook_free(&c->hook_sink_disconnect);
148     pa_hook_free(&c->hook_source_output_new);
149     pa_hook_free(&c->hook_source_disconnect);
150     
151     pa_xfree(c);    
152 }
153
154 static void quit_callback(pa_mainloop_api*m, pa_time_event *e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
155     pa_core *c = userdata;
156     assert(c->quit_event = e);
157
158     m->quit(m, 0);
159 }
160
161 void pa_core_check_quit(pa_core *c) {
162     assert(c);
163
164     if (!c->quit_event && c->exit_idle_time >= 0 && pa_idxset_size(c->clients) == 0) {
165         struct timeval tv;
166         pa_gettimeofday(&tv);
167         tv.tv_sec+= c->exit_idle_time;
168         c->quit_event = c->mainloop->time_new(c->mainloop, &tv, quit_callback, c);
169     } else if (c->quit_event && pa_idxset_size(c->clients) > 0) {
170         c->mainloop->time_free(c->quit_event);
171         c->quit_event = NULL;
172     }
173 }
174