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

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.  * $Id: XMLDOMNodeList.cpp,v 1.6 2001/05/11 13:25:06 tng Exp $
  58.  */
  59. #include "stdafx.h"
  60. #include "xml4com.h"
  61. #include "XMLDOMNodeList.h"
  62. #include "XMLDOMUtil.h"
  63. #include "IXMLDOMNodeImpl.h"
  64. typedef CComEnumOnSTL<IEnumVARIANT, &IID_IEnumVARIANT, VARIANT, _Copy<VARIANT>,NodeContainerImpl<DOM_NodeList> >
  65. CComEnumUnknownOnNodeContainer;
  66. STDMETHODIMP CXMLDOMNodeList::get_item(long index, IXMLDOMNode  **pVal)
  67. {
  68. ATLTRACE(_T("CXMLDOMNodeList::get_itemn"));
  69. if (NULL == pVal)
  70. return E_POINTER;
  71. *pVal = NULL;
  72. HRESULT hr = S_OK;
  73. try
  74. {
  75. if (m_container == 0 || index < 0)
  76. return E_INVALIDARG;
  77. long length = m_container.getLength();
  78. //
  79. //    if index is beyond end
  80. //       return a null object not an exception
  81. //
  82. if (index < length)
  83. hr = wrapNode(m_pIXMLDOMDocument,m_container.item(index),IID_IXMLDOMNode, reinterpret_cast<LPVOID *> (pVal));
  84. }
  85. catch(DOM_DOMException& ex)
  86. {
  87. return MakeHRESULT(ex);
  88. }
  89. catch(...)
  90. {
  91. return E_FAIL;
  92. }
  93. return hr;
  94. }
  95. STDMETHODIMP CXMLDOMNodeList::get_length(long  *pVal)
  96. {
  97. ATLTRACE(_T("CXMLDOMNodeList::get_lengthn"));
  98. if (NULL == pVal)
  99. return E_POINTER;
  100. *pVal = 0;
  101. if (m_container == 0)
  102. return S_OK;
  103. try
  104. {
  105. *pVal = m_container.getLength();
  106. }
  107. catch(DOM_DOMException& ex)
  108. {
  109. return MakeHRESULT(ex);
  110. }
  111. catch(...)
  112. {
  113. return E_FAIL;
  114. }
  115. return S_OK;
  116. }
  117. STDMETHODIMP CXMLDOMNodeList::nextNode(IXMLDOMNode  **pVal)
  118. {
  119. ATLTRACE(_T("CXMLDOMNodeList::nextNoden"));
  120. if (NULL == pVal)
  121. return E_POINTER;
  122. *pVal = NULL;
  123. if (m_container == 0)
  124. return S_OK;
  125. int length = m_container.getLength();
  126. if (0 == length)
  127. return S_OK;
  128. if (m_NextNodeIndex >= length)
  129. return S_OK;
  130. HRESULT hr = S_OK;
  131. try
  132. {
  133. hr = wrapNode(m_pIXMLDOMDocument,m_container.item(m_NextNodeIndex),IID_IXMLDOMNode, reinterpret_cast<LPVOID *> (pVal));
  134. }
  135. catch(DOM_DOMException& ex)
  136. {
  137. return MakeHRESULT(ex);
  138. }
  139. catch(...)
  140. {
  141. return E_FAIL;
  142. }
  143. ++m_NextNodeIndex;
  144. return hr;
  145. }
  146. STDMETHODIMP CXMLDOMNodeList::reset()
  147. {
  148. ATLTRACE(_T("CXMLDOMNodeList::resetn"));
  149. m_NextNodeIndex = 0;
  150. return S_OK;
  151. }
  152. STDMETHODIMP CXMLDOMNodeList::get__newEnum(IUnknown  **pVal)
  153. {
  154. ATLTRACE(_T("CXMLDOMNodeList::get__newEnumn"));
  155. if (NULL == pVal)
  156. return E_POINTER;
  157. *pVal = NULL;
  158. CComObject<CComEnumUnknownOnNodeContainer> *pe = NULL;
  159. HRESULT hr = CComObject<CComEnumUnknownOnNodeContainer>::CreateInstance(&pe);
  160. if (S_OK != hr)
  161. return hr;
  162. pe->AddRef();
  163. hr = pe->Init(GetUnknown(),*this);
  164. if (S_OK == hr)
  165. hr = pe->QueryInterface(pVal);
  166. pe->Release();
  167. return hr;
  168. }
  169. HRESULT CXMLDOMNodeList::InterfaceSupportsErrorInfo(REFIID riid)
  170. {
  171. if(riid == IID_IXMLDOMNodeList) return S_OK;
  172. return S_FALSE;
  173. }