]> git.sesse.net Git - vlc/blob - modules/demux/playlist/gvp.c
input_item: Remove input_item_AddSubItem2 and send subitem_added event from input_ite...
[vlc] / modules / demux / playlist / gvp.c
1 /*****************************************************************************
2  * gvp.c: Google Video Playlist demuxer
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea @t videolan d.t 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 /**
25  * Format seems to be:
26  * gvp_version:<version> (1.1)
27  * url:<the media's url>
28  * docid:<integer>
29  * duration:<integer ms ?>
30  * title:<the title>
31  * description:<desc line1>^M
32  * description:<desc linei>^M
33  * description:<desc final line (no ^M)>
34  * lines starting with # are comments
35  *
36  * Example:
37
38 # download the free Google Video Player from http://video.google.com/
39 gvp_version:1.1
40 url:http://vp.video.google.com/videodownload?version=0&secureurl=uAAAAMVHt_Q99OwfGxlWVWH7jd6AA_3n4TboaxIELD_kCg3KcBPSxExZFvQv5DGAxrahVg57KZNZvd0EORPBM3xrxTJ3FdLEWBYiduklpviqjE1Q5zLAkiEZaUsUSFtmbBZDTUUBuN9moYY59eK8lpWXsgTbYB1tLVtaxNBpAMRMyVeHoiJ7BzYdENk-PqJeBbr50QbQ83WK87yJAbN2pSRnF-ucCuNMSLBV7wBL4IcxFpYb1WOK-YXkyxY0NtWlPBufTA&sigh=matNCEVSOR8c-3zN9Gtx0zGinwU&begin=0&len=59749&docid=-715862862672743260
41 docid:-715862862672743260
42 duration:59749
43 title:Apple Macintosh 1984 Superbowl Commercial
44 description:The now infamous Apple Macintosh commercial aired during the 1984 SuperBowl.
45
46  */
47
48 /*****************************************************************************
49  * Preamble
50  *****************************************************************************/
51 #ifdef HAVE_CONFIG_H
52 # include "config.h"
53 #endif
54
55 #include <vlc_common.h>
56 #include <vlc_demux.h>
57
58 #include "playlist.h"
59
60 #define MAX_LINE 1024
61
62 struct demux_sys_t
63 {
64     input_item_t *p_current_input;
65 };
66
67 /*****************************************************************************
68  * Local prototypes
69  *****************************************************************************/
70 static int Demux( demux_t *p_demux);
71 static int Control( demux_t *p_demux, int i_query, va_list args );
72
73 /*****************************************************************************
74  * Import_GVP: main import function
75  *****************************************************************************/
76 int Import_GVP( vlc_object_t *p_this )
77 {
78     demux_t *p_demux = (demux_t *)p_this;
79     int i_peek, i, b_found = false;
80     const uint8_t *p_peek;
81
82     i_peek = stream_Peek( p_demux->s, &p_peek, MAX_LINE );
83
84     for( i = 0; i < i_peek - (int)sizeof("gvp_version:"); i++ )
85     {
86         if( p_peek[i] == 'g' && p_peek[i+1] == 'v' && p_peek[i+2] == 'p' &&
87             !memcmp( p_peek+i, "gvp_version:", sizeof("gvp_version:") - 1 ) )
88         {
89             b_found = true;
90             break;
91         }
92     }
93
94     if( !b_found ) return VLC_EGENERIC;
95
96     STANDARD_DEMUX_INIT_MSG(  "using Google Video Playlist (gvp) import" );
97     p_demux->pf_control = Control;
98     p_demux->pf_demux = Demux;
99     p_demux->p_sys = malloc( sizeof( demux_sys_t ) );
100     if( !p_demux->p_sys )
101         return VLC_ENOMEM;
102
103     return VLC_SUCCESS;
104 }
105
106 /*****************************************************************************
107  * Deactivate: frees unused data
108  *****************************************************************************/
109 void Close_GVP( vlc_object_t *p_this )
110 {
111     demux_t *p_demux = (demux_t *)p_this;
112     demux_sys_t *p_sys = p_demux->p_sys;
113
114     free( p_sys );
115 }
116
117 static int Demux( demux_t *p_demux )
118 {
119     demux_sys_t *p_sys = p_demux->p_sys;
120
121     char *psz_line;
122     char *psz_attrvalue;
123
124     char *psz_version = NULL;
125     char *psz_url = NULL;
126     char *psz_docid = NULL;
127     int i_duration = -1;
128     char *psz_title = NULL;
129     char *psz_description = NULL;
130     input_item_t *p_input;
131
132     input_item_t *p_current_input = GetCurrentItem(p_demux);
133
134     input_item_node_t *p_subitems = input_item_node_Create( p_current_input );
135
136     p_sys->p_current_input = p_current_input;
137
138     while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
139     {
140         if( *psz_line == '#' )
141         {
142             /* This is a comment */
143             free( psz_line );
144             continue;
145         }
146         psz_attrvalue = strchr( psz_line, ':' );
147         if( !psz_attrvalue )
148         {
149             msg_Dbg( p_demux, "Unable to parse line (%s)", psz_line );
150             free( psz_line );
151             continue;
152         }
153         *psz_attrvalue = '\0';
154         psz_attrvalue++;
155         if( !strcmp( psz_line, "gvp_version" ) )
156         {
157             psz_version = strdup( psz_attrvalue );
158         }
159         else if( !strcmp( psz_line, "url" ) )
160         {
161             psz_url = strdup( psz_attrvalue );
162         }
163         else if( !strcmp( psz_line, "docid" ) )
164         {
165             psz_docid = strdup( psz_attrvalue );
166         }
167         else if( !strcmp( psz_line, "duration" ) )
168         {
169             i_duration = atoi( psz_attrvalue );
170         }
171         else if( !strcmp( psz_line, "title" ) )
172         {
173             psz_title = strdup( psz_attrvalue );
174         }
175         else if( !strcmp( psz_line, "description" ) )
176         {
177             char *buf;
178             if( !psz_description )
179             {
180                 psz_description = strdup( psz_attrvalue );
181             }
182             else
183             {
184                 /* handle multi-line descriptions */
185                 if( asprintf( &buf, "%s\n%s", psz_description, psz_attrvalue ) == -1 )
186                     buf = NULL;
187                 free( psz_description );
188                 psz_description = buf;
189             }
190             /* remove ^M char at the end of the line (if any) */
191             buf = psz_description + strlen( psz_description );
192             if( buf != psz_description )
193             {
194                 buf--;
195                 if( *buf == '\r' ) *buf = '\0';
196             }
197         }
198         free( psz_line );
199     }
200
201     if( !psz_url )
202     {
203         msg_Err( p_demux, "URL not found" );
204     }
205     else
206     {
207         p_input = input_item_New( p_demux, psz_url, psz_title );
208 #define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
209                     p_input, _("Google Video"), type, "%s", field ) ; }
210         SADD_INFO( "gvp_version", psz_version );
211         SADD_INFO( "docid", psz_docid );
212         SADD_INFO( "description", psz_description );
213         input_item_node_AppendItem( p_subitems, p_input );
214         vlc_gc_decref( p_input );
215     }
216
217     input_item_AddSubItemTree( p_subitems );
218     input_item_node_Delete( p_subitems );
219
220     vlc_gc_decref(p_current_input);
221
222     free( psz_version );
223     free( psz_url );
224     free( psz_docid );
225     free( psz_title );
226     free( psz_description );
227
228     return 0; /* Needed for correct operation of go back */
229 }
230
231 static int Control( demux_t *p_demux, int i_query, va_list args )
232 {
233     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
234     return VLC_EGENERIC;
235 }