]> git.sesse.net Git - vlc/blobdiff - src/interface/interface.c
Translation of user interface messages to Netherlands.
[vlc] / src / interface / interface.c
index 14925e8235a88ed87be1e819011356a96253859b..df26af55978769dd42015401359fa0077e83c996 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.92 2002/03/11 07:23:10 gbazin 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 );
 
-/*******************************************************************************
- * Constants
- *******************************************************************************/
-
-/* INTF_INPUT_CFG: pre-configured inputs */
-#define INTF_MAX_INPUT_CFG              10
-static const input_cfg_t INTF_INPUT_CFG[] = 
-{
-    /*  properties                              method  
-     *  file    host    ip              port    vlan */
-    
-    /* Local input (unicast) */
-    {   INPUT_CFG_METHOD | INPUT_CFG_IP,        INPUT_METHOD_TS_UCAST,     
-        NULL,   NULL,   "127.0.0.1",    0,      0       },
-
-    /* Broadcasts */
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      0       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      1       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      2       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      3       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      4       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      5       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      6       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      7       },
-    {  INPUT_CFG_METHOD | INPUT_CFG_VLAN,       INPUT_METHOD_TS_VLAN_BCAST,
-       NULL,    NULL,   NULL,           0,      8       }
-};
-
-/*******************************************************************************
+/*****************************************************************************
  * 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;
+    char *psz_name;
 
     /* 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 */
+    psz_name = config_GetPszVariable( "intf" );
+    p_intf->p_module = module_Need( MODULE_CAPABILITY_INTF, psz_name,
+                                    (void *)p_intf );
 
-    /* Start interfaces */
-    p_intf->p_console = intf_ConsoleCreate();
-    if( p_intf->p_console == NULL )
+    if( psz_name ) free( psz_name );
+    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 ) )
-    {
-       intf_ErrMsg("error: can't create interface\n");
-       intf_ConsoleDestroy( p_intf->p_console );
-       free( p_intf );
-       return( NULL );
-    }   
 
-    intf_Msg("Interface initialized\n");    
+#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;
+
+    /* Initialize mutexes */
+    vlc_mutex_init( &p_intf->change_lock );
+
+    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 )
+{
+    /* Manage module bank */
+    module_ManageBank( );
 
-    /* Main loop */
-    while(!p_intf->b_die)
+    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 )
+            {
+                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 );
+            }
+        }
+
+        vlc_mutex_unlock( &p_input_bank->lock );
+    }
+    /* If no stream is being played, try to find one */
+    else
+    {
+//        vlc_mutex_lock( &p_main->p_playlist->change_lock );
 
-        /* Check attached threads status */
-        if( (p_intf->p_vout != NULL) && p_intf->p_vout->b_error )
+        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 + 
+                    config_GetIntVariable( "playlist_loop" );
+                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++;
+                }
+            }
+
+            vlc_mutex_unlock( &p_input_bank->lock );
+        }
+        else
         {
-            input_DestroyThread( p_intf->p_input /*, NULL */ );            
-            p_intf->p_input = NULL;            
-            intf_DbgMsg("Input thread destroyed\n");            
+            vlc_mutex_unlock( &p_input_bank->lock );
+
+            /* 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 );
     }
 }
 
-/*******************************************************************************
+/*****************************************************************************
  * 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 );
+    p_intf->pf_close( p_intf );
 
-    /* Free structure */
-    free( 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("0x%x\n", p_intf );
-    
-    /* Kill existing input, if any */
-    if( p_intf->p_input != NULL )
-    {        
-        input_DestroyThread( 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
 
-    /* Check that input index is valid */
-    if( (i_index < 0)  || (INTF_MAX_INPUT_CFG < i_index) )
-    {        
-        p_intf->p_input = NULL;     
-        return( 1 );        
-    }    
-    
-    /* Open a new input */
-    p_intf->p_input = input_CreateThread( &INTF_INPUT_CFG[ i_index ] /*??, 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:
-        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 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;                                
-    default:                                                    /* unknown key */
-        return( 1 );        
-    }
+    vlc_mutex_destroy( &p_intf->change_lock );
 
-    return( 0 );    
+    /* Free structure */
+    free( p_intf );
 }
 
-    
-