1 /*****************************************************************************
2 * qtl.c: QuickTime Media Link Importer
3 *****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
7 * Authors: Antoine Cellerier <dionoea -@t- videolan -Dot- org>
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.
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.
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 *****************************************************************************/
26 http://developer.apple.com/documentation/QuickTime/QT6WhatsNew/Chap1/chapter_1_section_54.html
28 http://developer.apple.com/documentation/QuickTime/WhatsNewQT5/QT5NewChapt1/chapter_1_section_39.html
31 controller - true/false
32 fullscreen - normal/double/half/current/full
34 kioskmode - true/false
35 loop - true/false/palindrome
38 playeveryframe - true/false
40 quitwhendone - true/false
43 volume - 0 (mute) - 100 (max)
47 /*****************************************************************************
49 *****************************************************************************/
50 #include <ctype.h> /* isspace() */
53 #include <vlc_demux.h>
60 playlist_t *p_playlist;
61 playlist_item_t *p_current;
62 playlist_item_t *p_item_in_category;
65 xml_reader_t *p_xml_reader;
68 typedef enum { FULLSCREEN_NORMAL,
72 FULLSCREEN_FULL } qtl_fullscreen_t;
73 const char* ppsz_fullscreen[] = { "normal", "double", "half", "current", "full" };
74 typedef enum { LOOP_TRUE,
76 LOOP_PALINDROME } qtl_loop_t;
77 const char* ppsz_loop[] = { "true", "false", "palindrome" };
79 /*****************************************************************************
81 *****************************************************************************/
82 static int Demux( demux_t *p_demux);
83 static int Control( demux_t *p_demux, int i_query, va_list args );
85 /*****************************************************************************
86 * Import_QTL: main import function
87 *****************************************************************************/
88 int E_(Import_QTL)( vlc_object_t *p_this )
90 DEMUX_BY_EXTENSION_MSG( ".qtl", "using QuickTime Media Link reader" );
91 p_demux->p_sys->p_playlist = NULL;
92 p_demux->p_sys->p_xml = NULL;
93 p_demux->p_sys->p_xml_reader = NULL;
97 /*****************************************************************************
98 * Deactivate: frees unused data
99 *****************************************************************************/
100 void E_(Close_QTL)( vlc_object_t *p_this )
102 demux_t *p_demux = (demux_t *)p_this;
103 demux_sys_t *p_sys = p_demux->p_sys;
105 if( p_sys->p_playlist )
106 vlc_object_release( p_sys->p_playlist );
107 if( p_sys->p_xml_reader )
108 xml_ReaderDelete( p_sys->p_xml, p_sys->p_xml_reader );
110 xml_Delete( p_sys->p_xml );
114 static int Demux( demux_t *p_demux )
116 demux_sys_t *p_sys = p_demux->p_sys;
118 xml_reader_t *p_xml_reader;
119 char *psz_eltname = NULL;
120 input_item_t *p_input;
122 /* List of all possible attributes. The only required one is "src" */
123 vlc_bool_t b_autoplay = VLC_FALSE;
124 vlc_bool_t b_controler = VLC_TRUE;
125 qtl_fullscreen_t fullscreen = VLC_FALSE;
126 char *psz_href = NULL;
127 vlc_bool_t b_kioskmode = VLC_FALSE;
128 qtl_loop_t loop = LOOP_FALSE;
130 char *psz_moviename = NULL;
131 vlc_bool_t b_playeveryframe = VLC_FALSE;
132 char *psz_qtnext = NULL;
133 vlc_bool_t b_quitwhendone = VLC_FALSE;
134 char *psz_src = NULL;
135 char *psz_mimetype = NULL;
140 p_sys->p_playlist = p_playlist;
141 p_sys->p_current = p_current;
142 p_sys->p_item_in_category = p_item_in_category;
144 p_xml = p_sys->p_xml = xml_Create( p_demux );
145 if( !p_xml ) return -1;
147 p_xml_reader = xml_ReaderCreate( p_xml, p_demux->s );
148 if( !p_xml_reader ) return -1;
149 p_sys->p_xml_reader = p_xml_reader;
151 /* check root node */
152 if( xml_ReaderRead( p_xml_reader ) != 1 )
154 msg_Err( p_demux, "invalid file (no root node)" );
158 if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM ||
159 ( psz_eltname = xml_ReaderName( p_xml_reader ) ) == NULL ||
160 strcmp( psz_eltname, "embed" ) )
162 msg_Err( p_demux, "invalid root node %i, %s",
163 xml_ReaderNodeType( p_xml_reader ), psz_eltname );
166 /* second line has <?quicktime tag ... so we try to skip it */
167 msg_Dbg( p_demux, "trying to read one more node" );
168 xml_ReaderRead( p_xml_reader );
169 if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM ||
170 ( psz_eltname = xml_ReaderName( p_xml_reader ) ) == NULL ||
171 strcmp( psz_eltname, "embed" ) )
173 msg_Err( p_demux, "invalid root node %i, %s",
174 xml_ReaderNodeType( p_xml_reader ), psz_eltname );
181 while( xml_ReaderNextAttr( p_sys->p_xml_reader ) == VLC_SUCCESS )
183 char *psz_attrname = xml_ReaderName( p_sys->p_xml_reader );
184 char *psz_attrvalue = xml_ReaderValue( p_sys->p_xml_reader );
186 if( !psz_attrname || !psz_attrvalue )
188 FREE( psz_attrname );
189 FREE( psz_attrvalue );
193 if( !strcmp( psz_attrname, "autoplay" ) )
195 if( !strcmp( psz_attrvalue, "true" ) )
197 b_autoplay = VLC_TRUE;
201 b_autoplay = VLC_FALSE;
204 else if( !strcmp( psz_attrname, "controler" ) )
206 if( !strcmp( psz_attrvalue, "false" ) )
208 b_controler = VLC_FALSE;
212 b_controler = VLC_TRUE;
215 else if( !strcmp( psz_attrname, "fullscreen" ) )
217 if( !strcmp( psz_attrvalue, "double" ) )
219 fullscreen = FULLSCREEN_DOUBLE;
221 else if( !strcmp( psz_attrvalue, "half" ) )
223 fullscreen = FULLSCREEN_HALF;
225 else if( !strcmp( psz_attrvalue, "current" ) )
227 fullscreen = FULLSCREEN_CURRENT;
229 else if( !strcmp( psz_attrvalue, "full" ) )
231 fullscreen = FULLSCREEN_FULL;
235 fullscreen = FULLSCREEN_NORMAL;
238 else if( !strcmp( psz_attrname, "href" ) )
240 psz_href = psz_attrvalue;
241 psz_attrvalue = NULL;
243 else if( !strcmp( psz_attrname, "kioskmode" ) )
245 if( !strcmp( psz_attrvalue, "true" ) )
247 b_kioskmode = VLC_TRUE;
251 b_kioskmode = VLC_FALSE;
254 else if( !strcmp( psz_attrname, "loop" ) )
256 if( !strcmp( psz_attrvalue, "true" ) )
260 else if( !strcmp( psz_attrvalue, "palindrome" ) )
262 loop = LOOP_PALINDROME;
269 else if( !strcmp( psz_attrname, "movieid" ) )
271 i_movieid = atoi( psz_attrvalue );
273 else if( !strcmp( psz_attrname, "moviename" ) )
275 psz_moviename = psz_attrvalue;
276 psz_attrvalue = NULL;
278 else if( !strcmp( psz_attrname, "playeveryframe" ) )
280 if( !strcmp( psz_attrvalue, "true" ) )
282 b_playeveryframe = VLC_TRUE;
286 b_playeveryframe = VLC_FALSE;
289 else if( !strcmp( psz_attrname, "qtnext" ) )
291 psz_qtnext = psz_attrvalue;
292 psz_attrvalue = NULL;
294 else if( !strcmp( psz_attrname, "quitwhendone" ) )
296 if( !strcmp( psz_attrvalue, "true" ) )
298 b_quitwhendone = VLC_TRUE;
302 b_quitwhendone = VLC_FALSE;
305 else if( !strcmp( psz_attrname, "src" ) )
307 psz_src = psz_attrvalue;
308 psz_attrvalue = NULL;
310 else if( !strcmp( psz_attrname, "mimetype" ) )
312 psz_mimetype = psz_attrvalue;
313 psz_attrvalue = NULL;
315 else if( !strcmp( psz_attrname, "volume" ) )
317 i_volume = atoi( psz_attrvalue );
321 msg_Dbg( p_demux, "Attribute %s with value %s isn't valid",
322 psz_attrname, psz_attrvalue );
324 FREE( psz_attrname );
325 FREE( psz_attrvalue );
328 msg_Dbg( p_demux, "autoplay: %s (unused by VLC)",
329 b_autoplay==VLC_TRUE ? "true": "false" );
330 msg_Dbg( p_demux, "controler: %s (unused by VLC)",
331 b_controler==VLC_TRUE?"true": "false" );
332 msg_Dbg( p_demux, "fullscreen: %s (unused by VLC)",
333 ppsz_fullscreen[fullscreen] );
334 msg_Dbg( p_demux, "href: %s", psz_href );
335 msg_Dbg( p_demux, "kioskmode: %s (unused by VLC)",
336 b_kioskmode==VLC_TRUE?"true":"false" );
337 msg_Dbg( p_demux, "loop: %s (unused by VLC)", ppsz_loop[loop] );
338 msg_Dbg( p_demux, "movieid: %d (unused by VLC)", i_movieid );
339 msg_Dbg( p_demux, "moviename: %s", psz_moviename );
340 msg_Dbg( p_demux, "playeverframe: %s (unused by VLC)",
341 b_playeveryframe==VLC_TRUE?"true":"false" );
342 msg_Dbg( p_demux, "qtnext: %s", psz_qtnext );
343 msg_Dbg( p_demux, "quitwhendone: %s (unused by VLC)",
344 b_quitwhendone==VLC_TRUE?"true":"false" );
345 msg_Dbg( p_demux, "src: %s", psz_src );
346 msg_Dbg( p_demux, "mimetype: %s", psz_mimetype );
347 msg_Dbg( p_demux, "volume: %d (unused by VLC)", i_volume );
352 msg_Err( p_demux, "Mandatory attribute 'src' not found" );
356 p_input = input_ItemNewExt( p_sys->p_playlist,
357 psz_src, psz_moviename, 0, NULL, -1 );
358 #define SADD_INFO( type, field ) if( field ) { input_ItemAddInfo( \
359 p_input, "QuickTime Media Link", _(type), "%s", field ) ; }
360 SADD_INFO( "href", psz_href );
361 SADD_INFO( "mime type", psz_mimetype );
362 playlist_BothAddInput( p_sys->p_playlist, p_input,
363 p_sys->p_item_in_category,
364 PLAYLIST_APPEND | PLAYLIST_SPREPARSE,
365 PLAYLIST_END, NULL, NULL, VLC_FALSE );
368 p_input = input_ItemNewExt( p_sys->p_playlist,
369 psz_qtnext, NULL, 0, NULL, -1 );
370 playlist_BothAddInput( p_sys->p_playlist, p_input,
371 p_sys->p_item_in_category,
372 PLAYLIST_APPEND | PLAYLIST_SPREPARSE,
373 PLAYLIST_END, NULL, NULL, VLC_FALSE );
377 HANDLE_PLAY_AND_RELEASE;
379 p_sys->p_playlist = NULL;
382 FREE( psz_moviename );
385 FREE( psz_mimetype );
387 return -1; /* Needed for correct operation of go back */
390 static int Control( demux_t *p_demux, int i_query, va_list args )