]> code.delx.au - pulseaudio/commitdiff
* new tool pacmd
authorLennart Poettering <lennart@poettering.net>
Sun, 21 Nov 2004 18:15:33 +0000 (18:15 +0000)
committerLennart Poettering <lennart@poettering.net>
Sun, 21 Nov 2004 18:15:33 +0000 (18:15 +0000)
* fix pacat/paplay/pactl for new API version
* fix memory leak in pa_ioline

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@304 fefdeb5f-60dc-0310-8127-8f9354f1896f

polyp/Makefile.am
polyp/ioline.c
polyp/pacat.c
polyp/pacmd.c [new file with mode: 0644]
polyp/pactl.c
polyp/paplay.c
polyp/util.c
polyp/util.h

index 6d9962d50f684477e7b999626256fff0bd9db51c..2570f7f02183456e7209b4347ddb7180257af221 100644 (file)
@@ -34,8 +34,15 @@ AM_LIBADD=$(PTHREAD_LIBS) -lm
 AM_LDADD=$(PTHREAD_LIBS) -lm
 
 EXTRA_DIST = default.pa.in daemon.conf.in client.conf.in depmod.py esdcompat.sh.in module-defs.h.m4
-bin_PROGRAMS = polypaudio pacat pactl paplay
+bin_PROGRAMS = \
+               polypaudio \
+               pacat \
+               pactl \
+               paplay \
+               pacmd
+
 bin_SCRIPTS = esdcompat.sh
+
 noinst_PROGRAMS = \
                mainloop-test \
                pacat-simple \
@@ -505,6 +512,10 @@ mcalign_test_SOURCES = mcalign-test.c util.c util.h xmalloc.c xmalloc.h log.c lo
 mcalign_test_CFLAGS = $(AM_CFLAGS)
 mcalign_test_LDADD = $(AM_LDADD)
 
+pacmd_SOURCES = pacmd.c util.c util.h xmalloc.c xmalloc.h log.c log.h pid.c pid.h
+pacmd_CFLAGS = $(AM_CFLAGS)
+pacmd_LDADD = $(AM_LDADD)
+
 cpulimit_test_SOURCES = cpulimit-test.c cpulimit.c util.c log.c cpulimit.h util.h log.h
 cpulimit_test_CFLAGS = $(AM_CFLAGS)
 cpulimit_test_LDADD = $(AM_LDADD) libpolyp-mainloop-@PA_MAJORMINOR@.la
index 059591b85095aa12477a067fd41e32b9a410f7f4..f52af2db9e091aa50e03d378274f9f80d139fba0 100644 (file)
@@ -89,6 +89,10 @@ static void ioline_free(struct pa_ioline *l) {
 
     if (l->io)
         pa_iochannel_free(l->io);
+
+    if (l->defer_event)
+        l->mainloop->defer_free(l->defer_event);
+
     pa_xfree(l->wbuf);
     pa_xfree(l->rbuf);
     pa_xfree(l);
@@ -116,6 +120,11 @@ void pa_ioline_close(struct pa_ioline *l) {
         pa_iochannel_free(l->io);
         l->io = NULL;
     }
+
+    if (l->defer_event) {
+        l->mainloop->defer_free(l->defer_event);
+        l->defer_event = NULL;
+    }
 }
 
 void pa_ioline_puts(struct pa_ioline *l, const char *c) {
index e5e0b7cac0af130759c5b46f9f53f4a6cec152f0..8c3ee0ba895616200b7ef35611b3195fe85656b2 100644 (file)
@@ -38,7 +38,7 @@
 #include <polyp/mainloop-signal.h>
 #include <polyp/polyplib-version.h>
 
-#if PA_API_VERSION != 6
+#if PA_API_VERSION != 7
 #error Invalid Polypaudio API version
 #endif
 
diff --git a/polyp/pacmd.c b/polyp/pacmd.c
new file mode 100644 (file)
index 0000000..741059c
--- /dev/null
@@ -0,0 +1,183 @@
+/* $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 <signal.h>
+#include <sys/select.h>
+#include <sys/socket.h>
+#include <unistd.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/un.h>
+
+#include "util.h"
+#include "log.h"
+#include "pid.h"
+
+int main() {
+    pid_t pid ;
+    int fd = -1;
+    int ret = 1, i;
+    struct sockaddr_un sa;
+    char ibuf[256], obuf[256];
+    size_t ibuf_index, ibuf_length, obuf_index, obuf_length;
+    fd_set ifds, ofds;
+
+    if (pa_pid_file_check_running(&pid) < 0) {
+        pa_log(__FILE__": no Polypaudio daemon running\n");
+        goto fail;
+    }
+
+    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
+        pa_log(__FILE__": socket(PF_UNIX, SOCK_STREAM, 0): %s\n", strerror(errno));
+        goto fail;
+    }
+
+    memset(&sa, 0, sizeof(sa));
+    sa.sun_family = AF_UNIX;
+    pa_runtime_path("cli", sa.sun_path, sizeof(sa.sun_path));
+
+    for (i = 0; i < 5; i++) {
+        int r;
+        
+        if ((r = connect(fd, (struct sockaddr*) &sa, sizeof(sa))) < 0 && (errno != ECONNREFUSED && errno != ENOENT)) {
+            pa_log(__FILE__": connect() failed: %s\n", strerror(errno));
+            goto fail;
+        }
+            
+        if (r >= 0)
+            break;
+
+        if (pa_pid_file_kill(SIGUSR2, NULL) < 0) {
+            pa_log(__FILE__": failed to kill Polypaudio daemon.\n");
+            goto fail;
+        }
+
+        pa_msleep(10);
+    }
+
+    if (i >= 5) {
+        pa_log(__FILE__": daemon to responding.\n");
+        goto fail;
+    }
+
+    ibuf_index = ibuf_length = obuf_index = obuf_length = 0;
+
+
+    FD_ZERO(&ifds);
+    FD_SET(0, &ifds);
+    FD_SET(fd, &ifds);
+
+    FD_ZERO(&ofds);
+    
+    for (;;) {
+        if (select(FD_SETSIZE, &ifds, &ofds, NULL, NULL) < 0) {
+            pa_log(__FILE__": select() failed: %s\n", strerror(errno));
+            goto fail;
+        }
+
+        if (FD_ISSET(0, &ifds)) {
+            ssize_t r;
+            assert(!ibuf_length);
+            
+            if ((r = read(0, ibuf, sizeof(ibuf))) <= 0) {
+                if (r == 0)
+                    break;
+                
+                pa_log(__FILE__": read() failed: %s\n", strerror(errno));
+                goto fail;
+            }
+            
+            ibuf_length = (size_t) r;
+            ibuf_index = 0;
+        }
+        
+        if (FD_ISSET(fd, &ifds)) {
+            ssize_t r;
+            assert(!obuf_length);
+
+            if ((r = read(fd, obuf, sizeof(obuf))) <= 0) {
+                if (r == 0)
+                    break;
+                
+                pa_log(__FILE__": read() failed: %s\n", strerror(errno));
+                goto fail;
+            }
+
+            obuf_length = (size_t) r;
+            obuf_index = 0;
+        }
+
+        if (FD_ISSET(1, &ofds)) {
+            ssize_t r;
+            assert(obuf_length);
+            
+            if ((r = write(1, obuf + obuf_index, obuf_length)) < 0) {
+                pa_log(__FILE__": write() failed: %s\n", strerror(errno));
+                goto fail;
+            }
+            
+            obuf_length -= (size_t) r;
+            obuf_index += obuf_index;
+
+        }
+
+        if (FD_ISSET(fd, &ofds)) {
+            ssize_t r;
+            assert(ibuf_length);
+            
+            if ((r = write(fd, ibuf + ibuf_index, ibuf_length)) < 0) {
+                pa_log(__FILE__": write() failed: %s\n", strerror(errno));
+                goto fail;
+            }
+            
+            ibuf_length -= (size_t) r;
+            ibuf_index += obuf_index;
+
+        }
+
+        FD_ZERO(&ifds);
+        FD_ZERO(&ofds);
+        
+        if (obuf_length <= 0)
+            FD_SET(fd, &ifds);
+        else
+            FD_SET(1, &ofds);
+        
+        if (ibuf_length <= 0)
+            FD_SET(0, &ifds);
+        else
+            FD_SET(fd, &ofds);
+    }
+    
+
+    ret = 0;
+    
+fail:
+    if (fd >= 0)
+        close(fd);
+    
+    return ret;
+}
index d73f703caa3ef0f655b879eab302f559f062986c..6300b65625ac48f364322707f89e1cfe2c1c4b94 100644 (file)
@@ -41,7 +41,7 @@
 #include <polyp/mainloop-signal.h>
 #include <polyp/sample.h>
 
-#if PA_API_VERSION != 6
+#if PA_API_VERSION != 7
 #error Invalid Polypaudio API version
 #endif
 
index 418d40b3af7c6ecfb84dfeaf4ba8557ecaf0372f..0faa0ff24bb6956e9e7628889d0102b5d8036bc6 100644 (file)
@@ -40,7 +40,7 @@
 #include <polyp/mainloop-signal.h>
 #include <polyp/polyplib-version.h>
 
-#if PA_API_VERSION != 6
+#if PA_API_VERSION != 7
 #error Invalid Polypaudio API version
 #endif
 
index 0b459ddc2cc45349ae204a9a04485ec84569ec05..970ebb93e55a1aef3030b048018ca13788c22f73 100644 (file)
@@ -861,3 +861,12 @@ char *pa_runtime_path(const char *fn, char *s, size_t l) {
     snprintf(s, l, PA_RUNTIME_PATH_PREFIX"%s%s%s", pa_get_user_name(u, sizeof(u)), fn ? "/" : "", fn ? fn : "");
     return s;
 }
+
+int pa_msleep(unsigned long t) {
+    struct timespec ts;
+
+    ts.tv_sec = t/1000;
+    ts.tv_nsec = (t % 1000) * 1000000;
+
+    return nanosleep(&ts, NULL);
+}
index ef7e4d96d3941ca1dbddd0875e6a38b5b384e0ac..922aa49ef4cbc73d3f5fc52018f81b25ca18a12a 100644 (file)
@@ -88,4 +88,6 @@ int pa_startswith(const char *s, const char *pfx);
 
 char *pa_runtime_path(const char *fn, char *s, size_t l);
 
+int pa_msleep(unsigned long t);
+
 #endif