]> code.delx.au - pulseaudio/blob - src/pulsecore/source.c
clean up event generation a little: suppress unnecessary events and generate new...
[pulseaudio] / src / pulsecore / source.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 <stdio.h>
27 #include <assert.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include <pulse/utf8.h>
32 #include <pulse/xmalloc.h>
33
34 #include <pulsecore/source-output.h>
35 #include <pulsecore/namereg.h>
36 #include <pulsecore/core-subscribe.h>
37 #include <pulsecore/log.h>
38 #include <pulsecore/sample-util.h>
39
40 #include "source.h"
41
42 #define CHECK_VALIDITY_RETURN_NULL(condition) \
43 do {\
44 if (!(condition)) \
45 return NULL; \
46 } while (0)
47
48 pa_source* pa_source_new(
49 pa_core *core,
50 const char *driver,
51 const char *name,
52 int fail,
53 const pa_sample_spec *spec,
54 const pa_channel_map *map) {
55
56 pa_source *s;
57 char st[256];
58 int r;
59 pa_channel_map tmap;
60
61 assert(core);
62 assert(name);
63 assert(spec);
64
65 CHECK_VALIDITY_RETURN_NULL(pa_sample_spec_valid(spec));
66
67 if (!map)
68 map = pa_channel_map_init_auto(&tmap, spec->channels, PA_CHANNEL_MAP_DEFAULT);
69
70 CHECK_VALIDITY_RETURN_NULL(map && pa_channel_map_valid(map));
71 CHECK_VALIDITY_RETURN_NULL(map->channels == spec->channels);
72 CHECK_VALIDITY_RETURN_NULL(!driver || pa_utf8_valid(driver));
73 CHECK_VALIDITY_RETURN_NULL(pa_utf8_valid(name) && *name);
74
75 s = pa_xnew(pa_source, 1);
76
77 if (!(name = pa_namereg_register(core, name, PA_NAMEREG_SOURCE, s, fail))) {
78 pa_xfree(s);
79 return NULL;
80 }
81
82 s->ref = 1;
83 s->core = core;
84 s->state = PA_SOURCE_RUNNING;
85 s->name = pa_xstrdup(name);
86 s->description = NULL;
87 s->driver = pa_xstrdup(driver);
88 s->owner = NULL;
89
90 s->sample_spec = *spec;
91 s->channel_map = *map;
92
93 s->outputs = pa_idxset_new(NULL, NULL);
94 s->monitor_of = NULL;
95
96 pa_cvolume_reset(&s->sw_volume, spec->channels);
97 pa_cvolume_reset(&s->hw_volume, spec->channels);
98 s->sw_muted = 0;
99 s->hw_muted = 0;
100
101 s->is_hardware = 0;
102
103 s->get_latency = NULL;
104 s->notify = NULL;
105 s->set_hw_volume = NULL;
106 s->get_hw_volume = NULL;
107 s->set_hw_mute = NULL;
108 s->get_hw_mute = NULL;
109 s->userdata = NULL;
110
111 r = pa_idxset_put(core->sources, s, &s->index);
112 assert(s->index != PA_IDXSET_INVALID && r >= 0);
113
114 pa_sample_spec_snprint(st, sizeof(st), spec);
115 pa_log_info(__FILE__": created %u \"%s\" with sample spec \"%s\"", s->index, s->name, st);
116
117 pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_NEW, s->index);
118
119 return s;
120 }
121
122 void pa_source_disconnect(pa_source *s) {
123 pa_source_output *o, *j = NULL;
124
125 assert(s);
126 assert(s->state == PA_SOURCE_RUNNING);
127
128 pa_namereg_unregister(s->core, s->name);
129
130 while ((o = pa_idxset_first(s->outputs, NULL))) {
131 assert(o != j);
132 pa_source_output_kill(o);
133 j = o;
134 }
135
136 pa_idxset_remove_by_data(s->core->sources, s, NULL);
137
138 s->get_latency = NULL;
139 s->notify = NULL;
140 s->get_hw_volume = NULL;
141 s->set_hw_volume = NULL;
142 s->set_hw_mute = NULL;
143 s->get_hw_mute = NULL;
144
145 s->state = PA_SOURCE_DISCONNECTED;
146 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
147 }
148
149 static void source_free(pa_source *s) {
150 assert(s);
151 assert(!s->ref);
152
153 if (s->state != PA_SOURCE_DISCONNECTED)
154 pa_source_disconnect(s);
155
156 pa_log_info(__FILE__": freed %u \"%s\"", s->index, s->name);
157
158 pa_idxset_free(s->outputs, NULL, NULL);
159
160 pa_xfree(s->name);
161 pa_xfree(s->description);
162 pa_xfree(s->driver);
163 pa_xfree(s);
164 }
165
166 void pa_source_unref(pa_source *s) {
167 assert(s);
168 assert(s->ref >= 1);
169
170 if (!(--s->ref))
171 source_free(s);
172 }
173
174 pa_source* pa_source_ref(pa_source *s) {
175 assert(s);
176 assert(s->ref >= 1);
177
178 s->ref++;
179 return s;
180 }
181
182 void pa_source_notify(pa_source*s) {
183 assert(s);
184 assert(s->ref >= 1);
185
186 if (s->notify)
187 s->notify(s);
188 }
189
190 static int do_post(void *p, PA_GCC_UNUSED uint32_t idx, PA_GCC_UNUSED int *del, void*userdata) {
191 pa_source_output *o = p;
192 const pa_memchunk *chunk = userdata;
193
194 assert(o);
195 assert(chunk);
196
197 pa_source_output_push(o, chunk);
198 return 0;
199 }
200
201 void pa_source_post(pa_source*s, const pa_memchunk *chunk) {
202 assert(s);
203 assert(s->ref >= 1);
204 assert(chunk);
205
206 pa_source_ref(s);
207
208 if (s->sw_muted || !pa_cvolume_is_norm(&s->sw_volume)) {
209 pa_memchunk vchunk = *chunk;
210
211 pa_memblock_ref(vchunk.memblock);
212 pa_memchunk_make_writable(&vchunk, s->core->memblock_stat, 0);
213 if (s->sw_muted)
214 pa_silence_memchunk(&vchunk, &s->sample_spec);
215 else
216 pa_volume_memchunk(&vchunk, &s->sample_spec, &s->sw_volume);
217 pa_idxset_foreach(s->outputs, do_post, &vchunk);
218 pa_memblock_unref(vchunk.memblock);
219 } else
220 pa_idxset_foreach(s->outputs, do_post, (void*) chunk);
221
222 pa_source_unref(s);
223 }
224
225 void pa_source_set_owner(pa_source *s, pa_module *m) {
226 assert(s);
227 assert(s->ref >= 1);
228
229 if (m == s->owner)
230 return;
231
232 s->owner = m;
233 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
234 }
235
236 pa_usec_t pa_source_get_latency(pa_source *s) {
237 assert(s);
238 assert(s->ref >= 1);
239
240 if (!s->get_latency)
241 return 0;
242
243 return s->get_latency(s);
244 }
245
246 void pa_source_set_volume(pa_source *s, pa_mixer_t m, const pa_cvolume *volume) {
247 pa_cvolume *v;
248
249 assert(s);
250 assert(s->ref >= 1);
251 assert(volume);
252
253 if (m == PA_MIXER_HARDWARE && s->set_hw_volume)
254 v = &s->hw_volume;
255 else
256 v = &s->sw_volume;
257
258 if (pa_cvolume_equal(v, volume))
259 return;
260
261 *v = *volume;
262
263 if (v == &s->hw_volume)
264 if (s->set_hw_volume(s) < 0)
265 s->sw_volume = *volume;
266
267 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
268 }
269
270 const pa_cvolume *pa_source_get_volume(pa_source *s, pa_mixer_t m) {
271 assert(s);
272 assert(s->ref >= 1);
273
274 if (m == PA_MIXER_HARDWARE && s->set_hw_volume) {
275
276 if (s->get_hw_volume)
277 s->get_hw_volume(s);
278
279 return &s->hw_volume;
280 } else
281 return &s->sw_volume;
282 }
283
284 void pa_source_set_mute(pa_source *s, pa_mixer_t m, int mute) {
285 int *t;
286
287 assert(s);
288 assert(s->ref >= 1);
289
290 if (m == PA_MIXER_HARDWARE && s->set_hw_mute)
291 t = &s->hw_muted;
292 else
293 t = &s->sw_muted;
294
295 if (!!*t == !!mute)
296 return;
297
298 *t = !!mute;
299
300 if (t == &s->hw_muted)
301 if (s->set_hw_mute(s) < 0)
302 s->sw_muted = !!mute;
303
304 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
305 }
306
307 int pa_source_get_mute(pa_source *s, pa_mixer_t m) {
308 assert(s);
309 assert(s->ref >= 1);
310
311 if (m == PA_MIXER_HARDWARE && s->set_hw_mute) {
312
313 if (s->get_hw_mute)
314 s->get_hw_mute(s);
315
316 return s->hw_muted;
317 } else
318 return s->sw_muted;
319 }
320
321 void pa_source_set_description(pa_source *s, const char *description) {
322 assert(s);
323 assert(s->ref >= 1);
324
325 if (!description && !s->description)
326 return;
327
328 if (description && s->description && !strcmp(description, s->description))
329 return;
330
331 pa_xfree(s->description);
332 s->description = pa_xstrdup(description);
333
334 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
335 }