]> git.sesse.net Git - vlc/blob - src/interface/interaction.c
Useless property
[vlc] / src / interface / interaction.c
1 /*****************************************************************************
2  * interaction.c: User interaction functions
3  *****************************************************************************
4  * Copyright © 2005-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Felix Kühne <fkuehne@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /**
26  *   \file
27  *   This file contains functions related to user interaction management
28  */
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33
34 #ifdef HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <vlc_common.h>
39
40 #include <vlc_interface.h>
41 #include "interface.h"
42 #include "libvlc.h"
43
44 #include <assert.h>
45
46 /*****************************************************************************
47  * Local prototypes
48  *****************************************************************************/
49
50 /**
51  * This structure contains the active interaction dialogs, and is
52  * used by the manager
53  */
54 struct interaction_t
55 {
56     VLC_COMMON_MEMBERS
57
58     vlc_thread_t thread;
59     vlc_cond_t wait;
60
61     int                         i_dialogs;      ///< Number of dialogs
62     interaction_dialog_t      **pp_dialogs;     ///< Dialogs
63     intf_thread_t              *p_intf;         ///< Interface to use
64 };
65
66 static interaction_t *          InteractionGet( vlc_object_t * );
67 static intf_thread_t *          SearchInterface( interaction_t * );
68 static void*                    InteractionLoop( void * );
69 static void                     InteractionManage( interaction_t * );
70
71 static void                     DialogDestroy( interaction_dialog_t * );
72 static int DialogSend( interaction_dialog_t * );
73
74 #define DIALOG_INIT( type, err ) \
75         interaction_dialog_t* p_new = calloc( 1, sizeof( interaction_dialog_t ) ); \
76         if( !p_new ) return err;                        \
77         p_new->p_parent = vlc_object_hold( p_this );    \
78         p_new->b_cancelled = false;                     \
79         p_new->i_status = SENT_DIALOG;                  \
80         p_new->i_flags = 0;                             \
81         p_new->i_type = INTERACT_DIALOG_##type;         \
82         p_new->psz_returned[0] = NULL;                  \
83         p_new->psz_returned[1] = NULL
84
85 #define FORMAT_DESC \
86         va_start( args, psz_format ); \
87         if( vasprintf( &p_new->psz_description, psz_format, args ) == -1 ) \
88             return VLC_EGENERIC; \
89         va_end( args )
90
91 /**
92  * Send an error message, both in a blocking and non-blocking way
93  *
94  * \param p_this     Parent vlc_object
95  * \param b_blocking Is this dialog blocking or not?
96  * \param psz_title  Title for the dialog
97  * \param psz_format The message to display
98  * \return           VLC_SUCCESS or VLC_EGENERIC
99  */
100 int __intf_UserFatal( vlc_object_t *p_this, bool b_blocking,
101                        const char *psz_title,
102                        const char *psz_format, ... )
103 {
104     va_list args;
105     DIALOG_INIT( ONEWAY, VLC_EGENERIC );
106
107     p_new->psz_title = strdup( psz_title );
108     FORMAT_DESC;
109
110     if( b_blocking )
111         p_new->i_flags = DIALOG_BLOCKING_ERROR;
112     else
113         p_new->i_flags = DIALOG_NONBLOCKING_ERROR;
114
115     return DialogSend( p_new );
116 }
117
118 /**
119  * Helper function to send a warning, which is always shown non-blocking
120  *
121  * \param p_this     Parent vlc_object
122  * \param psz_title  Title for the dialog
123  * \param psz_format The message to display
124  * \return           VLC_SUCCESS or VLC_EGENERIC
125  */
126 int __intf_UserWarn( vlc_object_t *p_this,
127                      const char *psz_title,
128                      const char *psz_format, ... )
129 {
130     va_list args;
131     DIALOG_INIT( ONEWAY, VLC_EGENERIC );
132
133     p_new->psz_title = strdup( psz_title );
134     FORMAT_DESC;
135
136     p_new->i_flags = DIALOG_WARNING;
137
138     return DialogSend( p_new );
139 }
140
141 /**
142  * Helper function to ask a yes-no-cancel question
143  *
144  * \param p_this           Parent vlc_object
145  * \param psz_title        Title for the dialog
146  * \param psz_description  A description
147  * \param psz_default      caption for the default button
148  * \param psz_alternate    caption for the alternate button
149  * \param psz_other        caption for the optional 3rd button (== cancel)
150  * \return                 Clicked button code
151  */
152 int __intf_UserYesNo( vlc_object_t *p_this,
153                       const char *psz_title,
154                       const char *psz_description,
155                       const char *psz_default,
156                       const char *psz_alternate,
157                       const char *psz_other )
158 {
159     DIALOG_INIT( TWOWAY, VLC_EGENERIC );
160
161     p_new->psz_title = strdup( psz_title );
162     p_new->psz_description = strdup( psz_description );
163     p_new->i_flags = DIALOG_YES_NO_CANCEL;
164     p_new->psz_default_button = strdup( psz_default );
165     p_new->psz_alternate_button = strdup( psz_alternate );
166     if( psz_other )
167         p_new->psz_other_button = strdup( psz_other );
168
169     return DialogSend( p_new );
170 }
171
172 /**
173  * Helper function to create a dialogue showing a progress-bar with some info
174  *
175  * \param p_this           Parent vlc_object
176  * \param psz_title        Title for the dialog (NULL implies main intf )
177  * \param psz_status       Current status
178  * \param f_position       Current position (0.0->100.0)
179  * \param i_timeToGo       Time (in sec) to go until process is finished
180  * \return                 Dialog, for use with UserProgressUpdate
181  */
182 interaction_dialog_t *
183 __intf_Progress( vlc_object_t *p_this, const char *psz_title,
184                      const char *psz_status, float f_pos, int i_time )
185 {
186     DIALOG_INIT( ONEWAY, NULL );
187     p_new->psz_description = strdup( psz_status );
188     p_new->val.f_float = f_pos;
189     p_new->i_timeToGo = i_time;
190     p_new->psz_alternate_button = strdup( _( "Cancel" ) );
191
192     if( psz_title )
193     {
194         p_new->psz_title = strdup( psz_title );
195         p_new->i_flags = DIALOG_USER_PROGRESS;
196     }
197     else
198         p_new->i_flags = DIALOG_INTF_PROGRESS;
199
200     DialogSend( p_new );
201     return p_new;
202 }
203
204 /**
205  * Update a progress bar in a dialogue
206  *
207  * \param p_dialog         Dialog
208  * \param psz_status       New status
209  * \param f_position       New position (0.0->100.0)
210  * \param i_timeToGo       Time (in sec) to go until process is finished
211  * \return                 nothing
212  */
213 void intf_ProgressUpdate( interaction_dialog_t *p_dialog,
214                             const char *psz_status, float f_pos, int i_time )
215 {
216     interaction_t *p_interaction = InteractionGet( p_dialog->p_parent );
217     assert( p_interaction );
218
219     vlc_object_lock( p_interaction );
220     free( p_dialog->psz_description );
221     p_dialog->psz_description = strdup( psz_status );
222
223     p_dialog->val.f_float = f_pos;
224     p_dialog->i_timeToGo = i_time;
225
226     p_dialog->i_status = UPDATED_DIALOG;
227
228     vlc_cond_signal( &p_interaction->wait );
229     vlc_object_unlock( p_interaction );
230     vlc_object_release( p_interaction );
231 }
232
233 /**
234  * Helper function to communicate dialogue cancellations between the
235  * interface module and the caller
236  *
237  * \param p_dialog         Dialog
238  * \return                 Either true or false
239  */
240 bool intf_ProgressIsCancelled( interaction_dialog_t *p_dialog )
241 {
242     interaction_t *p_interaction = InteractionGet( p_dialog->p_parent );
243     bool b_cancel;
244
245     assert( p_interaction );
246     vlc_object_lock( p_interaction );
247     b_cancel = p_dialog->b_cancelled;
248     vlc_object_unlock( p_interaction );
249     vlc_object_release( p_interaction );
250     return b_cancel;
251 }
252
253 /**
254  * Helper function to make a login/password dialogue
255  *
256  * \param p_this           Parent vlc_object
257  * \param psz_title        Title for the dialog
258  * \param psz_description  A description
259  * \param ppsz_login       Returned login
260  * \param ppsz_password    Returned password
261  * \return                 Clicked button code
262  */
263 int __intf_UserLoginPassword( vlc_object_t *p_this,
264         const char *psz_title,
265         const char *psz_description,
266         char **ppsz_login,
267         char **ppsz_password )
268 {
269     int i_ret;
270     DIALOG_INIT( TWOWAY, VLC_EGENERIC );
271     p_new->i_type = INTERACT_DIALOG_TWOWAY;
272     p_new->psz_title = strdup( psz_title );
273     p_new->psz_description = strdup( psz_description );
274     p_new->psz_default_button = strdup( _("OK" ) );
275     p_new->psz_alternate_button = strdup( _("Cancel" ) );
276
277     p_new->i_flags = DIALOG_LOGIN_PW_OK_CANCEL;
278
279     i_ret = DialogSend( p_new );
280
281     if( i_ret != DIALOG_CANCELLED && i_ret != VLC_EGENERIC )
282     {
283         *ppsz_login = p_new->psz_returned[0]?
284             strdup( p_new->psz_returned[0] ) : NULL;
285         *ppsz_password = p_new->psz_returned[1]?
286             strdup( p_new->psz_returned[1] ) : NULL;
287     }
288     return i_ret;
289 }
290
291 /**
292  * Helper function to make a dialogue asking the user for !password string
293  *
294  * \param p_this           Parent vlc_object
295  * \param psz_title        Title for the dialog
296  * \param psz_description  A description
297  * \param ppsz_usersString Returned login
298  * \return                 Clicked button code
299  */
300 int __intf_UserStringInput( vlc_object_t *p_this,
301         const char *psz_title,
302         const char *psz_description,
303         char **ppsz_usersString )
304 {
305     int i_ret;
306     DIALOG_INIT( TWOWAY, VLC_EGENERIC );
307     p_new->i_type = INTERACT_DIALOG_TWOWAY;
308     p_new->psz_title = strdup( psz_title );
309     p_new->psz_description = strdup( psz_description );
310
311     p_new->i_flags = DIALOG_PSZ_INPUT_OK_CANCEL;
312
313     i_ret = DialogSend( p_new );
314
315     if( i_ret != DIALOG_CANCELLED )
316     {
317         *ppsz_usersString = p_new->psz_returned[0]?
318             strdup( p_new->psz_returned[0] ) : NULL;
319     }
320     return i_ret;
321 }
322
323 /**
324  * Hide an interaction dialog
325  *
326  * \param p_dialog the dialog to hide
327  * \return nothing
328  */
329 void intf_UserHide( interaction_dialog_t *p_dialog )
330 {
331     interaction_t *p_interaction = InteractionGet( p_dialog->p_parent );
332     assert( p_interaction );
333
334     vlc_object_lock( p_interaction );
335     p_dialog->i_status = ANSWERED_DIALOG;
336     vlc_cond_signal( &p_interaction->wait );
337     vlc_object_unlock( p_interaction );
338     vlc_object_release( p_interaction );
339 }
340
341 /**
342  * Create the initial interaction object
343  * (should only be used in libvlc_InternalInit, LibVLC private)
344  *
345  * \return a vlc_object_t that should be freed when done.
346  */
347 interaction_t * interaction_Init( libvlc_int_t *p_libvlc )
348 {
349     interaction_t *p_interaction;
350
351     /* Make sure we haven't yet created an interaction object */
352     assert( libvlc_priv(p_libvlc)->p_interaction == NULL );
353
354     p_interaction = vlc_custom_create( VLC_OBJECT(p_libvlc),
355                                        sizeof( *p_interaction ),
356                                        VLC_OBJECT_GENERIC, "interaction" );
357     if( !p_interaction )
358         return NULL;
359
360     vlc_object_attach( p_interaction, p_libvlc );
361     p_interaction->i_dialogs = 0;
362     p_interaction->pp_dialogs = NULL;
363     p_interaction->p_intf = NULL;
364
365     vlc_cond_init( &p_interaction->wait );
366
367     if( vlc_clone( &p_interaction->thread, InteractionLoop, p_interaction,
368                    VLC_THREAD_PRIORITY_LOW ) )
369     {
370         msg_Err( p_interaction, "Interaction control thread creation failed, "
371                  "interaction will not be displayed" );
372         vlc_object_detach( p_interaction );
373         vlc_object_release( p_interaction );
374         return NULL;
375     }
376
377     return p_interaction;
378 }
379
380 void interaction_Destroy( interaction_t *p_interaction )
381 {
382     if( !p_interaction )
383         return;
384
385     vlc_cancel( p_interaction->thread );
386     vlc_join( p_interaction->thread, NULL );
387     vlc_cond_destroy( &p_interaction->wait );
388
389     /* Remove all dialogs - Interfaces must be able to clean up their data */
390     for( int i = p_interaction->i_dialogs -1 ; i >= 0; i-- )
391     {
392         interaction_dialog_t * p_dialog = p_interaction->pp_dialogs[i];
393         DialogDestroy( p_dialog );
394         REMOVE_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs, i );
395     }
396     vlc_object_release( p_interaction );
397 }
398
399 static vlc_mutex_t intf_lock = VLC_STATIC_MUTEX;
400
401 int interaction_Register( intf_thread_t *intf )
402 {
403     libvlc_priv_t *priv = libvlc_priv( intf->p_libvlc );
404     int ret = VLC_EGENERIC;
405
406     vlc_mutex_lock( &intf_lock );
407     if( priv->p_interaction_intf == NULL )
408     {   /* Since the interface is responsible for unregistering itself before
409          * it terminates, an object reference is not needed. */
410         priv->p_interaction_intf = intf;
411         ret = VLC_SUCCESS;
412     }
413     vlc_mutex_unlock( &intf_lock );
414     return ret;
415 }
416
417 int interaction_Unregister( intf_thread_t *intf )
418 {
419     libvlc_priv_t *priv = libvlc_priv( intf->p_libvlc );
420     int ret = VLC_EGENERIC;
421
422     vlc_mutex_lock( &intf_lock );
423     if( priv->p_interaction_intf == intf )
424     {
425         priv->p_interaction_intf = NULL;
426         ret = VLC_SUCCESS;
427     }
428     vlc_mutex_unlock( &intf_lock );
429     return ret;
430 }
431
432 /**********************************************************************
433  * The following functions are local
434  **********************************************************************/
435
436 /* Get the interaction object */
437 static interaction_t * InteractionGet( vlc_object_t *p_this )
438 {
439     interaction_t *obj = libvlc_priv(p_this->p_libvlc)->p_interaction;
440     if( obj )
441         vlc_object_hold( obj );
442     return obj;
443 }
444
445
446 /* Look for an interface suitable for interaction, and hold it. */
447 static intf_thread_t *SearchInterface( interaction_t *p_interaction )
448 {
449     libvlc_priv_t *priv = libvlc_priv( p_interaction->p_libvlc );
450     intf_thread_t *intf;
451
452     vlc_mutex_lock( &intf_lock );
453     intf = priv->p_interaction_intf;
454     if( intf != NULL )
455         vlc_object_hold( intf );
456     vlc_mutex_unlock( &intf_lock );
457
458     return intf;
459 }
460
461 /* Destroy a dialog */
462 static void DialogDestroy( interaction_dialog_t *p_dialog )
463 {
464     free( p_dialog->psz_title );
465     free( p_dialog->psz_description );
466     free( p_dialog->psz_default_button );
467     free( p_dialog->psz_alternate_button );
468     free( p_dialog->psz_other_button );
469     vlc_object_release( p_dialog->p_parent );
470     free( p_dialog );
471 }
472
473 /* Ask for the dialog to be sent to the user. Wait for answer
474  * if required */
475 static int DialogSend( interaction_dialog_t *p_dialog )
476 {
477     interaction_t *p_interaction;
478     intf_thread_t *p_intf;
479
480     if( p_dialog->p_parent->i_flags & OBJECT_FLAGS_NOINTERACT )
481         return VLC_EGENERIC;
482
483     p_interaction = InteractionGet( p_dialog->p_parent );
484     if( !p_interaction )
485         return VLC_EGENERIC;
486
487     p_intf = SearchInterface( p_interaction );
488     if( p_intf == NULL )
489     {
490         p_dialog->i_return = DIALOG_DEFAULT; /* Give default answer */
491
492         /* Pretend we have hidden and destroyed it */
493         p_dialog->i_status = HIDING_DIALOG;
494         vlc_object_release( p_interaction );
495         return VLC_SUCCESS;
496     }
497     p_dialog->p_interface = p_intf;
498
499     if( config_GetInt( p_interaction, "interact" ) ||
500         p_dialog->i_flags & DIALOG_BLOCKING_ERROR ||
501         p_dialog->i_flags & DIALOG_NONBLOCKING_ERROR )
502     {
503         vlc_value_t val;
504
505         p_dialog->p_interaction = p_interaction;
506         p_dialog->i_action = INTERACT_NEW;
507         val.p_address = p_dialog;
508         var_Set( p_dialog->p_interface, "interaction", val );
509
510         /* Check if we have already added this dialog */
511         vlc_object_lock( p_interaction );
512         /* Add it to the queue, the main loop will send the orders to the
513          * interface */
514         INSERT_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs,
515                      p_interaction->i_dialogs,  p_dialog );
516
517         if( p_dialog->i_type == INTERACT_DIALOG_TWOWAY ) /* Wait for answer */
518         {
519             vlc_cond_signal( &p_interaction->wait );
520             while( p_dialog->i_status != ANSWERED_DIALOG &&
521                    p_dialog->i_status != HIDING_DIALOG &&
522                    p_dialog->i_status != HIDDEN_DIALOG &&
523                    !p_dialog->p_parent->b_die )
524             {
525                 vlc_object_unlock( p_interaction );
526                 msleep( 100000 );
527                 vlc_object_lock( p_interaction );
528             }
529             if( p_dialog->p_parent->b_die )
530             {
531                 p_dialog->i_return = DIALOG_CANCELLED;
532                 p_dialog->i_status = ANSWERED_DIALOG;
533             }
534             p_dialog->i_flags |= DIALOG_GOT_ANSWER;
535             vlc_cond_signal( &p_interaction->wait );
536             vlc_object_unlock( p_interaction );
537             vlc_object_release( p_interaction );
538             return p_dialog->i_return;
539         }
540         else
541         {
542             /* Pretend we already retrieved the "answer" */
543             p_dialog->i_flags |=  DIALOG_GOT_ANSWER;
544             vlc_cond_signal( &p_interaction->wait );
545             vlc_object_unlock( p_interaction );
546             vlc_object_release( p_interaction );
547             return VLC_SUCCESS;
548         }
549     }
550     else
551     {
552         vlc_object_release( p_interaction );
553         return VLC_EGENERIC;
554     }
555 }
556
557 static void* InteractionLoop( void *p_this )
558 {
559     interaction_t *p_interaction = p_this;
560
561     vlc_object_lock( p_interaction );
562     mutex_cleanup_push( &(vlc_internals(p_interaction)->lock) );
563     for( ;; )
564     {
565         int canc = vlc_savecancel();
566         InteractionManage( p_interaction );
567         vlc_restorecancel( canc );
568
569         vlc_cond_wait( &p_interaction->wait, &(vlc_internals(p_interaction)->lock) );
570     }
571     vlc_cleanup_pop( );
572     assert( 0 );
573 }
574
575 /**
576  * The main interaction processing loop
577  *
578  * \param p_interaction the interaction object
579  * \return nothing
580  */
581
582 static void InteractionManage( interaction_t *p_interaction )
583 {
584     vlc_value_t val;
585     int i_index;
586
587     for( i_index = 0 ; i_index < p_interaction->i_dialogs; i_index ++ )
588     {
589         interaction_dialog_t *p_dialog = p_interaction->pp_dialogs[i_index];
590         switch( p_dialog->i_status )
591         {
592         case ANSWERED_DIALOG:
593             /* Ask interface to hide it */
594             p_dialog->i_action = INTERACT_HIDE;
595             val.p_address = p_dialog;
596             var_Set( p_dialog->p_interface, "interaction", val );
597             p_dialog->i_status = HIDING_DIALOG;
598             break;
599         case UPDATED_DIALOG:
600             p_dialog->i_action = INTERACT_UPDATE;
601             val.p_address = p_dialog;
602             var_Set( p_dialog->p_interface, "interaction", val );
603             p_dialog->i_status = SENT_DIALOG;
604             break;
605         case HIDDEN_DIALOG:
606             if( !(p_dialog->i_flags & DIALOG_GOT_ANSWER) ) break;
607             p_dialog->i_action = INTERACT_DESTROY;
608             val.p_address = p_dialog;
609             var_Set( p_dialog->p_interface, "interaction", val );
610             break;
611         case DESTROYED_DIALOG:
612             /* Interface has now destroyed it, remove it */
613             REMOVE_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs,
614                          i_index);
615             i_index--;
616             DialogDestroy( p_dialog );
617             break;
618         }
619     }
620 }