2004-11-08 23:48:19 +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-11-08 23:48:19 +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-11-08 23:48:19 +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-11-08 23:48:19 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
#include <assert.h>
|
2008-08-06 18:54:13 +02:00
|
|
|
#include <locale.h>
|
2004-11-08 23:48:19 +00:00
|
|
|
|
2010-05-29 19:33:54 +01:00
|
|
|
#include <xcb/xcb.h>
|
2004-11-08 23:48:19 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/util.h>
|
2008-08-06 18:54:13 +02:00
|
|
|
#include <pulse/i18n.h>
|
2011-03-09 10:00:20 +01:00
|
|
|
#include <pulse/client-conf.h>
|
2006-05-19 11:32:32 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/authkey.h>
|
|
|
|
|
#include <pulsecore/native-common.h>
|
|
|
|
|
#include <pulsecore/x11prop.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
const char *dname = NULL, *sink = NULL, *source = NULL, *server = NULL, *cookie_file = PA_NATIVE_COOKIE_FILE;
|
2010-09-18 11:12:56 +01:00
|
|
|
int c, ret = 1, screen = 0;
|
2010-05-29 19:33:54 +01:00
|
|
|
xcb_connection_t *xcb = NULL;
|
2004-11-08 23:48:19 +00:00
|
|
|
enum { DUMP, EXPORT, IMPORT, REMOVE } mode = DUMP;
|
|
|
|
|
|
2008-08-06 18:54:13 +02:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
bindtextdomain(GETTEXT_PACKAGE, PULSE_LOCALEDIR);
|
|
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
while ((c = getopt(argc, argv, "deiD:S:O:I:c:hr")) != -1) {
|
|
|
|
|
switch (c) {
|
|
|
|
|
case 'D' :
|
|
|
|
|
dname = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("%s [-D display] [-S server] [-O sink] [-I source] [-c file] [-d|-e|-i|-r]\n\n"
|
2006-06-19 22:11:49 +00:00
|
|
|
" -d Show current PulseAudio data attached to X11 display (default)\n"
|
|
|
|
|
" -e Export local PulseAudio data to X11 display\n"
|
|
|
|
|
" -i Import PulseAudio data from X11 display to local environment variables and cookie file.\n"
|
2008-08-06 18:54:13 +02:00
|
|
|
" -r Remove PulseAudio data from X11 display\n"),
|
2004-11-09 00:14:07 +00:00
|
|
|
pa_path_get_filename(argv[0]));
|
2004-11-08 23:48:19 +00:00
|
|
|
ret = 0;
|
|
|
|
|
goto finish;
|
|
|
|
|
case 'd':
|
|
|
|
|
mode = DUMP;
|
|
|
|
|
break;
|
|
|
|
|
case 'e':
|
|
|
|
|
mode = EXPORT;
|
|
|
|
|
break;
|
|
|
|
|
case 'i':
|
|
|
|
|
mode = IMPORT;
|
|
|
|
|
break;
|
|
|
|
|
case 'r':
|
|
|
|
|
mode = REMOVE;
|
|
|
|
|
break;
|
|
|
|
|
case 'c':
|
|
|
|
|
cookie_file = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'I':
|
|
|
|
|
source = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'O':
|
|
|
|
|
sink = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'S':
|
|
|
|
|
server = optarg;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to parse command line.\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (!(xcb = xcb_connect(dname, &screen))) {
|
2010-05-29 19:33:54 +01:00
|
|
|
pa_log(_("xcb_connect() failed"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 10:35:38 +01:00
|
|
|
if (xcb_connection_has_error(xcb)) {
|
|
|
|
|
pa_log(_("xcb_connection_has_error() returned true"));
|
|
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
switch (mode) {
|
|
|
|
|
case DUMP: {
|
|
|
|
|
char t[1024];
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SERVER", t, sizeof(t)))
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Server: %s\n"), t);
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SOURCE", t, sizeof(t)))
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Source: %s\n"), t);
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SINK", t, sizeof(t)))
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Sink: %s\n"), t);
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_COOKIE", t, sizeof(t)))
|
2008-08-06 18:54:13 +02:00
|
|
|
printf(_("Cookie: %s\n"), t);
|
2004-11-08 23:48:19 +00:00
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
case IMPORT: {
|
|
|
|
|
char t[1024];
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SERVER", t, sizeof(t)))
|
2006-06-19 23:56:54 +00:00
|
|
|
printf("PULSE_SERVER='%s'\nexport PULSE_SERVER\n", t);
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SOURCE", t, sizeof(t)))
|
2006-06-19 23:56:54 +00:00
|
|
|
printf("PULSE_SOURCE='%s'\nexport PULSE_SOURCE\n", t);
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SINK", t, sizeof(t)))
|
2006-06-19 23:56:54 +00:00
|
|
|
printf("PULSE_SINK='%s'\nexport PULSE_SINK\n", t);
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_COOKIE", t, sizeof(t))) {
|
2004-11-08 23:48:19 +00:00
|
|
|
uint8_t cookie[PA_NATIVE_COOKIE_LENGTH];
|
|
|
|
|
size_t l;
|
2004-11-09 23:19:42 +00:00
|
|
|
if ((l = pa_parsehex(t, cookie, sizeof(cookie))) != sizeof(cookie)) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to parse cookie data\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_authkey_save(cookie_file, cookie, l) < 0) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to save cookie data\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EXPORT: {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_client_conf *conf = pa_client_conf_new();
|
2004-11-08 23:48:19 +00:00
|
|
|
uint8_t cookie[PA_NATIVE_COOKIE_LENGTH];
|
|
|
|
|
char hx[PA_NATIVE_COOKIE_LENGTH*2+1];
|
2006-01-11 01:17:39 +00:00
|
|
|
assert(conf);
|
2004-11-08 23:48:19 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (pa_client_conf_load(conf, NULL) < 0) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to load client configuration file.\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (pa_client_conf_env(conf) < 0) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to read environment configuration data.\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SERVER");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SINK");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SOURCE");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_ID");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_COOKIE");
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
if (server)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SERVER", server);
|
2006-01-11 01:17:39 +00:00
|
|
|
else if (conf->default_server)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SERVER", conf->default_server);
|
2004-11-08 23:48:19 +00:00
|
|
|
else {
|
|
|
|
|
char hn[256];
|
2004-11-09 00:14:07 +00:00
|
|
|
if (!pa_get_fqdn(hn, sizeof(hn))) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to get FQDN.\n"));
|
2004-11-09 00:14:07 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SERVER", hn);
|
2004-11-08 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sink)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SINK", sink);
|
2006-01-11 01:17:39 +00:00
|
|
|
else if (conf->default_sink)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SINK", conf->default_sink);
|
2004-11-08 23:48:19 +00:00
|
|
|
|
|
|
|
|
if (source)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SOURCE", source);
|
2006-01-11 01:17:39 +00:00
|
|
|
if (conf->default_source)
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_SOURCE", conf->default_source);
|
2004-11-08 23:48:19 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_client_conf_free(conf);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
if (pa_authkey_load_auto(cookie_file, cookie, sizeof(cookie)) < 0) {
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Failed to load cookie data\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_set_prop(xcb, screen, "PULSE_COOKIE", pa_hexstr(cookie, sizeof(cookie), hx, sizeof(hx)));
|
2004-11-08 23:48:19 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case REMOVE:
|
2010-09-18 11:12:56 +01:00
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SERVER");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SINK");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SOURCE");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_ID");
|
|
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_COOKIE");
|
2011-03-01 18:15:28 +00:00
|
|
|
pa_x11_del_prop(xcb, screen, "PULSE_SESSION_ID");
|
2004-11-08 23:48:19 +00:00
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
default:
|
2008-08-06 18:54:13 +02:00
|
|
|
fprintf(stderr, _("Not yet implemented.\n"));
|
2004-11-08 23:48:19 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
finish:
|
|
|
|
|
|
2010-05-29 19:33:54 +01:00
|
|
|
if (xcb) {
|
|
|
|
|
xcb_flush(xcb);
|
|
|
|
|
xcb_disconnect(xcb);
|
2004-11-08 23:48:19 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-08 23:48:19 +00:00
|
|
|
return ret;
|
|
|
|
|
}
|