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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * eyetv.c : Access module to connect to our plugin running within EyeTV
  3.  *****************************************************************************
  4.  * Copyright (C) 2006-2007 the VideoLAN team
  5.  * $Id: 6933e233bb1b27dbbfc1dee5590bfc2bf6081061 $
  6.  *
  7.  * Author: Felix Kühne <fkuehne at videolan dot org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_access.h>
  32. #include <vlc_network.h>
  33. #include <sys/types.h>
  34. #include <sys/socket.h>
  35. #include <sys/un.h>
  36. #include <unistd.h>
  37. #import <Foundation/Foundation.h>
  38. #define MTU 65535
  39. /* TODO:
  40.  * watch for PluginQuit or DeviceRemoved to stop output to VLC's core then */
  41. /*****************************************************************************
  42.  * Module descriptior
  43.  *****************************************************************************/
  44. static int  Open ( vlc_object_t * );
  45. static void Close( vlc_object_t * );
  46. #define CHANNEL_TEXT N_("Channel number")
  47. #define CHANNEL_LONGTEXT N_( 
  48.     "EyeTV program number, or use 0 for last channel, " 
  49.     "-1 for S-Video input, -2 for Composite input" )
  50. #define CACHING_TEXT N_("Caching value in ms")
  51. #define CACHING_LONGTEXT N_( 
  52.     "Caching value for EyeTV captures. This " 
  53.     "value should be set in milliseconds." )
  54. vlc_module_begin ()
  55.     set_shortname( "EyeTV" )
  56.     set_description( N_("EyeTV input") )
  57.     set_category( CAT_INPUT )
  58.     set_subcategory( SUBCAT_INPUT_ACCESS )
  59.     add_integer( "eyetv-channel", 0, NULL,
  60.                  CHANNEL_TEXT, CHANNEL_LONGTEXT, false )
  61.     set_capability( "access", 0 )
  62.     add_shortcut( "eyetv" )
  63.     set_callbacks( Open, Close )
  64.     add_integer( "eyetv-caching", DEFAULT_PTS_DELAY / 1000, NULL,
  65.                  CACHING_TEXT, CACHING_LONGTEXT, true);
  66. vlc_module_end ()
  67. /*****************************************************************************
  68.  * Access: local prototypes
  69.  *****************************************************************************/
  70. struct access_sys_t
  71. {
  72.     int eyetvSock;
  73.     int i_pts_delay;
  74. };
  75. static block_t *BlockRead( access_t *);
  76. static int Control( access_t *, int, va_list );
  77. static void selectChannel( vlc_object_t *p_this, int theChannelNum )
  78. {
  79.     NSAppleScript *script;
  80.     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  81.     switch( theChannelNum )
  82.     {
  83.         case -2: // Composite
  84.             script = [[NSAppleScript alloc] initWithSource:
  85.                         @"tell application "EyeTV"n"
  86.                          "  input_change input source composite video inputn"
  87.                          "  volume_change level 0n"
  88.                          "  show player_windown"
  89.                          "  tell application "System Events" to set visible of process "EyeTV" to falsen"
  90.                          "end tell"];
  91.             break;
  92.         case -1: // S-Video
  93.             script = [[NSAppleScript alloc] initWithSource:
  94.                         @"tell application "EyeTV"n"
  95.                          "  input_change input source S video inputn"
  96.                          "  volume_change level 0n"
  97.                          "  show player_windown"
  98.                          "  tell application "System Events" to set visible of process "EyeTV" to falsen"
  99.                          "end tell"];
  100.             break;
  101.         case 0: // Last
  102.             script = [[NSAppleScript alloc] initWithSource:
  103.                         @"tell application "EyeTV"n"
  104.                          "  volume_change level 0n"
  105.                          "  show player_windown"
  106.                          "  tell application "System Events" to set visible of process "EyeTV" to falsen"
  107.                          "end tell"];
  108.             break;
  109.         default:
  110.             if( theChannelNum > 0 )
  111.             {
  112.                 NSString *channel_change = [NSString stringWithFormat:
  113.                     @"tell application "EyeTV"n"
  114.                      "  channel_change channel number %dn"
  115.                      "  volume_change level 0n"
  116.                      "  show player_windown"
  117.                      "  tell application "System Events" to set visible of process "EyeTV" to falsen"
  118.                      "end tell", theChannelNum];
  119.                 script = [[NSAppleScript alloc] initWithSource:channel_change];
  120.             }
  121.             else
  122.                 return;
  123.     }
  124.     NSDictionary *errorDict;
  125.     NSAppleEventDescriptor *descriptor = [script executeAndReturnError:&errorDict];
  126.     if( nil == descriptor ) 
  127.     {
  128.         NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage];
  129.         msg_Err( p_this, "EyeTV source change failed with error status '%s'", [errorString UTF8String] );
  130.     }
  131.     [script release];
  132.     [pool release];
  133. }
  134. /*****************************************************************************
  135.  * Open: sets up the module and its threads
  136.  *****************************************************************************/
  137. static int Open( vlc_object_t *p_this )
  138. {
  139.     access_t        *p_access = (access_t *)p_this;
  140.     access_sys_t    *p_sys;
  141.     struct sockaddr_un publicAddr, peerAddr;
  142.     int publicSock;
  143.  
  144.     /* Init p_access */
  145.     access_InitFields( p_access );
  146.     ACCESS_SET_CALLBACKS( NULL, BlockRead, Control, NULL );
  147.     p_sys = p_access->p_sys = calloc( 1, sizeof( access_sys_t ) );
  148.     if( !p_sys )
  149.         return VLC_ENOMEM;
  150.     p_sys->i_pts_delay = var_CreateGetInteger( p_access, "eyetv-caching" );
  151.     int val = var_CreateGetInteger( p_access, "eyetv-channel" );
  152.     msg_Dbg( p_access, "coming up" );
  153.     selectChannel( p_this, val );
  154.     /* socket */
  155.     memset(&publicAddr, 0, sizeof(publicAddr));
  156.     publicAddr.sun_family = AF_UNIX;
  157.     strncpy(publicAddr.sun_path, "/tmp/.vlc-eyetv-bridge", sizeof(publicAddr.sun_path)-1);
  158.     /* remove previous public path if it wasn't cleanly removed */
  159.     if( (0 != unlink(publicAddr.sun_path)) && (ENOENT != errno) )
  160.     {
  161.         msg_Err( p_access, "local socket path is not usable (errno=%d)", errno );
  162.         free( p_sys );
  163.         return VLC_EGENERIC;
  164.     }
  165.     publicSock = socket(PF_UNIX, SOCK_STREAM, 0);
  166.     if( publicSock == -1 )
  167.     {
  168.         msg_Err( p_access, "create local socket failed (errno=%d)", errno );
  169.         free( p_sys );
  170.         return VLC_EGENERIC;
  171.     }
  172.     if( bind(publicSock, (struct sockaddr *)&publicAddr, sizeof(struct sockaddr_un)) == -1 )
  173.     {
  174.         msg_Err( p_access, "bind local socket failed (errno=%d)", errno );
  175.         close( publicSock );
  176.         free( p_sys );
  177.         return VLC_EGENERIC;
  178.     }
  179.     /* we are not expecting more than one connection */
  180.     if( listen(publicSock, 1) == -1 )
  181.     {
  182.         msg_Err( p_access, "cannot accept connection (errno=%d)", errno );
  183.         close( publicSock );
  184.         free( p_sys );
  185.         return VLC_EGENERIC;
  186.     }
  187.     else
  188.     {
  189.         socklen_t peerSockLen = sizeof(struct sockaddr_un);
  190.         int peerSock;
  191.         /* tell the EyeTV plugin to open start sending */
  192.         CFNotificationCenterPostNotification( CFNotificationCenterGetDistributedCenter (),
  193.                                               CFSTR("VLCAccessStartDataSending"),
  194.                                               CFSTR("VLCEyeTVSupport"),
  195.                                               /*userInfo*/ NULL,
  196.                                               TRUE );
  197.         msg_Dbg( p_access, "plugin notified" );
  198.         peerSock = accept(publicSock, (struct sockaddr *)&peerAddr, &peerSockLen);
  199.         if( peerSock == -1 )
  200.         {
  201.             msg_Err( p_access, "cannot wait for connection (errno=%d)", errno );
  202.             close( publicSock );
  203.             free( p_sys );
  204.             return VLC_EGENERIC;
  205.         }
  206.         msg_Dbg( p_access, "plugin connected" );
  207.         p_sys->eyetvSock = peerSock;
  208.         /* remove public access */
  209.         close(publicSock);
  210.         unlink(publicAddr.sun_path);
  211.     }
  212.     return VLC_SUCCESS;
  213. }
  214. /*****************************************************************************
  215.  * Close: closes msg-port, free resources
  216.  *****************************************************************************/
  217. static void Close( vlc_object_t *p_this )
  218. {
  219.     access_t     *p_access = (access_t *)p_this;
  220.     access_sys_t *p_sys = p_access->p_sys;
  221.  
  222.     msg_Dbg( p_access, "closing" );
  223.  
  224.     /* tell the EyeTV plugin to close its msg port and stop sending */
  225.     CFNotificationCenterPostNotification( CFNotificationCenterGetDistributedCenter (),
  226.                                           CFSTR("VLCAccessStopDataSending"),
  227.                                           CFSTR("VLCEyeTVSupport"),
  228.                                           /*userInfo*/ NULL,
  229.                                           TRUE );
  230.  
  231.     msg_Dbg( p_access, "plugin notified" );
  232. close(p_sys->eyetvSock);
  233.  
  234.     msg_Dbg( p_access, "msg port closed and freed" );
  235.  
  236.     free( p_sys );
  237. }
  238. /*****************************************************************************
  239. * BlockRead: forwarding data from EyeTV plugin which was received above
  240. *****************************************************************************/
  241. static block_t *BlockRead( access_t *p_access )
  242. {
  243.     access_sys_t *p_sys = p_access->p_sys;
  244.     block_t      *p_block;
  245.     ssize_t len;
  246.     if( p_access->info.b_eof )
  247.         return NULL;
  248.     /* Read data */
  249.     p_block = block_New( p_access, MTU );
  250.     len = net_Read( p_access, p_sys->eyetvSock, NULL,
  251.                     p_block->p_buffer, MTU, false );
  252.     if( len < 0 )
  253.     {
  254.         block_Release( p_block );
  255.         return NULL;
  256.     }
  257.     return block_Realloc( p_block, 0, p_block->i_buffer = len );
  258. }
  259. /*****************************************************************************
  260.  * Control:
  261.  *****************************************************************************/
  262. static int Control( access_t *p_access, int i_query, va_list args )
  263. {
  264.     bool   *pb_bool;
  265.     int          *pi_int;
  266.     int64_t      *pi_64;
  267.     access_sys_t  *p_sys = (access_sys_t *) p_access->p_sys;
  268.  
  269.     switch( i_query )
  270.     {
  271.         case ACCESS_CAN_SEEK:
  272.         case ACCESS_CAN_FASTSEEK:
  273.             pb_bool = (bool*)va_arg( args, bool* );
  274.             *pb_bool = false;
  275.             break;
  276.         case ACCESS_CAN_PAUSE:
  277.             pb_bool = (bool*)va_arg( args, bool* );
  278.             *pb_bool = false;
  279.             break;
  280.         case ACCESS_CAN_CONTROL_PACE:
  281.             pb_bool = (bool*)va_arg( args, bool* );
  282.             *pb_bool = false;
  283.             break;
  284.         /* */
  285.         case ACCESS_GET_PTS_DELAY:
  286.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  287.             *pi_64 = (int64_t) p_sys->i_pts_delay * 1000;
  288.             break;
  289.         
  290.         case ACCESS_SET_PAUSE_STATE:
  291.         case ACCESS_GET_TITLE_INFO:
  292.         case ACCESS_SET_TITLE:
  293.         case ACCESS_SET_SEEKPOINT:
  294.         case ACCESS_SET_PRIVATE_ID_STATE:
  295.         case ACCESS_GET_CONTENT_TYPE:
  296.             return VLC_EGENERIC;
  297.  
  298.         default:
  299.             msg_Warn( p_access, "unimplemented query in control" );
  300.             return VLC_EGENERIC;
  301.  
  302.     }
  303.     return VLC_SUCCESS;
  304. }