mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	* implement inner loops using liboil * drop "typeid" stuff * add support for channel maps * add support for seperate volumes per channel * add support for hardware mixer settings (only module-oss implements this for now) * fix a lot of types for _t suffix git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@463 fefdeb5f-60dc-0310-8127-8f9354f1896f
		
			
				
	
	
		
			385 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			385 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Id$ */
 | 
						|
 | 
						|
/***
 | 
						|
  This file is part of polypaudio.
 | 
						|
 
 | 
						|
  polypaudio is free software; you can redistribute it and/or modify
 | 
						|
  it under the terms of the GNU Lesser General Public License as published
 | 
						|
  by the Free Software Foundation; either version 2 of the License,
 | 
						|
  or (at your option) any later version.
 | 
						|
 
 | 
						|
  polypaudio is distributed in the hope that it will be useful, but
 | 
						|
  WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 | 
						|
  General Public License for more details.
 | 
						|
 
 | 
						|
  You should have received a copy of the GNU Lesser General Public License
 | 
						|
  along with polypaudio; if not, write to the Free Software
 | 
						|
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 | 
						|
  USA.
 | 
						|
***/
 | 
						|
 | 
						|
#ifdef HAVE_CONFIG_H
 | 
						|
#include <config.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#include <assert.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
#include "cli-text.h"
 | 
						|
#include "module.h"
 | 
						|
#include "client.h"
 | 
						|
#include "sink.h"
 | 
						|
#include "source.h"
 | 
						|
#include "sink-input.h"
 | 
						|
#include "source-output.h"
 | 
						|
#include "strbuf.h"
 | 
						|
#include "sample-util.h"
 | 
						|
#include "scache.h"
 | 
						|
#include "autoload.h"
 | 
						|
#include "xmalloc.h"
 | 
						|
#include "volume.h"
 | 
						|
 | 
						|
char *pa_module_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_module *m;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u module(s) loaded.\n", pa_idxset_size(c->modules));
 | 
						|
    
 | 
						|
    for (m = pa_idxset_first(c->modules, &idx); m; m = pa_idxset_next(c->modules, &idx))
 | 
						|
        pa_strbuf_printf(s, "    index: %u\n\tname: <%s>\n\targument: <%s>\n\tused: %i\n\tauto unload: %s\n", m->index, m->name, m->argument, m->n_used, m->auto_unload ? "yes" : "no");
 | 
						|
    
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_client_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_client *client;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u client(s) logged in.\n", pa_idxset_size(c->clients));
 | 
						|
    
 | 
						|
    for (client = pa_idxset_first(c->clients, &idx); client; client = pa_idxset_next(c->clients, &idx)) {
 | 
						|
        pa_strbuf_printf(s, "    index: %u\n\tname: <%s>\n\tdriver: <%s>\n", client->index, client->name, client->driver);
 | 
						|
 | 
						|
        if (client->owner)
 | 
						|
            pa_strbuf_printf(s, "\towner module: <%u>\n", client->owner->index);
 | 
						|
    }
 | 
						|
        
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_sink_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_sink *sink;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u sink(s) available.\n", pa_idxset_size(c->sinks));
 | 
						|
 | 
						|
    for (sink = pa_idxset_first(c->sinks, &idx); sink; sink = pa_idxset_next(c->sinks, &idx)) {
 | 
						|
        char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
 | 
						|
        
 | 
						|
        pa_strbuf_printf(
 | 
						|
            s,
 | 
						|
            "  %c index: %u\n"
 | 
						|
            "\tname: <%s>\n"
 | 
						|
            "\tdriver: <%s>\n"
 | 
						|
            "\tvolume: <%s>\n"
 | 
						|
            "\tlatency: <%0.0f usec>\n"
 | 
						|
            "\tmonitor_source: <%u>\n"
 | 
						|
            "\tsample spec: <%s>\n"
 | 
						|
            "\tchannel map: <%s>\n",
 | 
						|
            c->default_sink_name && !strcmp(sink->name, c->default_sink_name) ? '*' : ' ',
 | 
						|
            sink->index, sink->name,
 | 
						|
            sink->driver,
 | 
						|
            pa_cvolume_snprint(cv, sizeof(cv), pa_sink_get_volume(sink, PA_MIXER_HARDWARE)),
 | 
						|
            (double) pa_sink_get_latency(sink),
 | 
						|
            sink->monitor_source->index,
 | 
						|
            pa_sample_spec_snprint(ss, sizeof(ss), &sink->sample_spec),
 | 
						|
            pa_channel_map_snprint(cm, sizeof(cm), &sink->channel_map));
 | 
						|
 | 
						|
        if (sink->owner)
 | 
						|
            pa_strbuf_printf(s, "\towner module: <%u>\n", sink->owner->index);
 | 
						|
        if (sink->description)
 | 
						|
            pa_strbuf_printf(s, "\tdescription: <%s>\n", sink->description);
 | 
						|
    }
 | 
						|
    
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_source_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_source *source;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u source(s) available.\n", pa_idxset_size(c->sources));
 | 
						|
 | 
						|
    for (source = pa_idxset_first(c->sources, &idx); source; source = pa_idxset_next(c->sources, &idx)) {
 | 
						|
        char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
 | 
						|
        
 | 
						|
        
 | 
						|
        pa_strbuf_printf(
 | 
						|
            s,
 | 
						|
            "  %c index: %u\n"
 | 
						|
            "\tname: <%s>\n"
 | 
						|
            "\tdriver: <%s>\n"
 | 
						|
            "\tlatency: <%0.0f usec>\n"
 | 
						|
            "\tsample spec: <%s>\n"
 | 
						|
            "\tchannel map: <%s>\n",
 | 
						|
            c->default_source_name && !strcmp(source->name, c->default_source_name) ? '*' : ' ',
 | 
						|
            source->index,
 | 
						|
            source->name,
 | 
						|
            source->driver,
 | 
						|
            (double) pa_source_get_latency(source),
 | 
						|
            pa_sample_spec_snprint(ss, sizeof(ss), &source->sample_spec),
 | 
						|
            pa_channel_map_snprint(cm, sizeof(cm), &source->channel_map));
 | 
						|
 | 
						|
        if (source->monitor_of) 
 | 
						|
            pa_strbuf_printf(s, "\tmonitor_of: <%u>\n", source->monitor_of->index);
 | 
						|
        if (source->owner)
 | 
						|
            pa_strbuf_printf(s, "\towner module: <%u>\n", source->owner->index);
 | 
						|
        if (source->description)
 | 
						|
            pa_strbuf_printf(s, "\tdescription: <%s>\n", source->description);
 | 
						|
    }
 | 
						|
    
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
char *pa_source_output_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_source_output *o;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    static const char* const state_table[] = {
 | 
						|
        "RUNNING",
 | 
						|
        "CORKED",
 | 
						|
        "DISCONNECTED"
 | 
						|
    };
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u source outputs(s) available.\n", pa_idxset_size(c->source_outputs));
 | 
						|
 | 
						|
    for (o = pa_idxset_first(c->source_outputs, &idx); o; o = pa_idxset_next(c->source_outputs, &idx)) {
 | 
						|
        char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
 | 
						|
        
 | 
						|
        assert(o->source);
 | 
						|
        
 | 
						|
        pa_strbuf_printf(
 | 
						|
            s,
 | 
						|
            "    index: %u\n"
 | 
						|
            "\tname: '%s'\n"
 | 
						|
            "\tdriver: <%s>\n"
 | 
						|
            "\tstate: %s\n"
 | 
						|
            "\tsource: <%u> '%s'\n"
 | 
						|
            "\tsample spec: <%s>\n"
 | 
						|
            "\tchannel map: <%s>\n"
 | 
						|
            "\tresample method: %s\n",
 | 
						|
            o->index,
 | 
						|
            o->name,
 | 
						|
            o->driver,
 | 
						|
            state_table[o->state],
 | 
						|
            o->source->index, o->source->name,
 | 
						|
            pa_sample_spec_snprint(ss, sizeof(ss), &o->sample_spec),
 | 
						|
            pa_channel_map_snprint(cm, sizeof(cm), &o->channel_map),
 | 
						|
            pa_resample_method_to_string(pa_source_output_get_resample_method(o)));
 | 
						|
        if (o->owner)
 | 
						|
            pa_strbuf_printf(s, "\towner module: <%u>\n", o->owner->index);
 | 
						|
        if (o->client)
 | 
						|
            pa_strbuf_printf(s, "\tclient: <%u> '%s'\n", o->client->index, o->client->name);
 | 
						|
    }
 | 
						|
    
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_sink_input_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    pa_sink_input *i;
 | 
						|
    uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
    static const char* const state_table[] = {
 | 
						|
        "RUNNING",
 | 
						|
        "CORKED",
 | 
						|
        "DISCONNECTED"
 | 
						|
    };
 | 
						|
 | 
						|
    assert(c);
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u sink input(s) available.\n", pa_idxset_size(c->sink_inputs));
 | 
						|
 | 
						|
    for (i = pa_idxset_first(c->sink_inputs, &idx); i; i = pa_idxset_next(c->sink_inputs, &idx)) {
 | 
						|
        char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
 | 
						|
 | 
						|
        assert(i->sink);
 | 
						|
        
 | 
						|
        pa_strbuf_printf(
 | 
						|
            s,
 | 
						|
            "    index: %u\n"
 | 
						|
            "\tname: <%s>\n"
 | 
						|
            "\tdriver: <%s>\n"
 | 
						|
            "\tstate: %s\n"
 | 
						|
            "\tsink: <%u> '%s'\n"
 | 
						|
            "\tvolume: <%s>\n"
 | 
						|
            "\tlatency: <%0.0f usec>\n"
 | 
						|
            "\tsample spec: <%s>\n"
 | 
						|
            "\tchannel map: <%s>\n"
 | 
						|
            "\tresample method: %s\n",
 | 
						|
            i->index,
 | 
						|
            i->name,
 | 
						|
            i->driver,
 | 
						|
            state_table[i->state],
 | 
						|
            i->sink->index, i->sink->name,
 | 
						|
            pa_cvolume_snprint(cv, sizeof(cv), pa_sink_input_get_volume(i)),
 | 
						|
            (double) pa_sink_input_get_latency(i),
 | 
						|
            pa_sample_spec_snprint(ss, sizeof(ss), &i->sample_spec),
 | 
						|
            pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
 | 
						|
            pa_resample_method_to_string(pa_sink_input_get_resample_method(i)));
 | 
						|
 | 
						|
        if (i->owner)
 | 
						|
            pa_strbuf_printf(s, "\towner module: <%u>\n", i->owner->index);
 | 
						|
        if (i->client)
 | 
						|
            pa_strbuf_printf(s, "\tclient: <%u> '%s'\n", i->client->index, i->client->name);
 | 
						|
    }
 | 
						|
    
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_scache_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u cache entries available.\n", c->scache ? pa_idxset_size(c->scache) : 0);
 | 
						|
 | 
						|
    if (c->scache) {
 | 
						|
        pa_scache_entry *e;
 | 
						|
        uint32_t idx = PA_IDXSET_INVALID;
 | 
						|
 | 
						|
        for (e = pa_idxset_first(c->scache, &idx); e; e = pa_idxset_next(c->scache, &idx)) {
 | 
						|
            double l = 0;
 | 
						|
            char ss[PA_SAMPLE_SPEC_SNPRINT_MAX] = "n/a", cv[PA_CVOLUME_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
 | 
						|
            
 | 
						|
            if (e->memchunk.memblock) {
 | 
						|
                pa_sample_spec_snprint(ss, sizeof(ss), &e->sample_spec);
 | 
						|
                pa_channel_map_snprint(cm, sizeof(cm), &e->channel_map);
 | 
						|
                l = (double) e->memchunk.length / pa_bytes_per_second(&e->sample_spec);
 | 
						|
            }
 | 
						|
            
 | 
						|
            pa_strbuf_printf(
 | 
						|
                s,
 | 
						|
                "    name: <%s>\n"
 | 
						|
                "\tindex: <%u>\n"
 | 
						|
                "\tsample spec: <%s>\n"
 | 
						|
                "\tchannel map: <%s>\n"
 | 
						|
                "\tlength: <%u>\n"
 | 
						|
                "\tduration: <%0.1fs>\n"
 | 
						|
                "\tvolume: <%s>\n"
 | 
						|
                "\tlazy: %s\n"
 | 
						|
                "\tfilename: %s\n",
 | 
						|
                e->name,
 | 
						|
                e->index,
 | 
						|
                ss,
 | 
						|
                cm,
 | 
						|
                e->memchunk.memblock ? e->memchunk.length : 0,
 | 
						|
                l,
 | 
						|
                pa_cvolume_snprint(cv, sizeof(cv), &e->volume),
 | 
						|
                e->lazy ? "yes" : "no",
 | 
						|
                e->filename ? e->filename : "n/a");
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_autoload_list_to_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    assert(c);
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
    assert(s);
 | 
						|
 | 
						|
    pa_strbuf_printf(s, "%u autoload entries available.\n", c->autoload_hashmap ? pa_hashmap_size(c->autoload_hashmap) : 0);
 | 
						|
 | 
						|
    if (c->autoload_hashmap) {
 | 
						|
        pa_autoload_entry *e;
 | 
						|
        void *state = NULL;
 | 
						|
 | 
						|
        while ((e = pa_hashmap_iterate(c->autoload_hashmap, &state, NULL))) {
 | 
						|
            pa_strbuf_printf(
 | 
						|
                s, "    name: <%s>\n\ttype: <%s>\n\tindex: <%u>\n\tmodule_name: <%s>\n\targuments: <%s>\n",
 | 
						|
                e->name,
 | 
						|
                e->type == PA_NAMEREG_SOURCE ? "source" : "sink",
 | 
						|
                e->index,
 | 
						|
                e->module,
 | 
						|
                e->argument);
 | 
						|
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 | 
						|
 | 
						|
char *pa_full_status_string(pa_core *c) {
 | 
						|
    pa_strbuf *s;
 | 
						|
    int i;
 | 
						|
 | 
						|
    s = pa_strbuf_new();
 | 
						|
 | 
						|
    for (i = 0; i < 8; i++) {
 | 
						|
        char *t = NULL;
 | 
						|
        
 | 
						|
        switch (i) {
 | 
						|
            case 0: 
 | 
						|
                t = pa_sink_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 1:
 | 
						|
                t = pa_source_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 2:
 | 
						|
                t = pa_sink_input_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 3:
 | 
						|
                t = pa_source_output_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 4: 
 | 
						|
                t = pa_client_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 5:
 | 
						|
                t = pa_module_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 6:
 | 
						|
                t = pa_scache_list_to_string(c);
 | 
						|
                break;
 | 
						|
            case 7:
 | 
						|
                t = pa_autoload_list_to_string(c);
 | 
						|
                break;
 | 
						|
        }
 | 
						|
 | 
						|
        pa_strbuf_puts(s, t);
 | 
						|
        pa_xfree(t);
 | 
						|
    }
 | 
						|
 | 
						|
    return pa_strbuf_tostring_free(s);
 | 
						|
}
 |