XMLDOMDocument.h
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:

xml/soap/webservice

开发平台:

C/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.6  2001/05/11 13:25:03  tng
  59.  * Copyright update.
  60.  *
  61.  * Revision 1.5  2001/01/19 15:18:10  tng
  62.  * COM Updates by Curt Arnold: changed 1.3 to 1.4, updated the GUID's so
  63.  * both can coexist and fixed a new minor bugs.  Most of the changes involved
  64.  * error reporting, now a DOM defined error will return an HRESULT of
  65.  * 0x80040600 + code and will set an error description to the error name.
  66.  *
  67.  * Revision 1.4  2000/06/19 20:05:58  rahulj
  68.  * Changes for increased conformance and stability. Submitted by
  69.  * Curt.Arnold@hyprotech.com. Verified by Joe Polastre.
  70.  *
  71.  * Revision 1.3  2000/06/03 00:28:57  andyh
  72.  * COM Wrapper changes from Curt Arnold
  73.  *
  74.  * Revision 1.2  2000/03/30 02:00:11  abagchi
  75.  * Initial checkin of working code with Copyright Notice
  76.  *
  77.  */
  78. #ifndef ___xmldomdocument_h___
  79. #define ___xmldomdocument_h___
  80. #include <dom/DOM_Document.hpp>
  81. #include "IXMLDOMNodeImpl.h"
  82. #include "resource.h"       // main symbols
  83. #include "XMLDOMParseError.h"
  84. #include <sax/ErrorHandler.hpp>
  85. #include "xml4comCP.h"
  86. class SAXParseException;
  87. class ATL_NO_VTABLE CXMLDOMDocument :
  88. public CComObjectRootEx<CComSingleThreadModel>,
  89. public CComCoClass<CXMLDOMDocument, &CLSID_DOMDocument>,
  90. public IObjectSafetyImpl<CXMLDOMDocument, INTERFACESAFE_FOR_UNTRUSTED_CALLER>,
  91. public IXMLDOMNodeImpl<IXMLDOMDocument, &IID_IXMLDOMDocument, &LIBID_Xerces>,
  92. public IObjectWithSiteImpl<CXMLDOMDocument>,
  93. public CProxyXMLDOMDocumentEvents< CXMLDOMDocument >,
  94. public IConnectionPointContainerImpl<CXMLDOMDocument>,
  95. public IProvideClassInfo2Impl<&CLSID_DOMDocument, &DIID_XMLDOMDocumentEvents, &LIBID_Xerces>,
  96. public CWindowImpl<CXMLDOMDocument, CWindow, CWinTraits<0,0> >,
  97. ErrorHandler
  98. {
  99. public:
  100. CXMLDOMDocument();
  101. HRESULT FinalConstruct();
  102. void FinalRelease();
  103. virtual DOM_Node&   get_DOM_Node()  { return m_Document;}
  104. virtual DOMNodeType get_DOMNodeType() const  { return NODE_DOCUMENT; }
  105. virtual void resetErrors() {};
  106. //DECLARE_REGISTRY_RESOURCEID(IDR_XMLDOCUMENT)
  107. static HRESULT WINAPI UpdateRegistry(BOOL bRegister);
  108. DECLARE_NOT_AGGREGATABLE(CXMLDOMDocument)
  109. DECLARE_PROTECT_FINAL_CONSTRUCT()
  110. BEGIN_COM_MAP(CXMLDOMDocument)
  111. COM_INTERFACE_ENTRY(IXMLDOMDocument)
  112. COM_INTERFACE_ENTRY(IXMLDOMNode)
  113. COM_INTERFACE_ENTRY(IDispatch)
  114. COM_INTERFACE_ENTRY(IIBMXMLDOMNodeIdentity)
  115. COM_INTERFACE_ENTRY(IObjectSafety)
  116. COM_INTERFACE_ENTRY(IObjectWithSite)
  117. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  118. COM_INTERFACE_ENTRY_IMPL(IConnectionPointContainer)
  119. COM_INTERFACE_ENTRY(IProvideClassInfo)
  120. COM_INTERFACE_ENTRY(IProvideClassInfo2)
  121. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  122. END_COM_MAP()
  123. BEGIN_CONNECTION_POINT_MAP(CXMLDOMDocument)
  124. CONNECTION_POINT_ENTRY(DIID_XMLDOMDocumentEvents)
  125. END_CONNECTION_POINT_MAP()
  126. DECLARE_WND_CLASS(_T("XMLParseMonitor"))
  127. BEGIN_MSG_MAP(CMonitorWnd)
  128. MESSAGE_HANDLER(MSG_READY_STATE_CHANGE, OnReadyStateChange)
  129. END_MSG_MAP()
  130. LRESULT OnReadyStateChange(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
  131. // ISupportsErrorInfo
  132. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  133. // IXMLDOMDocument methods
  134. STDMETHOD(get_doctype)(IXMLDOMDocumentType  * *pVal);
  135. STDMETHOD(get_implementation)(IXMLDOMImplementation  * *pVal);
  136. STDMETHOD(get_documentElement)(IXMLDOMElement  * *pVal);
  137. STDMETHOD(putref_documentElement)(IXMLDOMElement  *newVal);
  138. STDMETHOD(createElement)(BSTR tagName, IXMLDOMElement  * *element);
  139. STDMETHOD(createDocumentFragment)(IXMLDOMDocumentFragment  * *docFrag);
  140. STDMETHOD(createTextNode)(BSTR data, IXMLDOMText  * *text);
  141. STDMETHOD(createComment)(BSTR data, IXMLDOMComment  * *comment);
  142. STDMETHOD(createCDATASection)(BSTR data, IXMLDOMCDATASection  * *cdata);
  143. STDMETHOD(createProcessingInstruction)(BSTR target, BSTR data, IXMLDOMProcessingInstruction  * *pVal);
  144. STDMETHOD(createAttribute)(BSTR name, IXMLDOMAttribute  * *attr);
  145. STDMETHOD(createEntityReference)(BSTR name, IXMLDOMEntityReference  * *entityRef);
  146. STDMETHOD(getElementsByTagName)(BSTR tagName, IXMLDOMNodeList  * *resultList);
  147. STDMETHOD(createNode)(VARIANT type, BSTR name, BSTR namespaceURI, IXMLDOMNode  * *node);
  148. STDMETHOD(nodeFromID)(BSTR idString, IXMLDOMNode  * *node);
  149. STDMETHOD(load)(VARIANT xmlSource, VARIANT_BOOL  *isSuccessful);
  150. STDMETHOD(get_readyState)(long  *pVal);
  151. STDMETHOD(get_parseError)(IXMLDOMParseError  * *pVal);
  152. STDMETHOD(get_url)(BSTR  *pVal);
  153. STDMETHOD(get_async)(VARIANT_BOOL  *pVal);
  154. STDMETHOD(put_async)(VARIANT_BOOL newVal);
  155. STDMETHOD(abort)(void);
  156. STDMETHOD(loadXML)(BSTR bstrXML, VARIANT_BOOL  *success);
  157. STDMETHOD(save)(VARIANT location);
  158. STDMETHOD(get_validateOnParse)(VARIANT_BOOL  *pVal);
  159. STDMETHOD(put_validateOnParse)(VARIANT_BOOL newVal);
  160. STDMETHOD(get_resolveExternals)(VARIANT_BOOL  *pVal);
  161. STDMETHOD(put_resolveExternals)(VARIANT_BOOL newVal);
  162. STDMETHOD(get_preserveWhiteSpace)(VARIANT_BOOL  *pVal);
  163. STDMETHOD(put_preserveWhiteSpace)(VARIANT_BOOL newVal);
  164. STDMETHOD(put_onreadystatechange)(VARIANT newVal);
  165. STDMETHOD(put_ondataavailable)(VARIANT newVal);
  166. STDMETHOD(put_ontransformnode)(VARIANT newVal);
  167. // Error handling
  168. virtual void warning(const SAXParseException& exception);
  169. virtual void error(const SAXParseException& exception);
  170.     virtual void fatalError(const SAXParseException& exception);
  171. bool IsAbort() const { return m_bAbort; }
  172. DOM_Document   m_Document;
  173. private:
  174. bool   m_bValidate;
  175. long   m_lReadyState;
  176. _bstr_t       m_url;
  177. CXMLDOMParseErrorObj *m_pParseError;
  178. bool       m_bAsync;
  179. bool   m_bAbort;
  180. HANDLE   m_hParseThread;
  181. LPDISPATCH   m_pOnReadyStateChange;
  182. LPDISPATCH   m_pOnDataAvailable;
  183. LPDISPATCH   m_pOnTransformNode;
  184. // thread data
  185. _bstr_t   m_FileName;
  186. _bstr_t   m_xml;
  187. DOM_Document   m_TmpDocument;
  188. bool       m_bParseError;
  189. bool   m_bThreadValidate;
  190. bool                  m_bPreserveWhiteSpace;
  191. HRESULT GetBaseURL(_bstr_t &baseURL);
  192. static UINT APIENTRY ParseThread(void *pParm);
  193. };
  194. typedef CComObject<CXMLDOMDocument> CXMLDOMDocumentObj;
  195. #endif // ___xmldomdocument_h___