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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * gnomevfs.c: GnomeVFS input
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * $Id: b0ce8ecf020550be4be8e29e12f2a0c1e7d59030 $
  6.  *
  7.  * Authors: Benjamin Pracht <bigben -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 <libgnomevfs/gnome-vfs.h>
  33. #include <vlc_charset.h>
  34. #include "vlc_url.h"
  35. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. static int  Open ( vlc_object_t * );
  39. static void Close( vlc_object_t * );
  40. #define CACHING_TEXT N_("Caching value in ms")
  41. #define CACHING_LONGTEXT N_( 
  42.     "Caching value for GnomeVFS streams."
  43.     "This value should be set in milliseconds." )
  44. vlc_module_begin ()
  45.     set_description( N_("GnomeVFS input") )
  46.     set_shortname( "GnomeVFS" )
  47.     set_category( CAT_INPUT )
  48.     set_subcategory( SUBCAT_INPUT_ACCESS )
  49.     add_integer( "gnomevfs-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, true )
  50.     set_capability( "access", 10 )
  51.     add_shortcut( "gnomevfs" )
  52.     set_callbacks( Open, Close )
  53. vlc_module_end ()
  54. /*****************************************************************************
  55.  * Exported prototypes
  56.  *****************************************************************************/
  57. static int  Seek( access_t *, int64_t );
  58. static int  Read( access_t *, uint8_t *, size_t );
  59. static int  Control( access_t *, int, va_list );
  60. struct access_sys_t
  61. {
  62.     unsigned int i_nb_reads;
  63.     char *psz_name;
  64.     GnomeVFSHandle *p_handle;
  65.     GnomeVFSFileInfo *p_file_info;
  66.     bool b_local;
  67.     bool b_seekable;
  68.     bool b_pace_control;
  69. };
  70. /* NOTE: we do not handle memory errors in this plugin.
  71.  * Underlying glib does not, so there is no point in doing it here either. */
  72. /*****************************************************************************
  73.  * Open: open the file
  74.  *****************************************************************************/
  75. static int Open( vlc_object_t *p_this )
  76. {
  77.     access_t       *p_access = (access_t*)p_this;
  78.     access_sys_t   *p_sys = NULL;
  79.     char           *psz_name = NULL;
  80.     char           *psz = NULL;
  81.     char           *psz_uri = NULL;
  82.     char           *psz_unescaped = NULL;
  83.     char           *psz_expand_tilde = NULL;
  84.     GnomeVFSURI    *p_uri = NULL;
  85.     GnomeVFSResult  i_ret;
  86.     GnomeVFSHandle *p_handle = NULL;
  87.     if( !(gnome_vfs_init()) )
  88.     {
  89.         msg_Warn( p_access, "couldn't initilize GnomeVFS" );
  90.         return VLC_EGENERIC;
  91.     }
  92.     /* FIXME
  93.        Since GnomeVFS segfaults on exit if we initialize it without trying to
  94.        open a file with a valid protocol, try to open at least file:// */
  95.     gnome_vfs_open( &p_handle, "file://", 5 );
  96.     STANDARD_READ_ACCESS_INIT;
  97.     p_sys->p_handle = p_handle;
  98.     p_sys->i_nb_reads = 0;
  99.     p_sys->b_pace_control = true;
  100.     if( strcmp( "gnomevfs", p_access->psz_access ) &&
  101.                                             *(p_access->psz_access) != '')
  102.     {
  103.         asprintf( &psz_name, "%s://%s", p_access->psz_access,
  104.                                                     p_access->psz_path );
  105.     }
  106.     else
  107.     {
  108.         psz_name = strdup( p_access->psz_path );
  109.     }
  110.     psz = ToLocale( psz_name );
  111.     psz_expand_tilde = gnome_vfs_expand_initial_tilde( psz );
  112.     LocaleFree( psz );
  113.     psz_unescaped = gnome_vfs_make_uri_from_shell_arg( psz_expand_tilde );
  114.    /* gnome_vfs_make_uri_from_shell_arg will only escape the uri
  115.       for relative paths. So we need to use
  116.       gnome_vfs_escape_host_and_path_string in other cases. */
  117.     if( !strcmp( psz_unescaped, psz_expand_tilde ) )
  118.     {
  119.     /* Now we are sure that we have a complete valid unescaped URI beginning
  120.        with the protocol. We want to escape it. However, gnomevfs's escaping
  121.        function are broken and will try to escape characters un the username/
  122.        password field. So parse the URI with vlc_UrlParse ans only escape the
  123.        path */
  124.         vlc_url_t url;
  125.         char *psz_escaped_path;
  126.         char *psz_path_begin;
  127.         vlc_UrlParse( &url, psz_unescaped, 0 );
  128.         psz_escaped_path = gnome_vfs_escape_path_string( url.psz_path );
  129.         if( psz_escaped_path )
  130.         {
  131.     /* Now let's reconstruct a valid URI from all that stuff */
  132.             psz_path_begin = psz_unescaped + strlen( psz_unescaped )
  133.                                            - strlen( url.psz_path );
  134.             *psz_path_begin = '';
  135.             asprintf( &psz_uri, "%s%s", psz_unescaped, psz_escaped_path );
  136.             g_free( psz_escaped_path );
  137.             g_free( psz_unescaped );
  138.         }
  139.         else
  140.         {
  141.             psz_uri = psz_unescaped;
  142.         }
  143.     }
  144.     else
  145.     {
  146.         psz_uri = psz_unescaped;
  147.     }
  148.     g_free( psz_expand_tilde );
  149.     p_uri = gnome_vfs_uri_new( psz_uri );
  150.     if( p_uri )
  151.     {
  152.         p_sys->p_file_info = gnome_vfs_file_info_new();
  153.         i_ret = gnome_vfs_get_file_info_uri( p_uri,
  154.                                                 p_sys->p_file_info, 8 );
  155.         if( i_ret )
  156.         {
  157.             msg_Warn( p_access, "cannot get file info for uri %s (%s)",
  158.                                 psz_uri, gnome_vfs_result_to_string( i_ret ) );
  159.             gnome_vfs_file_info_unref( p_sys->p_file_info );
  160.             gnome_vfs_uri_unref( p_uri);
  161.             free( p_sys );
  162.             free( psz_uri );
  163.             free( psz_name );
  164.             return VLC_EGENERIC;
  165.         }
  166.     }
  167.     else
  168.     {
  169.         msg_Warn( p_access, "cannot parse MRL %s or unsupported protocol", psz_name );
  170.         free( psz_uri );
  171.         free( p_sys );
  172.         free( psz_name );
  173.         return VLC_EGENERIC;
  174.     }
  175.     msg_Dbg( p_access, "opening file `%s'", psz_uri );
  176.     i_ret = gnome_vfs_open( &(p_sys->p_handle), psz_uri, 5 );
  177.     if( i_ret )
  178.     {
  179.         msg_Warn( p_access, "cannot open file %s: %s", psz_uri,
  180.                                 gnome_vfs_result_to_string( i_ret ) );
  181.         gnome_vfs_uri_unref( p_uri);
  182.         free( psz_uri );
  183.         free( p_sys );
  184.         free( psz_name );
  185.         return VLC_EGENERIC;
  186.     }
  187.     if (GNOME_VFS_FILE_INFO_LOCAL( p_sys->p_file_info ))
  188.     {
  189.         p_sys->b_local = true;
  190.     }
  191.     if( p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_REGULAR ||
  192.         p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_CHARACTER_DEVICE ||
  193.         p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_BLOCK_DEVICE )
  194.     {
  195.         p_sys->b_seekable = true;
  196.         p_access->info.i_size = (int64_t)(p_sys->p_file_info->size);
  197.     }
  198.     else if( p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_FIFO
  199.               || p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_SOCKET )
  200.     {
  201.         p_sys->b_seekable = false;
  202.     }
  203.     else
  204.     {
  205.         msg_Err( p_access, "unknown file type for `%s'", psz_name );
  206.         return VLC_EGENERIC;
  207.     }
  208.     if( p_sys->b_seekable && !p_access->info.i_size )
  209.     {
  210.         /* FIXME that's bad because all others access will be probed */
  211.         msg_Warn( p_access, "file %s is empty, aborting", psz_name );
  212.         gnome_vfs_file_info_unref( p_sys->p_file_info );
  213.         gnome_vfs_uri_unref( p_uri);
  214.         free( p_sys );
  215.         free( psz_uri );
  216.         free( psz_name );
  217.         return VLC_EGENERIC;
  218.     }
  219.     /* Update default_pts to a suitable value for file access */
  220.     var_Create( p_access, "gnomevfs-caching",
  221.                                     VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  222.     free( psz_uri );
  223.     p_sys->psz_name = psz_name;
  224.     gnome_vfs_uri_unref( p_uri);
  225.     return VLC_SUCCESS;
  226. }
  227. /*****************************************************************************
  228.  * Close: close the target
  229.  *****************************************************************************/
  230. static void Close( vlc_object_t * p_this )
  231. {
  232.     access_t     *p_access = (access_t*)p_this;
  233.     access_sys_t *p_sys = p_access->p_sys;
  234.     int i_result;
  235.     i_result = gnome_vfs_close( p_sys->p_handle );
  236.     if( i_result )
  237.     {
  238.          msg_Err( p_access, "cannot close %s: %s", p_sys->psz_name,
  239.                                 gnome_vfs_result_to_string( i_result ) );
  240.     }
  241.     gnome_vfs_file_info_unref( p_sys->p_file_info );
  242.     free( p_sys->psz_name );
  243.     free( p_sys );
  244. }
  245. /*****************************************************************************
  246.  * Read: standard read on a file descriptor.
  247.  *****************************************************************************/
  248. static int Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
  249. {
  250.     access_sys_t *p_sys = p_access->p_sys;
  251.     GnomeVFSFileSize i_read_len;
  252.     int i_ret;
  253.     i_ret = gnome_vfs_read( p_sys->p_handle, p_buffer,
  254.                                   (GnomeVFSFileSize)i_len, &i_read_len );
  255.     if( i_ret )
  256.     {
  257.         p_access->info.b_eof = true;
  258.         if( i_ret != GNOME_VFS_ERROR_EOF )
  259.         {
  260.             msg_Err( p_access, "read failed (%s)",
  261.                                     gnome_vfs_result_to_string( i_ret ) );
  262.         }
  263.     }
  264.     else
  265.     {
  266.         p_sys->i_nb_reads++;
  267.         if( p_access->info.i_size != 0 &&
  268.             (p_sys->i_nb_reads % INPUT_FSTAT_NB_READS) == 0 &&
  269.             p_sys->b_local )
  270.         {
  271.             gnome_vfs_file_info_clear( p_sys->p_file_info );
  272.             i_ret = gnome_vfs_get_file_info_from_handle( p_sys->p_handle,
  273.                                                 p_sys->p_file_info, 8 );
  274.             if( i_ret )
  275.             {
  276.                 msg_Warn( p_access, "couldn't get file properties again (%s)",
  277.                                         gnome_vfs_result_to_string( i_ret ) );
  278.             }
  279.             else
  280.             {
  281.                 p_access->info.i_size = (int64_t)(p_sys->p_file_info->size);
  282.             }
  283.         }
  284.     }
  285.     p_access->info.i_pos += (int64_t)i_read_len;
  286.     /* Some Acces (http) never return EOF and loop on the file */
  287.     if( p_access->info.i_pos > p_access->info.i_size )
  288.     {
  289.         p_access->info.b_eof = true;
  290.         return 0;
  291.     }
  292.     return (int)i_read_len;
  293. }
  294. /*****************************************************************************
  295.  * Seek: seek to a specific location in a file
  296.  *****************************************************************************/
  297. static int Seek( access_t *p_access, int64_t i_pos )
  298. {
  299.     access_sys_t *p_sys = p_access->p_sys;
  300.     int i_ret;
  301.     i_ret = gnome_vfs_seek( p_sys->p_handle, GNOME_VFS_SEEK_START,
  302.                                             (GnomeVFSFileOffset)i_pos);
  303.     if ( !i_ret )
  304.     {
  305.         p_access->info.i_pos = i_pos;
  306.     }
  307.     else
  308.     {
  309.         GnomeVFSFileSize i_offset;
  310.         msg_Err( p_access, "cannot seek (%s)",
  311.                                         gnome_vfs_result_to_string( i_ret ) );
  312.         i_ret = gnome_vfs_tell( p_sys->p_handle, &i_offset );
  313.         if( !i_ret )
  314.         {
  315.             msg_Err( p_access, "cannot tell the current position (%s)",
  316.                                         gnome_vfs_result_to_string( i_ret ) );
  317.             return VLC_EGENERIC;
  318.         }
  319.     }
  320.     /* Reset eof */
  321.     p_access->info.b_eof = false;
  322.     /* FIXME */
  323.     return VLC_SUCCESS;
  324. }
  325. /*****************************************************************************
  326.  * Control:
  327.  *****************************************************************************/
  328. static int Control( access_t *p_access, int i_query, va_list args )
  329. {
  330.     access_sys_t *p_sys = p_access->p_sys;
  331.     bool   *pb_bool;
  332.     int64_t      *pi_64;
  333.     switch( i_query )
  334.     {
  335.         /* */
  336.         case ACCESS_CAN_SEEK:
  337.         case ACCESS_CAN_FASTSEEK:
  338.             pb_bool = (bool*)va_arg( args, bool* );
  339.             *pb_bool = p_sys->b_seekable;
  340.             break;
  341.         case ACCESS_CAN_PAUSE:
  342.         case ACCESS_CAN_CONTROL_PACE:
  343.             pb_bool = (bool*)va_arg( args, bool* );
  344.             *pb_bool = p_sys->b_pace_control;
  345.             break;
  346.         case ACCESS_GET_PTS_DELAY:
  347.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  348.             *pi_64 = var_GetInteger( p_access,
  349.                                         "gnomevfs-caching" ) * INT64_C(1000);
  350.             break;
  351.         /* */
  352.         case ACCESS_SET_PAUSE_STATE:
  353.             /* Nothing to do */
  354.             break;
  355.         case ACCESS_GET_TITLE_INFO:
  356.         case ACCESS_SET_TITLE:
  357.         case ACCESS_SET_SEEKPOINT:
  358.         case ACCESS_SET_PRIVATE_ID_STATE:
  359.         case ACCESS_GET_META:
  360.         case ACCESS_GET_CONTENT_TYPE:
  361.             return VLC_EGENERIC;
  362.         default:
  363.             msg_Warn( p_access, "unimplemented query in control" );
  364.             return VLC_EGENERIC;
  365.     }
  366.     return VLC_SUCCESS;
  367. }