]> git.sesse.net Git - vlc/blob - modules/misc/profile_parser.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / misc / profile_parser.c
1 /*****************************************************************************
2  * profile_parser.c : VLC Streaming Profile parser
3  *****************************************************************************
4  * Copyright (C) 2003-2006 the VideoLAN team
5  * $Id: rtsp.c 16204 2006-08-03 16:58:10Z zorglub $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 #include <vlc/vlc.h>
25 #include <vlc_stream.h>
26 #include <vlc_streaming.h>
27 #include "vlc_xml.h"
28
29 /*****************************************************************************
30  * Module descriptor
31  *****************************************************************************/
32 static int  Open ( vlc_object_t * );
33
34 vlc_module_begin();
35     set_capability( "profile parser", 1 );
36     set_callbacks( Open, NULL );
37 vlc_module_end();
38
39 static int Open( vlc_object_t *p_this )
40 {
41     profile_parser_t *p_parser = (profile_parser_t *)p_this->p_private;
42     stream_t *p_stream = stream_UrlNew( p_this, p_parser->psz_profile );
43     xml_t *p_xml;
44     xml_reader_t *p_reader;
45     int i_ret;
46     char *psz_elname = NULL;
47
48     /* Open the profile and get a XML reader from it */
49     if( !p_stream )
50     {
51         msg_Err( p_this, "failed to parse profile %s", p_parser->psz_profile );
52         return VLC_EGENERIC;
53     }
54     p_xml = xml_Create( p_this );
55     if( !p_xml ) return VLC_EGENERIC;
56     p_reader = xml_ReaderCreate( p_xml, p_stream );
57
58     if( xml_ReaderRead( p_reader ) != 1 ||
59         xml_ReaderNodeType( p_reader ) != XML_READER_STARTELEM )
60     {
61         msg_Err( p_this, "invalid file (invalid root)" );
62         return VLC_EGENERIC;
63     }
64
65     /* Here goes the real parsing */
66
67     while( (i_ret = xml_ReaderRead( p_reader ) ) == 1 )
68     {
69         int i_type = xml_ReaderNodeType( p_reader );
70         switch( i_type )
71         {
72         case -1:
73             /* ERROR : Bail out */
74             return -1;
75
76         case XML_READER_STARTELEM:
77             FREE( psz_elname );
78             psz_elname = xml_ReaderName( p_reader );
79             if( !psz_elname ) return VLC_EGENERIC;
80             printf( "<%s", psz_elname );
81             break;
82
83         case XML_READER_TEXT:
84             break;
85         case XML_READER_ENDELEM:
86             FREE( psz_elname );
87             psz_elname = xml_ReaderName( p_reader );
88             if( !psz_elname ) return VLC_EGENERIC;
89             printf( ">" );
90             break;
91         }
92     }
93
94     if( i_ret != 0 )
95     {
96         msg_Err( p_this, "parse error" );
97         return VLC_EGENERIC;
98     }
99
100     if( p_reader ) xml_ReaderDelete( p_xml, p_reader );
101     if( p_xml ) xml_Delete( p_xml );
102
103     return VLC_SUCCESS;
104 }