xmlparser.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * xmlparser.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: xmlparser.hpp 6961 2004-03-05 17:34:23Z sam $
  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. #ifndef XMLPARSER_HPP
  24. #define XMLPARSER_HPP
  25. #include "../src/skin_common.hpp"
  26. #include <libxml/xmlreader.h>
  27. #include <map>
  28. /// XML parser using libxml2 text reader API
  29. class XMLParser: public SkinObject
  30. {
  31.     public:
  32.         XMLParser( intf_thread_t *pIntf, const string &rFileName );
  33.         virtual ~XMLParser();
  34.         /// Parse the file. Returns true on success
  35.         bool parse();
  36.     protected:
  37.         // Key comparison function for type "const char*"
  38.         struct ltstr
  39.         {
  40.             bool operator()(const char* s1, const char* s2) const
  41.             {
  42.                 return strcmp(s1, s2) < 0;
  43.             }
  44.         };
  45.         /// Type for attribute lists
  46.         typedef map<const char*, const char*, ltstr> AttrList_t;
  47.         /// Flag for validation errors
  48.         bool m_errors;
  49.         /// Callbacks
  50.         virtual void handleBeginElement( const string &rName, AttrList_t &attr ) {}
  51.         virtual void handleEndElement( const string &rName ) {}
  52.     private:
  53.         /// Reader context
  54.         xmlTextReaderPtr m_pReader;
  55.         /// Callback for validation errors
  56.         static void handleError( void *pArg,  const char *pMsg,
  57.                                  xmlParserSeverities severity,
  58.                                  xmlTextReaderLocatorPtr locator);
  59. };
  60. #endif