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

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: IXMLDOMNodeImpl.h,v $
  58.  * Revision 1.6  2001/05/11 13:25:00  tng
  59.  * Copyright update.
  60.  *
  61.  * Revision 1.5  2001/01/19 15:17:54  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:56  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:54  andyh
  72.  * COM Wrapper changes from Curt Arnold
  73.  *
  74.  * Revision 1.2  2000/03/30 02:00:12  abagchi
  75.  * Initial checkin of working code with Copyright Notice
  76.  *
  77.  */
  78. #ifndef ___ixmldomnodeimpl_h___
  79. #define ___ixmldomnodeimpl_h___
  80. //
  81. //   This macro is defined in MSXML.H's compatible with IE5
  82. //      and not defined in those from IE4.
  83. //
  84. //   To correct, install a IE5 or later version of the Microsoft Platform SDK
  85. //      and add Program FilesMicrosoft Platform SDKInclude as the first entry
  86. //      on the Directories tab on the dialog displayed after selecting Tools Options
  87. //      from the Visual Studio IDE.
  88. //
  89. //   See http://xml.apache.org/xerces-c/build.html#BuildCOM
  90. #ifndef __IXMLDOMNode_INTERFACE_DEFINED__
  91. #error "xerces-dom requires an MSXML.H compatible with IE5 or later.  See http://xml.apache.org/xerces-c/build.html#BuildCOM for directions to correct this problem."
  92. #endif
  93. template <class T, const IID* piid, const GUID* plibid = &CComModule::m_libid, WORD wMajor = 1,
  94. WORD wMinor = 0, class tihclass = CComTypeInfoHolder>
  95. class ATL_NO_VTABLE IXMLDOMNodeImpl:
  96. public IDispatchImpl<T,piid,plibid,wMajor,wMinor,tihclass>,
  97. public IIBMXMLDOMNodeIdentity,
  98. public ISupportErrorInfo
  99. {
  100. public:
  101. IXMLDOMNodeImpl()
  102. :m_pIXMLDOMDocument(NULL)
  103. {}
  104. virtual DOM_Node& get_DOM_Node()     = 0;
  105. virtual DOMNodeType get_DOMNodeType() const = 0;
  106. void SetOwnerDoc(IXMLDOMDocument *p)
  107. {
  108. m_pIXMLDOMDocument = p;
  109. if (m_pIXMLDOMDocument != NULL)
  110. m_pIXMLDOMDocument->AddRef();
  111. }
  112. // IIBMXMLDOMNodeIdentity
  113. STDMETHOD(get_NodeId)(long *pVal)
  114. {
  115. ATLTRACE(_T("IXMLDOMNodeImpl::get_NodeIdn"));
  116. if (NULL == pVal)
  117. return E_POINTER;
  118. *pVal = reinterpret_cast<long> (&get_DOM_Node());
  119. return S_OK;
  120. }
  121. //   ISupportErrorInfo
  122. HRESULT STDMETHODCALLTYPE InterfaceSupportsErrorInfo(REFIID iid);
  123. // IXMLDOMNode
  124.     STDMETHOD(get_nodeName)(BSTR  *pVal);
  125. STDMETHOD(get_nodeValue)(VARIANT  *pVal);
  126. STDMETHOD(put_nodeValue)(VARIANT newVal);
  127. STDMETHOD(get_nodeType)(DOMNodeType  *pVal);
  128. STDMETHOD(get_parentNode)(IXMLDOMNode  * *pVal);
  129. STDMETHOD(get_childNodes)(IXMLDOMNodeList  * *pVal);
  130. STDMETHOD(get_firstChild)(IXMLDOMNode  * *pVal);
  131. STDMETHOD(get_lastChild)(IXMLDOMNode  * *pVal);
  132. STDMETHOD(get_previousSibling)(IXMLDOMNode  * *pVal);
  133. STDMETHOD(get_nextSibling)(IXMLDOMNode  * *pVal);
  134. STDMETHOD(get_attributes)(IXMLDOMNamedNodeMap  * *pVal);
  135. STDMETHOD(insertBefore)(IXMLDOMNode  *newChild, VARIANT refChild, IXMLDOMNode  * *outNewChild);
  136. STDMETHOD(replaceChild)(IXMLDOMNode  *newChild, IXMLDOMNode  *oldChild, IXMLDOMNode  * *outNewChild);
  137. STDMETHOD(removeChild)(IXMLDOMNode  *childNode, IXMLDOMNode  * *oldChild);
  138. STDMETHOD(appendChild)(IXMLDOMNode  *newChild, IXMLDOMNode  * *outNewChild);
  139. STDMETHOD(hasChildNodes)(VARIANT_BOOL  *hasChild);
  140. STDMETHOD(get_ownerDocument)(IXMLDOMDocument  * *pVal);
  141. STDMETHOD(cloneNode)(VARIANT_BOOL deep, IXMLDOMNode  * *cloneRoot);
  142. STDMETHOD(get_nodeTypeString)(BSTR  *pVal);
  143. STDMETHOD(get_text)(BSTR  *pVal);
  144. STDMETHOD(put_text)(BSTR newVal);
  145. STDMETHOD(get_specified)(VARIANT_BOOL  *pVal);
  146. STDMETHOD(get_definition)(IXMLDOMNode  * *pVal);
  147. STDMETHOD(get_nodeTypedValue)(VARIANT  *pVal);
  148. STDMETHOD(put_nodeTypedValue)(VARIANT newVal);
  149. STDMETHOD(get_dataType)(VARIANT  *pVal);
  150. STDMETHOD(put_dataType)(BSTR dataTypeName);
  151. STDMETHOD(get_xml)(BSTR  *pVal);
  152. STDMETHOD(transformNode)(IXMLDOMNode  *stylesheet, BSTR  *xmlString);
  153. STDMETHOD(selectNodes)(BSTR queryString, IXMLDOMNodeList  * *resultList);
  154. STDMETHOD(selectSingleNode)(BSTR queryString, IXMLDOMNode  * *resultNode);
  155. STDMETHOD(get_parsed)(VARIANT_BOOL  *pVal);
  156. STDMETHOD(get_namespaceURI)(BSTR  *pVal);
  157. STDMETHOD(get_prefix)(BSTR  *pVal);
  158. STDMETHOD(get_baseName)(BSTR  *pVal);
  159. STDMETHOD(transformNodeToObject)(IXMLDOMNode  *stylesheet, VARIANT outputObject);
  160. protected:
  161. IXMLDOMDocument *m_pIXMLDOMDocument;
  162. void ReleaseOwnerDoc()
  163. {
  164. if (m_pIXMLDOMDocument != NULL) {
  165. m_pIXMLDOMDocument->Release();
  166. m_pIXMLDOMDocument = NULL;
  167. }
  168. }
  169. };
  170. class DOM_DOMException;
  171. HRESULT MakeHRESULT(DOM_DOMException& ex);
  172. #include "IXMLDOMNodeImpl.inl"
  173. #endif // ___ixmldomnodeimpl_h___