[Pkg-remote-team] [xrdp] 01/09: we now load pulse modules by invoking pacmd

Dominik George natureshadow-guest at moszumanska.debian.org
Sat Nov 26 10:59:51 UTC 2016


This is an automated email from the git hooks/post-receive script.

natureshadow-guest pushed a commit to annotated tag v0.8.0
in repository xrdp.

commit 27b7541044afba4a512e178112e74c2c6db1bbf1
Author: Laxmikant Rashinkar <LK.Rashinkar at gmail.com>
Date:   Sat Apr 12 15:25:17 2014 -0700

    we now load pulse modules by invoking pacmd
---
 sesman/chansrv/Makefile.am |   2 +-
 sesman/chansrv/sound.c     | 185 ++++++++++++++++-----------------------------
 sesman/chansrv/sound.h     |   1 +
 3 files changed, 66 insertions(+), 122 deletions(-)

diff --git a/sesman/chansrv/Makefile.am b/sesman/chansrv/Makefile.am
index 9aa3ebe..efdac82 100644
--- a/sesman/chansrv/Makefile.am
+++ b/sesman/chansrv/Makefile.am
@@ -28,7 +28,7 @@ endif
 
 if XRDP_LOAD_PULSE_MODULES
 EXTRA_DEFINES += -DXRDP_LOAD_PULSE_MODULES
-EXTRA_LIBS += -lpulse 
+EXTRA_LIBS += -lpulse -lpulse-simple
 endif
 
 AM_CFLAGS = \
diff --git a/sesman/chansrv/sound.c b/sesman/chansrv/sound.c
index 8c76c9b..186fe0b 100644
--- a/sesman/chansrv/sound.c
+++ b/sesman/chansrv/sound.c
@@ -25,6 +25,7 @@
 
 #ifdef XRDP_LOAD_PULSE_MODULES
 #include <pulse/util.h>
+#include <pulse/simple.h>
 #endif
 
 #include "sound.h"
@@ -56,6 +57,10 @@ int g_buf_index = 0;
 int g_sent_time[256];
 int g_sent_flag[256];
 
+#ifdef XRDP_LOAD_PULSE_MODULES
+pa_simple *g_pa_simple = NULL;
+#endif
+
 #if defined(XRDP_SIMPLESOUND)
 static void *DEFAULT_CC
 read_raw_audio_data(void *arg);
@@ -724,6 +729,8 @@ sound_deinit(void)
 
 #ifdef XRDP_LOAD_PULSE_MODULES
     system("pulseaudio --kill");
+    if (g_pa_simple)
+        pa_simple_free(g_pa_simple);
 #endif
 
     return 0;
@@ -848,146 +855,82 @@ sound_check_wait_objs(void)
 static int APP_CC
 load_pulse_modules()
 {
-    struct sockaddr_un sa;
-
-    pid_t pid;
-    char* cli;
-    int   fd;
-    int   i;
-    int   rv;
-    char  buf[1024];
-
-    /* is pulse audio daemon running? */
-    if (pa_pid_file_check_running(&pid, "pulseaudio") < 0)
-    {
-        LOG(0, ("load_pulse_modules: No PulseAudio daemon running, "
-                "or not running as session daemon"));
-    }
+    pa_sample_spec samp_spec;
+    int            error;
 
-    /* get name of unix domain socket used by pulseaudio for CLI */
-    if ((cli = (char *) pa_runtime_path("cli")) == NULL)
-    {
-        LOG(0, ("load_pulse_modules: Error getting PulesAudio runtime path"));
+    /* send cmd to load source module */
+    if (run_pacmd("load-module module-xrdp-source", "Module load failed"))
         return -1;
-    }
-
-    /* open a socket */
-    if ((fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0)
-    {
-        pa_xfree(cli);
-        LOG(0, ("load_pulse_modules: Socket open error"));
+    
+    /* success, set it as the default source */
+    if (run_pacmd("set-default-source xrdp-source", "does not exist"))
         return -1;
-    }
 
-    /* set it up */
-    memset(&sa, 0, sizeof(struct sockaddr_un));
-    sa.sun_family = AF_UNIX;
-    pa_strlcpy(sa.sun_path, cli, sizeof(sa.sun_path));
-    pa_xfree(cli);
-
-    for (i = 0; i < 20; i++)
-    {
-        if (pa_pid_file_kill(SIGUSR2, NULL, "pulseaudio") < 0)
-            LOG(0, ("load_pulse_modules: Failed to kill PulseAudio daemon"));
-
-        if ((rv = connect(fd, (struct sockaddr*) &sa, sizeof(sa))) < 0 &&
-            (errno != ECONNREFUSED && errno != ENOENT))
-        {
-            LOG(0, ("load_pulse_modules: connect() failed with error: %s",
-                    strerror(errno)));
-            return -1;
-        }
-
-        if (rv >= 0)
-            break;
-
-        pa_msleep(300);
-    }
-
-    if (i >= 20)
-    {
-        LOG(0, ("load_pulse_modules: Daemon not responding"));
+    /* send cmd to load sink module */
+    if (run_pacmd("load-module module-xrdp-sink", "Module load failed"))
+        return -1;
+    
+    /* success, set it as the default sink */
+    if (run_pacmd("set-default-sink xrdp-sink", "does not exist"))
         return -1;
-    }
-
-    LOG(0, ("load_pulse_modules: connected to pulseaudio daemon"));
-
-    /* read back PulseAudio sign on message */
-    memset(buf, 0, 1024);
-    recv(fd, buf, 1024, 0);
 
-    /* send cmd to load source module */
-    memset(buf, 0, 1024);
-    sprintf(buf, "load-module module-xrdp-source\n");
-    send(fd, buf, strlen(buf), 0);
-
-    /* read back response */
-    memset(buf, 0, 1024);
-    recv(fd, buf, 1024, 0);
-    if (strcasestr(buf, "Module load failed") != 0)
+    /* setup audio format */
+    samp_spec.format = PA_SAMPLE_S16LE;
+    samp_spec.rate = 44100;
+    samp_spec.channels = 2;
+    
+    g_pa_simple = pa_simple_new(NULL, "xrdp", PA_STREAM_PLAYBACK, NULL,
+                                "keepalive", &samp_spec, NULL, NULL, &error);
+                               
+    if (!g_pa_simple)
     {
-        LOG(0, ("load_pulse_modules: Error loading module-xrdp-source"));
+        LOG(0, ("load_pulse_modules: error opening keepalive connection "
+                "to pulseaudio server\n"));
+        return -1;
     }
-    else
-    {
-        LOG(0, ("load_pulse_modules: Loaded module-xrdp-source"));
-
-        /* success, set it as the default source */
-        memset(buf, 0, 1024);
-        sprintf(buf, "set-default-source xrdp-source\n");
-        send(fd, buf, strlen(buf), 0);
 
-        memset(buf, 0, 1024);
-        recv(fd, buf, 1024, 0);
+    LOG(0, ("load_pulse_modules: opened keepalive connection "
+            "to pulseaudio server\n"));
+    
+    return 0;
+}
 
-        if (strcasestr(buf, "does not exist") != 0)
-        {
-            LOG(0, ("load_pulse_modules: Error setting default source"));
-        }
-        else
-        {
-            LOG(0, ("load_pulse_modules: set default source"));
-        }
-    }
+/**
+ * Use pacmd to run a command on pulseaudio server
+ * 
+ * @param cmd        command to run on pulseaudio server
+ * @param error_msg  error message to check for
+ * 
+ * @return 0 on success, -1 on failure
+ *****************************************************************************/
 
-    /* send cmd to load sink module */
-    memset(buf, 0, 1024);
-    sprintf(buf, "load-module module-xrdp-sink\n");
-    send(fd, buf, strlen(buf), 0);
-
-    /* read back response */
-    memset(buf, 0, 1024);
-    recv(fd, buf, 1024, 0);
-    if (strcasestr(buf, "Module load failed") != 0)
+static int APP_CC run_pacmd(char *cmd, char *error_msg)
+{
+    FILE *fp;
+    char  buf[1024];
+    
+    sprintf(buf, "pacmd %s", cmd);
+    if ((fp = popen(buf, "r")) == NULL)
     {
-        LOG(0, ("load_pulse_modules: Error loading module-xrdp-sink"));
+        LOG(0, ("run_pacmd: error running command: %s; pacmd is not "
+                "installed or not found in PATH"));
+        return -1;
     }
-    else
+    
+    while (fgets(buf, 1024, fp) != NULL)
     {
-        LOG(0, ("load_pulse_modules: Loaded module-xrdp-sink"));
-
-        /* success, set it as the default sink */
-        memset(buf, 0, 1024);
-        sprintf(buf, "set-default-sink xrdp-sink\n");
-        send(fd, buf, strlen(buf), 0);
-
-        memset(buf, 0, 1024);
-        recv(fd, buf, 1024, 0);
-
-        if (strcasestr(buf, "does not exist") != 0)
-        {
-            LOG(0, ("load_pulse_modules: Error setting default sink"));
-        }
-        else
+        if (strcasestr(buf, error_msg) != 0)
         {
-            LOG(0, ("load_pulse_modules: set default sink"));
+            pclose(fp);
+            return -1;
         }
     }
-
-    close(fd);
+    
+    pclose(fp);
     return 0;
 }
-#endif
+
+#endif /* end #ifdef XRDP_LOAD_PULSE_MODULES */
 
 /******************************************************************************
  **                                                                          **
diff --git a/sesman/chansrv/sound.h b/sesman/chansrv/sound.h
index c26d091..82b2530 100644
--- a/sesman/chansrv/sound.h
+++ b/sesman/chansrv/sound.h
@@ -76,4 +76,5 @@ static int APP_CC sound_input_stop_recording();
 static int APP_CC sound_process_input_data(struct stream *s, int bytes);
 static int DEFAULT_CC sound_sndsrvr_source_data_in(struct trans *trans);
 static int APP_CC load_pulse_modules();
+static int APP_CC run_pacmd(char *cmd, char *error_msg);
 #endif

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-remote/packages/xrdp.git



More information about the Pkg-remote-team mailing list