]> code.delx.au - pulseaudio/blob - polyp/source.c
5cdfdb55198ed7b72821b6eccc6c5475d9c7c22c
[pulseaudio] / polyp / source.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU 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 polypaudio 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 General Public License
17 along with polypaudio; 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 "source.h"
32 #include "source-output.h"
33 #include "namereg.h"
34 #include "xmalloc.h"
35 #include "subscribe.h"
36 #include "log.h"
37
38 struct pa_source* pa_source_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec) {
39 struct pa_source *s;
40 char st[256];
41 int r;
42 assert(core && spec && name && *name);
43
44 s = pa_xmalloc(sizeof(struct pa_source));
45
46 if (!(name = pa_namereg_register(core, name, PA_NAMEREG_SOURCE, s, fail))) {
47 pa_xfree(s);
48 return NULL;
49 }
50
51 s->name = pa_xstrdup(name);
52 s->description = NULL;
53
54 s->owner = NULL;
55 s->core = core;
56 s->sample_spec = *spec;
57 s->outputs = pa_idxset_new(NULL, NULL);
58 s->monitor_of = NULL;
59
60 s->notify = NULL;
61 s->userdata = NULL;
62
63 r = pa_idxset_put(core->sources, s, &s->index);
64 assert(s->index != PA_IDXSET_INVALID && r >= 0);
65
66 pa_sample_spec_snprint(st, sizeof(st), spec);
67 pa_log(__FILE__": created %u \"%s\" with sample spec \"%s\"\n", s->index, s->name, st);
68
69 pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_NEW, s->index);
70
71 return s;
72 }
73
74 void pa_source_free(struct pa_source *s) {
75 struct pa_source_output *o, *j = NULL;
76 assert(s);
77
78 pa_namereg_unregister(s->core, s->name);
79
80 while ((o = pa_idxset_first(s->outputs, NULL))) {
81 assert(o != j);
82 pa_source_output_kill(o);
83 j = o;
84 }
85 pa_idxset_free(s->outputs, NULL, NULL);
86
87 pa_idxset_remove_by_data(s->core->sources, s, NULL);
88
89 pa_log(__FILE__": freed %u \"%s\"\n", s->index, s->name);
90
91 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
92
93 pa_xfree(s->name);
94 pa_xfree(s->description);
95 pa_xfree(s);
96 }
97
98 void pa_source_notify(struct pa_source*s) {
99 assert(s);
100
101 if (s->notify)
102 s->notify(s);
103 }
104
105 static int do_post(void *p, uint32_t index, int *del, void*userdata) {
106 struct pa_memchunk *chunk = userdata;
107 struct pa_source_output *o = p;
108 assert(o && o->push && del && chunk);
109
110 pa_source_output_push(o, chunk);
111 return 0;
112 }
113
114 void pa_source_post(struct pa_source*s, struct pa_memchunk *chunk) {
115 assert(s && chunk);
116
117 pa_idxset_foreach(s->outputs, do_post, chunk);
118 }
119
120 void pa_source_set_owner(struct pa_source *s, struct pa_module *m) {
121 assert(s);
122 s->owner = m;
123 }