expatprs.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *  
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of RealNetworks Community Source License 
  8.  * Version 1.0 (the "License"). You may not use this file except in 
  9.  * compliance with the License executed by both you and RealNetworks.  You 
  10.  * may obtain a copy of the License at  
  11.  * http://www.helixcommunity.org/content/rcsl.  You may also obtain a 
  12.  * copy of the License by contacting RealNetworks directly.  Please see the 
  13.  * License for the rights, obligations and limitations governing use of the 
  14.  * contents of the file. 
  15.  *  
  16.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  17.  * developer of the Original Code and owns the copyrights in the portions 
  18.  * it created. 
  19.  *  
  20.  * This file, and the files included with this file, is distributed and made 
  21.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  22.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  23.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  24.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.  
  25.  * 
  26.  * Technology Compatibility Kit Test Suite(s) Location: 
  27.  *    http://www.helixcommunity.org/content/tck 
  28.  * 
  29.  * Contributor(s): 
  30.  *  
  31.  * ***** END LICENSE BLOCK ***** */ 
  32. #ifndef _HXXMLPRS_H_
  33. #define _HXXMLPRS_H_
  34. /* forward declarations */
  35. struct IHXXMLParserResponse;
  36. struct IHXBuffer;
  37. struct IHXValues;
  38. struct IHXPlugin;
  39. #include "baseobj.h"
  40. class HXExpatXMLParser: public CHXBaseCountingObject,
  41.                         public IHXXMLParser,
  42. public IHXXMLNamespaceParser
  43. {
  44. private:
  45.     LONG32     m_lRefCount;
  46.     IHXXMLParserResponse*     m_pResponse;
  47.     IUnknown*     m_pContext;
  48.     IHXCommonClassFactory*     m_pClassFactory;
  49.     XML_Parser     m_pParser;
  50.     IHXBuffer*     m_pCurrentBuffer;
  51.     UINT32     m_ulCurrentOffset;
  52.     IHXXMLNamespaceResponse*     m_pNSResp;
  53.     BOOL     m_bInited;
  54.     char     m_cSepChar;
  55.     void SetAttBuffer(IHXBuffer* pBuf, const char* p);
  56.     virtual ~HXExpatXMLParser     ();
  57.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  58. public:
  59.     HXExpatXMLParser(IUnknown* pContext);
  60.     /* IUnknown methods */
  61.     STDMETHOD(QueryInterface) (THIS_
  62. REFIID riid,
  63. void** ppvObj);
  64.     STDMETHOD_(ULONG32,AddRef) (THIS);
  65.     STDMETHOD_(ULONG32,Release) (THIS);
  66.     
  67.     /* expat call backs */
  68.     void handleStartElement(const XML_Char *name, const XML_Char **atts);
  69.     void handleEndElement(const XML_Char *name);
  70.     void handleCharacterData(const XML_Char *s, int len);
  71.     void handleProcessingInstruction(const XML_Char *target,
  72.      const XML_Char *data);
  73.     void handleComment(const XML_Char *data);
  74.     void handleStartCDataSection();
  75.     void handleEndCDataSection();
  76.     void handleDefault(const XML_Char *s, int len);
  77.     void handleUnparsedEntityDecl(
  78.     const XML_Char *entityName,
  79.     const XML_Char *base,
  80.     const XML_Char *systemId,
  81.     const XML_Char *publicId,
  82.     const XML_Char *notationName);
  83.     void handleNotationDecl(
  84.       const XML_Char *notationName,
  85.       const XML_Char *base,
  86.       const XML_Char *systemId,
  87.       const XML_Char *publicId);
  88.     void handleStartNamespaceDecl(
  89.       const XML_Char *prefix,
  90.       const XML_Char *uri);
  91.     void handleEndNamespaceDecl(const XML_Char *prefix);
  92.     int handleNotStandalone();
  93.     void handleStartDoctypeDecl(const XML_Char *doctypeName);
  94.     void handleEndDoctypeDecl();
  95.     /* IHXXMLParser methods */
  96.     STDMETHOD(Init) (THIS_
  97. IHXXMLParserResponse* /*IN*/  pResponse,
  98. const char*     /*IN*/ pEncoding,
  99. BOOL     /*IN*/ bStrict);
  100.     STDMETHOD(Close) (THIS);
  101.     STDMETHOD(Parse) (THIS_
  102. IHXBuffer* /*IN*/     pBuffer,
  103. BOOL /*IN*/     bIsFinal);
  104.     STDMETHOD(GetCurrentLineNumber) (THIS_
  105. REF(ULONG32) /*OUT*/ ulLineNumber);
  106.     STDMETHOD(GetCurrentColumnNumber) (THIS_
  107. REF(ULONG32) /*OUT*/ ulColumnNumber);
  108.     STDMETHOD(GetCurrentByteIndex) (THIS_
  109. REF(ULONG32) /*OUT*/ ulByteIndex);
  110.     STDMETHOD(GetCurrentErrorText) (THIS_
  111. REF(IHXBuffer*) /*OUT*/ pBuffer);
  112.     /* IHXXMLNamespaceParser methods */
  113.     STDMETHOD(InitNamespaceParser) (THIS_
  114. IHXXMLParserResponse* /*IN*/  pResponse,
  115. IHXXMLNamespaceResponse* /*IN*/pNSResp,
  116. const char*     /*IN*/ pEncoding,
  117. const char     /*IN*/ cSepChar);
  118.     STDMETHOD_(char, GetSepChar) (THIS);
  119. };
  120. #endif /* _HXXMLPRS_H_ */