]> git.sesse.net Git - vlc/blob - modules/demux/playlist/wpl.c
ram: Removing write only variable.
[vlc] / modules / demux / playlist / wpl.c
1 /*****************************************************************************
2  * wpl.c : WPL playlist format import
3  *****************************************************************************
4  * Copyright (C) 2009 the VideoLAN team
5  *
6  * Authors: Su Heaven <suheaven@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_demux.h>
33
34 #include "playlist.h"
35
36 struct demux_sys_t
37 {
38     char *psz_prefix;
39 };
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int Demux( demux_t *p_demux);
45
46 /*****************************************************************************
47  * Import_WPL: main import function
48  *****************************************************************************/
49 int Import_WPL( vlc_object_t *p_this )
50 {
51     demux_t *p_demux = (demux_t *)p_this;
52
53     if(! ( demux_IsPathExtension( p_demux, ".wpl" ) || demux_IsForced( p_demux,  "wpl" )))
54         return VLC_EGENERIC;
55
56     STANDARD_DEMUX_INIT_MSG( "found valid WPL playlist" );
57     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
58
59     return VLC_SUCCESS;
60 }
61
62
63
64 /*****************************************************************************
65  * Deactivate: frees unused data
66  *****************************************************************************/
67 void Close_WPL( vlc_object_t *p_this )
68 {
69     demux_t *p_demux = (demux_t *)p_this;
70     free( p_demux->p_sys->psz_prefix );
71     free( p_demux->p_sys );
72 }
73
74 static int Demux( demux_t *p_demux )
75 {
76     char       *psz_line;
77     input_item_t *p_current_input = GetCurrentItem(p_demux);
78
79     input_item_node_t *p_subitems = input_item_node_Create( p_current_input );
80
81     while( (psz_line = stream_ReadLine( p_demux->s )) )
82     {
83         char *psz_parse = psz_line;
84         /* Skip leading tabs and spaces */
85         while( *psz_parse == ' '  || *psz_parse == '\t' ||
86                *psz_parse == '\n' || *psz_parse == '\r' )
87             psz_parse++;
88
89         /* if the line is the uri of the media item */
90         if( !strncasecmp( psz_parse, "<media src=\"", strlen( "<media src=\"" ) ) )
91         {
92             char *psz_uri = psz_parse + strlen( "<media src=\"" );
93
94             psz_parse = strchr( psz_uri, '"' );
95             if( psz_parse != NULL )
96             {
97                 input_item_t *p_input;
98
99                 *psz_parse = '\0';
100                 psz_uri = ProcessMRL( psz_uri, p_demux->p_sys->psz_prefix );
101                 p_input = input_item_NewExt( psz_uri, psz_uri,
102                                         0, NULL, 0, -1 );
103                 input_item_node_AppendItem( p_subitems, p_input );
104                 vlc_gc_decref( p_input );
105             }
106         }
107
108         /* Fetch another line */
109         free( psz_line );
110
111     }
112
113     input_item_node_PostAndDelete( p_subitems );
114
115     vlc_gc_decref(p_current_input);
116     var_Destroy( p_demux, "wpl-extvlcopt" );
117     return 0; /* Needed for correct operation of go back */
118 }