xmlparser.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * xmlparser.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: caf6d1dc6c562d6d5a68ec881e3bc036da428343 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef XMLPARSER_HPP
  24. #define XMLPARSER_HPP
  25. #include "../src/skin_common.hpp"
  26. #include "vlc_block.h"
  27. #include "vlc_stream.h"
  28. #include "vlc_xml.h"
  29. #include <map>
  30. // Current DTD version
  31. #define SKINS_DTD_VERSION "2.0"
  32. /// XML parser using libxml2 text reader API
  33. class XMLParser: public SkinObject
  34. {
  35.     public:
  36.         XMLParser( intf_thread_t *pIntf, const string &rFileName,
  37.                    bool useDTD = true );
  38.         virtual ~XMLParser();
  39.         /// Parse the file. Returns true on success
  40.         bool parse();
  41.     protected:
  42.         // Key comparison function for type "const char*"
  43.         struct ltstr
  44.         {
  45.             bool operator()(const char* s1, const char* s2) const
  46.             {
  47.                 return strcmp(s1, s2) < 0;
  48.             }
  49.         };
  50.         /// Type for attribute lists
  51.         typedef map<const char*, const char*, ltstr> AttrList_t;
  52.         /// Flag for validation errors
  53.         bool m_errors;
  54.         /// Callbacks
  55.         virtual void handleBeginElement( const string &rName,
  56.                                          AttrList_t &attr ) {}
  57.         virtual void handleEndElement( const string &rName ) {}
  58.     private:
  59.         void LoadCatalog();
  60.         /// Reader context
  61.         xml_t *m_pXML;
  62.         xml_reader_t *m_pReader;
  63.         stream_t *m_pStream;
  64. };
  65. #endif