]> git.sesse.net Git - vlc/blob - src/interface/interface.c
Should fix OS X build
[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 #include <vlc/input.h>
41
42 #include "audio_output.h"
43
44 #include "vlc_interface.h"
45 #include "vlc_video.h"
46 #include "video_output.h"
47
48 #ifdef __APPLE__
49 #    include <Cocoa/Cocoa.h>
50 #endif
51
52 /*****************************************************************************
53  * Local prototypes
54  *****************************************************************************/
55 static void Manager( intf_thread_t *p_intf );
56 static void RunInterface( intf_thread_t *p_intf );
57
58 static int SwitchIntfCallback( vlc_object_t *, char const *,
59                                vlc_value_t , vlc_value_t , void * );
60 static int AddIntfCallback( vlc_object_t *, char const *,
61                             vlc_value_t , vlc_value_t , void * );
62
63 #ifdef __APPLE__
64 /*****************************************************************************
65  * VLCApplication interface
66  *****************************************************************************/
67 @interface VLCApplication : NSApplication
68 {
69    libvlc_int_t *o_libvlc;
70 }
71
72 - (void)setVLC: (libvlc_int_t *)p_libvlc;
73
74 @end
75 #endif
76
77 /*****************************************************************************
78  * intf_Create: prepare interface before main loop
79  *****************************************************************************
80  * This function opens output devices and creates specific interfaces. It sends
81  * its own error messages.
82  *****************************************************************************/
83 /**
84  * Create the interface, and prepare it for main loop.
85  * You can give some additional options to be used for interface initialization
86  *
87  * \param p_this the calling vlc_object_t
88  * \param psz_module a prefered interface module
89  * \param i_options number additional options
90  * \param ppsz_options additional option strings
91  * \return a pointer to the created interface thread, NULL on error
92  */
93 intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module,
94                               int i_options, char **ppsz_options  )
95 {
96     intf_thread_t * p_intf;
97     int i;
98
99     /* Allocate structure */
100     p_intf = vlc_object_create( p_this, VLC_OBJECT_INTF );
101     if( !p_intf )
102     {
103         msg_Err( p_this, "out of memory" );
104         return NULL;
105     }
106     p_intf->pf_request_window = NULL;
107     p_intf->pf_release_window = NULL;
108     p_intf->pf_control_window = NULL;
109     p_intf->b_play = VLC_FALSE;
110     p_intf->b_interaction = VLC_FALSE;
111
112     for( i = 0 ; i< i_options; i++ )
113     {
114         var_OptionParse( p_intf, ppsz_options[i] );
115     }
116
117     /* Choose the best module */
118     p_intf->p_module = module_Need( p_intf, "interface", psz_module, VLC_FALSE );
119
120     if( p_intf->p_module == NULL )
121     {
122         msg_Err( p_intf, "no suitable interface module" );
123         vlc_object_destroy( p_intf );
124         return NULL;
125     }
126
127     /* Initialize structure */
128     p_intf->b_menu        = VLC_FALSE;
129     p_intf->b_menu_change = VLC_FALSE;
130
131     /* Initialize mutexes */
132     vlc_mutex_init( p_intf, &p_intf->change_lock );
133
134     /* Attach interface to its parent object */
135     vlc_object_attach( p_intf, p_this );
136
137     return p_intf;
138 }
139
140 /*****************************************************************************
141  * intf_RunThread: launch the interface thread
142  *****************************************************************************
143  * This function either creates a new thread and runs the interface in it,
144  * or runs the interface in the current thread, depending on b_block.
145  *****************************************************************************/
146 /**
147  * Run the interface thread.
148  *
149  * If b_block is not set, runs the interface in the thread, else,
150  * creates a new thread and runs the interface.
151  * \param p_intf the interface thread
152  * \return VLC_SUCCESS on success, an error number else
153  */
154 int intf_RunThread( intf_thread_t *p_intf )
155 {
156 #ifdef __APPLE__
157     NSAutoreleasePool * o_pool;
158
159     if( p_intf->b_block )
160     {
161         /* This is the primary intf */
162         /* Run a manager thread, launch the interface, kill the manager */
163         if( vlc_thread_create( p_intf, "manage", Manager,
164                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
165         {
166             msg_Err( p_intf, "cannot spawn manager thread" );
167             return VLC_EGENERIC;
168         }
169     }
170
171     if( p_intf->b_block && strncmp( p_intf->p_libvlc->psz_object_name,
172                                     "clivlc", 6) )
173     {
174         o_pool = [[NSAutoreleasePool alloc] init];
175         [VLCApplication sharedApplication];
176         [NSApp setVLC: p_intf->p_libvlc];
177     }
178
179     if( p_intf->b_block &&
180         ( !strncmp( p_intf->p_module->psz_object_name, "macosx" , 6 ) ||
181           !strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6 ) ) )
182     {
183         /* VLC in normal primary interface mode */
184         RunInterface( p_intf );
185         p_intf->b_die = VLC_TRUE;
186     }
187     else
188     {
189         /* Run the interface in a separate thread */
190         if( !strcmp( p_intf->p_module->psz_object_name, "macosx" ) )
191         {
192             msg_Err( p_intf, "You cannot run the MacOS X module as an "
193                              "extra interface. Please read the "
194                              "README.MacOSX.rtf file.");
195             return VLC_EGENERIC;
196         }
197         if( vlc_thread_create( p_intf, "interface", RunInterface,
198                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
199         {
200             msg_Err( p_intf, "cannot spawn interface thread" );
201             return VLC_EGENERIC;
202         }
203
204         if( p_intf->b_block )
205         {
206             /* VLC in primary interface mode with a working macosx vout */
207             [NSApp run];
208             p_intf->b_die = VLC_TRUE;
209         }
210     }
211 #else
212     if( p_intf->b_block )
213     {
214         /* Run a manager thread, launch the interface, kill the manager */
215         if( vlc_thread_create( p_intf, "manager", Manager,
216                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
217         {
218             msg_Err( p_intf, "cannot spawn manager thread" );
219             return VLC_EGENERIC;
220         }
221
222         RunInterface( p_intf );
223
224         p_intf->b_die = VLC_TRUE;
225         /* Do not join the thread... intf_StopThread will do it for us */
226     }
227     else
228     {
229         /* Run the interface in a separate thread */
230         if( vlc_thread_create( p_intf, "interface", RunInterface,
231                                VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
232         {
233             msg_Err( p_intf, "cannot spawn interface thread" );
234             return VLC_EGENERIC;
235         }
236     }
237 #endif
238
239     return VLC_SUCCESS;
240 }
241
242 /**
243  * Stops the interface thread
244  *
245  * This function asks the interface thread to stop
246  * \param p_intf the interface thread
247  * \return nothing
248  */
249 void intf_StopThread( intf_thread_t *p_intf )
250 {
251     /* Tell the interface to die */
252     if( !p_intf->b_block )
253     {
254         p_intf->b_die = VLC_TRUE;
255     }
256
257     /* Wait for the thread to exit */
258     vlc_thread_join( p_intf );
259 }
260
261 /**
262  * \brief Destroy the interface after the main loop endeed.
263  *
264  * Destroys interfaces and closes output devices
265  * \param p_intf the interface thread
266  * \return nothing
267  */
268 void intf_Destroy( intf_thread_t *p_intf )
269 {
270     /* Unlock module if present (a switch may have failed) */
271     if( p_intf->p_module )
272     {
273         module_Unneed( p_intf, p_intf->p_module );
274     }
275
276     vlc_mutex_destroy( &p_intf->change_lock );
277
278     /* Free structure */
279     vlc_object_destroy( p_intf );
280 }
281
282
283 /* Following functions are local */
284
285 /*****************************************************************************
286  * Manager: helper thread for blocking interfaces
287  *****************************************************************************
288  * If the interface is launched in the main thread, it will not listen to
289  * p_vlc->b_die events because it is only supposed to listen to p_intf->b_die.
290  * This thread takes care of the matter.
291  *****************************************************************************/
292 /**
293  * \brief Helper thread for blocking interfaces.
294  * \ingroup vlc_interface
295  *
296  * This is a local function
297  * If the interface is launched in the main thread, it will not listen to
298  * p_vlc->b_die events because it is only supposed to listen to p_intf->b_die.
299  * This thread takes care of the matter.
300  * \see intf_RunThread
301  * \param p_intf an interface thread
302  * \return nothing
303  */
304 static void Manager( intf_thread_t *p_intf )
305 {
306     while( !p_intf->b_die )
307     {
308         msleep( INTF_IDLE_SLEEP );
309
310         if( p_intf->p_libvlc->b_die )
311         {
312             p_intf->b_die = VLC_TRUE;
313 #ifdef __APPLE__
314     if( strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6 ) )
315     {
316         [NSApp stop: NULL];
317     }
318 #endif
319             return;
320         }
321     }
322 }
323
324 /*****************************************************************************
325  * RunInterface: setups necessary data and give control to the interface
326  *****************************************************************************/
327 static void RunInterface( intf_thread_t *p_intf )
328 {
329     static char *ppsz_interfaces[] =
330     {
331         "skins2", "Skins 2",
332 #ifndef WIN32
333         "wxwidgets", "wxWidgets",
334 #endif
335         NULL, NULL
336     };
337     char **ppsz_parser;
338
339     vlc_list_t *p_list;
340     int i;
341     vlc_value_t val, text;
342     char *psz_intf;
343
344     /* Variable used for interface switching */
345     p_intf->psz_switch_intf = NULL;
346     var_Create( p_intf, "intf-switch", VLC_VAR_STRING |
347                 VLC_VAR_HASCHOICE | VLC_VAR_ISCOMMAND );
348     text.psz_string = _("Switch interface");
349     var_Change( p_intf, "intf-switch", VLC_VAR_SETTEXT, &text, NULL );
350
351     /* Only fill the list with available modules */
352     p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
353     for( ppsz_parser = ppsz_interfaces; *ppsz_parser; ppsz_parser += 2 )
354     {
355         for( i = 0; i < p_list->i_count; i++ )
356         {
357             module_t *p_module = (module_t *)p_list->p_values[i].p_object;
358             if( !strcmp( p_module->psz_object_name, ppsz_parser[0] ) )
359             {
360                 val.psz_string = ppsz_parser[0];
361                 text.psz_string = ppsz_parser[1];
362                 var_Change( p_intf, "intf-switch", VLC_VAR_ADDCHOICE,
363                             &val, &text );
364                 break;
365             }
366         }
367     }
368     vlc_list_release( p_list );
369
370     var_AddCallback( p_intf, "intf-switch", SwitchIntfCallback, NULL );
371
372     /* Variable used for interface spawning */
373     var_Create( p_intf, "intf-add", VLC_VAR_STRING |
374                 VLC_VAR_HASCHOICE | VLC_VAR_ISCOMMAND );
375     text.psz_string = _("Add Interface");
376     var_Change( p_intf, "intf-add", VLC_VAR_SETTEXT, &text, NULL );
377
378     val.psz_string = "rc"; text.psz_string = "Console";
379     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
380     val.psz_string = "telnet"; text.psz_string = "Telnet Interface";
381     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
382     val.psz_string = "http"; text.psz_string = "Web Interface";
383     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
384     val.psz_string = "logger"; text.psz_string = "Debug logging";
385     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
386     val.psz_string = "gestures"; text.psz_string = "Mouse Gestures";
387     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
388
389     var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL );
390
391     do
392     {
393         /* Give control to the interface */
394         p_intf->pf_run( p_intf );
395
396         /* Reset play on start status */
397         p_intf->b_play = VLC_FALSE;
398
399         if( !p_intf->psz_switch_intf )
400         {
401             break;
402         }
403
404         /* Make sure the old interface is completely uninitialized */
405         module_Unneed( p_intf, p_intf->p_module );
406
407         /* Provide ability to switch the main interface on the fly */
408         psz_intf = p_intf->psz_switch_intf;
409         p_intf->psz_switch_intf = NULL;
410
411         vlc_mutex_lock( &p_intf->object_lock );
412         p_intf->b_die = VLC_FALSE;
413         p_intf->b_dead = VLC_FALSE;
414         vlc_mutex_unlock( &p_intf->object_lock );
415
416         p_intf->p_module = module_Need( p_intf, "interface", psz_intf, 0 );
417         free( psz_intf );
418     }
419     while( p_intf->p_module );
420 }
421
422 static int SwitchIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
423                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
424 {
425     intf_thread_t *p_intf = (intf_thread_t *)p_this;
426
427     p_intf->psz_switch_intf =
428         malloc( strlen(newval.psz_string) + sizeof(",none") );
429     sprintf( p_intf->psz_switch_intf, "%s,none", newval.psz_string );
430     p_intf->b_die = VLC_TRUE;
431
432     return VLC_SUCCESS;
433 }
434
435 static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
436                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
437 {
438     intf_thread_t *p_intf;
439     char *psz_intf = malloc( strlen(newval.psz_string) + sizeof(",none") );
440
441     /* Try to create the interface */
442     sprintf( psz_intf, "%s,none", newval.psz_string );
443     p_intf = intf_Create( p_this->p_libvlc, psz_intf, 0, NULL );
444     free( psz_intf );
445     if( p_intf == NULL )
446     {
447         msg_Err( p_this, "interface \"%s\" initialization failed",
448                  newval.psz_string );
449         return VLC_EGENERIC;
450     }
451
452     /* Try to run the interface */
453     p_intf->b_block = VLC_FALSE;
454     if( intf_RunThread( p_intf ) != VLC_SUCCESS )
455     {
456         vlc_object_detach( p_intf );
457         intf_Destroy( p_intf );
458         return VLC_EGENERIC;
459     }
460
461     return VLC_SUCCESS;
462 }
463
464 #ifdef __APPLE__
465 /*****************************************************************************
466  * VLCApplication implementation
467  *****************************************************************************/
468 @implementation VLCApplication
469
470 - (void)setVLC: (libvlc_int_t *) p_libvlc
471 {
472     o_libvlc = p_libvlc;
473 }
474
475 - (void)stop: (id)sender
476 {
477     NSEvent *o_event;
478     NSAutoreleasePool *o_pool;
479     [super stop:sender];
480
481     o_pool = [[NSAutoreleasePool alloc] init];
482     /* send a dummy event to break out of the event loop */
483     o_event = [NSEvent mouseEventWithType: NSLeftMouseDown
484                 location: NSMakePoint( 1, 1 ) modifierFlags: 0
485                 timestamp: 1 windowNumber: [[NSApp mainWindow] windowNumber]
486                 context: [NSGraphicsContext currentContext] eventNumber: 1
487                 clickCount: 1 pressure: 0.0];
488     [NSApp postEvent: o_event atStart: YES];
489     [o_pool release];
490 }
491
492 - (void)terminate: (id)sender
493 {
494     o_libvlc->b_die = VLC_TRUE;
495 }
496
497 @end
498 #endif
499