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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * m3u.c : M3U playlist format import
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 5884c6ea5ac302cffdaadcaf73a1400aaff0a3e9 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Sigmund Augdal Helberg <dnumgis@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_demux.h>
  32. #include <vlc_charset.h>
  33. #include "playlist.h"
  34. struct demux_sys_t
  35. {
  36.     char *psz_prefix;
  37.     char *(*pf_dup) (const char *);
  38. };
  39. /*****************************************************************************
  40.  * Local prototypes
  41.  *****************************************************************************/
  42. static int Demux( demux_t *p_demux);
  43. static int Control( demux_t *p_demux, int i_query, va_list args );
  44. static void parseEXTINF( char *psz_string, char **ppsz_artist, char **ppsz_name, int *pi_duration );
  45. static bool ContainsURL( demux_t *p_demux );
  46. static char *GuessEncoding (const char *str)
  47. {
  48.     return IsUTF8 (str) ? strdup (str) : FromLatin1 (str);
  49. }
  50. /*****************************************************************************
  51.  * Import_M3U: main import function
  52.  *****************************************************************************/
  53. int Import_M3U( vlc_object_t *p_this )
  54. {
  55.     demux_t *p_demux = (demux_t *)p_this;
  56.     const uint8_t *p_peek;
  57.     CHECK_PEEK( p_peek, 8 );
  58.     char *(*pf_dup) (const char *);
  59.     if( POKE( p_peek, "RTSPtext", 8 ) /* QuickTime */
  60.      || demux_IsPathExtension( p_demux, ".m3u8" )
  61.      || demux_IsForced( p_demux, "m3u8" ) )
  62.         pf_dup = strdup; /* UTF-8 */
  63.     else
  64.     if( POKE( p_peek, "#EXTM3U", 7 )
  65.      || demux_IsPathExtension( p_demux, ".m3u" )
  66.      || demux_IsPathExtension( p_demux, ".vlc" )
  67.      || demux_IsForced( p_demux, "m3u" )
  68.      || ContainsURL( p_demux ) )
  69.         pf_dup = GuessEncoding;
  70.     else
  71.         return VLC_EGENERIC;
  72.     STANDARD_DEMUX_INIT_MSG( "found valid M3U playlist" );
  73.     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
  74.     p_demux->p_sys->pf_dup = pf_dup;
  75.     return VLC_SUCCESS;
  76. }
  77. static bool ContainsURL( demux_t *p_demux )
  78. {
  79.     const uint8_t *p_peek, *p_peek_end;
  80.     int i_peek;
  81.     i_peek = stream_Peek( p_demux->s, &p_peek, 1024 );
  82.     if( i_peek <= 0 ) return false;
  83.     p_peek_end = p_peek + i_peek;
  84.     while( p_peek + sizeof( "https://" ) < p_peek_end )
  85.     {
  86.         /* One line starting with an URL is enough */
  87.         if( !strncasecmp( (const char *)p_peek, "http://", 7 ) ||
  88.             !strncasecmp( (const char *)p_peek, "mms://", 6 ) ||
  89.             !strncasecmp( (const char *)p_peek, "rtsp://", 7 ) ||
  90.             !strncasecmp( (const char *)p_peek, "https://", 8 ) ||
  91.             !strncasecmp( (const char *)p_peek, "ftp://", 6 ) )
  92.         {
  93.             return true;
  94.         }
  95.         /* Comments and blank lines are ignored */
  96.         else if( *p_peek != '#' && *p_peek != 'n' && *p_peek != 'r')
  97.         {
  98.             return false;
  99.         }
  100.         while( p_peek < p_peek_end && *p_peek != 'n' )
  101.             p_peek++;
  102.         if ( *p_peek == 'n' )
  103.             p_peek++;
  104.     }
  105.     return false;
  106. }
  107. /*****************************************************************************
  108.  * Deactivate: frees unused data
  109.  *****************************************************************************/
  110. void Close_M3U( vlc_object_t *p_this )
  111. {
  112.     demux_t *p_demux = (demux_t *)p_this;
  113.     free( p_demux->p_sys->psz_prefix );
  114.     free( p_demux->p_sys );
  115. }
  116. static int Demux( demux_t *p_demux )
  117. {
  118.     char       *psz_line;
  119.     char       *psz_name = NULL;
  120.     char       *psz_artist = NULL;
  121.     int        i_parsed_duration = 0;
  122.     mtime_t    i_duration = -1;
  123.     const char**ppsz_options = NULL;
  124.     char *    (*pf_dup) (const char *) = p_demux->p_sys->pf_dup;
  125.     int        i_options = 0;
  126.     bool b_cleanup = false;
  127.     input_item_t *p_input;
  128.     INIT_PLAYLIST_STUFF;
  129.     psz_line = stream_ReadLine( p_demux->s );
  130.     while( psz_line )
  131.     {
  132.         char *psz_parse = psz_line;
  133.         /* Skip leading tabs and spaces */
  134.         while( *psz_parse == ' ' || *psz_parse == 't' ||
  135.                *psz_parse == 'n' || *psz_parse == 'r' ) psz_parse++;
  136.         if( *psz_parse == '#' )
  137.         {
  138.             /* Parse extra info */
  139.             /* Skip leading tabs and spaces */
  140.             while( *psz_parse == ' ' || *psz_parse == 't' ||
  141.                    *psz_parse == 'n' || *psz_parse == 'r' ||
  142.                    *psz_parse == '#' ) psz_parse++;
  143.             if( !*psz_parse ) goto error;
  144.             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
  145.             {
  146.                 /* Extended info */
  147.                 psz_parse += sizeof("EXTINF:") - 1;
  148.                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
  149.                 if( i_parsed_duration >= 0 )
  150.                     i_duration = i_parsed_duration * INT64_C(1000000);
  151.                 if( psz_name )
  152.                     psz_name = pf_dup( psz_name );
  153.                 if( psz_artist )
  154.                     psz_artist = pf_dup( psz_artist );
  155.             }
  156.             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
  157.                                    sizeof("EXTVLCOPT:") -1 ) )
  158.             {
  159.                 /* VLC Option */
  160.                 char *psz_option;
  161.                 psz_parse += sizeof("EXTVLCOPT:") -1;
  162.                 if( !*psz_parse ) goto error;
  163.                 psz_option = pf_dup( psz_parse );
  164.                 if( psz_option )
  165.                     INSERT_ELEM( ppsz_options, i_options, i_options,
  166.                                  psz_option );
  167.             }
  168.         }
  169.         else if( !strncasecmp( psz_parse, "RTSPtext", sizeof("RTSPtext") -1 ) )
  170.         {
  171.             ;/* special case to handle QuickTime RTSPtext redirect files */
  172.         }
  173.         else if( *psz_parse )
  174.         {
  175.             char *psz_mrl;
  176.             psz_parse = pf_dup( psz_parse );
  177.             if( !psz_name && psz_parse )
  178.                 /* Use filename as name for relative entries */
  179.                 psz_name = strdup( psz_parse );
  180.             psz_mrl = ProcessMRL( psz_parse, p_demux->p_sys->psz_prefix );
  181.             b_cleanup = true;
  182.             if( !psz_mrl ) goto error;
  183.             p_input = input_item_NewExt( p_demux, psz_mrl, psz_name,
  184.                                         i_options, ppsz_options, 0, i_duration );
  185.             LocaleFree( psz_parse );
  186.             free( psz_mrl );
  187.             if ( psz_artist && *psz_artist )
  188.                 input_item_SetArtist( p_input, psz_artist );
  189.             if( psz_name ) input_item_SetTitle( p_input, psz_name );
  190.             input_item_AddSubItem( p_current_input, p_input );
  191.             vlc_gc_decref( p_input );
  192.         }
  193.  error:
  194.         /* Fetch another line */
  195.         free( psz_line );
  196.         psz_line = stream_ReadLine( p_demux->s );
  197.         if( !psz_line ) b_cleanup = true;
  198.         if( b_cleanup )
  199.         {
  200.             /* Cleanup state */
  201.             while( i_options-- ) free( (char*)ppsz_options[i_options] );
  202.             free( ppsz_options );
  203.             ppsz_options = NULL; i_options = 0;
  204.             free( psz_name );
  205.             psz_name = NULL;
  206.             free( psz_artist );
  207.             psz_artist = NULL;
  208.             i_parsed_duration = 0;
  209.             i_duration = -1;
  210.             b_cleanup = false;
  211.         }
  212.     }
  213.     HANDLE_PLAY_AND_RELEASE;
  214.     var_Destroy( p_demux, "m3u-extvlcopt" );
  215.     return 0; /* Needed for correct operation of go back */
  216. }
  217. static int Control( demux_t *p_demux, int i_query, va_list args )
  218. {
  219.     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
  220.     return VLC_EGENERIC;
  221. }
  222. static void parseEXTINF(char *psz_string, char **ppsz_artist,
  223.                         char **ppsz_name, int *pi_duration)
  224. {
  225.     char *end = NULL;
  226.     char *psz_item = NULL;
  227.     end = psz_string + strlen( psz_string );
  228.     /* ignore whitespaces */
  229.     for (; psz_string < end && ( *psz_string == 't' || *psz_string == ' ' );
  230.          psz_string++ );
  231.     /* duration: read to next comma */
  232.     psz_item = psz_string;
  233.     psz_string = strchr( psz_string, ',' );
  234.     if ( psz_string )
  235.     {
  236.         *psz_string = '';
  237.         *pi_duration = atoi( psz_item );
  238.     }
  239.     else
  240.     {
  241.         return;
  242.     }
  243.     if ( psz_string < end )               /* continue parsing if possible */
  244.         psz_string++;
  245.     /* analyse the remaining string */
  246.     psz_item = strstr( psz_string, " - " );
  247.     /* here we have the 0.8.2+ format with artist */
  248.     if ( psz_item )
  249.     {
  250.         /* *** "EXTINF:time,artist - name" */
  251.         *psz_item = '';
  252.         *ppsz_artist = psz_string;
  253.         *ppsz_name = psz_item + 3;          /* points directly after ' - ' */
  254.         return;
  255.     }
  256.     /* reaching this point means: 0.8.1- with artist or something without artist */
  257.     if ( *psz_string == ',' )
  258.     {
  259.         /* *** "EXTINF:time,,name" */
  260.         psz_string++;
  261.         *ppsz_name = psz_string;
  262.         return;
  263.     }
  264.     psz_item = psz_string;
  265.     psz_string = strchr( psz_string, ',' );
  266.     if ( psz_string )
  267.     {
  268.         /* *** "EXTINF:time,artist,name" */
  269.         *psz_string = '';
  270.         *ppsz_artist = psz_item;
  271.         *ppsz_name = psz_string+1;
  272.     }
  273.     else
  274.     {
  275.         /* *** "EXTINF:time,name" */
  276.         *ppsz_name = psz_item;
  277.     }
  278.     return;
  279. }