XMLDOMElement.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:
xml/soap/webservice
开发平台:
C/C++
- /*
- * The Apache Software License, Version 1.1
- *
- * Copyright (c) 1999-2001 The Apache Software Foundation. All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- * if any, must include the following acknowledgment:
- * "This product includes software developed by the
- * Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowledgment may appear in the software itself,
- * if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Xerces" and "Apache Software Foundation" must
- * not be used to endorse or promote products derived from this
- * software without prior written permission. For written
- * permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- * nor may "Apache" appear in their name, without prior written
- * permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation, and was
- * originally based on software copyright (c) 1999, International
- * Business Machines, Inc., http://www.ibm.com . For more information
- * on the Apache Software Foundation, please see
- * <http://www.apache.org/>.
- */
- /*
- * $Id: XMLDOMElement.cpp,v 1.7 2001/05/11 13:25:04 tng Exp $
- */
- #include "stdafx.h"
- #include "xml4com.h"
- #include "XMLDOMElement.h"
- #include "XMLDOMAttribute.h"
- #include "XMLDOMNodeList.h"
- // IXMLDOMElement methods
- STDMETHODIMP CXMLDOMElement::get_tagName(BSTR *pVal)
- {
- ATLTRACE(_T("CXMLDOMElement::get_tagNamen"));
- if (NULL == pVal)
- return E_POINTER;
- *pVal = NULL;
- try
- {
- DOMString val = element.getTagName();
- *pVal = SysAllocStringLen(val.rawBuffer(),val.length());
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- return E_FAIL;
- }
- return S_OK;
- }
- STDMETHODIMP CXMLDOMElement::getAttribute(BSTR name, VARIANT *pVal)
- {
- ATLTRACE(_T("CXMLDOMElement::getAttributen"));
- if (NULL == pVal)
- return E_POINTER;
- ::VariantInit(pVal);
- V_VT(pVal) = VT_EMPTY;
- DOMString a = element.getAttribute(name);
- try {
- V_VT(pVal) = VT_BSTR;
- V_BSTR(pVal) = SysAllocStringLen(a.rawBuffer(),a.length());
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...) {
- return E_FAIL;
- }
- return S_OK;
- }
- STDMETHODIMP CXMLDOMElement::setAttribute(BSTR name, VARIANT value)
- {
- ATLTRACE(_T("CXMLDOMElement::setAttributen"));
- try
- {
- if (V_VT(&value) == VT_BSTR)
- {
- element.setAttribute(name, value.bstrVal);
- }
- else {
- element.setAttribute(name,(BSTR) (_bstr_t) value);
- }
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- return E_FAIL;
- }
- return S_OK;
- }
- STDMETHODIMP CXMLDOMElement::removeAttribute(BSTR name)
- {
- ATLTRACE(_T("CXMLDOMElement::removeAttributen"));
- try
- {
- element.removeAttribute(name);
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- return E_FAIL;
- }
- return S_OK;
- }
- STDMETHODIMP CXMLDOMElement::getAttributeNode(BSTR name, IXMLDOMAttribute **attr)
- {
- ATLTRACE(_T("CXMLDOMElement::getAttributeNoden"));
- if (NULL == attr)
- return E_POINTER;
- *attr = NULL;
- DOM_Attr attrNode(element.getAttributeNode(name));
- if(attrNode.isNull())
- return S_OK;
- CXMLDOMAttributeObj *pObj = NULL;
- HRESULT hr = CXMLDOMAttributeObj::CreateInstance(&pObj);
- if (S_OK != hr)
- return hr;
- pObj->AddRef();
- pObj->SetOwnerDoc(m_pIXMLDOMDocument);
- try
- {
- pObj->attr = attrNode;
- }
- catch(DOM_DOMException& ex)
- {
- pObj->Release();
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- pObj->Release();
- return E_FAIL;
- }
- hr = pObj->QueryInterface(IID_IXMLDOMAttribute, reinterpret_cast<LPVOID*> (attr));
- if (S_OK != hr)
- *attr = NULL;
- pObj->Release();
- return hr;
- }
- STDMETHODIMP CXMLDOMElement::setAttributeNode(IXMLDOMAttribute *attr, IXMLDOMAttribute **attributeNode)
- {
- ATLTRACE(_T("CXMLDOMElement::setAttributeNoden"));
- if (NULL == attr || NULL == attributeNode)
- return E_POINTER;
- *attributeNode = NULL;
- DOM_Attr* newAttr = NULL;
- IIBMXMLDOMNodeIdentity* nodeID = NULL;
- HRESULT sc = attr->QueryInterface(IID_IIBMXMLDOMNodeIdentity,(void**) &nodeID);
- if(SUCCEEDED(sc)) {
- long id = 0;
- sc = nodeID->get_NodeId(&id);
- nodeID->Release();
- if(SUCCEEDED(sc)) {
- //
- // any subsequent failure will be reported as an invalid arg
- //
- sc = E_INVALIDARG;
- try {
- DOM_Node* newNode = (DOM_Node*) id;
- if(newNode->getNodeType() == DOM_Node::ATTRIBUTE_NODE) {
- newAttr = (DOM_Attr*) newNode;
- }
- }
- catch(...) {
- }
- }
- }
- //
- // if we couldn't extract an attribute out of the
- // argument, then return with a failure code
- if(newAttr == NULL) return sc;
- sc = S_OK;
- try
- {
- DOM_Attr& oldAttr = element.setAttributeNode(*newAttr);
- if(!oldAttr.isNull()) {
- CXMLDOMAttributeObj *pObj = NULL;
- sc = CXMLDOMAttributeObj::CreateInstance(&pObj);
- if (SUCCEEDED(sc)) {
- pObj->attr = oldAttr;
- pObj->AddRef();
- pObj->SetOwnerDoc(m_pIXMLDOMDocument);
- sc = pObj->QueryInterface(IID_IXMLDOMAttribute, reinterpret_cast<LPVOID*> (attributeNode));
- pObj->Release();
- }
- }
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- return E_FAIL;
- }
- return sc;
- }
- STDMETHODIMP CXMLDOMElement::removeAttributeNode(IXMLDOMAttribute *attr, IXMLDOMAttribute * *attributeNode)
- {
- ATLTRACE(_T("CXMLDOMElement::removeAttributeNoden"));
- if (NULL == attr || NULL == attributeNode)
- return E_POINTER;
- *attributeNode = NULL;
- CXMLDOMAttributeObj *pObj = NULL;
- HRESULT hr = CXMLDOMAttributeObj::CreateInstance(&pObj);
- if (S_OK != hr)
- return hr;
- pObj->AddRef();
- pObj->SetOwnerDoc(m_pIXMLDOMDocument);
- try
- {
- long id = 0;
- IIBMXMLDOMNodeIdentity* nodeID = NULL;
- if(SUCCEEDED(attr->QueryInterface(IID_IIBMXMLDOMNodeIdentity,(void**) &nodeID))) {
- nodeID->get_NodeId(&id);
- nodeID->Release();
- }
- pObj->attr = element.removeAttributeNode(*((DOM_Attr*) id));
- }
- catch(DOM_DOMException& ex)
- {
- pObj->Release();
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- pObj->Release();
- return E_FAIL;
- }
- hr = pObj->QueryInterface(IID_IXMLDOMAttribute, reinterpret_cast<LPVOID*> (attributeNode));
- if (S_OK != hr)
- *attributeNode = NULL;
- pObj->Release();
- return hr;
- }
- STDMETHODIMP CXMLDOMElement::getElementsByTagName(BSTR tagName, IXMLDOMNodeList **pVal)
- {
- ATLTRACE(_T("CXMLDOMElement::getElementsByTagNamen"));
- if (NULL == pVal)
- return E_POINTER;
- *pVal = NULL;
- CXMLDOMNodeListObj *pObj = NULL;
- HRESULT hr = CXMLDOMNodeListObj::CreateInstance(&pObj);
- if (S_OK != hr)
- return hr;
- pObj->AddRef();
- pObj->SetOwnerDoc(m_pIXMLDOMDocument);
- try
- {
- pObj->m_container = element.getElementsByTagName(tagName);
- }
- catch(DOM_DOMException& ex)
- {
- pObj->Release();
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- pObj->Release();
- return E_FAIL;
- }
- hr = pObj->QueryInterface(IID_IXMLDOMNodeList, reinterpret_cast<LPVOID*> (pVal));
- if (S_OK != hr)
- *pVal = NULL;
- pObj->Release();
- return hr;
- }
- STDMETHODIMP CXMLDOMElement::normalize(void)
- {
- ATLTRACE(_T("CXMLDOMElement::normalizen"));
- try
- {
- element.normalize();
- }
- catch(DOM_DOMException& ex)
- {
- return MakeHRESULT(ex);
- }
- catch(...)
- {
- return E_FAIL;
- }
- return S_OK;
- }