]> git.sesse.net Git - vlc/blob - src/interface/dialog.c
dialog_Login: handle a format string
[vlc] / src / interface / dialog.c
1 /*****************************************************************************
2  * dialog.c: User dialog functions
3  *****************************************************************************
4  * Copyright © 2009 Rémi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 /**
22  * \file dialog.c
23  * User dialogs core
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdarg.h>
31
32 #include <vlc_common.h>
33 #include <vlc_dialog.h>
34 #include <assert.h>
35 #include "libvlc.h"
36
37 static vlc_mutex_t provider_lock = VLC_STATIC_MUTEX;
38
39 #undef dialog_Register
40 /**
41  * Registers an object as the dialog provider.
42  * It is assumed that the appropriate variable callbacks are already
43  * registered.
44  */
45 int dialog_Register (vlc_object_t *obj)
46 {
47     libvlc_priv_t *priv = libvlc_priv (obj->p_libvlc);
48     int ret = VLC_EGENERIC;
49
50     vlc_mutex_lock (&provider_lock);
51     if (priv->p_dialog_provider == NULL)
52     {   /* Since the object is responsible for unregistering itself before
53          * it terminates, at reference is not needed. */
54         priv->p_dialog_provider = obj;
55         ret = VLC_SUCCESS;
56     }
57     vlc_mutex_unlock (&provider_lock);
58     return ret;
59 }
60
61 #undef dialog_Unregister
62 /**
63  * Unregisters the dialog provider.
64  * Note that unless you have unregistered the callbacks already, the provider
65  * might still be in use by other threads. Also, you need to cancel all
66  * pending dialogs yourself.
67  */
68 int dialog_Unregister (vlc_object_t *obj)
69 {
70     libvlc_priv_t *priv = libvlc_priv (obj->p_libvlc);
71     int ret = VLC_EGENERIC;
72
73     vlc_mutex_lock (&provider_lock);
74     if (priv->p_dialog_provider == obj)
75     {
76         priv->p_dialog_provider = NULL;
77         ret = VLC_SUCCESS;
78     }
79     vlc_mutex_unlock (&provider_lock);
80     return ret;
81 }
82
83 static vlc_object_t *dialog_GetProvider (vlc_object_t *obj)
84 {
85     libvlc_priv_t *priv = libvlc_priv (obj->p_libvlc);
86     vlc_object_t *provider;
87
88     vlc_mutex_lock (&provider_lock);
89     if ((provider = priv->p_dialog_provider) != NULL)
90         vlc_object_hold (provider);
91     vlc_mutex_unlock (&provider_lock);
92     return provider;
93 }
94
95 /**
96  * Sends an error message through the user interface (if any).
97  * @param obj the VLC object emitting the error
98  * @param modal whether to wait for user to acknowledge the error
99  *              before returning control to the caller
100  * @param title title of the error dialog
101  * @param fmt format string for the error message
102  * @param ap parameters list for the formatted error message
103  */
104 void dialog_VFatal (vlc_object_t *obj, bool modal, const char *title,
105                     const char *fmt, va_list ap)
106 {
107     char *text;
108
109     if (obj->i_flags & OBJECT_FLAGS_NOINTERACT)
110         return;
111
112     vlc_object_t *provider = dialog_GetProvider (obj);
113     if (provider == NULL)
114     {
115         msg_Err (obj, "%s", title);
116         msg_GenericVa (obj, VLC_MSG_ERR, MODULE_STRING, fmt, ap);
117         return;
118     }
119
120     if (vasprintf (&text, fmt, ap) != -1)
121     {
122         dialog_fatal_t dialog = { title, text, modal, };
123         var_SetAddress (provider, "dialog-fatal", &dialog);
124         free (text);
125     }
126     vlc_object_release (provider);
127 }
128
129 #undef dialog_Login
130 /**
131  * Requests a username and password through the user interface.
132  * @param obj the VLC object requesting credential informations
133  * @param username a pointer to the specified username [OUT]
134  * @param password a pointer to the specified password [OUT]
135  * @param title title for the dialog
136  * @param text format string for the message in the dialog
137  * @return Nothing. If a user name resp. a password was specified,
138  * it will be returned as a heap-allocated character array
139  * into the username resp password pointer. Those must be freed with free().
140  * Otherwise *username resp *password will be NULL.
141  */
142 void dialog_Login (vlc_object_t *obj, char **username, char **password,
143                    const char *title, const char *fmt, ...)
144 {
145     assert ((username != NULL) && (password != NULL));
146
147     *username = *password = NULL;
148     if (obj->i_flags & OBJECT_FLAGS_NOINTERACT)
149         return;
150
151     vlc_object_t *provider = dialog_GetProvider (obj);
152     if (provider == NULL)
153         return;
154
155     char *text;
156     va_list ap;
157
158     va_start (ap, fmt);
159     if (vasprintf (&text, fmt, ap) != -1)
160     {
161         dialog_login_t dialog = { title, text, username, password, };
162         var_SetAddress (provider, "dialog-login", &dialog);
163         free (text);
164     }
165     va_end (ap);
166     vlc_object_release (provider);
167 }