2004-06-15 15:18:33 +00:00
|
|
|
#include <stdio.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "source.h"
|
2004-06-15 17:05:03 +00:00
|
|
|
#include "sourceoutput.h"
|
2004-06-18 00:22:37 +00:00
|
|
|
#include "strbuf.h"
|
2004-06-27 22:42:17 +00:00
|
|
|
#include "namereg.h"
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_source* pa_source_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec) {
|
|
|
|
|
struct pa_source *s;
|
|
|
|
|
char st[256];
|
2004-06-08 23:54:24 +00:00
|
|
|
int r;
|
|
|
|
|
assert(core && spec);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
s = malloc(sizeof(struct pa_source));
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
if (!(name = pa_namereg_register(core, name, PA_NAMEREG_SOURCE, s, fail))) {
|
2004-06-27 22:42:17 +00:00
|
|
|
free(s);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s->name = strdup(name);
|
2004-06-08 23:54:24 +00:00
|
|
|
s->core = core;
|
|
|
|
|
s->sample_spec = *spec;
|
2004-07-03 23:35:12 +00:00
|
|
|
s->outputs = pa_idxset_new(NULL, NULL);
|
2004-07-04 17:40:15 +00:00
|
|
|
s->monitor_of = NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
s->notify = NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
s->userdata = NULL;
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
r = pa_idxset_put(core->sources, s, &s->index);
|
|
|
|
|
assert(s->index != PA_IDXSET_INVALID && r >= 0);
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_sample_snprint(st, sizeof(st), spec);
|
|
|
|
|
fprintf(stderr, "source: created %u \"%s\" with sample spec \"%s\"\n", s->index, s->name, st);
|
2004-06-15 15:18:33 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_source_free(struct pa_source *s) {
|
|
|
|
|
struct pa_source_output *o, *j = NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_namereg_unregister(s->core, s->name);
|
2004-06-27 22:42:17 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
while ((o = pa_idxset_first(s->outputs, NULL))) {
|
2004-06-14 20:30:50 +00:00
|
|
|
assert(o != j);
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_source_output_kill(o);
|
2004-06-14 20:30:50 +00:00
|
|
|
j = o;
|
|
|
|
|
}
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(s->outputs, NULL, NULL);
|
2004-06-11 21:30:16 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_remove_by_data(s->core->sources, s, NULL);
|
2004-06-11 21:30:16 +00:00
|
|
|
|
2004-06-15 15:18:33 +00:00
|
|
|
fprintf(stderr, "source: freed %u \"%s\"\n", s->index, s->name);
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
free(s->name);
|
|
|
|
|
free(s);
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_source_notify(struct pa_source*s) {
|
2004-06-15 17:05:03 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
|
|
|
|
if (s->notify)
|
|
|
|
|
s->notify(s);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
static int do_post(void *p, uint32_t index, int *del, void*userdata) {
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_memchunk *chunk = userdata;
|
|
|
|
|
struct pa_source_output *o = p;
|
2004-06-16 00:05:30 +00:00
|
|
|
assert(o && o->push && del && chunk);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_source_output_push(o, chunk);
|
2004-06-08 23:54:24 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_source_post(struct pa_source*s, struct pa_memchunk *chunk) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s && chunk);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_foreach(s->outputs, do_post, chunk);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_source* pa_source_get_default(struct pa_core *c) {
|
|
|
|
|
struct pa_source *source;
|
2004-06-18 00:22:37 +00:00
|
|
|
assert(c);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
if ((source = pa_idxset_get_by_index(c->sources, c->default_source_index)))
|
2004-06-18 00:22:37 +00:00
|
|
|
return source;
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
if (!(source = pa_idxset_first(c->sources, &c->default_source_index)))
|
2004-06-18 00:22:37 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "core: default source vanished, setting to %u.\n", source->index);
|
|
|
|
|
return source;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
char *pa_source_list_to_string(struct pa_core *c) {
|
|
|
|
|
struct pa_strbuf *s;
|
|
|
|
|
struct pa_source *source, *default_source;
|
|
|
|
|
uint32_t index = PA_IDXSET_INVALID;
|
2004-06-18 00:22:37 +00:00
|
|
|
assert(c);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
s = pa_strbuf_new();
|
2004-06-18 00:22:37 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_strbuf_printf(s, "%u source(s) available.\n", pa_idxset_ncontents(c->sources));
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
default_source = pa_source_get_default(c);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-04 17:40:15 +00:00
|
|
|
for (source = pa_idxset_first(c->sources, &index); source; source = pa_idxset_next(c->sources, &index)) {
|
2004-07-07 00:22:46 +00:00
|
|
|
char ss[PA_SAMPLE_SNPRINT_MAX_LENGTH];
|
2004-07-04 17:40:15 +00:00
|
|
|
char mo[256] = "";
|
|
|
|
|
if (source->monitor_of)
|
2004-07-07 00:22:46 +00:00
|
|
|
snprintf(mo, sizeof(mo), "\n\tmonitor_of: <%u>", source->monitor_of->index);
|
|
|
|
|
pa_sample_snprint(ss, sizeof(ss), &source->sample_spec);
|
|
|
|
|
pa_strbuf_printf(s, " %c index: %u\n\tname: <%s>\n\tsample_spec: <%s>%s\n", source == default_source ? '*' : ' ', source->index, source->name, ss, mo);
|
2004-07-04 17:40:15 +00:00
|
|
|
}
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
return pa_strbuf_tostring_free(s);
|
2004-06-18 00:22:37 +00:00
|
|
|
}
|
|
|
|
|
|