]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/xmlparser.cpp
* parser/xmlparser.cpp: added DTD validation
[vlc] / modules / gui / skins2 / parser / xmlparser.cpp
1 /*****************************************************************************
2  * xmlparser.cpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: xmlparser.cpp,v 1.2 2004/01/24 14:25:16 asmax Exp $
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include "xmlparser.hpp"
26
27 XMLParser::XMLParser( intf_thread_t *pIntf, const string &rFileName ):
28     SkinObject( pIntf )
29 {
30     m_pReader = xmlNewTextReaderFilename( rFileName.c_str() );
31     if( !m_pReader )
32     {
33         msg_Err( getIntf(), "Failed to open %s for parsing",
34                  rFileName.c_str() );
35     }
36
37     xmlTextReaderSetParserProp( m_pReader, XML_PARSER_VALIDATE, 1 );
38 }
39
40
41 XMLParser::~XMLParser()
42 {
43     if( m_pReader )
44     {
45         xmlFreeTextReader( m_pReader );
46     }
47 }
48
49
50 int XMLParser::parse()
51 {
52     if( !m_pReader )
53     {
54         return -1;
55     }
56
57     int ret = xmlTextReaderRead( m_pReader );
58     while (ret == 1)
59     {
60         // Get the node type
61         int type = xmlTextReaderNodeType( m_pReader );
62         switch (type )
63         {
64             // Error
65             case -1:
66                 return -1;
67                 break;
68
69             // Begin element
70             case 1:
71             {
72                 // Read the element name
73                 const xmlChar *eltName = xmlTextReaderConstName( m_pReader );
74                 if( !eltName )
75                 {
76                     return -1;
77                 }
78                 // Read the attributes
79                 AttrList_t attributes;
80                 while( xmlTextReaderMoveToNextAttribute( m_pReader ) == 1 )
81                 {
82                     const xmlChar *name = xmlTextReaderConstName( m_pReader );
83                     const xmlChar *value = xmlTextReaderConstValue( m_pReader );
84                     if( !name || !value )
85                     {
86                         return -1;
87                     }
88                     attributes[(const char*)name] = (const char*)value;
89                 }
90                 handleBeginElement( (const char*)eltName, attributes);
91                 break;
92             }
93
94             // End element
95             case 15:
96                 // Read the element name
97                 const xmlChar *eltName = xmlTextReaderConstName( m_pReader );
98                 if( !eltName )
99                 {
100                     return -1;
101                 }
102                 handleEndElement( (const char*)eltName );
103                 break;
104         }
105         ret = xmlTextReaderRead( m_pReader );
106     }
107     return 0;
108 }
109
110
111 void XMLParser::handleBeginElement( const string &rName,
112                                     AttrList_t &attributes )
113 {
114     fprintf(stderr,"%s\n", rName.c_str());
115     AttrList_t::const_iterator it;
116     for (it = attributes.begin(); it != attributes.end(); it++)
117     {
118         fprintf(stderr,"  %s = %s\n", (*it).first, (*it).second);
119     }
120 }
121
122
123 void XMLParser::handleEndElement( const string &rName )
124 {
125     fprintf(stderr,"--> %s\n", rName.c_str());
126