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

词法分析

开发平台:

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: IXMLDOMNodeImpl.h,v $
  58.  * Revision 1.2  2003/03/14 12:44:49  tng
  59.  * [Bug 17147] C++ namespace breaks build of XercesCOM DLL
  60.  *
  61.  * Revision 1.1.1.1  2002/02/01 22:21:39  peiyongz
  62.  * sane_include
  63.  *
  64.  * Revision 1.6  2001/05/11 13:25:00  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.5  2001/01/19 15:17:54  tng
  68.  * COM Updates by Curt Arnold: changed 1.3 to 1.4, updated the GUID's so
  69.  * both can coexist and fixed a new minor bugs.  Most of the changes involved
  70.  * error reporting, now a DOM defined error will return an HRESULT of
  71.  * 0x80040600 + code and will set an error description to the error name.
  72.  *
  73.  * Revision 1.4  2000/06/19 20:05:56  rahulj
  74.  * Changes for increased conformance and stability. Submitted by
  75.  * Curt.Arnold@hyprotech.com. Verified by Joe Polastre.
  76.  *
  77.  * Revision 1.3  2000/06/03 00:28:54  andyh
  78.  * COM Wrapper changes from Curt Arnold
  79.  *
  80.  * Revision 1.2  2000/03/30 02:00:12  abagchi
  81.  * Initial checkin of working code with Copyright Notice
  82.  *
  83.  */
  84. #ifndef ___ixmldomnodeimpl_h___
  85. #define ___ixmldomnodeimpl_h___
  86. #include <xercesc/util/XercesDefs.hpp>
  87. #include <xercesc/dom/deprecated/DOM_DOMException.hpp>
  88. XERCES_CPP_NAMESPACE_USE
  89. //
  90. //   This macro is defined in MSXML.H's compatible with IE5
  91. //      and not defined in those from IE4.
  92. //
  93. //   To correct, install a IE5 or later version of the Microsoft Platform SDK
  94. //      and add Program FilesMicrosoft Platform SDKInclude as the first entry
  95. //      on the Directories tab on the dialog displayed after selecting Tools Options
  96. //      from the Visual Studio IDE.
  97. //
  98. //   See http://xml.apache.org/xerces-c/build.html#BuildCOM
  99. #ifndef __IXMLDOMNode_INTERFACE_DEFINED__
  100. #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."
  101. #endif
  102. template <class T, const IID* piid, const GUID* plibid = &CComModule::m_libid, WORD wMajor = 1,
  103. WORD wMinor = 0, class tihclass = CComTypeInfoHolder>
  104. class ATL_NO_VTABLE IXMLDOMNodeImpl:
  105. public IDispatchImpl<T,piid,plibid,wMajor,wMinor,tihclass>,
  106. public IIBMXMLDOMNodeIdentity,
  107. public ISupportErrorInfo
  108. {
  109. public:
  110. IXMLDOMNodeImpl()
  111. :m_pIXMLDOMDocument(NULL)
  112. {}
  113. virtual DOM_Node& get_DOM_Node()     = 0;
  114. virtual DOMNodeType get_DOMNodeType() const = 0;
  115. void SetOwnerDoc(IXMLDOMDocument *p)
  116. {
  117. m_pIXMLDOMDocument = p;
  118. if (m_pIXMLDOMDocument != NULL)
  119. m_pIXMLDOMDocument->AddRef();
  120. }
  121. // IIBMXMLDOMNodeIdentity
  122. STDMETHOD(get_NodeId)(long *pVal)
  123. {
  124. ATLTRACE(_T("IXMLDOMNodeImpl::get_NodeIdn"));
  125. if (NULL == pVal)
  126. return E_POINTER;
  127. *pVal = reinterpret_cast<long> (&get_DOM_Node());
  128. return S_OK;
  129. }
  130. //   ISupportErrorInfo
  131. HRESULT STDMETHODCALLTYPE InterfaceSupportsErrorInfo(REFIID iid);
  132. // IXMLDOMNode
  133.     STDMETHOD(get_nodeName)(BSTR  *pVal);
  134. STDMETHOD(get_nodeValue)(VARIANT  *pVal);
  135. STDMETHOD(put_nodeValue)(VARIANT newVal);
  136. STDMETHOD(get_nodeType)(DOMNodeType  *pVal);
  137. STDMETHOD(get_parentNode)(IXMLDOMNode  * *pVal);
  138. STDMETHOD(get_childNodes)(IXMLDOMNodeList  * *pVal);
  139. STDMETHOD(get_firstChild)(IXMLDOMNode  * *pVal);
  140. STDMETHOD(get_lastChild)(IXMLDOMNode  * *pVal);
  141. STDMETHOD(get_previousSibling)(IXMLDOMNode  * *pVal);
  142. STDMETHOD(get_nextSibling)(IXMLDOMNode  * *pVal);
  143. STDMETHOD(get_attributes)(IXMLDOMNamedNodeMap  * *pVal);
  144. STDMETHOD(insertBefore)(IXMLDOMNode  *newChild, VARIANT refChild, IXMLDOMNode  * *outNewChild);
  145. STDMETHOD(replaceChild)(IXMLDOMNode  *newChild, IXMLDOMNode  *oldChild, IXMLDOMNode  * *outNewChild);
  146. STDMETHOD(removeChild)(IXMLDOMNode  *childNode, IXMLDOMNode  * *oldChild);
  147. STDMETHOD(appendChild)(IXMLDOMNode  *newChild, IXMLDOMNode  * *outNewChild);
  148. STDMETHOD(hasChildNodes)(VARIANT_BOOL  *hasChild);
  149. STDMETHOD(get_ownerDocument)(IXMLDOMDocument  * *pVal);
  150. STDMETHOD(cloneNode)(VARIANT_BOOL deep, IXMLDOMNode  * *cloneRoot);
  151. STDMETHOD(get_nodeTypeString)(BSTR  *pVal);
  152. STDMETHOD(get_text)(BSTR  *pVal);
  153. STDMETHOD(put_text)(BSTR newVal);
  154. STDMETHOD(get_specified)(VARIANT_BOOL  *pVal);
  155. STDMETHOD(get_definition)(IXMLDOMNode  * *pVal);
  156. STDMETHOD(get_nodeTypedValue)(VARIANT  *pVal);
  157. STDMETHOD(put_nodeTypedValue)(VARIANT newVal);
  158. STDMETHOD(get_dataType)(VARIANT  *pVal);
  159. STDMETHOD(put_dataType)(BSTR dataTypeName);
  160. STDMETHOD(get_xml)(BSTR  *pVal);
  161. STDMETHOD(transformNode)(IXMLDOMNode  *stylesheet, BSTR  *xmlString);
  162. STDMETHOD(selectNodes)(BSTR queryString, IXMLDOMNodeList  * *resultList);
  163. STDMETHOD(selectSingleNode)(BSTR queryString, IXMLDOMNode  * *resultNode);
  164. STDMETHOD(get_parsed)(VARIANT_BOOL  *pVal);
  165. STDMETHOD(get_namespaceURI)(BSTR  *pVal);
  166. STDMETHOD(get_prefix)(BSTR  *pVal);
  167. STDMETHOD(get_baseName)(BSTR  *pVal);
  168. STDMETHOD(transformNodeToObject)(IXMLDOMNode  *stylesheet, VARIANT outputObject);
  169. protected:
  170. IXMLDOMDocument *m_pIXMLDOMDocument;
  171. void ReleaseOwnerDoc()
  172. {
  173. if (m_pIXMLDOMDocument != NULL) {
  174. m_pIXMLDOMDocument->Release();
  175. m_pIXMLDOMDocument = NULL;
  176. }
  177. }
  178. };
  179. class XERCES_CPP_NAMESPACE_QUALIFIER DOM_DOMException;
  180. HRESULT MakeHRESULT(DOM_DOMException& ex);
  181. #include "IXMLDOMNodeImpl.inl"
  182. #endif // ___ixmldomnodeimpl_h___