XMLDOMDocument.h
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:9k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: XMLDOMDocument.h,v $
  58.  * Revision 1.3  2003/03/14 12:44:49  tng
  59.  * [Bug 17147] C++ namespace breaks build of XercesCOM DLL
  60.  *
  61.  * Revision 1.2  2002/05/21 19:53:53  tng
  62.  * DOM Reorganization: update include path for the old DOM interface in COM files
  63.  *
  64.  * Revision 1.1.1.1  2002/02/01 22:21:40  peiyongz
  65.  * sane_include
  66.  *
  67.  * Revision 1.6  2001/05/11 13:25:03  tng
  68.  * Copyright update.
  69.  *
  70.  * Revision 1.5  2001/01/19 15:18:10  tng
  71.  * COM Updates by Curt Arnold: changed 1.3 to 1.4, updated the GUID's so
  72.  * both can coexist and fixed a new minor bugs.  Most of the changes involved
  73.  * error reporting, now a DOM defined error will return an HRESULT of
  74.  * 0x80040600 + code and will set an error description to the error name.
  75.  *
  76.  * Revision 1.4  2000/06/19 20:05:58  rahulj
  77.  * Changes for increased conformance and stability. Submitted by
  78.  * Curt.Arnold@hyprotech.com. Verified by Joe Polastre.
  79.  *
  80.  * Revision 1.3  2000/06/03 00:28:57  andyh
  81.  * COM Wrapper changes from Curt Arnold
  82.  *
  83.  * Revision 1.2  2000/03/30 02:00:11  abagchi
  84.  * Initial checkin of working code with Copyright Notice
  85.  *
  86.  */
  87. #ifndef ___xmldomdocument_h___
  88. #define ___xmldomdocument_h___
  89. #include <xercesc/dom/deprecated/DOM_Document.hpp>
  90. #include "IXMLDOMNodeImpl.h"
  91. #include "resource.h"       // main symbols
  92. #include "XMLDOMParseError.h"
  93. #include <xercesc/sax/ErrorHandler.hpp>
  94. #include "xml4comCP.h"
  95. XERCES_CPP_NAMESPACE_USE
  96. class XERCES_CPP_NAMESPACE_QUALIFIER SAXParseException;
  97. class ATL_NO_VTABLE CXMLDOMDocument :
  98. public CComObjectRootEx<CComSingleThreadModel>,
  99. public CComCoClass<CXMLDOMDocument, &CLSID_DOMDocument>,
  100. public IObjectSafetyImpl<CXMLDOMDocument, INTERFACESAFE_FOR_UNTRUSTED_CALLER>,
  101. public IXMLDOMNodeImpl<IXMLDOMDocument, &IID_IXMLDOMDocument, &LIBID_Xerces>,
  102. public IObjectWithSiteImpl<CXMLDOMDocument>,
  103. public CProxyXMLDOMDocumentEvents< CXMLDOMDocument >,
  104. public IConnectionPointContainerImpl<CXMLDOMDocument>,
  105. public IProvideClassInfo2Impl<&CLSID_DOMDocument, &DIID_XMLDOMDocumentEvents, &LIBID_Xerces>,
  106. public CWindowImpl<CXMLDOMDocument, CWindow, CWinTraits<0,0> >,
  107. ErrorHandler
  108. {
  109. public:
  110. CXMLDOMDocument();
  111. HRESULT FinalConstruct();
  112. void FinalRelease();
  113. virtual DOM_Node&   get_DOM_Node()  { return m_Document;}
  114. virtual DOMNodeType get_DOMNodeType() const  { return NODE_DOCUMENT; }
  115. virtual void resetErrors() {};
  116. //DECLARE_REGISTRY_RESOURCEID(IDR_XMLDOCUMENT)
  117. static HRESULT WINAPI UpdateRegistry(BOOL bRegister);
  118. DECLARE_NOT_AGGREGATABLE(CXMLDOMDocument)
  119. DECLARE_PROTECT_FINAL_CONSTRUCT()
  120. BEGIN_COM_MAP(CXMLDOMDocument)
  121. COM_INTERFACE_ENTRY(IXMLDOMDocument)
  122. COM_INTERFACE_ENTRY(IXMLDOMNode)
  123. COM_INTERFACE_ENTRY(IDispatch)
  124. COM_INTERFACE_ENTRY(IIBMXMLDOMNodeIdentity)
  125. COM_INTERFACE_ENTRY(IObjectSafety)
  126. COM_INTERFACE_ENTRY(IObjectWithSite)
  127. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  128. COM_INTERFACE_ENTRY_IMPL(IConnectionPointContainer)
  129. COM_INTERFACE_ENTRY(IProvideClassInfo)
  130. COM_INTERFACE_ENTRY(IProvideClassInfo2)
  131. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  132. END_COM_MAP()
  133. BEGIN_CONNECTION_POINT_MAP(CXMLDOMDocument)
  134. CONNECTION_POINT_ENTRY(DIID_XMLDOMDocumentEvents)
  135. END_CONNECTION_POINT_MAP()
  136. DECLARE_WND_CLASS(_T("XMLParseMonitor"))
  137. BEGIN_MSG_MAP(CMonitorWnd)
  138. MESSAGE_HANDLER(MSG_READY_STATE_CHANGE, OnReadyStateChange)
  139. END_MSG_MAP()
  140. LRESULT OnReadyStateChange(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
  141. // ISupportsErrorInfo
  142. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  143. // IXMLDOMDocument methods
  144. STDMETHOD(get_doctype)(IXMLDOMDocumentType  * *pVal);
  145. STDMETHOD(get_implementation)(IXMLDOMImplementation  * *pVal);
  146. STDMETHOD(get_documentElement)(IXMLDOMElement  * *pVal);
  147. STDMETHOD(putref_documentElement)(IXMLDOMElement  *newVal);
  148. STDMETHOD(createElement)(BSTR tagName, IXMLDOMElement  * *element);
  149. STDMETHOD(createDocumentFragment)(IXMLDOMDocumentFragment  * *docFrag);
  150. STDMETHOD(createTextNode)(BSTR data, IXMLDOMText  * *text);
  151. STDMETHOD(createComment)(BSTR data, IXMLDOMComment  * *comment);
  152. STDMETHOD(createCDATASection)(BSTR data, IXMLDOMCDATASection  * *cdata);
  153. STDMETHOD(createProcessingInstruction)(BSTR target, BSTR data, IXMLDOMProcessingInstruction  * *pVal);
  154. STDMETHOD(createAttribute)(BSTR name, IXMLDOMAttribute  * *attr);
  155. STDMETHOD(createEntityReference)(BSTR name, IXMLDOMEntityReference  * *entityRef);
  156. STDMETHOD(getElementsByTagName)(BSTR tagName, IXMLDOMNodeList  * *resultList);
  157. STDMETHOD(createNode)(VARIANT type, BSTR name, BSTR namespaceURI, IXMLDOMNode  * *node);
  158. STDMETHOD(nodeFromID)(BSTR idString, IXMLDOMNode  * *node);
  159. STDMETHOD(load)(VARIANT xmlSource, VARIANT_BOOL  *isSuccessful);
  160. STDMETHOD(get_readyState)(long  *pVal);
  161. STDMETHOD(get_parseError)(IXMLDOMParseError  * *pVal);
  162. STDMETHOD(get_url)(BSTR  *pVal);
  163. STDMETHOD(get_async)(VARIANT_BOOL  *pVal);
  164. STDMETHOD(put_async)(VARIANT_BOOL newVal);
  165. STDMETHOD(abort)(void);
  166. STDMETHOD(loadXML)(BSTR bstrXML, VARIANT_BOOL  *success);
  167. STDMETHOD(save)(VARIANT location);
  168. STDMETHOD(get_validateOnParse)(VARIANT_BOOL  *pVal);
  169. STDMETHOD(put_validateOnParse)(VARIANT_BOOL newVal);
  170. STDMETHOD(get_resolveExternals)(VARIANT_BOOL  *pVal);
  171. STDMETHOD(put_resolveExternals)(VARIANT_BOOL newVal);
  172. STDMETHOD(get_preserveWhiteSpace)(VARIANT_BOOL  *pVal);
  173. STDMETHOD(put_preserveWhiteSpace)(VARIANT_BOOL newVal);
  174. STDMETHOD(put_onreadystatechange)(VARIANT newVal);
  175. STDMETHOD(put_ondataavailable)(VARIANT newVal);
  176. STDMETHOD(put_ontransformnode)(VARIANT newVal);
  177. // Error handling
  178. virtual void warning(const SAXParseException& exception);
  179. virtual void error(const SAXParseException& exception);
  180.     virtual void fatalError(const SAXParseException& exception);
  181. bool IsAbort() const { return m_bAbort; }
  182. DOM_Document   m_Document;
  183. private:
  184. bool   m_bValidate;
  185. long   m_lReadyState;
  186. _bstr_t       m_url;
  187. CXMLDOMParseErrorObj *m_pParseError;
  188. bool       m_bAsync;
  189. bool   m_bAbort;
  190. HANDLE   m_hParseThread;
  191. LPDISPATCH   m_pOnReadyStateChange;
  192. LPDISPATCH   m_pOnDataAvailable;
  193. LPDISPATCH   m_pOnTransformNode;
  194. // thread data
  195. _bstr_t   m_FileName;
  196. _bstr_t   m_xml;
  197. DOM_Document   m_TmpDocument;
  198. bool       m_bParseError;
  199. bool   m_bThreadValidate;
  200. bool                  m_bPreserveWhiteSpace;
  201. HRESULT GetBaseURL(_bstr_t &baseURL);
  202. static UINT APIENTRY ParseThread(void *pParm);
  203. };
  204. typedef CComObject<CXMLDOMDocument> CXMLDOMDocumentObj;
  205. #endif // ___xmldomdocument_h___