interface.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

  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-2007 the VideoLAN team
  7.  * $Id: 9b99c1b62538963816b90f72f0457b2661c05458 $
  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.  *   file
  27.  *   This file contains functions related to interface management
  28.  */
  29. /*****************************************************************************
  30.  * Preamble
  31.  *****************************************************************************/
  32. #ifdef HAVE_CONFIG_H
  33. # include "config.h"
  34. #endif
  35. #include <vlc_common.h>
  36. #include <vlc_aout.h>
  37. #include <vlc_vout.h>
  38. #include "vlc_interface.h"
  39. #if defined( __APPLE__ ) || defined( WIN32 )
  40. #include "../control/libvlc_internal.h"
  41. #endif
  42. #include "libvlc.h"
  43. /*****************************************************************************
  44.  * Local prototypes
  45.  *****************************************************************************/
  46. static void* RunInterface( vlc_object_t *p_this );
  47. #if defined( __APPLE__ ) || defined( WIN32 )
  48. static void * MonitorLibVLCDeath( vlc_object_t *p_this );
  49. #endif
  50. static int AddIntfCallback( vlc_object_t *, char const *,
  51.                             vlc_value_t , vlc_value_t , void * );
  52. /**
  53.  * Destroy the interface after the main loop endeed.
  54.  *
  55.  * @param p_obj: the interface thread
  56.  */
  57. static void intf_Destroy( vlc_object_t *obj )
  58. {
  59.     intf_thread_t *p_intf = (intf_thread_t *)obj;
  60.     free( p_intf->psz_intf );
  61.     config_ChainDestroy( p_intf->p_cfg );
  62. }
  63. /**
  64.  * Create the interface, and prepare it for main loop. It opens ouput device
  65.  * and creates specific interfaces. Sends its own error messages.
  66.  *
  67.  * @param p_this the calling vlc_object_t
  68.  * @param psz_module a preferred interface module
  69.  * @return a pointer to the created interface thread, NULL on error
  70.  */
  71. intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
  72. {
  73.     intf_thread_t * p_intf;
  74.     /* Allocate structure */
  75.     p_intf = vlc_object_create( p_this, VLC_OBJECT_INTF );
  76.     if( !p_intf )
  77.         return NULL;
  78. #if defined( __APPLE__ ) || defined( WIN32 )
  79.     p_intf->b_should_run_on_first_thread = false;
  80. #endif
  81.     /* Choose the best module */
  82.     p_intf->p_cfg = NULL;
  83.     char *psz_parser = *psz_module == '$'
  84.                      ? var_CreateGetString(p_intf,psz_module+1)
  85.                      : strdup( psz_module );
  86.     char *psz_tmp = config_ChainCreate( &p_intf->psz_intf, &p_intf->p_cfg,
  87.                                         psz_parser );
  88.     free( psz_tmp );
  89.     free( psz_parser );
  90.     p_intf->p_module = module_need( p_intf, "interface", p_intf->psz_intf, true );
  91.     if( p_intf->p_module == NULL )
  92.     {
  93.         msg_Err( p_intf, "no suitable interface module" );
  94.         free( p_intf->psz_intf );
  95.         vlc_object_release( p_intf );
  96.         return NULL;
  97.     }
  98.     /* Attach interface to its parent object */
  99.     vlc_object_attach( p_intf, p_this );
  100.     vlc_object_set_destructor( p_intf, intf_Destroy );
  101.     return p_intf;
  102. }
  103. /**
  104.  * Starts and runs the interface thread.
  105.  *
  106.  * @param p_intf the interface thread
  107.  * @return VLC_SUCCESS on success, an error number else
  108.  */
  109. int intf_RunThread( intf_thread_t *p_intf )
  110. {
  111. #if defined( __APPLE__ ) || defined( WIN32 )
  112.     /* Hack to get Mac OS X Cocoa runtime running
  113.      * (it needs access to the main thread) */
  114.     if( p_intf->b_should_run_on_first_thread )
  115.     {
  116.         if( vlc_thread_create( p_intf, "interface", MonitorLibVLCDeath,
  117.                                VLC_THREAD_PRIORITY_LOW ) )
  118.         {
  119.             msg_Err( p_intf, "cannot spawn libvlc death monitoring thread" );
  120.             return VLC_EGENERIC;
  121.         }
  122.         RunInterface( VLC_OBJECT(p_intf) );
  123.         /* It is monitoring libvlc, not the p_intf */
  124.         vlc_object_kill( p_intf->p_libvlc );
  125.         return VLC_SUCCESS;
  126.     }
  127. #endif
  128.     /* Run the interface in a separate thread */
  129.     if( vlc_thread_create( p_intf, "interface", RunInterface,
  130.                            VLC_THREAD_PRIORITY_LOW ) )
  131.     {
  132.         msg_Err( p_intf, "cannot spawn interface thread" );
  133.         return VLC_EGENERIC;
  134.     }
  135.     return VLC_SUCCESS;
  136. }
  137. /**
  138.  * Stops the interface thread
  139.  *
  140.  * This function asks the interface thread to stop
  141.  * @param p_intf the interface thread
  142.  */
  143. void intf_StopThread( intf_thread_t *p_intf )
  144. {
  145.     /* Tell the interface to die */
  146.     vlc_object_kill( p_intf );
  147.     vlc_thread_join( p_intf );
  148.     module_unneed( p_intf, p_intf->p_module );
  149. }
  150. /* Following functions are local */
  151. /**
  152.  * RunInterface: setups necessary data and give control to the interface
  153.  *
  154.  * @param p_this: interface object
  155.  */
  156. static void* RunInterface( vlc_object_t *p_this )
  157. {
  158.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  159.     vlc_value_t val, text;
  160.     int canc = vlc_savecancel ();
  161.     /* Variable used for interface spawning */
  162.     var_Create( p_intf, "intf-add", VLC_VAR_STRING |
  163.                 VLC_VAR_HASCHOICE | VLC_VAR_ISCOMMAND );
  164.     text.psz_string = _("Add Interface");
  165.     var_Change( p_intf, "intf-add", VLC_VAR_SETTEXT, &text, NULL );
  166.     val.psz_string = (char *)"rc";
  167.     text.psz_string = (char *)_("Console");
  168.     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
  169.     val.psz_string = (char *)"telnet";
  170.     text.psz_string = (char *)_("Telnet Interface");
  171.     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
  172.     val.psz_string = (char *)"http";
  173.     text.psz_string = (char *)_("Web Interface");
  174.     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
  175.     val.psz_string = (char *)"logger";
  176.     text.psz_string = (char *)_("Debug logging");
  177.     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
  178.     val.psz_string = (char *)"gestures";
  179.     text.psz_string = (char *)_("Mouse Gestures");
  180.     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
  181.     var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL );
  182.     vlc_restorecancel (canc);
  183.     /* Give control to the interface */
  184.     if( p_intf->pf_run )
  185.         p_intf->pf_run( p_intf );
  186.     return NULL;
  187. }
  188. #if defined( __APPLE__ ) || defined( WIN32 )
  189. #include "control/libvlc_internal.h" /* libvlc_InternalWait */
  190. /**
  191.  * MonitorLibVLCDeath: Used when b_should_run_on_first_thread is set.
  192.  *
  193.  * @param p_this: the interface object
  194.  */
  195. static void * MonitorLibVLCDeath( vlc_object_t * p_this )
  196. {
  197.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  198.     libvlc_int_t * p_libvlc = p_intf->p_libvlc;
  199.     int canc = vlc_savecancel ();
  200.     libvlc_InternalWait( p_libvlc );
  201.     vlc_object_kill( p_intf ); /* Kill the stupid first thread interface */
  202.     vlc_restorecancel (canc);
  203.     return NULL;
  204. }
  205. #endif
  206. static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
  207.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  208. {
  209.     (void)psz_cmd; (void)oldval; (void)p_data;
  210.     intf_thread_t *p_intf;
  211.     char* psz_intf;
  212.     /* Try to create the interface */
  213.     if( asprintf( &psz_intf, "%s,none", newval.psz_string ) == -1 )
  214.         return VLC_ENOMEM;
  215.     p_intf = intf_Create( p_this->p_libvlc, psz_intf );
  216.     free( psz_intf );
  217.     if( p_intf == NULL )
  218.     {
  219.         msg_Err( p_this, "interface "%s" initialization failed",
  220.                  newval.psz_string );
  221.         return VLC_EGENERIC;
  222.     }
  223.     /* Try to run the interface */
  224.     if( intf_RunThread( p_intf ) != VLC_SUCCESS )
  225.     {
  226.         vlc_object_detach( p_intf );
  227.         vlc_object_release( p_intf );
  228.         return VLC_EGENERIC;
  229.     }
  230.     return VLC_SUCCESS;
  231. }