pls.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:8k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * pls.c : PLS playlist format import
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: pls.c 8030 2004-06-22 21:22:13Z gbazin $
  6.  *
  7.  * Authors: Cl閙ent Stenac <zorglub@videolan.org>
  8.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>                                      /* malloc(), free() */
  28. #include <vlc/vlc.h>
  29. #include <vlc/input.h>
  30. #include <vlc/intf.h>
  31. #include <errno.h>                                                 /* ENOMEM */
  32. #include "playlist.h"
  33. struct demux_sys_t
  34. {
  35.     char *psz_prefix;
  36. };
  37. /*****************************************************************************
  38.  * Local prototypes
  39.  *****************************************************************************/
  40. static int Demux( demux_t *p_demux);
  41. static int Control( demux_t *p_demux, int i_query, va_list args );
  42. /*****************************************************************************
  43.  * Import_PLS: main import function
  44.  *****************************************************************************/
  45. int Import_PLS( vlc_object_t *p_this )
  46. {
  47.     demux_t *p_demux = (demux_t *)p_this;
  48.     uint8_t *p_peek;
  49.     char    *psz_ext;
  50.     if( stream_Peek( p_demux->s , &p_peek, 7 ) < 7 )
  51.     {
  52.         msg_Err( p_demux, "cannot peek" );
  53.         return VLC_EGENERIC;
  54.     }
  55.     psz_ext = strrchr ( p_demux->psz_path, '.' );
  56.     if( !strncasecmp( p_peek, "[playlist]", 10 ) )
  57.     {
  58.         ;
  59.     }
  60.     else if( ( psz_ext && !strcasecmp( psz_ext, ".pls") ) ||
  61.              ( p_demux->psz_demux && !strcmp(p_demux->psz_demux, "pls") ) )
  62.     {
  63.         ;
  64.     }
  65.     else
  66.     {
  67.         msg_Warn(p_demux, "pls import module discarded");
  68.         return VLC_EGENERIC;
  69.         
  70.     }
  71.     msg_Dbg( p_demux, "found valid PLS playlist file");
  72.     p_demux->pf_control = Control;
  73.     p_demux->pf_demux = Demux;
  74.     p_demux->p_sys = malloc( sizeof(demux_sys_t) );
  75.     if( p_demux->p_sys == NULL )
  76.     {
  77.         msg_Err( p_demux, "Out of memory" );
  78.         return VLC_ENOMEM;
  79.     }
  80.     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
  81.     return VLC_SUCCESS;
  82. }
  83. /*****************************************************************************
  84.  * Deactivate: frees unused data
  85.  *****************************************************************************/
  86. void Close_PLS( vlc_object_t *p_this )
  87. {
  88.     demux_t *p_demux = (demux_t *)p_this;
  89.     if( p_demux->p_sys->psz_prefix )
  90.     {
  91.         free( p_demux->p_sys->psz_prefix );
  92.     }
  93.     free( p_demux->p_sys );
  94. }
  95. static int Demux( demux_t *p_demux )
  96. {
  97.     mtime_t        i_duration = -1;
  98.     char          *psz_name = NULL;    
  99.     char          *psz_line;
  100.     char          *psz_mrl = NULL;
  101.     char          *psz_key;
  102.     char          *psz_value;
  103.     playlist_t    *p_playlist;
  104.     int            i_position;
  105.     int            i_item = -1;
  106.     int            i_new_item = 0;
  107.     int            i_key_length;
  108.     p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
  109.                                                  FIND_PARENT );
  110.     if( !p_playlist )
  111.     {
  112.         msg_Err( p_demux, "can't find playlist" );
  113.         return -1;
  114.     }
  115.     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
  116.     i_position = p_playlist->i_index + 1;
  117.     while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
  118.     {
  119.         if( !strncasecmp( psz_line, "[playlist]", sizeof("[playlist]")-1 ) )
  120.         {
  121.             free( psz_line );
  122.             continue;
  123.         }
  124.         psz_key = psz_line;
  125.         psz_value = strchr( psz_line, '=' );
  126.         if( psz_value )
  127.         {
  128.             *psz_value='';
  129.             psz_value++;
  130.         }
  131.         else
  132.         {
  133.             msg_Warn( p_demux, "invalid line in pls file" );
  134.             free( psz_line );
  135.             continue;
  136.         }
  137.         if( !strcasecmp( psz_key, "version" ) )
  138.         {
  139.             msg_Dbg( p_demux, "pls file version: %s", psz_value );
  140.             free( psz_line );
  141.             continue;
  142.         }
  143.         /* find the number part of of file1, title1 or length1 etc */
  144.         i_key_length = strlen( psz_key );
  145.         if( i_key_length >= 5 ) /* file1 type case */
  146.         {
  147.             i_new_item = atoi( psz_key + 4 );
  148.             if( i_new_item == 0 && i_key_length >= 6 ) /* title1 type case */
  149.             {
  150.                 i_new_item = atoi( psz_key + 5 );
  151.                 if( i_new_item == 0 && i_key_length >= 7 ) /* length1 type case */
  152.                 {
  153.                     i_new_item = atoi( psz_key + 6 );
  154.                 }
  155.             }
  156.         }
  157.         if( i_new_item == 0 )
  158.         {
  159.             msg_Warn( p_demux, "couldn't find number of items" );
  160.             free( psz_line );
  161.             continue;
  162.         }
  163.         if( i_item == -1 )
  164.         {
  165.             i_item = i_new_item;
  166.         }
  167.         /* we found a new item, insert the previous */
  168.         if( i_item != i_new_item )
  169.         {
  170.             if( psz_mrl )
  171.             {
  172.                 playlist_Add( p_playlist, psz_mrl, psz_name,
  173.                               PLAYLIST_INSERT, i_position );
  174.                 if( i_duration != -1 )
  175.                 {
  176.                     playlist_SetDuration( p_playlist, i_position, i_duration );
  177.                 }
  178.                 i_position++;
  179.                 free( psz_mrl );
  180.                 psz_mrl = NULL;
  181.             }
  182.             else
  183.             {
  184.                 msg_Warn( p_demux, "no file= part found for item %d", i_item );
  185.             }
  186.             if( psz_name )
  187.             {
  188.                 free( psz_name );
  189.                 psz_name = NULL;
  190.             }
  191.             i_duration = -1;
  192.             i_item = i_new_item;
  193.             i_new_item = 0;
  194.         }
  195.         if( !strncasecmp( psz_key, "file", sizeof("file") -1 ) )
  196.         {
  197.             psz_mrl = ProcessMRL( psz_value, p_demux->p_sys->psz_prefix );
  198.         }
  199.         else if( !strncasecmp( psz_key, "title", sizeof("title") -1 ) )
  200.         {
  201.             psz_name = strdup( psz_value );
  202.         }
  203.         else if( !strncasecmp( psz_key, "length", sizeof("length") -1 ) )
  204.         {
  205.             i_duration = atoi( psz_value );
  206.             if( i_duration != -1 )
  207.             {
  208.                 i_duration *= 1000000;
  209.             }
  210.         }
  211.         else
  212.         {
  213.             msg_Warn( p_demux, "unknown key found in pls file: %s", psz_key );
  214.         }
  215.         free( psz_line );
  216.     }
  217.     /* Add last object */
  218.     if( psz_mrl )
  219.     {
  220.         playlist_Add( p_playlist, psz_mrl, psz_name,
  221.                       PLAYLIST_INSERT, i_position );
  222.         if( i_duration != -1 )
  223.         {
  224.                     playlist_SetDuration( p_playlist, i_position, i_duration );
  225.         }
  226.         i_position++;
  227.         free( psz_mrl );
  228.         psz_mrl = NULL;
  229.     }
  230.     else
  231.     {
  232.         msg_Warn( p_demux, "no file= part found for item %d", i_item );
  233.     }
  234.     if( psz_name )
  235.     {
  236.         free( psz_name );
  237.         psz_name = NULL;
  238.     }
  239.     vlc_object_release( p_playlist );
  240.     return VLC_SUCCESS;
  241. }
  242. static int Control( demux_t *p_demux, int i_query, va_list args )
  243. {
  244.     return VLC_EGENERIC;
  245. }