2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 #include <sys/socket.h>
35 #include <pulse/error.h>
36 #include <pulse/util.h>
37 #include <pulse/xmalloc.h>
38 #include <pulse/i18n.h>
40 #include <pulsecore/poll.h>
41 #include <pulsecore/macro.h>
42 #include <pulsecore/core-util.h>
43 #include <pulsecore/log.h>
44 #include <pulsecore/pid.h>
46 int main(int argc
, char*argv
[]) {
50 struct sockaddr_un sa
;
51 char ibuf
[PIPE_BUF
], obuf
[PIPE_BUF
];
52 size_t ibuf_index
, ibuf_length
, obuf_index
, obuf_length
;
54 pa_bool_t ibuf_eof
, obuf_eof
, ibuf_closed
, obuf_closed
;
55 struct pollfd pollfd
[3];
56 struct pollfd
*watch_socket
, *watch_stdin
, *watch_stdout
;
58 int stdin_type
= 0, stdout_type
= 0, fd_type
= 0;
60 setlocale(LC_ALL
, "");
61 bindtextdomain(GETTEXT_PACKAGE
, PULSE_LOCALEDIR
);
63 if (pa_pid_file_check_running(&pid
, "pulseaudio") < 0) {
64 pa_log(_("No PulseAudio daemon running, or not running as session daemon."));
68 if ((fd
= pa_socket_cloexec(PF_UNIX
, SOCK_STREAM
, 0)) < 0) {
69 pa_log(_("socket(PF_UNIX, SOCK_STREAM, 0): %s"), strerror(errno
));
74 sa
.sun_family
= AF_UNIX
;
76 if (!(cli
= pa_runtime_path("cli")))
79 pa_strlcpy(sa
.sun_path
, cli
, sizeof(sa
.sun_path
));
82 for (i
= 0; i
< 5; i
++) {
85 if ((r
= connect(fd
, (struct sockaddr
*) &sa
, sizeof(sa
))) < 0 && (errno
!= ECONNREFUSED
&& errno
!= ENOENT
)) {
86 pa_log(_("connect(): %s"), strerror(errno
));
93 if (pa_pid_file_kill(SIGUSR2
, NULL
, "pulseaudio") < 0) {
94 pa_log(_("Failed to kill PulseAudio daemon."));
102 pa_log(_("Daemon not responding."));
106 ibuf_index
= ibuf_length
= obuf_index
= obuf_length
= 0;
107 ibuf_eof
= obuf_eof
= ibuf_closed
= obuf_closed
= FALSE
;
110 for (i
= 1; i
< argc
; i
++) {
113 k
= PA_MIN(sizeof(ibuf
) - ibuf_length
, strlen(argv
[i
]));
114 memcpy(ibuf
+ ibuf_length
, argv
[i
], k
);
117 if (ibuf_length
< sizeof(ibuf
)) {
118 ibuf
[ibuf_length
] = i
< argc
-1 ? ' ' : '\n';
135 if (ibuf_length
<= 0 && ibuf_eof
&& !ibuf_closed
) {
136 shutdown(fd
, SHUT_WR
);
140 if (obuf_length
<= 0 && obuf_eof
&& !obuf_closed
) {
141 shutdown(fd
, SHUT_RD
);
149 if (ibuf_length
> 0 || (!obuf_eof
&& obuf_length
<= 0)) {
151 watch_socket
->fd
= fd
;
152 watch_socket
->events
=
153 (ibuf_length
> 0 ? POLLOUT
: 0) |
154 (!obuf_eof
&& obuf_length
<= 0 ? POLLIN
: 0);
158 if (!ibuf_eof
&& ibuf_length
<= 0) {
160 watch_stdin
->fd
= STDIN_FILENO
;
161 watch_stdin
->events
= POLLIN
;
165 if (obuf_length
> 0) {
167 watch_stdout
->fd
= STDOUT_FILENO
;
168 watch_stdout
->events
= POLLOUT
;
172 if (pa_poll(pollfd
, p
-pollfd
, -1) < 0) {
177 pa_log(_("poll(): %s"), strerror(errno
));
182 if (watch_stdin
->revents
& POLLIN
) {
184 pa_assert(ibuf_length
<= 0);
186 if ((r
= pa_read(STDIN_FILENO
, ibuf
, sizeof(ibuf
), &stdin_type
)) <= 0) {
188 pa_log(_("read(): %s"), strerror(errno
));
194 ibuf_length
= (size_t) r
;
197 } else if (watch_stdin
->revents
& POLLHUP
)
202 if (watch_socket
->revents
& POLLIN
) {
204 pa_assert(obuf_length
<= 0);
206 if ((r
= pa_read(fd
, obuf
, sizeof(obuf
), &fd_type
)) <= 0) {
208 pa_log(_("read(): %s"), strerror(errno
));
214 obuf_length
= (size_t) r
;
217 } else if (watch_socket
->revents
& POLLHUP
)
222 if (watch_stdout
->revents
& POLLHUP
) {
225 } else if (watch_stdout
->revents
& POLLOUT
) {
227 pa_assert(obuf_length
> 0);
229 if ((r
= pa_write(STDOUT_FILENO
, obuf
+ obuf_index
, obuf_length
, &stdout_type
)) < 0) {
230 pa_log(_("write(): %s"), strerror(errno
));
234 obuf_length
-= (size_t) r
;
235 obuf_index
+= obuf_index
;
240 if (watch_socket
->revents
& POLLHUP
) {
243 } if (watch_socket
->revents
& POLLOUT
) {
245 pa_assert(ibuf_length
> 0);
247 if ((r
= pa_write(fd
, ibuf
+ ibuf_index
, ibuf_length
, &fd_type
)) < 0) {
248 pa_log(_("write(): %s"), strerror(errno
));
252 ibuf_length
-= (size_t) r
;
253 ibuf_index
+= obuf_index
;