]> git.sesse.net Git - vlc/blob - modules/audio_output/vlcpulse.c
macosx: move fullscreen-related method to VideoWindowCommon class
[vlc] / modules / audio_output / vlcpulse.c
1 /**
2  * \file vlcpulse.c
3  * \brief PulseAudio support library for LibVLC plugins
4  */
5 /*****************************************************************************
6  * Copyright (C) 2009-2011 RĂ©mi Denis-Courmont
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <vlc_common.h>
28 #include <pulse/pulseaudio.h>
29
30 #include "vlcpulse.h"
31 #include <assert.h>
32 #include <stdlib.h>
33 #include <locale.h>
34 #include <unistd.h>
35 #include <pwd.h>
36
37 #undef vlc_pa_error
38 void vlc_pa_error (vlc_object_t *obj, const char *msg, pa_context *ctx)
39 {
40     msg_Err (obj, "%s: %s", msg, pa_strerror (pa_context_errno (ctx)));
41 }
42
43 static void context_state_cb (pa_context *ctx, void *userdata)
44 {
45     pa_threaded_mainloop *mainloop = userdata;
46
47     switch (pa_context_get_state(ctx))
48     {
49         case PA_CONTEXT_READY:
50         case PA_CONTEXT_FAILED:
51         case PA_CONTEXT_TERMINATED:
52             pa_threaded_mainloop_signal (mainloop, 0);
53         default:
54             break;
55     }
56 }
57
58 static bool context_wait (pa_context *ctx, pa_threaded_mainloop *mainloop)
59 {
60     pa_context_state_t state;
61
62     while ((state = pa_context_get_state (ctx)) != PA_CONTEXT_READY)
63     {
64         if (state == PA_CONTEXT_FAILED || state == PA_CONTEXT_TERMINATED)
65             return -1;
66         pa_threaded_mainloop_wait (mainloop);
67     }
68     return 0;
69 }
70
71 static void context_event_cb(pa_context *c, const char *name, pa_proplist *pl,
72                              void *userdata)
73 {
74     vlc_object_t *obj = userdata;
75
76     msg_Warn (obj, "unhandled context event \"%s\"", name);
77     (void) c;
78     (void) pl;
79 }
80
81 /**
82  * Initializes the PulseAudio main loop and connects to the PulseAudio server.
83  * @return a PulseAudio context on success, or NULL on error
84  */
85 pa_context *vlc_pa_connect (vlc_object_t *obj, pa_threaded_mainloop **mlp)
86 {
87     msg_Dbg (obj, "using library version %s", pa_get_library_version ());
88     msg_Dbg (obj, " (compiled with version %s, protocol %u)",
89              pa_get_headers_version (), PA_PROTOCOL_VERSION);
90
91     /* Initialize main loop */
92     pa_threaded_mainloop *mainloop = pa_threaded_mainloop_new ();
93     if (unlikely(mainloop == NULL))
94         return NULL;
95
96     if (pa_threaded_mainloop_start (mainloop) < 0)
97     {
98         pa_threaded_mainloop_free (mainloop);
99         return NULL;
100     }
101
102     /* Fill in context (client) properties */
103     char *ua = var_InheritString (obj, "user-agent");
104     pa_proplist *props = pa_proplist_new ();
105     if (likely(props != NULL))
106     {
107         pa_proplist_sets (props, PA_PROP_APPLICATION_NAME, ua);
108         pa_proplist_sets (props, PA_PROP_APPLICATION_ID, "org.VideoLAN.VLC");
109         pa_proplist_sets (props, PA_PROP_APPLICATION_VERSION, PACKAGE_VERSION);
110         pa_proplist_sets (props, PA_PROP_APPLICATION_ICON_NAME, PACKAGE_NAME);
111         //pa_proplist_sets (props, PA_PROP_APPLICATION_LANGUAGE, _("C"));
112         pa_proplist_sets (props, PA_PROP_APPLICATION_LANGUAGE,
113                           setlocale (LC_MESSAGES, NULL));
114
115         pa_proplist_setf (props, PA_PROP_APPLICATION_PROCESS_ID, "%lu",
116                           (unsigned long) getpid ());
117         //pa_proplist_sets (props, PA_PROP_APPLICATION_PROCESS_BINARY,
118         //                  PACKAGE_NAME);
119
120         for (size_t max = sysconf (_SC_GETPW_R_SIZE_MAX), len = max % 1024 + 1024;
121              len < max; len += 1024)
122         {
123             struct passwd pwbuf, *pw;
124             char buf[len];
125
126             if (getpwuid_r (getuid (), &pwbuf, buf, sizeof (buf), &pw) == 0)
127             {
128                 if (pw != NULL)
129                     pa_proplist_sets (props, PA_PROP_APPLICATION_PROCESS_USER,
130                                       pw->pw_name);
131                 break;
132             }
133         }
134
135         for (size_t max = sysconf (_SC_HOST_NAME_MAX), len = max % 1024 + 1024;
136              len < max; len += 1024)
137         {
138             char hostname[len];
139
140             if (gethostname (hostname, sizeof (hostname)) == 0)
141             {
142                 pa_proplist_sets (props, PA_PROP_APPLICATION_PROCESS_HOST,
143                                   hostname);
144                 break;
145             }
146         }
147
148         const char *session = getenv ("XDG_SESSION_COOKIE");
149         if (session != NULL)
150         {
151             pa_proplist_setf (props, PA_PROP_APPLICATION_PROCESS_MACHINE_ID,
152                               "%.32s", session); /* XXX: is this valid? */
153             pa_proplist_sets (props, PA_PROP_APPLICATION_PROCESS_SESSION_ID,
154                               session);
155         }
156     }
157
158     /* Connect to PulseAudio daemon */
159     pa_context *ctx;
160     pa_mainloop_api *api;
161
162     pa_threaded_mainloop_lock (mainloop);
163     api = pa_threaded_mainloop_get_api (mainloop);
164     ctx = pa_context_new_with_proplist (api, ua, props);
165     free (ua);
166     if (props != NULL)
167         pa_proplist_free (props);
168     if (unlikely(ctx == NULL))
169         goto fail;
170
171     pa_context_set_state_callback (ctx, context_state_cb, mainloop);
172     pa_context_set_event_callback (ctx, context_event_cb, obj);
173     if (pa_context_connect (ctx, NULL, 0, NULL) < 0
174      || context_wait (ctx, mainloop))
175     {
176         vlc_pa_error (obj, "PulseAudio server connection failure", ctx);
177         pa_context_unref (ctx);
178         goto fail;
179     }
180     msg_Dbg (obj, "connected %s to %s as client #%"PRIu32,
181              pa_context_is_local (ctx) ? "locally" : "remotely",
182              pa_context_get_server (ctx), pa_context_get_index (ctx));
183     msg_Dbg (obj, "using protocol %"PRIu32", server protocol %"PRIu32,
184              pa_context_get_protocol_version (ctx),
185              pa_context_get_server_protocol_version (ctx));
186
187     pa_threaded_mainloop_unlock (mainloop);
188     *mlp = mainloop;
189     return ctx;
190
191 fail:
192     pa_threaded_mainloop_unlock (mainloop);
193     pa_threaded_mainloop_stop (mainloop);
194     pa_threaded_mainloop_free (mainloop);
195     return NULL;
196 }
197
198 /**
199  * Closes a connection to PulseAudio.
200  */
201 void vlc_pa_disconnect (vlc_object_t *obj, pa_context *ctx,
202                         pa_threaded_mainloop *mainloop)
203 {
204     pa_threaded_mainloop_lock (mainloop);
205     pa_context_disconnect (ctx);
206     pa_context_set_event_callback (ctx, NULL, NULL);
207     pa_context_set_state_callback (ctx, NULL, NULL);
208     pa_context_unref (ctx);
209     pa_threaded_mainloop_unlock (mainloop);
210
211     pa_threaded_mainloop_stop (mainloop);
212     pa_threaded_mainloop_free (mainloop);
213     (void) obj;
214 }
215
216 /**
217  * Frees a timer event.
218  * \note Timer events can be created with pa_context_rttime_new().
219  * \warning This function must be called from the mainloop,
220  * or with the mainloop lock held.
221  */
222 void vlc_pa_rttime_free (pa_threaded_mainloop *mainloop, pa_time_event *e)
223 {
224     pa_mainloop_api *api = pa_threaded_mainloop_get_api (mainloop);
225
226     api->time_free (e);
227 }
228
229 #undef vlc_pa_get_latency
230 /**
231  * Gets latency of a PulseAudio stream.
232  * \return the latency or VLC_TS_INVALID on error.
233  */
234 mtime_t vlc_pa_get_latency(vlc_object_t *obj, pa_context *ctx, pa_stream *s)
235 {
236     pa_usec_t latency;
237     int negative;
238
239     if (pa_stream_get_latency(s, &latency, &negative)) {
240         if (pa_context_errno (ctx) != PA_ERR_NODATA)
241             vlc_pa_error(obj, "unknown latency", ctx);
242         return VLC_TS_INVALID;
243     }
244     return negative ? -latency : +latency;
245 }