]> git.sesse.net Git - vlc/blob - modules/demux/playlist/wpl.c
Real demux: Do not store the SIPR flavor in profile.
[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 #include <vlc_charset.h>
34
35 #include "playlist.h"
36
37 struct demux_sys_t
38 {
39     char *psz_prefix;
40 };
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int Demux( demux_t *p_demux);
46 static int Control( demux_t *p_demux, int i_query, va_list args );
47
48 /*****************************************************************************
49  * Import_WPL: main import function
50  *****************************************************************************/
51 int Import_WPL( vlc_object_t *p_this )
52 {
53     demux_t *p_demux = (demux_t *)p_this;
54
55     if(! ( demux_IsPathExtension( p_demux, ".wpl" ) || demux_IsForced( p_demux,  "wpl" )))
56         return VLC_EGENERIC;
57
58     STANDARD_DEMUX_INIT_MSG( "found valid WPL playlist" );
59     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
60
61     return VLC_SUCCESS;
62 }
63
64
65
66 /*****************************************************************************
67  * Deactivate: frees unused data
68  *****************************************************************************/
69 void Close_WPL( vlc_object_t *p_this )
70 {
71     demux_t *p_demux = (demux_t *)p_this;
72     free( p_demux->p_sys->psz_prefix );
73     free( p_demux->p_sys );
74 }
75
76 static int Demux( demux_t *p_demux )
77 {
78     char       *psz_line;
79     input_item_t *p_current_input = GetCurrentItem(p_demux);
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( p_demux, psz_uri, psz_uri,
102                                         0, NULL, 0, -1 );
103                 input_item_AddSubItem( p_current_input, p_input );
104             }
105         }
106
107         /* Fetch another line */
108         free( psz_line );
109
110     }
111     vlc_gc_decref(p_current_input);
112     var_Destroy( p_demux, "wpl-extvlcopt" );
113     return 0; /* Needed for correct operation of go back */
114 }
115
116 static int Control( demux_t *p_demux, int i_query, va_list args )
117 {
118     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
119     return VLC_EGENERIC;
120 }