]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/xmlparser.hpp
a4c3f11de04d9621145948625cf81893518049a1
[vlc] / modules / gui / skins2 / parser / xmlparser.hpp
1 /*****************************************************************************
2  * xmlparser.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef XMLPARSER_HPP
25 #define XMLPARSER_HPP
26
27 #include "../src/skin_common.hpp"
28 #include "vlc_xml.h"
29 #include <map>
30
31 // Current DTD version
32 #define SKINS_DTD_VERSION "2.0"
33
34 /// XML parser using libxml2 text reader API
35 class XMLParser: public SkinObject
36 {
37     public:
38         XMLParser( intf_thread_t *pIntf, const string &rFileName );
39         virtual ~XMLParser();
40
41         /// Parse the file. Returns true on success
42         bool parse();
43
44     protected:
45         // Key comparison function for type "const char*"
46         struct ltstr
47         {
48             bool operator()(const char* s1, const char* s2) const
49             {
50                 return strcmp(s1, s2) < 0;
51             }
52         };
53         /// Type for attribute lists
54         typedef map<const char*, const char*, ltstr> AttrList_t;
55
56         /// Flag for validation errors
57         bool m_errors;
58
59         /// Callbacks
60         virtual void handleBeginElement( const string &rName,
61                                          AttrList_t &attr ) {}
62         virtual void handleEndElement( const string &rName ) {}
63
64     private:
65         void LoadCatalog();
66
67         /// Reader context
68         xml_t *m_pXML;
69         xml_reader_t *m_pReader;
70 };
71
72 #endif