]> git.sesse.net Git - vlc/blobdiff - src/interface/interface.c
* ./include/modules_inner.h: replaced _X with __VLC_SYMBOL because _X was
[vlc] / src / interface / interface.c
index b76caaff370c97e32bbf474c8b4839ea8d761576..dc78d91f749e0a23b2c8f9d2324aac018f30a9a3 100644 (file)
-/*******************************************************************************
+/*****************************************************************************
  * interface.c: interface access for other threads
- * (c)1998 VideoLAN
- *******************************************************************************
  * This library provides basic functions for threads to interact with user
  * interface, such as command line.
- *******************************************************************************/
-
-/*******************************************************************************
+ *****************************************************************************
+ * Copyright (C) 1998-2001 VideoLAN
+ * $Id: interface.c,v 1.87 2002/01/09 02:01:14 sam Exp $
+ *
+ * Authors: Vincent Seguin <seguin@via.ecp.fr>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
+/*****************************************************************************
  * Preamble
- *******************************************************************************/
-#include <errno.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/types.h>
-#include <sys/uio.h>                                        /* for input.h */
-
-#include "config.h"
-#include "common.h"
-#include "mtime.h"
-#include "vlc_thread.h"
-#include "input.h"
-#include "intf_msg.h"
+ *****************************************************************************/
+#include <errno.h>                                                 /* ENOMEM */
+#include <stdlib.h>                                      /* free(), strtol() */
+#include <stdio.h>                                                   /* FILE */
+#include <string.h>                                            /* strerror() */
+#include <sys/types.h>                                              /* off_t */
+
+#include <videolan/vlc.h>
+
+#include "stream_control.h"
+#include "input_ext-intf.h"
+
+#include "audio_output.h"
+
 #include "interface.h"
-#include "intf_cmd.h"
-#include "intf_console.h"
-#include "main.h"
+#include "intf_playlist.h"
+
 #include "video.h"
 #include "video_output.h"
 
-#include "intf_sys.h"
+/*****************************************************************************
+ * Local prototypes
+ *****************************************************************************/
+static void intf_Manage( intf_thread_t *p_intf );
 
-/*******************************************************************************
+/*****************************************************************************
  * intf_Create: prepare interface before main loop
- *******************************************************************************
- * This function opens output devices and create specific interfaces. It send
- * it's own error messages.
- *******************************************************************************/
+ *****************************************************************************
+ * This function opens output devices and creates specific interfaces. It sends
+ * its own error messages.
+ *****************************************************************************/
 intf_thread_t* intf_Create( void )
-{    
-    intf_thread_t *p_intf;                                        
+{
+    intf_thread_t * p_intf;
 
     /* Allocate structure */
     p_intf = malloc( sizeof( intf_thread_t ) );
     if( !p_intf )
     {
-        intf_ErrMsg("error: %s\n", strerror( ENOMEM ) );        
-       return( NULL );
+        intf_ErrMsg( "intf error: cannot create interface thread (%s)",
+                     strerror( ENOMEM ) );
+        return( NULL );
     }
 
-    /* Initialize structure */
-    p_intf->b_die =     0;    
-    p_intf->p_vout =    NULL;
-    p_intf->p_input =   NULL;   
+    /* Choose the best module */
+    p_intf->p_module = module_Need( MODULE_CAPABILITY_INTF,
+                           main_GetPszVariable( INTF_METHOD_VAR, NULL ),
+                           NULL );
 
-    /* Start interfaces */
-    p_intf->p_console = intf_ConsoleCreate();
-    if( p_intf->p_console == NULL )
+    if( p_intf->p_module == NULL )
     {
-        intf_ErrMsg("error: can't create control console\n");
-       free( p_intf );
+        intf_ErrMsg( "intf error: no suitable intf module" );
+        free( p_intf );
         return( NULL );
     }
-    if( intf_SysCreate( p_intf ) )
+
+#define f p_intf->p_module->p_functions->intf.functions.intf
+    p_intf->pf_open       = f.pf_open;
+    p_intf->pf_close      = f.pf_close;
+    p_intf->pf_run        = f.pf_run;
+#undef f
+
+    /* Initialize callbacks */
+    p_intf->pf_manage     = intf_Manage;
+
+    /* Initialize structure */
+    p_intf->b_die         = 0;
+
+    p_intf->b_menu        = 0;
+    p_intf->b_menu_change = 0;
+
+    if( p_intf->pf_open( p_intf ) )
     {
-       intf_ErrMsg("error: can't create interface\n");
-       intf_ConsoleDestroy( p_intf->p_console );
-       free( p_intf );
-       return( NULL );
-    }   
+        intf_ErrMsg("intf error: cannot create interface");
+        module_Unneed( p_intf->p_module );
+        free( p_intf );
+        return( NULL );
+    }
+
+    /* Initialize mutexes */
+    vlc_mutex_init( &p_intf->change_lock );
 
-    intf_Msg("Interface initialized\n");    
+    intf_WarnMsg( 1, "intf: interface initialized");
     return( p_intf );
 }
 
-/*******************************************************************************
- * intf_Run
- *******************************************************************************
- * Initialization script and main interface loop.
- *******************************************************************************/
-void intf_Run( intf_thread_t *p_intf )
-{ 
-    /* Execute the initialization script - if a positive number is returned, 
-     * the script could be executed but failed */
-    if( intf_ExecScript( main_GetPszVariable( INTF_INIT_SCRIPT_VAR, INTF_INIT_SCRIPT_DEFAULT ) ) > 0 )
-    {
-       intf_ErrMsg("warning: error(s) during startup script\n");
-    }
+/*****************************************************************************
+ * intf_Manage: manage interface
+ *****************************************************************************
+ * This function has to be called regularly by the interface plugin. It
+ * checks for playlist end, module expiration, message flushing, and a few
+ * other useful things.
+ *****************************************************************************/
+static void intf_Manage( intf_thread_t *p_intf )
+{
+    /* Flush waiting messages */
+    intf_FlushMsg();
 
-    /* Main loop */
-    while(!p_intf->b_die)
+    /* Manage module bank */
+    module_ManageBank( );
+
+    vlc_mutex_lock( &p_input_bank->lock );
+
+    if( p_input_bank->i_count )
     {
-        /* Flush waiting messages */
-        intf_FlushMsg();
+        int i_input;
+        input_thread_t *p_input;
 
-        /* Manage specific interface */
-        intf_SysManage( p_intf );
+        for( i_input = 0; i_input < p_input_bank->i_count; i_input++ )
+        {
+            p_input = p_input_bank->pp_input[i_input];
+            
+            if( p_input->i_status == THREAD_OVER )
+            {
+                /* XXX: completely stupid ! */
+                input_DestroyThread( p_input );
+                p_input_bank->pp_input[i_input] = NULL;
+                p_input_bank->i_count--;
+            }
+            else if( ( p_input->i_status == THREAD_READY
+                        || p_input->i_status == THREAD_ERROR )
+                     && ( p_input->b_error || p_input->b_eof ) )
+            {
+                input_StopThread( p_input, NULL );
+            }
 
-        /* Check attached threads status */
-        if( (p_intf->p_vout != NULL) && p_intf->p_vout->b_error )
+        }
+    }
+    /* If no stream is being played, try to find one */
+    else
+    {
+//        vlc_mutex_lock( &p_main->p_playlist->change_lock );
+
+        if( !p_main->p_playlist->b_stopped )
         {
-            //?? add aout error detection
-            p_intf->b_die = 1;            
-        }    
-        if( (p_intf->p_input != NULL) && p_intf->p_input->b_error )
+            /* Select the next playlist item */
+            intf_PlaylistNext( p_main->p_playlist );
+
+            /* don't loop by default: stop at playlist end */
+            if( p_main->p_playlist->i_index == -1 )
+            {
+                p_main->p_playlist->b_stopped = 1;
+            }
+            else
+            {
+                input_thread_t *p_input;
+
+                p_main->p_playlist->b_stopped = 0;
+                p_main->p_playlist->i_mode = PLAYLIST_FORWARD + 
+                    main_GetIntVariable( PLAYLIST_LOOP_VAR,
+                                         PLAYLIST_LOOP_DEFAULT );
+                intf_WarnMsg( 3, "intf: creating new input thread" );
+                p_input = input_CreateThread( &p_main->p_playlist->current,
+                                              NULL );
+                if( p_input != NULL )
+                {
+                    p_input_bank->pp_input[ p_input_bank->i_count ] = p_input;
+                    p_input_bank->i_count++;
+                }
+            }
+        }
+        else
         {
-            input_DestroyThread( p_intf->p_input, NULL );            
-            p_intf->p_input = NULL;            
-            intf_DbgMsg("Input thread destroyed\n");            
+            /* playing has been stopped: we no longer need outputs */
+            if( p_aout_bank->i_count )
+            {
+                /* FIXME kludge that does not work with several outputs */
+                aout_DestroyThread( p_aout_bank->pp_aout[0], NULL );
+                p_aout_bank->i_count--;
+            }
+            if( p_vout_bank->i_count )
+            {
+                vout_DestroyThread( p_vout_bank->pp_vout[0], NULL );
+                p_vout_bank->i_count--;
+            }
         }
 
-        /* Sleep to avoid using all CPU - since some interfaces needs to access 
-         * keyboard events, a 100ms delay is a good compromise */
-        msleep( INTF_IDLE_SLEEP );
+//        vlc_mutex_unlock( &p_main->p_playlist->change_lock );
     }
+
+    vlc_mutex_unlock( &p_input_bank->lock );
 }
 
-/*******************************************************************************
+/*****************************************************************************
  * intf_Destroy: clean interface after main loop
- *******************************************************************************
+ *****************************************************************************
  * This function destroys specific interfaces and close output devices.
- *******************************************************************************/
+ *****************************************************************************/
 void intf_Destroy( intf_thread_t *p_intf )
 {
     /* Destroy interfaces */
-    intf_SysDestroy( p_intf );
-    intf_ConsoleDestroy( p_intf->p_console );
-
-    /* Free structure */
-    free( p_intf );
-}
+    p_intf->pf_close( p_intf );
 
-/*******************************************************************************
- * intf_SelectInput: change input stream
- *******************************************************************************
- * Kill existing input, if any, and try to open a new one, using an input
- * configuration table.
- *******************************************************************************/
-int intf_SelectInput( intf_thread_t * p_intf, int i_index )
-{
-    intf_DbgMsg("\n");
-
-    /* If VLANs are not active, return with an error */
-    if( !p_main->b_vlans )
-    {
-        intf_ErrMsg("error: VLANs are not activated\n");
-        return( 1 );        
-    }    
-    
-    /* Kill existing input, if any */
-    if( p_intf->p_input != NULL )
-    {        
+#if 0
+    /* Close input thread, if any (blocking) */
+    if( p_intf->p_input )
+    {   
         input_DestroyThread( p_intf->p_input, NULL );
     }
+#endif
 
-    /* Open a new input */
-    intf_Msg("Switching to channel %d\n", i_index );    
-    p_intf->p_input = input_CreateThread( INPUT_METHOD_TS_VLAN_BCAST, NULL, 0, i_index, 
-                                          p_intf->p_vout, p_main->p_aout, NULL );        
-    return( p_intf->p_input == NULL );    
-}
+    /* Unlock module */
+    module_Unneed( p_intf->p_module );
 
-/*******************************************************************************
- * intf_ProcessKey: process standard keys
- *******************************************************************************
- * This function will process standard keys and return non 0 if the key was
- * unknown.
- *******************************************************************************/
-int intf_ProcessKey( intf_thread_t *p_intf, int i_key )
-{
-    switch( i_key )
-    {
-    case 'Q':                                                    /* quit order */
-    case 'q':
-    case 27: /* escape key */
-        p_intf->b_die = 1;
-        break;  
-    case '0':                                                 /* source change */
-    case '1':
-    case '2':
-    case '3':
-    case '4':
-    case '5':
-    case '6':
-    case '7':
-    case '8':
-    case '9':                    
-        if( intf_SelectInput( p_intf, i_key - '0' ) )
-        {
-            intf_ErrMsg("error: can not open channel %d\n", i_key - '0');            
-        }        
-        break;
-    case '+':                                                      /* volume + */
-        // ??
-        break;
-    case '-':                                                      /* volume - */
-        // ??
-        break;
-    case 'M':                                                   /* toggle mute */
-    case 'm':                    
-        // ??
-        break;     
-    case 'g':                                                       /* gamma - */
-        if( (p_intf->p_vout != NULL) && (p_intf->p_vout->f_gamma > -INTF_GAMMA_LIMIT) )
-        {
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );
-            p_intf->p_vout->f_gamma   -= INTF_GAMMA_STEP;                        
-            p_intf->p_vout->i_changes |= VOUT_GAMMA_CHANGE;
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );
-        }                    
-        break;                                        
-    case 'G':                                                       /* gamma + */
-        if( (p_intf->p_vout != NULL) && (p_intf->p_vout->f_gamma < INTF_GAMMA_LIMIT) )
-        {       
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );
-            p_intf->p_vout->f_gamma   += INTF_GAMMA_STEP;
-            p_intf->p_vout->i_changes |= VOUT_GAMMA_CHANGE;
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );
-        }                    
-        break;  
-    case 'c':                                              /* toggle grayscale */
-        if( p_intf->p_vout != NULL )
-        {
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );                        
-            p_intf->p_vout->b_grayscale = !p_intf->p_vout->b_grayscale;                    
-            p_intf->p_vout->i_changes  |= VOUT_GRAYSCALE_CHANGE;                        
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );      
-        }
-        break;  
-    case ' ':                                              /* toggle interface */
-        if( p_intf->p_vout != NULL )
-        {
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );                        
-            p_intf->p_vout->b_interface     = !p_intf->p_vout->b_interface;                    
-            p_intf->p_vout->i_changes |= VOUT_INTF_CHANGE;                        
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );      
-        }
-        break;                                
-    case 'i':                                                   /* toggle info */
-        if( p_intf->p_vout != NULL )
-        {
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );                        
-            p_intf->p_vout->b_info     = !p_intf->p_vout->b_info;                    
-            p_intf->p_vout->i_changes |= VOUT_INFO_CHANGE;                        
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );      
-        }
-        break;                                
-    case 's':                                                 /* toggle scaling */
-        if( p_intf->p_vout != NULL )
-        {
-            vlc_mutex_lock( &p_intf->p_vout->change_lock );                        
-            p_intf->p_vout->b_scale    = !p_intf->p_vout->b_scale;                    
-            p_intf->p_vout->i_changes |= VOUT_SCALE_CHANGE;                        
-            vlc_mutex_unlock( &p_intf->p_vout->change_lock );      
-        }
-        break;                                
-   default:                                                    /* unknown key */
-        return( 1 );        
-    }
+    vlc_mutex_destroy( &p_intf->change_lock );
 
-    return( 0 );    
+    /* Free structure */
+    free( p_intf );
 }
 
-    
-