]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/xmlparser.hpp
* parser/xmlparser.cpp: added DTD validation
[vlc] / modules / gui / skins2 / parser / xmlparser.hpp
1 /*****************************************************************************
2  * xmlparser.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: xmlparser.hpp,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 #ifndef XMLPARSER_HPP
26 #define XMLPARSER_HPP
27
28 #include "../src/skin_common.hpp"
29 #include <libxml/xmlreader.h>
30 #include <map>
31 #include <string>
32
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         int parse();
42
43     private:
44         // Key comparison function for type "const char*"
45         struct ltstr
46         {
47             bool operator()(const char* s1, const char* s2) const
48             {
49                 return strcmp(s1, s2) < 0;
50             }
51         };
52         /// Type for attribute lists
53         typedef map<const char*, const char*, ltstr> AttrList_t;
54
55         /// Reader context
56         xmlTextReaderPtr m_pReader;
57
58         void handleBeginElement( const string &rName, AttrList_t &attributes );
59         void handleEndElement( const string &rName );
60 };
61
62 #endif