]> git.sesse.net Git - vlc/blob - src/interface/interaction.c
Propose to fix AVI index
[vlc] / src / interface / interaction.c
1 /*****************************************************************************
2  * interaction.c: User interaction functions
3  *****************************************************************************
4  * Copyright (C) 1998-2004 VideoLAN
5  * $Id: interface.c 10147 2005-03-05 17:18:30Z gbazin $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /**
25  *   \file
26  *   This file contains functions related to user interaction management
27  */
28
29 /*****************************************************************************
30  * Preamble
31  *****************************************************************************/
32 #include <stdlib.h>                                      /* free(), strtol() */
33 #include <stdio.h>                                                   /* FILE */
34 #include <string.h>                                            /* strerror() */
35
36 #include <vlc/vlc.h>
37 #include <vlc/input.h>
38
39 #include "vlc_interaction.h"
40 #include "vlc_interface.h"
41 #include "vlc_playlist.h"
42
43 /*****************************************************************************
44  * Local prototypes
45  *****************************************************************************/
46 static void                  intf_InteractionInit( playlist_t *p_playlist );
47 static interaction_t *       intf_InteractionGet( vlc_object_t *p_this );
48 static void                  intf_InteractionSearchInterface( interaction_t *
49                                                           p_interaction );
50 static int                   intf_WaitAnswer( interaction_t *p_interact,
51                              interaction_dialog_t *p_dialog );
52 static int                   intf_Send( interaction_t *p_interact,
53                              interaction_dialog_t *p_dialog );
54 static interaction_dialog_t *intf_InteractionGetById( vlc_object_t* , int );
55 static void                  intf_InteractionDialogDestroy(
56                                               interaction_dialog_t *p_dialog );
57
58 /**
59  * Send an interaction element to the user
60  *
61  * \param p_this the calling vlc_object_t
62  * \param p_interact the interaction element
63  * \return VLC_SUCCESS or an error code
64  */
65 int  __intf_Interact( vlc_object_t *p_this, interaction_dialog_t *
66                                     p_dialog )
67 {
68     interaction_t *p_interaction = intf_InteractionGet( p_this );
69
70     /* Get an id, if we don't already have one */
71     if( p_dialog->i_id == 0 )
72     {
73         p_dialog->i_id = ++p_interaction->i_last_id;
74     }
75
76     p_dialog->p_interaction = p_interaction;
77     p_dialog->p_parent = p_this;
78
79     if( p_dialog->i_type == INTERACT_DIALOG_TWOWAY )
80     {
81         return intf_WaitAnswer( p_interaction, p_dialog );
82     }
83     else
84     {
85         p_dialog->i_flags |=  DIALOG_GOT_ANSWER;
86         return intf_Send( p_interaction, p_dialog );
87     }
88 }
89
90 /**
91  * Destroy the interaction system
92  */
93 void intf_InteractionDestroy( interaction_t *p_interaction )
94 {
95     int i;
96
97     // Remove all dialogs - Interfaces must be able to clean up their data
98
99     for( i = p_interaction->i_dialogs -1 ; i >= 0; i-- )
100     {
101         interaction_dialog_t * p_dialog = p_interaction->pp_dialogs[i];
102         intf_InteractionDialogDestroy( p_dialog );
103         REMOVE_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs, i );
104     }
105
106     vlc_object_destroy( p_interaction );
107 }
108
109 /**
110  * The main interaction processing loop
111  * This function is called from the playlist loop
112  *
113  * \param p_playlist the parent playlist
114  * \return nothing
115  */
116 void intf_InteractionManage( playlist_t *p_playlist )
117 {
118     vlc_value_t val;
119     int i_index;
120     interaction_t *p_interaction;
121
122     p_interaction = p_playlist->p_interaction;
123
124     // Nothing to do
125     if( p_interaction->i_dialogs == 0 ) return;
126
127     vlc_mutex_lock( &p_interaction->object_lock );
128
129     intf_InteractionSearchInterface( p_interaction );
130
131     if( !p_interaction->p_intf )
132     {
133         // We mark all dialogs as answered with their "default" answer
134         for( i_index = 0 ; i_index < p_interaction->i_dialogs; i_index ++ )
135         {
136             interaction_dialog_t *p_dialog = p_interaction->pp_dialogs[i_index];
137
138             // Give default answer
139             p_dialog->i_return = DIALOG_DEFAULT;
140             if( p_dialog->i_flags & DIALOG_OK_CANCEL )
141                 p_dialog->i_return = DIALOG_CANCELLED;
142
143             // Pretend we have hidden and destroyed it
144             if( p_dialog->i_status == HIDDEN_DIALOG )
145             {
146                 p_dialog->i_status = DESTROYED_DIALOG;
147             }
148             else
149             {
150                 p_dialog->i_status = HIDING_DIALOG;
151             }
152         }
153     }
154     else
155     {
156         vlc_object_yield( p_interaction->p_intf );
157     }
158
159     for( i_index = 0 ; i_index < p_interaction->i_dialogs; i_index ++ )
160     {
161         interaction_dialog_t *p_dialog = p_interaction->pp_dialogs[i_index];
162         switch( p_dialog->i_status )
163         {
164         case ANSWERED_DIALOG:
165             // Ask interface to hide it
166             msg_Dbg( p_interaction, "Hiding dialog %i", p_dialog->i_id );
167             p_dialog->i_action = INTERACT_HIDE;
168             val.p_address = p_dialog;
169             if( p_interaction->p_intf )
170                 var_Set( p_interaction->p_intf, "interaction", val );
171             p_dialog->i_status = HIDING_DIALOG;
172             break;
173         case UPDATED_DIALOG:
174             p_dialog->i_action = INTERACT_UPDATE;
175             val.p_address = p_dialog;
176             if( p_interaction->p_intf )
177                 var_Set( p_interaction->p_intf, "interaction", val );
178             p_dialog->i_status = SENT_DIALOG;
179             msg_Dbg( p_interaction, "Updating dialog %i, %i widgets",
180                                     p_dialog->i_id, p_dialog->i_widgets );
181             break;
182         case HIDDEN_DIALOG:
183             if( !(p_dialog->i_flags & DIALOG_GOT_ANSWER) ) break;
184             if( !(p_dialog->i_flags & DIALOG_REUSABLE) )
185             {
186                 msg_Dbg( p_interaction, "Destroying dialog %i",
187                                                 p_dialog->i_id );
188                 p_dialog->i_action = INTERACT_DESTROY;
189                 val.p_address = p_dialog;
190                 if( p_interaction->p_intf )
191                     var_Set( p_interaction->p_intf, "interaction", val );
192             }
193             break;
194         case DESTROYED_DIALOG:
195             msg_Dbg( p_interaction, "Removing dialog %i",
196                                     p_dialog->i_id );
197             // Interface has now destroyed it, remove it
198             REMOVE_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs,
199                          i_index);
200             i_index--;
201             intf_InteractionDialogDestroy( p_dialog );
202             break;
203         case NEW_DIALOG:
204             // This is truly a new dialog, send it.
205             p_dialog->i_action = INTERACT_NEW;
206             val.p_address = p_dialog;
207             if( p_interaction->p_intf )
208                 var_Set( p_interaction->p_intf, "interaction", val );
209             p_dialog->i_status = SENT_DIALOG;
210             break;
211         }
212     }
213
214     if( p_interaction->p_intf )
215     {
216         vlc_object_release( p_interaction->p_intf );
217     }
218
219     vlc_mutex_unlock( &p_playlist->p_interaction->object_lock );
220 }
221
222
223
224 #define INTERACT_INIT( new )                                            \
225         new = (interaction_dialog_t*)malloc(                            \
226                         sizeof( interaction_dialog_t ) );               \
227         new->i_widgets = 0;                                             \
228         new->pp_widgets = NULL;                                         \
229         new->psz_title = NULL;                                          \
230         new->psz_description = NULL;                                    \
231         new->i_id = 0;                                                  \
232         new->i_flags = 0;                                               \
233         new->i_status = NEW_DIALOG;
234
235 #define INTERACT_FREE( new )                                            \
236         if( new->psz_title ) free( new->psz_title );                    \
237         if( new->psz_description ) free( new->psz_description );
238
239 /** Helper function to send an error message
240  *  \param p_this     Parent vlc_object
241  *  \param i_id       A predefined ID, 0 if not applicable
242  *  \param psz_title  Title for the dialog
243  *  \param psz_format The message to display
244  *  */
245 void __intf_UserFatal( vlc_object_t *p_this,
246                        const char *psz_title,
247                        const char *psz_format, ... )
248 {
249     va_list args;
250     interaction_dialog_t *p_new = NULL;
251     user_widget_t *p_widget = NULL;
252     int i_id = DIALOG_ERRORS;
253
254     if( i_id > 0 )
255     {
256         p_new = intf_InteractionGetById( p_this, i_id );
257     }
258     if( !p_new )
259     {
260         INTERACT_INIT( p_new );
261         if( i_id > 0 ) p_new->i_id = i_id ;
262     }
263     else
264     {
265         p_new->i_status = UPDATED_DIALOG;
266     }
267
268     p_new->i_flags |= DIALOG_REUSABLE;
269
270     p_new->i_type = INTERACT_DIALOG_ONEWAY;
271     p_new->psz_title = strdup( psz_title );
272
273     p_widget = (user_widget_t* )malloc( sizeof( user_widget_t ) );
274
275     p_widget->i_type = WIDGET_TEXT;
276     p_widget->val.psz_string = NULL;
277
278     va_start( args, psz_format );
279     vasprintf( &p_widget->psz_text, psz_format, args );
280     va_end( args );
281
282     INSERT_ELEM ( p_new->pp_widgets,
283                   p_new->i_widgets,
284                   p_new->i_widgets,
285                   p_widget );
286
287     p_new->i_flags |= DIALOG_CLEAR_NOSHOW;
288
289     intf_Interact( p_this, p_new );
290 }
291
292 /** Helper function to make a login/password box
293  *  \param p_this           Parent vlc_object
294  *  \param psz_title        Title for the dialog
295  *  \param psz_description  A description
296  *  \param ppsz_login       Returned login
297  *  \param ppsz_password    Returned password
298  *  \return                 Clicked button code
299  */
300 int __intf_UserYesNo( vlc_object_t *p_this,
301                       const char *psz_title,
302                       const char *psz_description )
303 {
304     int i_ret;
305     interaction_dialog_t *p_new = NULL;
306     user_widget_t *p_widget = NULL;
307
308     INTERACT_INIT( p_new );
309
310     p_new->i_type = INTERACT_DIALOG_TWOWAY;
311     p_new->psz_title = strdup( psz_title );
312
313     /* Text */
314     p_widget = (user_widget_t* )malloc( sizeof( user_widget_t ) );
315     p_widget->i_type = WIDGET_TEXT;
316     p_widget->psz_text = strdup( psz_description );
317     p_widget->val.psz_string = NULL;
318     INSERT_ELEM ( p_new->pp_widgets, p_new->i_widgets,
319                   p_new->i_widgets,  p_widget );
320
321     p_new->i_flags = DIALOG_YES_NO_CANCEL;
322
323     i_ret = intf_Interact( p_this, p_new );
324
325     return i_ret;
326 }
327
328 /** Helper function to ask a yes-no question
329  *  \param p_this           Parent vlc_object
330  *  \param psz_title        Title for the dialog
331  *  \param psz_description  A description
332  *  \return                 Clicked button code
333  */
334 int __intf_UserLoginPassword( vlc_object_t *p_this,
335                               const char *psz_title,
336                               const char *psz_description,
337                               char **ppsz_login,
338                               char **ppsz_password )
339 {
340     int i_ret;
341     interaction_dialog_t *p_new = NULL;
342     user_widget_t *p_widget = NULL;
343
344     INTERACT_INIT( p_new );
345
346     p_new->i_type = INTERACT_DIALOG_TWOWAY;
347     p_new->psz_title = strdup( psz_title );
348
349     /* Text */
350     p_widget = (user_widget_t* )malloc( sizeof( user_widget_t ) );
351     p_widget->i_type = WIDGET_TEXT;
352     p_widget->psz_text = strdup( psz_description );
353     p_widget->val.psz_string = NULL;
354     INSERT_ELEM ( p_new->pp_widgets, p_new->i_widgets,
355                   p_new->i_widgets,  p_widget );
356
357     /* Login */
358     p_widget = (user_widget_t* )malloc( sizeof( user_widget_t ) );
359     p_widget->i_type = WIDGET_INPUT_TEXT;
360     p_widget->psz_text = strdup( _("Login") );
361     p_widget->val.psz_string = NULL;
362     INSERT_ELEM ( p_new->pp_widgets, p_new->i_widgets,
363                   p_new->i_widgets,  p_widget );
364
365     /* Password */
366     p_widget = (user_widget_t* )malloc( sizeof( user_widget_t ) );
367     p_widget->i_type = WIDGET_INPUT_TEXT;
368     p_widget->psz_text = strdup( _("Password") );
369     p_widget->val.psz_string = NULL;
370     INSERT_ELEM ( p_new->pp_widgets, p_new->i_widgets,
371                   p_new->i_widgets,  p_widget );
372
373     p_new->i_flags = DIALOG_OK_CANCEL;
374
375     i_ret = intf_Interact( p_this, p_new );
376
377     if( i_ret != DIALOG_CANCELLED )
378     {
379         *ppsz_login = strdup( p_new->pp_widgets[1]->val.psz_string );
380         *ppsz_password = strdup( p_new->pp_widgets[2]->val.psz_string );
381     }
382     return i_ret;
383 }
384
385
386
387
388
389 /**********************************************************************
390  * The following functions are local
391  **********************************************************************/
392
393 /* Get the interaction object. Create it if needed */
394 static interaction_t * intf_InteractionGet( vlc_object_t *p_this )
395 {
396     playlist_t *p_playlist;
397     interaction_t *p_interaction;
398
399     p_playlist = (playlist_t*) vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
400                                                 FIND_ANYWHERE );
401
402     if( !p_playlist )
403     {
404         return NULL;
405     }
406
407     if( p_playlist->p_interaction == NULL )
408     {
409         intf_InteractionInit( p_playlist );
410     }
411
412     p_interaction = p_playlist->p_interaction;
413
414     vlc_object_release( p_playlist );
415
416     return p_interaction;
417 }
418
419 /* Create the interaction object in the given playlist object */
420 static void intf_InteractionInit( playlist_t *p_playlist )
421 {
422     interaction_t *p_interaction;
423
424     msg_Dbg( p_playlist, "initializing interaction system" );
425
426     p_interaction = vlc_object_create( VLC_OBJECT( p_playlist ),
427                                        sizeof( interaction_t ) );
428     if( !p_interaction )
429     {
430         msg_Err( p_playlist,"out of memory" );
431         return;
432     }
433
434     p_interaction->i_dialogs = 0;
435     p_interaction->pp_dialogs = NULL;
436     p_interaction->p_intf = NULL;
437     p_interaction->i_last_id = DIALOG_LAST_PREDEFINED + 1;
438
439     vlc_mutex_init( p_interaction , &p_interaction->object_lock );
440
441     p_playlist->p_interaction  = p_interaction;
442 }
443
444 /* Look for an interface suitable for interaction */
445 static void intf_InteractionSearchInterface( interaction_t *p_interaction )
446 {
447     vlc_list_t  *p_list;
448     int          i_index;
449
450     p_interaction->p_intf = NULL;
451
452     p_list = vlc_list_find( p_interaction, VLC_OBJECT_INTF, FIND_ANYWHERE );
453     if( !p_list )
454     {
455         msg_Err( p_interaction, "Unable to create module list" );
456         return;
457     }
458
459     for( i_index = 0; i_index < p_list->i_count; i_index ++ )
460     {
461         intf_thread_t *p_intf = (intf_thread_t *)
462                                         p_list->p_values[i_index].p_object;
463         if( p_intf->b_interaction )
464         {
465             p_interaction->p_intf = p_intf;
466             break;
467         }
468     }
469     vlc_list_release ( p_list );
470 }
471
472 /* Add a dialog to the queue and wait for answer */
473 static int intf_WaitAnswer( interaction_t *p_interact, interaction_dialog_t *p_dialog )
474 {
475     int i;
476     vlc_bool_t b_found = VLC_FALSE;
477     vlc_mutex_lock( &p_interact->object_lock );
478     for( i = 0 ; i< p_interact->i_dialogs; i++ )
479     {
480         if( p_interact->pp_dialogs[i]->i_id == p_dialog->i_id )
481         {
482             b_found = VLC_TRUE;
483         }
484     }
485     if( ! b_found )
486     {
487         INSERT_ELEM( p_interact->pp_dialogs,
488                      p_interact->i_dialogs,
489                      p_interact->i_dialogs,
490                      p_dialog );
491     }
492     else
493         p_dialog->i_status = UPDATED_DIALOG;
494     vlc_mutex_unlock( &p_interact->object_lock );
495
496     /// \todo Check that the initiating object is not dying
497     while( p_dialog->i_status != ANSWERED_DIALOG &&
498            p_dialog->i_status != HIDING_DIALOG &&
499            p_dialog->i_status != HIDDEN_DIALOG &&
500            !p_dialog->p_parent->b_die )
501     {
502         msleep( 100000 );
503     }
504     /// \todo locking
505     if( p_dialog->p_parent->b_die )
506     {
507         p_dialog->i_return = DIALOG_CANCELLED;
508         p_dialog->i_status = ANSWERED_DIALOG;
509     }
510     p_dialog->i_flags |= DIALOG_GOT_ANSWER;
511     return p_dialog->i_return;
512 }
513
514 /* Add a dialog to the queue and return */
515 static int intf_Send( interaction_t *p_interact, interaction_dialog_t *p_dialog )
516 {
517     int i;
518     vlc_bool_t b_found = VLC_FALSE;
519     vlc_mutex_lock( &p_interact->object_lock );
520
521     for( i = 0 ; i< p_interact->i_dialogs; i++ )
522     {
523         if( p_interact->pp_dialogs[i]->i_id == p_dialog->i_id )
524         {
525             b_found = VLC_TRUE;
526         }
527     }
528     if( !b_found )
529     {
530         INSERT_ELEM( p_interact->pp_dialogs,
531                      p_interact->i_dialogs,
532                      p_interact->i_dialogs,
533                      p_dialog );
534     }
535     else
536         p_dialog->i_status = UPDATED_DIALOG;
537     // Pretend we already retrieved the "answer"
538     p_dialog->i_flags |= DIALOG_GOT_ANSWER;
539     vlc_mutex_unlock( &p_interact->object_lock );
540     return VLC_SUCCESS;
541 }
542
543 /* Find an interaction dialog by its id */
544 static interaction_dialog_t *intf_InteractionGetById( vlc_object_t* p_this,
545                                                        int i_id )
546 {
547     interaction_t *p_interaction = intf_InteractionGet( p_this );
548     int i;
549
550     if( !p_interaction ) return NULL;
551
552     for( i = 0 ; i< p_interaction->i_dialogs; i++ )
553     {
554         if( p_interaction->pp_dialogs[i]->i_id == i_id )
555         {
556             return p_interaction->pp_dialogs[i];
557         }
558     }
559     return NULL;
560 }
561
562 #define FREE( i ) { if( i ) free( i ); i = NULL; }
563
564 static void intf_InteractionDialogDestroy( interaction_dialog_t *p_dialog )
565 {
566     int i;
567     for( i = p_dialog->i_widgets - 1 ; i >= 0 ; i-- )
568     {
569         user_widget_t *p_widget = p_dialog->pp_widgets[i];
570         FREE( p_widget->psz_text );
571         FREE( p_widget->val.psz_string );
572
573         REMOVE_ELEM( p_dialog->pp_widgets, p_dialog->i_widgets, i );
574         free( p_widget );
575     }
576     FREE( p_dialog->psz_title );
577     FREE( p_dialog->psz_description );
578
579     free( p_dialog );
580 }