From d5e088ded7a6d9cf19b3dbc88ff2b73601896202 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 23 Jan 2009 22:30:31 +0100 Subject: include list of sinks/source in card dump --- src/pulsecore/cli-text.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'src/pulsecore/cli-text.c') diff --git a/src/pulsecore/cli-text.c b/src/pulsecore/cli-text.c index 947598b5..1a3778a0 100644 --- a/src/pulsecore/cli-text.c +++ b/src/pulsecore/cli-text.c @@ -117,6 +117,10 @@ char *pa_card_list_to_string(pa_core *c) { for (card = pa_idxset_first(c->cards, &idx); card; card = pa_idxset_next(c->cards, &idx)) { char *t; + pa_sink *sink; + pa_source *source; + uint32_t sidx; + pa_strbuf_printf( s, " index: %u\n" @@ -137,9 +141,7 @@ char *pa_card_list_to_string(pa_core *c) { pa_card_profile *p; void *state = NULL; - pa_strbuf_puts( - s, - "\tprofiles:\n"); + pa_strbuf_puts(s, "\tprofiles:\n"); while ((p = pa_hashmap_iterate(card->profiles, &state, NULL))) pa_strbuf_printf(s, "\t\t%s: %s (priority %u)\n", p->name, p->description, p->priority); @@ -150,6 +152,18 @@ char *pa_card_list_to_string(pa_core *c) { s, "\tactive profile: <%s>\n", card->active_profile->name); + + if (!pa_idxset_isempty(card->sinks)) { + pa_strbuf_puts(s, "\tsinks:\n"); + for (sink = pa_idxset_first(card->sinks, &sidx); sink; sink = pa_idxset_next(card->sinks, &sidx)) + pa_strbuf_printf(s, "\t\t%s/#%u: %s\n", sink->name, sink->index, pa_strna(pa_proplist_gets(sink->proplist, PA_PROP_DEVICE_DESCRIPTION))); + } + + if (!pa_idxset_isempty(card->sources)) { + pa_strbuf_puts(s, "\tsources:\n"); + for (source = pa_idxset_first(card->sources, &sidx); source; source = pa_idxset_next(card->sources, &sidx)) + pa_strbuf_printf(s, "\t\t%s/#%u: %s\n", source->name, source->index, pa_strna(pa_proplist_gets(source->proplist, PA_PROP_DEVICE_DESCRIPTION))); + } } return pa_strbuf_tostring_free(s); -- cgit