]> code.delx.au - pulseaudio/blob - polyp/source.c
add subscription subsystem
[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
37 struct pa_source* pa_source_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec) {
38 struct pa_source *s;
39 char st[256];
40 int r;
41 assert(core && spec && name && *name);
42
43 s = pa_xmalloc(sizeof(struct pa_source));
44
45 if (!(name = pa_namereg_register(core, name, PA_NAMEREG_SOURCE, s, fail))) {
46 pa_xfree(s);
47 return NULL;
48 }
49
50 s->name = pa_xstrdup(name);
51 s->description = NULL;
52
53 s->owner = NULL;
54 s->core = core;
55 s->sample_spec = *spec;
56 s->outputs = pa_idxset_new(NULL, NULL);
57 s->monitor_of = NULL;
58
59 s->notify = NULL;
60 s->userdata = NULL;
61
62 r = pa_idxset_put(core->sources, s, &s->index);
63 assert(s->index != PA_IDXSET_INVALID && r >= 0);
64
65 pa_sample_snprint(st, sizeof(st), spec);
66 fprintf(stderr, "source: created %u \"%s\" with sample spec \"%s\"\n", s->index, s->name, st);
67
68 pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_NEW, s->index);
69
70 return s;
71 }
72
73 void pa_source_free(struct pa_source *s) {
74 struct pa_source_output *o, *j = NULL;
75 assert(s);
76
77 pa_namereg_unregister(s->core, s->name);
78
79 while ((o = pa_idxset_first(s->outputs, NULL))) {
80 assert(o != j);
81 pa_source_output_kill(o);
82 j = o;
83 }
84 pa_idxset_free(s->outputs, NULL, NULL);
85
86 pa_idxset_remove_by_data(s->core->sources, s, NULL);
87
88 fprintf(stderr, "source: freed %u \"%s\"\n", s->index, s->name);
89
90 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SOURCE | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
91
92 pa_xfree(s->name);
93 pa_xfree(s->description);
94 pa_xfree(s);
95 }
96
97 void pa_source_notify(struct pa_source*s) {
98 assert(s);
99
100 if (s->notify)
101 s->notify(s);
102 }
103
104 static int do_post(void *p, uint32_t index, int *del, void*userdata) {
105 struct pa_memchunk *chunk = userdata;
106 struct pa_source_output *o = p;
107 assert(o && o->push && del && chunk);
108
109 pa_source_output_push(o, chunk);
110 return 0;
111 }
112
113 void pa_source_post(struct pa_source*s, struct pa_memchunk *chunk) {
114 assert(s && chunk);
115
116 pa_idxset_foreach(s->outputs, do_post, chunk);
117 }
118
119 void pa_source_set_owner(struct pa_source *s, struct pa_module *m) {
120 assert(s);
121 s->owner = m;
122 }