]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/xmlparser.hpp
xml_ReaderDelete: remove useless parameter
[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                bool useDTD = true );
42     virtual ~XMLParser();
43
44     /// Parse the file. Returns true on success
45     bool parse();
46
47 protected:
48     // Key comparison function for type "const char*"
49     struct ltstr
50     {
51         bool operator()(const char* s1, const char* s2) const
52         {
53             return strcmp(s1, s2) < 0;
54         }
55     };
56     /// Type for attribute lists
57     typedef map<const char*, const char*, ltstr> AttrList_t;
58
59     /// Flag for validation errors
60     bool m_errors;
61
62     /// Callbacks
63     virtual void handleBeginElement( const string &rName,
64                                      AttrList_t &attr ) { }
65     virtual void handleEndElement( const string &rName ) { }
66
67 private:
68     void LoadCatalog();
69
70     /// Reader context
71     xml_t *m_pXML;
72     xml_reader_t *m_pReader;
73     stream_t *m_pStream;
74 };
75
76 #endif