2004-07-16 19:56:36 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2004-07-16 19:56:36 +00:00
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-15 20:51:55 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2004-08-03 19:26:56 +00:00
|
|
|
#include <limits.h>
|
2004-09-19 23:12:41 +00:00
|
|
|
#include <getopt.h>
|
2008-08-06 18:54:13 +02:00
|
|
|
#include <locale.h>
|
2004-08-03 19:26:56 +00:00
|
|
|
|
|
|
|
|
#include <sndfile.h>
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
#include <pulse/i18n.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/pulseaudio.h>
|
2009-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
|
#include <pulsecore/macro.h>
|
2007-11-09 01:30:46 +00:00
|
|
|
#include <pulsecore/core-util.h>
|
2009-05-26 00:05:28 +02:00
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/sndfile-util.h>
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_context *context = NULL;
|
|
|
|
|
static pa_mainloop_api *mainloop_api = NULL;
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2009-06-17 04:54:39 +02:00
|
|
|
static char
|
2011-03-26 17:15:41 +01:00
|
|
|
*list_type = NULL,
|
2009-06-17 04:54:39 +02:00
|
|
|
*sample_name = NULL,
|
|
|
|
|
*sink_name = NULL,
|
|
|
|
|
*source_name = NULL,
|
|
|
|
|
*module_name = NULL,
|
|
|
|
|
*module_args = NULL,
|
|
|
|
|
*card_name = NULL,
|
|
|
|
|
*profile_name = NULL,
|
|
|
|
|
*port_name = NULL;
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
sink_input_idx = PA_INVALID_INDEX,
|
|
|
|
|
source_output_idx = PA_INVALID_INDEX;
|
|
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
static pa_bool_t short_list_format = FALSE;
|
2007-10-28 19:13:50 +00:00
|
|
|
static uint32_t module_index;
|
2009-05-26 00:05:28 +02:00
|
|
|
static pa_bool_t suspend;
|
2009-08-31 21:42:54 +02:00
|
|
|
static pa_bool_t mute;
|
|
|
|
|
static pa_volume_t volume;
|
2011-03-26 17:15:40 +01:00
|
|
|
static enum volume_flags {
|
|
|
|
|
VOL_UINT = 0,
|
|
|
|
|
VOL_PERCENT = 1,
|
|
|
|
|
VOL_LINEAR = 2,
|
|
|
|
|
VOL_DECIBEL = 3,
|
|
|
|
|
VOL_ABSOLUTE = 0 << 4,
|
|
|
|
|
VOL_RELATIVE = 1 << 4,
|
|
|
|
|
} volume_flags;
|
2009-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
|
static pa_proplist *proplist = NULL;
|
2004-08-03 19:26:56 +00:00
|
|
|
|
|
|
|
|
static SNDFILE *sndfile = NULL;
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_stream *sample_stream = NULL;
|
|
|
|
|
static pa_sample_spec sample_spec;
|
2009-05-26 00:05:28 +02:00
|
|
|
static pa_channel_map channel_map;
|
2004-08-03 19:26:56 +00:00
|
|
|
static size_t sample_length = 0;
|
2004-09-19 23:12:41 +00:00
|
|
|
static int actions = 1;
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
static pa_bool_t nl = FALSE;
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2004-07-15 20:51:55 +00:00
|
|
|
static enum {
|
|
|
|
|
NONE,
|
|
|
|
|
EXIT,
|
2004-08-03 19:26:56 +00:00
|
|
|
STAT,
|
2011-03-26 17:15:42 +01:00
|
|
|
INFO,
|
2004-08-03 19:26:56 +00:00
|
|
|
UPLOAD_SAMPLE,
|
|
|
|
|
PLAY_SAMPLE,
|
2004-09-19 23:12:41 +00:00
|
|
|
REMOVE_SAMPLE,
|
2006-07-31 21:55:42 +00:00
|
|
|
LIST,
|
2006-08-03 22:33:54 +00:00
|
|
|
MOVE_SINK_INPUT,
|
2007-10-28 19:13:50 +00:00
|
|
|
MOVE_SOURCE_OUTPUT,
|
|
|
|
|
LOAD_MODULE,
|
|
|
|
|
UNLOAD_MODULE,
|
|
|
|
|
SUSPEND_SINK,
|
|
|
|
|
SUSPEND_SOURCE,
|
2009-06-17 04:54:39 +02:00
|
|
|
SET_CARD_PROFILE,
|
|
|
|
|
SET_SINK_PORT,
|
2009-08-31 21:42:54 +02:00
|
|
|
SET_SOURCE_PORT,
|
|
|
|
|
SET_SINK_VOLUME,
|
|
|
|
|
SET_SOURCE_VOLUME,
|
|
|
|
|
SET_SINK_INPUT_VOLUME,
|
|
|
|
|
SET_SINK_MUTE,
|
|
|
|
|
SET_SOURCE_MUTE,
|
2010-02-21 17:39:47 +01:00
|
|
|
SET_SINK_INPUT_MUTE,
|
|
|
|
|
SUBSCRIBE
|
2004-07-15 20:51:55 +00:00
|
|
|
} action = NONE;
|
|
|
|
|
|
|
|
|
|
static void quit(int ret) {
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(mainloop_api);
|
2004-07-15 20:51:55 +00:00
|
|
|
mainloop_api->quit(mainloop_api, ret);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void context_drain_complete(pa_context *c, void *userdata) {
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_context_disconnect(c);
|
2004-07-15 20:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void drain(void) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_operation *o;
|
2009-08-31 21:42:54 +02:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
if (!(o = pa_context_drain(context, context_drain_complete, NULL)))
|
|
|
|
|
pa_context_disconnect(context);
|
|
|
|
|
else
|
|
|
|
|
pa_operation_unref(o);
|
2004-07-15 20:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
static void complete_action(void) {
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(actions > 0);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (!(--actions))
|
|
|
|
|
drain();
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void stat_callback(pa_context *c, const pa_stat_info *i, void *userdata) {
|
2009-09-06 22:33:04 +02:00
|
|
|
char s[PA_BYTES_SNPRINT_MAX];
|
2004-08-14 20:25:32 +00:00
|
|
|
if (!i) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get statistics: %s"), pa_strerror(pa_context_errno(c)));
|
2004-07-15 20:51:55 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
pa_bytes_snprint(s, sizeof(s), i->memblock_total_size);
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Currently in use: %u blocks containing %s bytes total.\n"), i->memblock_total, s);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
pa_bytes_snprint(s, sizeof(s), i->memblock_allocated_size);
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Allocated during whole lifetime: %u blocks containing %s bytes total.\n"), i->memblock_allocated, s);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
pa_bytes_snprint(s, sizeof(s), i->scache_size);
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Sample cache size: %s\n"), s);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
complete_action();
|
2004-07-15 20:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_server_info_callback(pa_context *c, const pa_server_info *i, void *useerdata) {
|
2009-02-21 16:32:42 +01:00
|
|
|
char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (!i) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get server information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-28 23:27:50 +01:00
|
|
|
printf(_("Server String: %s\n"
|
|
|
|
|
"Library Protocol Version: %u\n"
|
|
|
|
|
"Server Protocol Version: %u\n"
|
|
|
|
|
"Is Local: %s\n"
|
|
|
|
|
"Client Index: %u\n"
|
|
|
|
|
"Tile Size: %zu\n"),
|
|
|
|
|
pa_context_get_server(c),
|
|
|
|
|
pa_context_get_protocol_version(c),
|
|
|
|
|
pa_context_get_server_protocol_version(c),
|
|
|
|
|
pa_yes_no(pa_context_is_local(c)),
|
|
|
|
|
pa_context_get_index(c),
|
|
|
|
|
pa_context_get_tile_size(c, NULL));
|
|
|
|
|
|
2009-02-21 16:32:42 +01:00
|
|
|
pa_sample_spec_snprint(ss, sizeof(ss), &i->sample_spec);
|
|
|
|
|
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2009-10-28 23:27:50 +01:00
|
|
|
printf(_("User Name: %s\n"
|
2009-02-21 16:32:42 +01:00
|
|
|
"Host Name: %s\n"
|
|
|
|
|
"Server Name: %s\n"
|
|
|
|
|
"Server Version: %s\n"
|
|
|
|
|
"Default Sample Specification: %s\n"
|
|
|
|
|
"Default Channel Map: %s\n"
|
|
|
|
|
"Default Sink: %s\n"
|
|
|
|
|
"Default Source: %s\n"
|
2009-10-28 23:28:12 +01:00
|
|
|
"Cookie: %04x:%04x\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->user_name,
|
|
|
|
|
i->host_name,
|
|
|
|
|
i->server_name,
|
|
|
|
|
i->server_version,
|
2009-02-21 16:32:42 +01:00
|
|
|
ss,
|
|
|
|
|
cm,
|
2004-09-19 23:12:41 +00:00
|
|
|
i->default_sink_name,
|
2004-12-12 22:58:53 +00:00
|
|
|
i->default_source_name,
|
2009-10-28 23:28:12 +01:00
|
|
|
i->cookie >> 16,
|
|
|
|
|
i->cookie & 0xFFFFU);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
complete_action();
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_sink_info_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata) {
|
2009-01-19 23:55:22 +01:00
|
|
|
|
|
|
|
|
static const char *state_table[] = {
|
|
|
|
|
[1+PA_SINK_INVALID_STATE] = "n/a",
|
|
|
|
|
[1+PA_SINK_RUNNING] = "RUNNING",
|
|
|
|
|
[1+PA_SINK_IDLE] = "IDLE",
|
|
|
|
|
[1+PA_SINK_SUSPENDED] = "SUSPENDED"
|
|
|
|
|
};
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
char
|
|
|
|
|
s[PA_SAMPLE_SPEC_SNPRINT_MAX],
|
|
|
|
|
cv[PA_CVOLUME_SNPRINT_MAX],
|
|
|
|
|
cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX],
|
|
|
|
|
v[PA_VOLUME_SNPRINT_MAX],
|
|
|
|
|
vdb[PA_SW_VOLUME_SNPRINT_DB_MAX],
|
2011-03-08 23:30:24 +05:30
|
|
|
cm[PA_CHANNEL_MAP_SNPRINT_MAX],
|
|
|
|
|
f[PA_FORMAT_INFO_SNPRINT_MAX];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get sink information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\t%s\t%s\n",
|
|
|
|
|
i->index,
|
|
|
|
|
i->name,
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
state_table[1+i->state]);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Sink #%u\n"
|
2009-01-19 23:55:22 +01:00
|
|
|
"\tState: %s\n"
|
2009-01-19 23:07:34 +01:00
|
|
|
"\tName: %s\n"
|
|
|
|
|
"\tDescription: %s\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tSample Specification: %s\n"
|
|
|
|
|
"\tChannel Map: %s\n"
|
|
|
|
|
"\tOwner Module: %u\n"
|
|
|
|
|
"\tMute: %s\n"
|
|
|
|
|
"\tVolume: %s%s%s\n"
|
|
|
|
|
"\t balance %0.2f\n"
|
|
|
|
|
"\tBase Volume: %s%s%s\n"
|
|
|
|
|
"\tMonitor Source: %s\n"
|
|
|
|
|
"\tLatency: %0.0f usec, configured %0.0f usec\n"
|
|
|
|
|
"\tFlags: %s%s%s%s%s%s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
2009-01-19 23:55:22 +01:00
|
|
|
state_table[1+i->state],
|
2004-09-19 23:12:41 +00:00
|
|
|
i->name,
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_strnull(i->description),
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->driver),
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->owner_module,
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_yes_no(i->mute),
|
|
|
|
|
pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
|
|
|
|
|
i->flags & PA_SINK_DECIBEL_VOLUME ? "\n\t " : "",
|
|
|
|
|
i->flags & PA_SINK_DECIBEL_VOLUME ? pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume) : "",
|
2009-01-27 02:45:37 +01:00
|
|
|
pa_cvolume_get_balance(&i->volume, &i->channel_map),
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_volume_snprint(v, sizeof(v), i->base_volume),
|
|
|
|
|
i->flags & PA_SINK_DECIBEL_VOLUME ? "\n\t " : "",
|
|
|
|
|
i->flags & PA_SINK_DECIBEL_VOLUME ? pa_sw_volume_snprint_dB(vdb, sizeof(vdb), i->base_volume) : "",
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->monitor_source_name),
|
|
|
|
|
(double) i->latency, (double) i->configured_latency,
|
|
|
|
|
i->flags & PA_SINK_HARDWARE ? "HARDWARE " : "",
|
|
|
|
|
i->flags & PA_SINK_NETWORK ? "NETWORK " : "",
|
|
|
|
|
i->flags & PA_SINK_HW_MUTE_CTRL ? "HW_MUTE_CTRL " : "",
|
2006-04-07 23:05:45 +00:00
|
|
|
i->flags & PA_SINK_HW_VOLUME_CTRL ? "HW_VOLUME_CTRL " : "",
|
2008-05-15 23:34:41 +00:00
|
|
|
i->flags & PA_SINK_DECIBEL_VOLUME ? "DECIBEL_VOLUME " : "",
|
2006-07-16 17:29:09 +00:00
|
|
|
i->flags & PA_SINK_LATENCY ? "LATENCY " : "",
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2004-12-12 22:58:53 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(pl);
|
2009-06-17 23:40:46 +02:00
|
|
|
|
|
|
|
|
if (i->ports) {
|
|
|
|
|
pa_sink_port_info **p;
|
|
|
|
|
|
|
|
|
|
printf(_("\tPorts:\n"));
|
|
|
|
|
for (p = i->ports; *p; p++)
|
|
|
|
|
printf("\t\t%s: %s (priority. %u)\n", (*p)->name, (*p)->description, (*p)->priority);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i->active_port)
|
|
|
|
|
printf(_("\tActive Port: %s\n"),
|
|
|
|
|
i->active_port->name);
|
2011-03-08 23:30:24 +05:30
|
|
|
|
|
|
|
|
if (i->formats) {
|
|
|
|
|
uint8_t j;
|
|
|
|
|
|
|
|
|
|
printf(_("\tFormats:\n"));
|
|
|
|
|
for (j = 0; j < i->n_formats; j++)
|
|
|
|
|
printf("\t\t%s\n", pa_format_info_snprint(f, sizeof(f), i->formats[j]));
|
|
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_source_info_callback(pa_context *c, const pa_source_info *i, int is_last, void *userdata) {
|
2009-01-19 23:55:22 +01:00
|
|
|
|
|
|
|
|
static const char *state_table[] = {
|
|
|
|
|
[1+PA_SOURCE_INVALID_STATE] = "n/a",
|
|
|
|
|
[1+PA_SOURCE_RUNNING] = "RUNNING",
|
|
|
|
|
[1+PA_SOURCE_IDLE] = "IDLE",
|
|
|
|
|
[1+PA_SOURCE_SUSPENDED] = "SUSPENDED"
|
|
|
|
|
};
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
char
|
|
|
|
|
s[PA_SAMPLE_SPEC_SNPRINT_MAX],
|
|
|
|
|
cv[PA_CVOLUME_SNPRINT_MAX],
|
|
|
|
|
cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX],
|
|
|
|
|
v[PA_VOLUME_SNPRINT_MAX],
|
|
|
|
|
vdb[PA_SW_VOLUME_SNPRINT_DB_MAX],
|
|
|
|
|
cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get source information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\t%s\t%s\n",
|
|
|
|
|
i->index,
|
|
|
|
|
i->name,
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
state_table[1+i->state]);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Source #%u\n"
|
2009-01-19 23:55:22 +01:00
|
|
|
"\tState: %s\n"
|
2009-01-19 23:07:34 +01:00
|
|
|
"\tName: %s\n"
|
|
|
|
|
"\tDescription: %s\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tSample Specification: %s\n"
|
|
|
|
|
"\tChannel Map: %s\n"
|
|
|
|
|
"\tOwner Module: %u\n"
|
|
|
|
|
"\tMute: %s\n"
|
|
|
|
|
"\tVolume: %s%s%s\n"
|
|
|
|
|
"\t balance %0.2f\n"
|
|
|
|
|
"\tBase Volume: %s%s%s\n"
|
|
|
|
|
"\tMonitor of Sink: %s\n"
|
|
|
|
|
"\tLatency: %0.0f usec, configured %0.0f usec\n"
|
|
|
|
|
"\tFlags: %s%s%s%s%s%s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
2009-01-19 23:55:22 +01:00
|
|
|
state_table[1+i->state],
|
2004-09-19 23:12:41 +00:00
|
|
|
i->name,
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_strnull(i->description),
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->driver),
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->owner_module,
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_yes_no(i->mute),
|
|
|
|
|
pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
|
|
|
|
|
i->flags & PA_SOURCE_DECIBEL_VOLUME ? "\n\t " : "",
|
|
|
|
|
i->flags & PA_SOURCE_DECIBEL_VOLUME ? pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume) : "",
|
2009-01-27 02:45:37 +01:00
|
|
|
pa_cvolume_get_balance(&i->volume, &i->channel_map),
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_volume_snprint(v, sizeof(v), i->base_volume),
|
|
|
|
|
i->flags & PA_SOURCE_DECIBEL_VOLUME ? "\n\t " : "",
|
|
|
|
|
i->flags & PA_SOURCE_DECIBEL_VOLUME ? pa_sw_volume_snprint_dB(vdb, sizeof(vdb), i->base_volume) : "",
|
2008-08-06 18:54:13 +02:00
|
|
|
i->monitor_of_sink_name ? i->monitor_of_sink_name : _("n/a"),
|
2008-05-15 23:34:41 +00:00
|
|
|
(double) i->latency, (double) i->configured_latency,
|
|
|
|
|
i->flags & PA_SOURCE_HARDWARE ? "HARDWARE " : "",
|
|
|
|
|
i->flags & PA_SOURCE_NETWORK ? "NETWORK " : "",
|
|
|
|
|
i->flags & PA_SOURCE_HW_MUTE_CTRL ? "HW_MUTE_CTRL " : "",
|
2006-04-07 23:05:45 +00:00
|
|
|
i->flags & PA_SOURCE_HW_VOLUME_CTRL ? "HW_VOLUME_CTRL " : "",
|
2008-05-15 23:34:41 +00:00
|
|
|
i->flags & PA_SOURCE_DECIBEL_VOLUME ? "DECIBEL_VOLUME " : "",
|
2006-07-16 17:29:09 +00:00
|
|
|
i->flags & PA_SOURCE_LATENCY ? "LATENCY " : "",
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2006-04-07 23:05:45 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(pl);
|
2009-06-17 23:40:46 +02:00
|
|
|
|
|
|
|
|
if (i->ports) {
|
|
|
|
|
pa_source_port_info **p;
|
|
|
|
|
|
|
|
|
|
printf(_("\tPorts:\n"));
|
|
|
|
|
for (p = i->ports; *p; p++)
|
|
|
|
|
printf("\t\t%s: %s (priority. %u)\n", (*p)->name, (*p)->description, (*p)->priority);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i->active_port)
|
|
|
|
|
printf(_("\tActive Port: %s\n"),
|
|
|
|
|
i->active_port->name);
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_module_info_callback(pa_context *c, const pa_module_info *i, int is_last, void *userdata) {
|
2004-09-19 23:12:41 +00:00
|
|
|
char t[32];
|
2009-01-19 23:07:34 +01:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get module information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-08-03 19:26:56 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_snprintf(t, sizeof(t), "%u", i->n_used);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\t\n", i->index, i->name, i->argument ? i->argument : "");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Module #%u\n"
|
|
|
|
|
"\tName: %s\n"
|
|
|
|
|
"\tArgument: %s\n"
|
|
|
|
|
"\tUsage counter: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
|
|
|
|
i->name,
|
2008-03-14 13:32:33 +00:00
|
|
|
i->argument ? i->argument : "",
|
2009-01-19 23:07:34 +01:00
|
|
|
i->n_used != PA_INVALID_INDEX ? t : _("n/a"),
|
|
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
|
|
|
|
|
|
|
|
|
pa_xfree(pl);
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_client_info_callback(pa_context *c, const pa_client_info *i, int is_last, void *userdata) {
|
2006-01-27 16:25:31 +00:00
|
|
|
char t[32];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get client information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_snprintf(t, sizeof(t), "%u", i->owner_module);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\n",
|
|
|
|
|
i->index,
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_PROCESS_BINARY)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Client #%u\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tOwner Module: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->driver),
|
2008-08-06 18:54:13 +02:00
|
|
|
i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
pa_xfree(pl);
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-20 03:25:29 +01:00
|
|
|
static void get_card_info_callback(pa_context *c, const pa_card_info *i, int is_last, void *userdata) {
|
|
|
|
|
char t[32];
|
|
|
|
|
char *pl;
|
|
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get card information: %s"), pa_strerror(pa_context_errno(c)));
|
2009-01-20 03:25:29 +01:00
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2009-01-20 03:25:29 +01:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2009-01-20 03:25:29 +01:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2009-01-20 03:25:29 +01:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_snprintf(t, sizeof(t), "%u", i->owner_module);
|
2009-01-20 03:25:29 +01:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\n", i->index, i->name, pa_strnull(i->driver));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-20 03:25:29 +01:00
|
|
|
printf(_("Card #%u\n"
|
|
|
|
|
"\tName: %s\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tOwner Module: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
|
|
|
|
i->index,
|
|
|
|
|
i->name,
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
|
|
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
|
|
|
|
|
|
|
|
|
if (i->profiles) {
|
|
|
|
|
pa_card_profile_info *p;
|
|
|
|
|
|
|
|
|
|
printf(_("\tProfiles:\n"));
|
|
|
|
|
for (p = i->profiles; p->name; p++)
|
2009-03-03 00:32:10 +01:00
|
|
|
printf("\t\t%s: %s (sinks: %u, sources: %u, priority. %u)\n", p->name, p->description, p->n_sinks, p->n_sources, p->priority);
|
2009-01-20 03:25:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-20 20:33:28 +01:00
|
|
|
if (i->active_profile)
|
|
|
|
|
printf(_("\tActive Profile: %s\n"),
|
|
|
|
|
i->active_profile->name);
|
|
|
|
|
|
2009-01-20 03:25:29 +01:00
|
|
|
pa_xfree(pl);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_sink_input_info_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata) {
|
2009-01-19 23:07:34 +01:00
|
|
|
char t[32], k[32], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get sink input information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_snprintf(t, sizeof(t), "%u", i->owner_module);
|
|
|
|
|
pa_snprintf(k, sizeof(k), "%u", i->client);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%u\t%s\t%s\t%s\n",
|
|
|
|
|
i->index,
|
|
|
|
|
i->sink,
|
|
|
|
|
i->client != PA_INVALID_INDEX ? k : "-",
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Sink Input #%u\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tOwner Module: %s\n"
|
|
|
|
|
"\tClient: %s\n"
|
|
|
|
|
"\tSink: %u\n"
|
|
|
|
|
"\tSample Specification: %s\n"
|
|
|
|
|
"\tChannel Map: %s\n"
|
|
|
|
|
"\tMute: %s\n"
|
|
|
|
|
"\tVolume: %s\n"
|
|
|
|
|
"\t %s\n"
|
|
|
|
|
"\t balance %0.2f\n"
|
|
|
|
|
"\tBuffer Latency: %0.0f usec\n"
|
|
|
|
|
"\tSink Latency: %0.0f usec\n"
|
|
|
|
|
"\tResample method: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->driver),
|
2008-08-06 18:54:13 +02:00
|
|
|
i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
|
|
|
|
|
i->client != PA_INVALID_INDEX ? k : _("n/a"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->sink,
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_yes_no(i->mute),
|
|
|
|
|
pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
|
|
|
|
|
pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume),
|
2009-01-27 02:45:37 +01:00
|
|
|
pa_cvolume_get_balance(&i->volume, &i->channel_map),
|
2004-09-19 23:12:41 +00:00
|
|
|
(double) i->buffer_usec,
|
2004-11-20 16:23:53 +00:00
|
|
|
(double) i->sink_usec,
|
2008-08-06 18:54:13 +02:00
|
|
|
i->resample_method ? i->resample_method : _("n/a"),
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(pl);
|
|
|
|
|
}
|
2004-12-12 22:58:53 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_source_output_info_callback(pa_context *c, const pa_source_output_info *i, int is_last, void *userdata) {
|
2006-01-27 16:25:31 +00:00
|
|
|
char t[32], k[32], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get source output information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_snprintf(t, sizeof(t), "%u", i->owner_module);
|
|
|
|
|
pa_snprintf(k, sizeof(k), "%u", i->client);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%u\t%s\t%s\t%s\n",
|
|
|
|
|
i->index,
|
|
|
|
|
i->source,
|
|
|
|
|
i->client != PA_INVALID_INDEX ? k : "-",
|
|
|
|
|
pa_strnull(i->driver),
|
|
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Source Output #%u\n"
|
|
|
|
|
"\tDriver: %s\n"
|
|
|
|
|
"\tOwner Module: %s\n"
|
|
|
|
|
"\tClient: %s\n"
|
|
|
|
|
"\tSource: %u\n"
|
|
|
|
|
"\tSample Specification: %s\n"
|
|
|
|
|
"\tChannel Map: %s\n"
|
|
|
|
|
"\tBuffer Latency: %0.0f usec\n"
|
|
|
|
|
"\tSource Latency: %0.0f usec\n"
|
|
|
|
|
"\tResample method: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_strnull(i->driver),
|
2008-08-06 18:54:13 +02:00
|
|
|
i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
|
|
|
|
|
i->client != PA_INVALID_INDEX ? k : _("n/a"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->source,
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
|
|
|
|
|
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
|
2004-09-19 23:12:41 +00:00
|
|
|
(double) i->buffer_usec,
|
2004-11-20 16:23:53 +00:00
|
|
|
(double) i->source_usec,
|
2008-08-06 18:54:13 +02:00
|
|
|
i->resample_method ? i->resample_method : _("n/a"),
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
pa_xfree(pl);
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void get_sample_info_callback(pa_context *c, const pa_sample_info *i, int is_last, void *userdata) {
|
2009-09-06 22:33:04 +02:00
|
|
|
char t[PA_BYTES_SNPRINT_MAX], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
2008-05-15 23:34:41 +00:00
|
|
|
char *pl;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to get sample information: %s"), pa_strerror(pa_context_errno(c)));
|
2004-09-19 23:12:41 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last) {
|
|
|
|
|
complete_action();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(i);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (nl && !short_list_format)
|
2004-09-19 23:12:41 +00:00
|
|
|
printf("\n");
|
2009-05-26 00:05:28 +02:00
|
|
|
nl = TRUE;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
pa_bytes_snprint(t, sizeof(t), i->bytes);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-03-26 17:15:43 +01:00
|
|
|
if (short_list_format) {
|
|
|
|
|
printf("%u\t%s\t%s\t%0.3f\n",
|
|
|
|
|
i->index,
|
|
|
|
|
i->name,
|
|
|
|
|
pa_sample_spec_valid(&i->sample_spec) ? pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec) : "-",
|
|
|
|
|
(double) i->duration/1000000.0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 23:07:34 +01:00
|
|
|
printf(_("Sample #%u\n"
|
|
|
|
|
"\tName: %s\n"
|
|
|
|
|
"\tSample Specification: %s\n"
|
|
|
|
|
"\tChannel Map: %s\n"
|
|
|
|
|
"\tVolume: %s\n"
|
|
|
|
|
"\t %s\n"
|
|
|
|
|
"\t balance %0.2f\n"
|
|
|
|
|
"\tDuration: %0.1fs\n"
|
|
|
|
|
"\tSize: %s\n"
|
|
|
|
|
"\tLazy: %s\n"
|
|
|
|
|
"\tFilename: %s\n"
|
|
|
|
|
"\tProperties:\n\t\t%s\n"),
|
2004-09-19 23:12:41 +00:00
|
|
|
i->index,
|
|
|
|
|
i->name,
|
2008-08-06 18:54:13 +02:00
|
|
|
pa_sample_spec_valid(&i->sample_spec) ? pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec) : _("n/a"),
|
|
|
|
|
pa_sample_spec_valid(&i->sample_spec) ? pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map) : _("n/a"),
|
2009-01-19 23:07:34 +01:00
|
|
|
pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
|
|
|
|
|
pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume),
|
2009-01-27 02:45:37 +01:00
|
|
|
pa_cvolume_get_balance(&i->volume, &i->channel_map),
|
2009-01-19 23:07:34 +01:00
|
|
|
(double) i->duration/1000000.0,
|
2004-09-19 23:12:41 +00:00
|
|
|
t,
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_yes_no(i->lazy),
|
2008-08-06 18:54:13 +02:00
|
|
|
i->filename ? i->filename : _("n/a"),
|
2009-01-19 23:07:34 +01:00
|
|
|
pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
pa_xfree(pl);
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void simple_callback(pa_context *c, int success, void *userdata) {
|
2004-08-03 19:26:56 +00:00
|
|
|
if (!success) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failure: %s"), pa_strerror(pa_context_errno(c)));
|
2004-08-03 19:26:56 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
complete_action();
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static void index_callback(pa_context *c, uint32_t idx, void *userdata) {
|
|
|
|
|
if (idx == PA_INVALID_INDEX) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failure: %s"), pa_strerror(pa_context_errno(c)));
|
2007-10-28 19:13:50 +00:00
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("%u\n", idx);
|
|
|
|
|
|
|
|
|
|
complete_action();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
static void volume_relative_adjust(pa_cvolume *cv) {
|
|
|
|
|
pa_assert((volume_flags & VOL_RELATIVE) == VOL_RELATIVE);
|
|
|
|
|
|
|
|
|
|
/* Relative volume change is additive in case of UINT or PERCENT
|
|
|
|
|
* and multiplicative for LINEAR or DECIBEL */
|
|
|
|
|
if ((volume_flags & 0x0F) == VOL_UINT || (volume_flags & 0x0F) == VOL_PERCENT) {
|
|
|
|
|
pa_volume_t v = pa_cvolume_avg(cv);
|
|
|
|
|
v = v + volume < PA_VOLUME_NORM ? PA_VOLUME_MUTED : v + volume - PA_VOLUME_NORM;
|
|
|
|
|
pa_cvolume_set(cv, 1, v);
|
|
|
|
|
}
|
|
|
|
|
if ((volume_flags & 0x0F) == VOL_LINEAR || (volume_flags & 0x0F) == VOL_DECIBEL) {
|
|
|
|
|
pa_sw_cvolume_multiply_scalar(cv, cv, volume);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void get_sink_volume_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata) {
|
|
|
|
|
pa_cvolume cv;
|
|
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
|
|
|
|
pa_log(_("Failed to get sink information: %s"), pa_strerror(pa_context_errno(c)));
|
|
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pa_assert(i);
|
|
|
|
|
|
|
|
|
|
cv = i->volume;
|
|
|
|
|
volume_relative_adjust(&cv);
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_volume_by_name(c, sink_name, &cv, simple_callback, NULL));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void get_source_volume_callback(pa_context *c, const pa_source_info *i, int is_last, void *userdata) {
|
|
|
|
|
pa_cvolume cv;
|
|
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
|
|
|
|
pa_log(_("Failed to get source information: %s"), pa_strerror(pa_context_errno(c)));
|
|
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pa_assert(i);
|
|
|
|
|
|
|
|
|
|
cv = i->volume;
|
|
|
|
|
volume_relative_adjust(&cv);
|
|
|
|
|
pa_operation_unref(pa_context_set_source_volume_by_name(c, source_name, &cv, simple_callback, NULL));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void get_sink_input_volume_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata) {
|
|
|
|
|
pa_cvolume cv;
|
|
|
|
|
|
|
|
|
|
if (is_last < 0) {
|
|
|
|
|
pa_log(_("Failed to get sink input information: %s"), pa_strerror(pa_context_errno(c)));
|
|
|
|
|
quit(1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_last)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pa_assert(i);
|
|
|
|
|
|
|
|
|
|
cv = i->volume;
|
|
|
|
|
volume_relative_adjust(&cv);
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_input_volume(c, sink_input_idx, &cv, simple_callback, NULL));
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void stream_state_callback(pa_stream *s, void *userdata) {
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(s);
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
switch (pa_stream_get_state(s)) {
|
|
|
|
|
case PA_STREAM_CREATING:
|
|
|
|
|
case PA_STREAM_READY:
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
case PA_STREAM_TERMINATED:
|
|
|
|
|
drain();
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
case PA_STREAM_FAILED:
|
|
|
|
|
default:
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to upload sample: %s"), pa_strerror(pa_context_errno(pa_stream_get_context(s))));
|
2004-08-14 20:25:32 +00:00
|
|
|
quit(1);
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void stream_write_callback(pa_stream *s, size_t length, void *userdata) {
|
2004-08-03 19:26:56 +00:00
|
|
|
sf_count_t l;
|
|
|
|
|
float *d;
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(s && length && sndfile);
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2006-05-17 19:26:54 +00:00
|
|
|
d = pa_xmalloc(length);
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(sample_length >= length);
|
2008-08-19 22:39:54 +02:00
|
|
|
l = (sf_count_t) (length/pa_frame_size(&sample_spec));
|
2004-08-03 19:26:56 +00:00
|
|
|
|
|
|
|
|
if ((sf_readf_float(sndfile, d, l)) != l) {
|
2006-05-17 19:26:54 +00:00
|
|
|
pa_xfree(d);
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Premature end of file"));
|
2004-08-03 19:26:56 +00:00
|
|
|
quit(1);
|
2009-02-17 20:52:11 +02:00
|
|
|
return;
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-05-17 19:26:54 +00:00
|
|
|
pa_stream_write(s, d, length, pa_xfree, 0, PA_SEEK_RELATIVE);
|
2004-08-03 19:26:56 +00:00
|
|
|
|
|
|
|
|
sample_length -= length;
|
|
|
|
|
|
2011-03-12 19:45:02 +01:00
|
|
|
if (sample_length <= 0) {
|
2004-08-03 19:26:56 +00:00
|
|
|
pa_stream_set_write_callback(sample_stream, NULL, NULL);
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_finish_upload(sample_stream);
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-21 17:39:47 +01:00
|
|
|
static const char *subscription_event_type_to_string(pa_subscription_event_type_t t) {
|
|
|
|
|
|
|
|
|
|
switch (t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) {
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_NEW:
|
|
|
|
|
return _("new");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_CHANGE:
|
|
|
|
|
return _("change");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_REMOVE:
|
|
|
|
|
return _("remove");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _("unknown");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char *subscription_event_facility_to_string(pa_subscription_event_type_t t) {
|
|
|
|
|
|
|
|
|
|
switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) {
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SINK:
|
|
|
|
|
return _("sink");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SOURCE:
|
|
|
|
|
return _("source");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
|
|
|
|
|
return _("sink-input");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT:
|
|
|
|
|
return _("source-output");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_MODULE:
|
|
|
|
|
return _("module");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_CLIENT:
|
|
|
|
|
return _("client");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE:
|
|
|
|
|
return _("sample-cache");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SERVER:
|
|
|
|
|
return _("server");
|
|
|
|
|
|
|
|
|
|
case PA_SUBSCRIPTION_EVENT_CARD:
|
|
|
|
|
return _("server");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _("unknown");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void context_subscribe_callback(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
printf(_("Event '%s' on %s #%u\n"),
|
|
|
|
|
subscription_event_type_to_string(t),
|
|
|
|
|
subscription_event_facility_to_string(t),
|
|
|
|
|
idx);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void context_state_callback(pa_context *c, void *userdata) {
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(c);
|
2004-08-14 20:25:32 +00:00
|
|
|
switch (pa_context_get_state(c)) {
|
|
|
|
|
case PA_CONTEXT_CONNECTING:
|
|
|
|
|
case PA_CONTEXT_AUTHORIZING:
|
|
|
|
|
case PA_CONTEXT_SETTING_NAME:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PA_CONTEXT_READY:
|
2004-09-19 23:12:41 +00:00
|
|
|
switch (action) {
|
|
|
|
|
case STAT:
|
|
|
|
|
pa_operation_unref(pa_context_stat(c, stat_callback, NULL));
|
2011-03-26 17:15:42 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case INFO:
|
2004-09-19 23:12:41 +00:00
|
|
|
pa_operation_unref(pa_context_get_server_info(c, get_server_info_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
case PLAY_SAMPLE:
|
2009-08-31 21:42:54 +02:00
|
|
|
pa_operation_unref(pa_context_play_sample(c, sample_name, sink_name, PA_VOLUME_NORM, simple_callback, NULL));
|
2004-09-19 23:12:41 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case REMOVE_SAMPLE:
|
|
|
|
|
pa_operation_unref(pa_context_remove_sample(c, sample_name, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case UPLOAD_SAMPLE:
|
2006-01-27 16:25:31 +00:00
|
|
|
sample_stream = pa_stream_new(c, sample_name, &sample_spec, NULL);
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert(sample_stream);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
pa_stream_set_state_callback(sample_stream, stream_state_callback, NULL);
|
|
|
|
|
pa_stream_set_write_callback(sample_stream, stream_write_callback, NULL);
|
|
|
|
|
pa_stream_connect_upload(sample_stream, sample_length);
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
case EXIT:
|
2008-08-06 19:39:12 +02:00
|
|
|
pa_operation_unref(pa_context_exit_daemon(c, simple_callback, NULL));
|
|
|
|
|
break;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
case LIST:
|
2011-03-26 17:15:41 +01:00
|
|
|
if (list_type) {
|
|
|
|
|
if (pa_streq(list_type, "modules"))
|
|
|
|
|
pa_operation_unref(pa_context_get_module_info_list(c, get_module_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "sinks"))
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_info_list(c, get_sink_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "sources"))
|
|
|
|
|
pa_operation_unref(pa_context_get_source_info_list(c, get_source_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "sink-inputs"))
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_input_info_list(c, get_sink_input_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "source-outputs"))
|
|
|
|
|
pa_operation_unref(pa_context_get_source_output_info_list(c, get_source_output_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "clients"))
|
|
|
|
|
pa_operation_unref(pa_context_get_client_info_list(c, get_client_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "samples"))
|
|
|
|
|
pa_operation_unref(pa_context_get_sample_info_list(c, get_sample_info_callback, NULL));
|
|
|
|
|
else if (pa_streq(list_type, "cards"))
|
|
|
|
|
pa_operation_unref(pa_context_get_card_info_list(c, get_card_info_callback, NULL));
|
|
|
|
|
else
|
|
|
|
|
pa_assert_not_reached();
|
|
|
|
|
} else {
|
|
|
|
|
actions = 8;
|
|
|
|
|
pa_operation_unref(pa_context_get_module_info_list(c, get_module_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_info_list(c, get_sink_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_source_info_list(c, get_source_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_input_info_list(c, get_sink_input_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_source_output_info_list(c, get_source_output_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_client_info_list(c, get_client_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_sample_info_list(c, get_sample_info_callback, NULL));
|
|
|
|
|
pa_operation_unref(pa_context_get_card_info_list(c, get_card_info_callback, NULL));
|
|
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
break;
|
|
|
|
|
|
2006-07-31 21:55:42 +00:00
|
|
|
case MOVE_SINK_INPUT:
|
|
|
|
|
pa_operation_unref(pa_context_move_sink_input_by_name(c, sink_input_idx, sink_name, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2006-08-03 22:33:54 +00:00
|
|
|
case MOVE_SOURCE_OUTPUT:
|
|
|
|
|
pa_operation_unref(pa_context_move_source_output_by_name(c, source_output_idx, source_name, simple_callback, NULL));
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
case LOAD_MODULE:
|
|
|
|
|
pa_operation_unref(pa_context_load_module(c, module_name, module_args, index_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case UNLOAD_MODULE:
|
|
|
|
|
pa_operation_unref(pa_context_unload_module(c, module_index, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SUSPEND_SINK:
|
|
|
|
|
if (sink_name)
|
|
|
|
|
pa_operation_unref(pa_context_suspend_sink_by_name(c, sink_name, suspend, simple_callback, NULL));
|
|
|
|
|
else
|
|
|
|
|
pa_operation_unref(pa_context_suspend_sink_by_index(c, PA_INVALID_INDEX, suspend, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SUSPEND_SOURCE:
|
|
|
|
|
if (source_name)
|
|
|
|
|
pa_operation_unref(pa_context_suspend_source_by_name(c, source_name, suspend, simple_callback, NULL));
|
|
|
|
|
else
|
|
|
|
|
pa_operation_unref(pa_context_suspend_source_by_index(c, PA_INVALID_INDEX, suspend, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2009-01-21 03:04:19 +01:00
|
|
|
case SET_CARD_PROFILE:
|
|
|
|
|
pa_operation_unref(pa_context_set_card_profile_by_name(c, card_name, profile_name, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2009-06-17 04:54:39 +02:00
|
|
|
case SET_SINK_PORT:
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_port_by_name(c, sink_name, port_name, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SET_SOURCE_PORT:
|
|
|
|
|
pa_operation_unref(pa_context_set_source_port_by_name(c, source_name, port_name, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2009-08-31 21:42:54 +02:00
|
|
|
case SET_SINK_MUTE:
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_mute_by_name(c, sink_name, mute, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SET_SOURCE_MUTE:
|
|
|
|
|
pa_operation_unref(pa_context_set_source_mute_by_name(c, source_name, mute, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SET_SINK_INPUT_MUTE:
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_input_mute(c, sink_input_idx, mute, simple_callback, NULL));
|
|
|
|
|
break;
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
case SET_SINK_VOLUME:
|
|
|
|
|
if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_info_by_name(c, sink_name, get_sink_volume_callback, NULL));
|
|
|
|
|
} else {
|
|
|
|
|
pa_cvolume v;
|
|
|
|
|
pa_cvolume_set(&v, 1, volume);
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_volume_by_name(c, sink_name, &v, simple_callback, NULL));
|
|
|
|
|
}
|
2009-08-31 21:42:54 +02:00
|
|
|
break;
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
case SET_SOURCE_VOLUME:
|
|
|
|
|
if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
|
|
|
|
|
pa_operation_unref(pa_context_get_source_info_by_name(c, source_name, get_source_volume_callback, NULL));
|
|
|
|
|
} else {
|
|
|
|
|
pa_cvolume v;
|
|
|
|
|
pa_cvolume_set(&v, 1, volume);
|
|
|
|
|
pa_operation_unref(pa_context_set_source_volume_by_name(c, source_name, &v, simple_callback, NULL));
|
|
|
|
|
}
|
2009-08-31 21:42:54 +02:00
|
|
|
break;
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
case SET_SINK_INPUT_VOLUME:
|
|
|
|
|
if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
|
|
|
|
|
pa_operation_unref(pa_context_get_sink_input_info(c, sink_input_idx, get_sink_input_volume_callback, NULL));
|
|
|
|
|
} else {
|
|
|
|
|
pa_cvolume v;
|
|
|
|
|
pa_cvolume_set(&v, 1, volume);
|
|
|
|
|
pa_operation_unref(pa_context_set_sink_input_volume(c, sink_input_idx, &v, simple_callback, NULL));
|
|
|
|
|
}
|
2009-08-31 21:42:54 +02:00
|
|
|
break;
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
case SUBSCRIBE:
|
|
|
|
|
pa_context_set_subscribe_callback(c, context_subscribe_callback, NULL);
|
2010-02-21 17:39:47 +01:00
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
pa_operation_unref(pa_context_subscribe(
|
2010-02-21 17:39:47 +01:00
|
|
|
c,
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SINK|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SOURCE|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SINK_INPUT|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_MODULE|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_CLIENT|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SAMPLE_CACHE|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_SERVER|
|
|
|
|
|
PA_SUBSCRIPTION_MASK_CARD,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL));
|
2011-03-26 17:15:40 +01:00
|
|
|
break;
|
2010-02-21 17:39:47 +01:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
default:
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert_not_reached();
|
2004-08-14 20:25:32 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
case PA_CONTEXT_TERMINATED:
|
|
|
|
|
quit(0);
|
|
|
|
|
break;
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
case PA_CONTEXT_FAILED:
|
|
|
|
|
default:
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Connection failure: %s"), pa_strerror(pa_context_errno(c)));
|
2004-08-14 20:25:32 +00:00
|
|
|
quit(1);
|
2004-07-15 20:51:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void exit_signal_callback(pa_mainloop_api *m, pa_signal_event *e, int sig, void *userdata) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Got SIGINT, exiting."));
|
2004-07-15 20:51:55 +00:00
|
|
|
quit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
static int parse_volume(const char *vol_spec, pa_volume_t *vol, enum volume_flags *vol_flags) {
|
|
|
|
|
double v;
|
|
|
|
|
char *vs;
|
|
|
|
|
|
|
|
|
|
pa_assert(vol_spec);
|
|
|
|
|
pa_assert(vol);
|
|
|
|
|
pa_assert(vol_flags);
|
|
|
|
|
|
|
|
|
|
vs = pa_xstrdup(vol_spec);
|
|
|
|
|
|
|
|
|
|
*vol_flags = (pa_startswith(vs, "+") || pa_startswith(vs, "-")) ? VOL_RELATIVE : VOL_ABSOLUTE;
|
|
|
|
|
if (strchr(vs, '.'))
|
|
|
|
|
*vol_flags |= VOL_LINEAR;
|
|
|
|
|
if (pa_endswith(vs, "%")) {
|
|
|
|
|
*vol_flags |= VOL_PERCENT;
|
|
|
|
|
vs[strlen(vs)-1] = 0;
|
|
|
|
|
}
|
|
|
|
|
if (pa_endswith(vs, "db") || pa_endswith(vs, "dB")) {
|
|
|
|
|
*vol_flags |= VOL_DECIBEL;
|
|
|
|
|
vs[strlen(vs)-2] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_atod(vs, &v) < 0) {
|
|
|
|
|
pa_log(_("Invalid volume specification"));
|
|
|
|
|
pa_xfree(vs);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(vs);
|
|
|
|
|
|
|
|
|
|
if ((*vol_flags & VOL_RELATIVE) == VOL_RELATIVE) {
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_UINT)
|
|
|
|
|
v += (double) PA_VOLUME_NORM;
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_PERCENT)
|
|
|
|
|
v += 100.0;
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_LINEAR)
|
|
|
|
|
v += 1.0;
|
|
|
|
|
}
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_PERCENT)
|
|
|
|
|
v = v * (double) PA_VOLUME_NORM / 100;
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_LINEAR)
|
|
|
|
|
v = pa_sw_volume_from_linear(v);
|
|
|
|
|
if ((*vol_flags & 0x0F) == VOL_DECIBEL)
|
|
|
|
|
v = pa_sw_volume_from_dB(v);
|
|
|
|
|
|
|
|
|
|
if (!PA_VOLUME_IS_VALID((pa_volume_t) v)) {
|
|
|
|
|
pa_log(_("Volume outside permissible range.\n"));
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*vol = (pa_volume_t) v;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
static void help(const char *argv0) {
|
|
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("%s [options] stat\n"
|
2011-03-26 17:15:42 +01:00
|
|
|
"%s [options] info\n"
|
2011-03-26 17:15:43 +01:00
|
|
|
"%s [options] list [short] [TYPE]\n"
|
2009-01-21 03:04:19 +01:00
|
|
|
"%s [options] exit\n"
|
|
|
|
|
"%s [options] upload-sample FILENAME [NAME]\n"
|
|
|
|
|
"%s [options] play-sample NAME [SINK]\n"
|
|
|
|
|
"%s [options] remove-sample NAME\n"
|
2009-08-31 21:42:54 +02:00
|
|
|
"%s [options] move-sink-input SINKINPUT SINK\n"
|
|
|
|
|
"%s [options] move-source-output SOURCEOUTPUT SOURCE\n"
|
2009-01-21 03:04:19 +01:00
|
|
|
"%s [options] load-module NAME [ARGS ...]\n"
|
2009-08-31 21:42:54 +02:00
|
|
|
"%s [options] unload-module MODULE\n"
|
|
|
|
|
"%s [options] suspend-sink SINK 1|0\n"
|
|
|
|
|
"%s [options] suspend-source SOURCE 1|0\n"
|
|
|
|
|
"%s [options] set-card-profile CARD PROFILE\n"
|
|
|
|
|
"%s [options] set-sink-port SINK PORT\n"
|
|
|
|
|
"%s [options] set-source-port SOURCE PORT\n"
|
|
|
|
|
"%s [options] set-sink-volume SINK VOLUME\n"
|
|
|
|
|
"%s [options] set-source-volume SOURCE VOLUME\n"
|
|
|
|
|
"%s [options] set-sink-input-volume SINKINPUT VOLUME\n"
|
|
|
|
|
"%s [options] set-sink-mute SINK 1|0\n"
|
|
|
|
|
"%s [options] set-source-mute SOURCE 1|0\n"
|
2010-02-21 17:39:47 +01:00
|
|
|
"%s [options] set-sink-input-mute SINKINPUT 1|0\n"
|
|
|
|
|
"%s [options] subscribe\n\n"
|
2009-01-21 03:04:19 +01:00
|
|
|
" -h, --help Show this help\n"
|
|
|
|
|
" --version Show version\n\n"
|
|
|
|
|
" -s, --server=SERVER The name of the server to connect to\n"
|
|
|
|
|
" -n, --client-name=NAME How to call this client on the server\n"),
|
2009-08-31 21:42:54 +02:00
|
|
|
argv0, argv0, argv0, argv0, argv0,
|
|
|
|
|
argv0, argv0, argv0, argv0, argv0,
|
|
|
|
|
argv0, argv0, argv0, argv0, argv0,
|
|
|
|
|
argv0, argv0, argv0, argv0, argv0,
|
2011-03-26 17:15:42 +01:00
|
|
|
argv0, argv0, argv0);
|
2004-09-19 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
enum {
|
|
|
|
|
ARG_VERSION = 256
|
|
|
|
|
};
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2004-07-15 20:51:55 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2011-03-26 17:15:41 +01:00
|
|
|
pa_mainloop *m = NULL;
|
2009-05-26 00:05:28 +02:00
|
|
|
int ret = 1, c;
|
|
|
|
|
char *server = NULL, *bn;
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
static const struct option long_options[] = {
|
|
|
|
|
{"server", 1, NULL, 's'},
|
|
|
|
|
{"client-name", 1, NULL, 'n'},
|
|
|
|
|
{"version", 0, NULL, ARG_VERSION},
|
|
|
|
|
{"help", 0, NULL, 'h'},
|
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
|
};
|
|
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
bindtextdomain(GETTEXT_PACKAGE, PULSE_LOCALEDIR);
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
bn = pa_path_get_filename(argv[0]);
|
|
|
|
|
|
|
|
|
|
proplist = pa_proplist_new();
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
while ((c = getopt_long(argc, argv, "s:n:h", long_options, NULL)) != -1) {
|
|
|
|
|
switch (c) {
|
|
|
|
|
case 'h' :
|
|
|
|
|
help(bn);
|
|
|
|
|
ret = 0;
|
|
|
|
|
goto quit;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
case ARG_VERSION:
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("pactl %s\n"
|
|
|
|
|
"Compiled with libpulse %s\n"
|
|
|
|
|
"Linked with libpulse %s\n"),
|
|
|
|
|
PACKAGE_VERSION,
|
|
|
|
|
pa_get_headers_version(),
|
|
|
|
|
pa_get_library_version());
|
2004-09-19 23:12:41 +00:00
|
|
|
ret = 0;
|
|
|
|
|
goto quit;
|
|
|
|
|
|
|
|
|
|
case 's':
|
2006-05-17 19:26:54 +00:00
|
|
|
pa_xfree(server);
|
|
|
|
|
server = pa_xstrdup(optarg);
|
2004-09-19 23:12:41 +00:00
|
|
|
break;
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
case 'n': {
|
|
|
|
|
char *t;
|
|
|
|
|
|
|
|
|
|
if (!(t = pa_locale_to_utf8(optarg)) ||
|
|
|
|
|
pa_proplist_sets(proplist, PA_PROP_APPLICATION_NAME, t) < 0) {
|
|
|
|
|
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Invalid client name '%s'"), t ? t : optarg);
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_xfree(t);
|
|
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(t);
|
2004-09-19 23:12:41 +00:00
|
|
|
break;
|
2009-05-26 00:05:28 +02:00
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (optind < argc) {
|
2009-05-26 00:05:28 +02:00
|
|
|
if (pa_streq(argv[optind], "stat"))
|
2004-07-15 20:51:55 +00:00
|
|
|
action = STAT;
|
2011-03-26 17:15:41 +01:00
|
|
|
|
2011-03-26 17:15:42 +01:00
|
|
|
else if (pa_streq(argv[optind], "info"))
|
|
|
|
|
action = INFO;
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
else if (pa_streq(argv[optind], "exit"))
|
2004-07-15 20:51:55 +00:00
|
|
|
action = EXIT;
|
2011-03-26 17:15:41 +01:00
|
|
|
|
|
|
|
|
else if (pa_streq(argv[optind], "list")) {
|
2004-09-19 23:12:41 +00:00
|
|
|
action = LIST;
|
2011-03-26 17:15:41 +01:00
|
|
|
|
|
|
|
|
for (int i = optind+1; i < argc; i++){
|
|
|
|
|
if (pa_streq(argv[i], "modules") || pa_streq(argv[i], "clients") ||
|
|
|
|
|
pa_streq(argv[i], "sinks") || pa_streq(argv[i], "sink-inputs") ||
|
|
|
|
|
pa_streq(argv[i], "sources") || pa_streq(argv[i], "source-outputs") ||
|
|
|
|
|
pa_streq(argv[i], "samples") || pa_streq(argv[i], "cards")) {
|
|
|
|
|
list_type = pa_xstrdup(argv[i]);
|
2011-03-26 17:15:43 +01:00
|
|
|
} else if (pa_streq(argv[i], "short")) {
|
|
|
|
|
short_list_format = TRUE;
|
2011-03-26 17:15:41 +01:00
|
|
|
} else {
|
|
|
|
|
pa_log(_("Specify nothing, or one of: %s"), "modules, sinks, sources, sink-inputs, source-outputs, clients, samples, cards");
|
|
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "upload-sample")) {
|
2009-05-26 00:05:28 +02:00
|
|
|
struct SF_INFO sfi;
|
2004-08-03 19:26:56 +00:00
|
|
|
action = UPLOAD_SAMPLE;
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (optind+1 >= argc) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Please specify a sample file to load"));
|
2004-08-03 19:26:56 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 23:12:41 +00:00
|
|
|
if (optind+2 < argc)
|
2006-05-17 19:26:54 +00:00
|
|
|
sample_name = pa_xstrdup(argv[optind+2]);
|
2004-08-03 19:26:56 +00:00
|
|
|
else {
|
2009-06-04 23:19:48 +02:00
|
|
|
char *f = pa_path_get_filename(argv[optind+1]);
|
|
|
|
|
sample_name = pa_xstrndup(f, strcspn(f, "."));
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_zero(sfi);
|
|
|
|
|
if (!(sndfile = sf_open(argv[optind+1], SFM_READ, &sfi))) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to open sound file."));
|
2004-08-03 19:26:56 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
if (pa_sndfile_read_sample_spec(sndfile, &sample_spec) < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Failed to determine sample specification from file."));
|
2009-05-26 00:05:28 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
2008-08-19 22:39:54 +02:00
|
|
|
sample_spec.format = PA_SAMPLE_FLOAT32;
|
2004-08-03 19:26:56 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
if (pa_sndfile_read_channel_map(sndfile, &channel_map) < 0) {
|
|
|
|
|
if (sample_spec.channels > 2)
|
2011-03-26 17:15:41 +01:00
|
|
|
pa_log(_("Warning: Failed to determine sample specification from file."));
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_channel_map_init_extend(&channel_map, sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_assert(pa_channel_map_compatible(&channel_map, &sample_spec));
|
|
|
|
|
sample_length = (size_t) sfi.frames*pa_frame_size(&sample_spec);
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "play-sample")) {
|
2004-08-03 19:26:56 +00:00
|
|
|
action = PLAY_SAMPLE;
|
2007-10-28 19:13:50 +00:00
|
|
|
if (argc != optind+2 && argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sample name to play"));
|
2004-08-03 19:26:56 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2006-05-17 19:26:54 +00:00
|
|
|
sample_name = pa_xstrdup(argv[optind+1]);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
|
|
|
|
if (optind+2 < argc)
|
2009-08-31 21:42:54 +02:00
|
|
|
sink_name = pa_xstrdup(argv[optind+2]);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
} else if (pa_streq(argv[optind], "remove-sample")) {
|
2004-08-03 19:26:56 +00:00
|
|
|
action = REMOVE_SAMPLE;
|
2007-10-28 19:13:50 +00:00
|
|
|
if (argc != optind+2) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sample name to remove"));
|
2004-08-03 19:26:56 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2006-05-17 19:26:54 +00:00
|
|
|
sample_name = pa_xstrdup(argv[optind+1]);
|
2009-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "move-sink-input")) {
|
2006-07-31 21:55:42 +00:00
|
|
|
action = MOVE_SINK_INPUT;
|
2007-10-28 19:13:50 +00:00
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink input index and a sink"));
|
2006-07-31 21:55:42 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-19 22:39:54 +02:00
|
|
|
sink_input_idx = (uint32_t) atoi(argv[optind+1]);
|
2006-07-31 21:55:42 +00:00
|
|
|
sink_name = pa_xstrdup(argv[optind+2]);
|
2009-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "move-source-output")) {
|
2006-08-03 22:33:54 +00:00
|
|
|
action = MOVE_SOURCE_OUTPUT;
|
2007-10-28 19:13:50 +00:00
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a source output index and a source"));
|
2006-08-03 22:33:54 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-19 22:39:54 +02:00
|
|
|
source_output_idx = (uint32_t) atoi(argv[optind+1]);
|
2006-08-03 22:33:54 +00:00
|
|
|
source_name = pa_xstrdup(argv[optind+2]);
|
2009-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "load-module")) {
|
2007-10-28 19:13:50 +00:00
|
|
|
int i;
|
|
|
|
|
size_t n = 0;
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
action = LOAD_MODULE;
|
|
|
|
|
|
|
|
|
|
if (argc <= optind+1) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a module name and arguments."));
|
2007-10-28 19:13:50 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module_name = argv[optind+1];
|
|
|
|
|
|
|
|
|
|
for (i = optind+2; i < argc; i++)
|
|
|
|
|
n += strlen(argv[i])+1;
|
|
|
|
|
|
|
|
|
|
if (n > 0) {
|
2008-08-19 22:39:54 +02:00
|
|
|
p = module_args = pa_xmalloc(n);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
for (i = optind+2; i < argc; i++)
|
|
|
|
|
p += sprintf(p, "%s%s", p == module_args ? "" : " ", argv[i]);
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
} else if (pa_streq(argv[optind], "unload-module")) {
|
2007-10-28 19:13:50 +00:00
|
|
|
action = UNLOAD_MODULE;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+2) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a module index"));
|
2007-10-28 19:13:50 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-19 22:39:54 +02:00
|
|
|
module_index = (uint32_t) atoi(argv[optind+1]);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
} else if (pa_streq(argv[optind], "suspend-sink")) {
|
2007-10-28 19:13:50 +00:00
|
|
|
action = SUSPEND_SINK;
|
|
|
|
|
|
|
|
|
|
if (argc > optind+3 || optind+1 >= argc) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You may not specify more than one sink. You have to specify a boolean value."));
|
2007-10-28 19:13:50 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-08 22:42:33 +00:00
|
|
|
suspend = pa_parse_boolean(argv[argc-1]);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
if (argc > optind+2)
|
|
|
|
|
sink_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
} else if (pa_streq(argv[optind], "suspend-source")) {
|
2007-10-28 19:13:50 +00:00
|
|
|
action = SUSPEND_SOURCE;
|
|
|
|
|
|
|
|
|
|
if (argc > optind+3 || optind+1 >= argc) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You may not specify more than one source. You have to specify a boolean value."));
|
2007-10-28 19:13:50 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-08 22:42:33 +00:00
|
|
|
suspend = pa_parse_boolean(argv[argc-1]);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
if (argc > optind+2)
|
|
|
|
|
source_name = pa_xstrdup(argv[optind+1]);
|
2009-05-26 00:05:28 +02:00
|
|
|
} else if (pa_streq(argv[optind], "set-card-profile")) {
|
2009-01-21 03:04:19 +01:00
|
|
|
action = SET_CARD_PROFILE;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a card name/index and a profile name"));
|
2009-01-21 03:04:19 +01:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
card_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
profile_name = pa_xstrdup(argv[optind+2]);
|
|
|
|
|
|
2009-06-17 04:54:39 +02:00
|
|
|
} else if (pa_streq(argv[optind], "set-sink-port")) {
|
|
|
|
|
action = SET_SINK_PORT;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink name/index and a port name"));
|
2009-06-17 04:54:39 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sink_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
port_name = pa_xstrdup(argv[optind+2]);
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-source-port")) {
|
|
|
|
|
action = SET_SOURCE_PORT;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a source name/index and a port name"));
|
2009-06-17 04:54:39 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
source_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
port_name = pa_xstrdup(argv[optind+2]);
|
|
|
|
|
|
2009-08-31 21:42:54 +02:00
|
|
|
} else if (pa_streq(argv[optind], "set-sink-volume")) {
|
|
|
|
|
action = SET_SINK_VOLUME;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink name/index and a volume"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
sink_name = pa_xstrdup(argv[optind+1]);
|
2009-08-31 21:42:54 +02:00
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
|
2010-10-09 23:11:26 +05:30
|
|
|
goto quit;
|
2009-08-31 21:42:54 +02:00
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-source-volume")) {
|
|
|
|
|
action = SET_SOURCE_VOLUME;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a source name/index and a volume"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
source_name = pa_xstrdup(argv[optind+1]);
|
2009-08-31 21:42:54 +02:00
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
|
2010-10-09 23:11:26 +05:30
|
|
|
goto quit;
|
2009-08-31 21:42:54 +02:00
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-sink-input-volume")) {
|
|
|
|
|
action = SET_SINK_INPUT_VOLUME;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink input index and a volume"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_atou(argv[optind+1], &sink_input_idx) < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Invalid sink input index"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 17:15:40 +01:00
|
|
|
if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-sink-mute")) {
|
|
|
|
|
int b;
|
|
|
|
|
action = SET_SINK_MUTE;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink name/index and a mute boolean"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((b = pa_parse_boolean(argv[optind+2])) < 0) {
|
2011-03-26 17:15:40 +01:00
|
|
|
pa_log(_("Invalid mute specification"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sink_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
mute = b;
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-source-mute")) {
|
|
|
|
|
int b;
|
|
|
|
|
action = SET_SOURCE_MUTE;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a source name/index and a mute boolean"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((b = pa_parse_boolean(argv[optind+2])) < 0) {
|
2011-03-26 17:15:40 +01:00
|
|
|
pa_log(_("Invalid mute specification"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
source_name = pa_xstrdup(argv[optind+1]);
|
|
|
|
|
mute = b;
|
|
|
|
|
|
|
|
|
|
} else if (pa_streq(argv[optind], "set-sink-input-mute")) {
|
|
|
|
|
int b;
|
|
|
|
|
action = SET_SINK_INPUT_MUTE;
|
|
|
|
|
|
|
|
|
|
if (argc != optind+3) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("You have to specify a sink input index and a mute boolean"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_atou(argv[optind+1], &sink_input_idx) < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("Invalid sink input index specification"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((b = pa_parse_boolean(argv[optind+2])) < 0) {
|
2011-03-26 17:15:40 +01:00
|
|
|
pa_log(_("Invalid mute specification"));
|
2009-08-31 21:42:54 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mute = b;
|
|
|
|
|
|
2010-02-21 17:39:47 +01:00
|
|
|
} else if (pa_streq(argv[optind], "subscribe"))
|
|
|
|
|
|
|
|
|
|
action = SUBSCRIBE;
|
|
|
|
|
|
|
|
|
|
else if (pa_streq(argv[optind], "help")) {
|
2008-05-15 23:34:41 +00:00
|
|
|
help(bn);
|
|
|
|
|
ret = 0;
|
|
|
|
|
goto quit;
|
2004-08-03 19:26:56 +00:00
|
|
|
}
|
2004-07-15 20:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (action == NONE) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("No valid command specified."));
|
2004-07-15 20:51:55 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!(m = pa_mainloop_new())) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("pa_mainloop_new() failed."));
|
2004-07-15 20:51:55 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mainloop_api = pa_mainloop_get_api(m);
|
|
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_assert_se(pa_signal_init(mainloop_api) == 0);
|
2004-08-05 19:53:57 +00:00
|
|
|
pa_signal_new(SIGINT, exit_signal_callback, NULL);
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_signal_new(SIGTERM, exit_signal_callback, NULL);
|
|
|
|
|
pa_disable_sigpipe();
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
if (!(context = pa_context_new_with_proplist(mainloop_api, NULL, proplist))) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("pa_context_new() failed."));
|
2004-07-15 20:51:55 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_context_set_state_callback(context, context_state_callback, NULL);
|
2009-02-17 20:31:06 +02:00
|
|
|
if (pa_context_connect(context, server, 0, NULL) < 0) {
|
2009-05-26 00:05:28 +02:00
|
|
|
pa_log(_("pa_context_connect() failed: %s"), pa_strerror(pa_context_errno(context)));
|
2009-02-17 20:31:06 +02:00
|
|
|
goto quit;
|
|
|
|
|
}
|
2004-07-15 20:51:55 +00:00
|
|
|
|
|
|
|
|
if (pa_mainloop_run(m, &ret) < 0) {
|
2009-08-31 21:45:19 +02:00
|
|
|
pa_log(_("pa_mainloop_run() failed."));
|
2004-07-15 20:51:55 +00:00
|
|
|
goto quit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quit:
|
2004-08-14 20:25:32 +00:00
|
|
|
if (sample_stream)
|
|
|
|
|
pa_stream_unref(sample_stream);
|
|
|
|
|
|
2004-07-15 20:51:55 +00:00
|
|
|
if (context)
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_context_unref(context);
|
2004-07-15 20:51:55 +00:00
|
|
|
|
|
|
|
|
if (m) {
|
|
|
|
|
pa_signal_done();
|
|
|
|
|
pa_mainloop_free(m);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-05-17 19:26:54 +00:00
|
|
|
pa_xfree(server);
|
2011-03-26 17:15:41 +01:00
|
|
|
pa_xfree(list_type);
|
2006-05-17 19:26:54 +00:00
|
|
|
pa_xfree(sample_name);
|
2006-07-31 21:55:42 +00:00
|
|
|
pa_xfree(sink_name);
|
2006-08-03 22:33:54 +00:00
|
|
|
pa_xfree(source_name);
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_xfree(module_args);
|
2009-01-21 03:04:19 +01:00
|
|
|
pa_xfree(card_name);
|
|
|
|
|
pa_xfree(profile_name);
|
2011-03-26 17:15:41 +01:00
|
|
|
pa_xfree(port_name);
|
2004-09-19 23:12:41 +00:00
|
|
|
|
2009-05-26 00:05:28 +02:00
|
|
|
if (sndfile)
|
|
|
|
|
sf_close(sndfile);
|
|
|
|
|
|
|
|
|
|
if (proplist)
|
|
|
|
|
pa_proplist_free(proplist);
|
|
|
|
|
|
2004-07-15 20:51:55 +00:00
|
|
|
return ret;
|
|
|
|
|
}
|