]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/xmlparser.hpp
skins2: kill many compil warnings
[vlc] / modules / gui / skins2 / parser / xmlparser.hpp
1 /*****************************************************************************
2  * xmlparser.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
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 along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef XMLPARSER_HPP
25 #define XMLPARSER_HPP
26
27 #include "../src/skin_common.hpp"
28 #include <vlc_block.h>
29 #include <vlc_stream.h>
30 #include <vlc_xml.h>
31 #include <map>
32
33 // Current DTD version
34 #define SKINS_DTD_VERSION "2.0"
35
36 /// XML parser using libxml2 text reader API
37 class XMLParser: public SkinObject
38 {
39 public:
40     XMLParser( intf_thread_t *pIntf, const string &rFileName );
41     virtual ~XMLParser();
42
43     /// Parse the file. Returns true on success
44     bool parse();
45
46 protected:
47     // Key comparison function for type "const char*"
48     struct ltstr
49     {
50         bool operator()(const char* s1, const char* s2) const
51         {
52             return strcmp(s1, s2) < 0;
53         }
54     };
55     /// Type for attribute lists
56     typedef map<const char*, const char*, ltstr> AttrList_t;
57
58     /// Flag for validation errors
59     bool m_errors;
60
61     /// Callbacks
62     virtual void handleBeginElement( const string &rName, AttrList_t &attr )
63         { (void)rName; (void)attr; }
64     virtual void handleEndElement( const string &rName ) { (void)rName; }
65
66 private:
67     void LoadCatalog();
68
69     /// Reader context
70     xml_t *m_pXML;
71     xml_reader_t *m_pReader;
72     stream_t *m_pStream;
73 };
74
75 #endif