]> git.sesse.net Git - vlc/blob - src/interface/interface.c
Mac OS X: Remove dead code. Make sure terminate: calls its super.
[vlc] / src / interface / interface.c
1 /*****************************************************************************
2  * interface.c: interface access for other threads
3  * This library provides basic functions for threads to interact with user
4  * interface, such as command line.
5  *****************************************************************************
6  * Copyright (C) 1998-2004 the VideoLAN team
7  * $Id$
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /**
27  *   \file
28  *   This file contains functions related to interface management
29  */
30
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #include <stdlib.h>                                      /* free(), strtol() */
36 #include <stdio.h>                                                   /* FILE */
37 #include <string.h>                                            /* strerror() */
38
39 #include <vlc/vlc.h>
40
41 #include <vlc_aout.h>
42 #include <vlc_vout.h>
43
44 #include "vlc_interface.h"
45
46 #ifdef __APPLE__
47 #    include <Cocoa/Cocoa.h>
48 #endif
49
50 /*****************************************************************************
51  * Local prototypes
52  *****************************************************************************/
53 static void RunInterface( intf_thread_t *p_intf );
54
55 static int SwitchIntfCallback( vlc_object_t *, char const *,
56                                vlc_value_t , vlc_value_t , void * );
57 static int AddIntfCallback( vlc_object_t *, char const *,
58                             vlc_value_t , vlc_value_t , void * );
59
60 #ifdef __APPLE__
61 static void Manager( intf_thread_t *p_intf );
62 /*****************************************************************************
63  * VLCApplication interface
64  *****************************************************************************/
65 @interface VLCApplication : NSApplication
66 {
67    libvlc_int_t *o_libvlc;
68 }
69
70 - (void)setVLC: (libvlc_int_t *)p_libvlc;
71
72 @end
73 #endif
74
75 /*****************************************************************************
76  * intf_Create: prepare interface before main loop
77  *****************************************************************************
78  * This function opens output devices and creates specific interfaces. It sends
79  * its own error messages.
80  *****************************************************************************/
81 /**
82  * Create the interface, and prepare it for main loop.
83  * You can give some additional options to be used for interface initialization
84  *
85  * \param p_this the calling vlc_object_t
86  * \param psz_module a preferred interface module
87  * \param i_options number additional options
88  * \param ppsz_options additional option strings
89  * \return a pointer to the created interface thread, NULL on error
90  */
91 intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module,
92                               int i_options, const char *const *ppsz_options  )
93 {
94     intf_thread_t * p_intf;
95     int i;
96
97     /* Allocate structure */
98     p_intf = vlc_object_create( p_this, VLC_OBJECT_INTF );
99     if( !p_intf )
100     {
101         msg_Err( p_this, "out of memory" );
102         return NULL;
103     }
104     p_intf->pf_request_window = NULL;
105     p_intf->pf_release_window = NULL;
106     p_intf->pf_control_window = NULL;
107     p_intf->b_play = VLC_FALSE;
108     p_intf->b_interaction = VLC_FALSE;
109
110     for( i = 0 ; i< i_options; i++ )
111     {
112         var_OptionParse( p_intf, ppsz_options[i] );
113     }
114
115     /* Choose the best module */
116     p_intf->p_module = module_Need( p_intf, "interface", psz_module, VLC_FALSE );
117
118     if( p_intf->p_module == NULL )
119     {
120         msg_Err( p_intf, "no suitable interface module" );
121         vlc_object_destroy( p_intf );
122         return NULL;
123     }
124
125     /* Initialize structure */
126     p_intf->b_menu        = VLC_FALSE;
127     p_intf->b_menu_change = VLC_FALSE;
128
129     /* Initialize mutexes */
130     vlc_mutex_init( p_intf, &p_intf->change_lock );
131
132     /* Attach interface to its parent object */
133     vlc_object_attach( p_intf, p_this );
134
135     return p_intf;
136 }
137
138 /*****************************************************************************
139  * intf_RunThread: launch the interface thread
140  *****************************************************************************
141  * This function either creates a new thread and runs the interface in it,
142  * or runs the interface in the current thread, depending on b_block.
143  *****************************************************************************/
144 /**
145  * Run the interface thread.
146  *
147  * If b_block is not set, runs the interface in the thread, else,
148  * creates a new thread and runs the interface.
149  * \param p_intf the interface thread
150  * \return VLC_SUCCESS on success, an error number else
151  */
152 int intf_RunThread( intf_thread_t *p_intf )
153 {
154 #ifdef __APPLE__
155     NSAutoreleasePool * o_pool;
156
157     if( p_intf->b_block )
158     {
159         /* This is the primary intf */
160         /* Run a manager thread, launch the interface, kill the manager */
161         if( vlc_thread_create( p_intf, "manage", Manager,
162                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
163         {
164             msg_Err( p_intf, "cannot spawn manager thread" );
165             return VLC_EGENERIC;
166         }
167     }
168
169     if( p_intf->b_block && strncmp( p_intf->p_libvlc->psz_object_name,
170                                     "clivlc", 6) )
171     {
172         o_pool = [[NSAutoreleasePool alloc] init];
173         [VLCApplication sharedApplication];
174         [NSApp setVLC: p_intf->p_libvlc];
175     }
176
177     if( p_intf->b_block &&
178         ( !strncmp( p_intf->p_module->psz_object_name, "macosx" , 6 ) ||
179           !strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6 ) ) )
180     {
181         /* VLC in normal primary interface mode */
182         RunInterface( p_intf );
183         p_intf->b_die = VLC_TRUE;
184     }
185     else
186     {
187         /* This interface doesn't need to be run */
188         if( !p_intf->pf_run )
189             return VLC_SUCCESS;
190
191         /* Run the interface in a separate thread */
192         if( !strcmp( p_intf->p_module->psz_object_name, "macosx" ) )
193         {
194             msg_Err( p_intf, "You cannot run the MacOS X module as an "
195                              "extra interface. Please read the "
196                              "README.MacOSX.rtf file.");
197             return VLC_EGENERIC;
198         }
199         if( vlc_thread_create( p_intf, "interface", RunInterface,
200                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
201         {
202             msg_Err( p_intf, "cannot spawn interface thread" );
203             return VLC_EGENERIC;
204         }
205
206         if( p_intf->b_block )
207         {
208             /* VLC in primary interface mode with a working macosx vout */
209             [NSApp run];
210             p_intf->b_die = VLC_TRUE;
211         }
212     }
213 #else
214     if( p_intf->b_block )
215     {
216         /* If the main interface does not have a run function,
217          * implement a waiting loop ourselves
218          */
219         if( p_intf->pf_run )
220             RunInterface( p_intf );
221         else
222         {
223             while( !intf_ShouldDie( p_intf ) )
224                 msleep( INTF_IDLE_SLEEP * 2);
225         }
226         p_intf->b_die = VLC_TRUE;
227     }
228     else
229     {
230         /* This interface doesn't need to be run */
231         if( !p_intf->pf_run )
232             return VLC_SUCCESS;
233
234         /* Run the interface in a separate thread */
235         if( vlc_thread_create( p_intf, "interface", RunInterface,
236                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
237         {
238             msg_Err( p_intf, "cannot spawn interface thread" );
239             return VLC_EGENERIC;
240         }
241     }
242 #endif
243
244     return VLC_SUCCESS;
245 }
246
247 /**
248  * Stops the interface thread
249  *
250  * This function asks the interface thread to stop
251  * \param p_intf the interface thread
252  * \return nothing
253  */
254 void intf_StopThread( intf_thread_t *p_intf )
255 {
256     /* Tell the interface to die */
257     if( !p_intf->b_block )
258     {
259         p_intf->b_die = VLC_TRUE;
260         if( p_intf->pf_run )
261         {
262             vlc_cond_signal( &p_intf->object_wait );
263             vlc_thread_join( p_intf );
264         }
265     }
266 }
267
268 /**
269  * \brief Destroy the interface after the main loop endeed.
270  *
271  * Destroys interfaces and closes output devices
272  * \param p_intf the interface thread
273  * \return nothing
274  */
275 void intf_Destroy( intf_thread_t *p_intf )
276 {
277     /* Unlock module if present (a switch may have failed) */
278     if( p_intf->p_module )
279     {
280         module_Unneed( p_intf, p_intf->p_module );
281     }
282
283     vlc_mutex_destroy( &p_intf->change_lock );
284
285     /* Free structure */
286     vlc_object_destroy( p_intf );
287 }
288
289
290 /* Following functions are local */
291
292 /*****************************************************************************
293  * Manager: helper thread for blocking OS X
294  *****************************************************************************/
295 #ifdef __APPLE__
296 static void Manager( intf_thread_t *p_intf )
297 {
298     while( !p_intf->b_die )
299     {
300         msleep( INTF_IDLE_SLEEP );
301
302         if( p_intf->p_libvlc->b_die )
303         {
304             p_intf->b_die = VLC_TRUE;
305             if( strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6 ) )
306             {
307                 [NSApp stop: NULL];
308             }
309             return;
310         }
311     }
312 }
313 #endif
314
315 /*****************************************************************************
316  * RunInterface: setups necessary data and give control to the interface
317  *****************************************************************************/
318 static void RunInterface( intf_thread_t *p_intf )
319 {
320     static const char *ppsz_interfaces[] =
321     {
322         "skins2", "Skins 2",
323 #ifndef WIN32
324         "wxwidgets", "wxWidgets",
325 #endif
326         NULL, NULL
327     };
328     const char **ppsz_parser;
329
330     vlc_list_t *p_list;
331     int i;
332     vlc_value_t val, text;
333     char *psz_intf;
334
335     /* Variable used for interface switching */
336     p_intf->psz_switch_intf = NULL;
337     var_Create( p_intf, "intf-switch", VLC_VAR_STRING |
338                 VLC_VAR_HASCHOICE | VLC_VAR_ISCOMMAND );
339     text.psz_string = _("Switch interface");
340     var_Change( p_intf, "intf-switch", VLC_VAR_SETTEXT, &text, NULL );
341
342     /* Only fill the list with available modules */
343     p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
344     for( ppsz_parser = ppsz_interfaces; *ppsz_parser; ppsz_parser += 2 )
345     {
346         for( i = 0; i < p_list->i_count; i++ )
347         {
348             module_t *p_module = (module_t *)p_list->p_values[i].p_object;
349             if( !strcmp( p_module->psz_object_name, ppsz_parser[0] ) )
350             {
351                 val.psz_string = (char *)ppsz_parser[0];
352                 text.psz_string = (char *)_(ppsz_parser[1]);
353                 var_Change( p_intf, "intf-switch", VLC_VAR_ADDCHOICE,
354                             &val, &text );
355                 break;
356             }
357         }
358     }
359     vlc_list_release( p_list );
360
361     var_AddCallback( p_intf, "intf-switch", SwitchIntfCallback, NULL );
362
363     /* Variable used for interface spawning */
364     var_Create( p_intf, "intf-add", VLC_VAR_STRING |
365                 VLC_VAR_HASCHOICE | VLC_VAR_ISCOMMAND );
366     text.psz_string = _("Add Interface");
367     var_Change( p_intf, "intf-add", VLC_VAR_SETTEXT, &text, NULL );
368
369     val.psz_string = (char *)"rc"; text.psz_string = (char *)"Console";
370     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
371     val.psz_string = (char *)"telnet";
372     text.psz_string = (char *)_("Telnet Interface");
373     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
374     val.psz_string = (char *)"http";
375     text.psz_string = (char *)_("Web Interface");
376     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
377     val.psz_string = (char *)"logger";
378     text.psz_string = (char *)_("Debug logging");
379     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
380     val.psz_string = (char *)"gestures";
381     text.psz_string = (char *)_("Mouse Gestures");
382     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
383
384     var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL );
385
386     do
387     {
388         /* Give control to the interface */
389         p_intf->pf_run( p_intf );
390
391         /* Reset play on start status */
392         p_intf->b_play = VLC_FALSE;
393
394         if( !p_intf->psz_switch_intf )
395         {
396             break;
397         }
398
399         /* Make sure the old interface is completely uninitialized */
400         module_Unneed( p_intf, p_intf->p_module );
401
402         /* Provide ability to switch the main interface on the fly */
403         psz_intf = p_intf->psz_switch_intf;
404         p_intf->psz_switch_intf = NULL;
405
406         vlc_mutex_lock( &p_intf->object_lock );
407         p_intf->b_die = VLC_FALSE;
408         p_intf->b_dead = VLC_FALSE;
409         vlc_mutex_unlock( &p_intf->object_lock );
410
411         p_intf->p_module = module_Need( p_intf, "interface", psz_intf, 0 );
412         free( psz_intf );
413     }
414     while( p_intf->p_module );
415 }
416
417 static int SwitchIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
418                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
419 {
420     intf_thread_t *p_intf = (intf_thread_t *)p_this;
421
422     p_intf->psz_switch_intf =
423         malloc( strlen(newval.psz_string) + sizeof(",none") );
424     sprintf( p_intf->psz_switch_intf, "%s,none", newval.psz_string );
425     p_intf->b_die = VLC_TRUE;
426
427     return VLC_SUCCESS;
428 }
429
430 static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
431                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
432 {
433     intf_thread_t *p_intf;
434     char *psz_intf = malloc( strlen(newval.psz_string) + sizeof(",none") );
435
436     /* Try to create the interface */
437     sprintf( psz_intf, "%s,none", newval.psz_string );
438     p_intf = intf_Create( p_this->p_libvlc, psz_intf, 0, NULL );
439     free( psz_intf );
440     if( p_intf == NULL )
441     {
442         msg_Err( p_this, "interface \"%s\" initialization failed",
443                  newval.psz_string );
444         return VLC_EGENERIC;
445     }
446
447     /* Try to run the interface */
448     p_intf->b_block = VLC_FALSE;
449     if( intf_RunThread( p_intf ) != VLC_SUCCESS )
450     {
451         vlc_object_detach( p_intf );
452         intf_Destroy( p_intf );
453         return VLC_EGENERIC;
454     }
455
456     return VLC_SUCCESS;
457 }
458
459 #ifdef __APPLE__
460 /*****************************************************************************
461  * VLCApplication implementation
462  *****************************************************************************/
463 @implementation VLCApplication
464
465 - (void)setVLC: (libvlc_int_t *) p_libvlc
466 {
467     o_libvlc = p_libvlc;
468 }
469
470 - (void)terminate: (id)sender
471 {
472     o_libvlc->b_die = VLC_TRUE;
473     [super terminate: sender];
474 }
475
476 @end
477 #endif
478