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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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: IDElementImpl.cpp,v 1.5 2001/12/07 01:37:24 tng Exp $
  58.  */
  59. #include "IDElementImpl.hpp"
  60. #include "IDOM_Attr.hpp"
  61. #include "IDOM_Document.hpp"
  62. #include "IDOM_DOMException.hpp"
  63. #include "IDAttrMapImpl.hpp"
  64. #include "IDDocumentImpl.hpp"
  65. #include "IDParentNode.hpp"
  66. #include "IDStringPool.hpp"
  67. #include "IDDeepNodeListImpl.hpp"
  68. //#include "IDDocumentImpl.hpp"
  69. #include "IDDocumentTypeImpl.hpp"
  70. //#include "IDOM_DOMException.hpp"
  71. //#include "IDElementDefinitionImpl.hpp"
  72. #include "IDNamedNodeMapImpl.hpp"
  73. //#include "IDNodeVector.hpp"
  74. class IDOM_Attr;
  75. IDElementImpl::IDElementImpl(IDOM_Document *ownerDoc, const XMLCh *eName)
  76.     : fNode(ownerDoc), fParent(ownerDoc), fAttributes(0)
  77. {
  78.     IDDocumentImpl *docImpl = (IDDocumentImpl *)ownerDoc;
  79.     fName = docImpl->fNamePool->getPooledString(eName);
  80.     setupDefaultAttributes();
  81.     if (!fAttributes)
  82.         fAttributes = new (getOwnerDocument()) IDAttrMapImpl(this);
  83. };
  84. IDElementImpl::IDElementImpl(const IDElementImpl &other, bool deep)
  85.     : fNode(other.getOwnerDocument()),
  86.       fParent(other.getOwnerDocument()),
  87.       fAttributes(0)
  88. {
  89.     fName = other.fName;
  90.     setupDefaultAttributes();
  91.     if (!fAttributes)
  92.         fAttributes = new (getOwnerDocument()) IDAttrMapImpl(this);
  93.     if (deep)
  94.         fParent.cloneChildren(&other);
  95. };
  96. IDElementImpl::~IDElementImpl()
  97. {
  98. };
  99. IDOM_Node *IDElementImpl::cloneNode(bool deep) const
  100. {
  101.     return new (getOwnerDocument()) IDElementImpl(*this, deep);
  102.     return 0;
  103. };
  104. const XMLCh * IDElementImpl::getNodeName() const {
  105.     return fName;
  106. };
  107. short IDElementImpl::getNodeType() const {
  108.     return IDOM_Node::ELEMENT_NODE;
  109. };
  110. const XMLCh * IDElementImpl::getAttribute(const XMLCh *nam) const
  111. {
  112.     static const XMLCh emptyString[]  = {0};
  113.     IDOM_Node * attr=0;
  114.     attr=fAttributes->getNamedItem(nam);
  115.     const XMLCh *retString = emptyString;
  116.     if (attr != 0)
  117.         retString = attr->getNodeValue();
  118.     return retString;
  119. };
  120. IDOM_Attr *IDElementImpl::getAttributeNode(const XMLCh *nam) const
  121. {
  122.     return  (IDOM_Attr *)fAttributes->getNamedItem(nam);
  123. };
  124. #include "stdio.h"
  125. IDOM_NamedNodeMap *IDElementImpl::getAttributes() const
  126. {
  127.     IDElementImpl *ncThis = (IDElementImpl *)this;   // cast off const
  128.     return ncThis->fAttributes;
  129. };
  130. IDOM_NodeList *IDElementImpl::getElementsByTagName(const XMLCh *tagname) const
  131. {
  132.     IDDocumentImpl *docImpl = (IDDocumentImpl *)getOwnerDocument();
  133.     return docImpl->getDeepNodeList(this,tagname);
  134. };
  135. const XMLCh * IDElementImpl::getTagName() const
  136. {
  137.     return fName;
  138. }
  139. void IDElementImpl::removeAttribute(const XMLCh *nam)
  140. {
  141.     if (fNode.isReadOnly())
  142.         throw IDOM_DOMException(
  143.              IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  144.     IDOM_Node *att = fAttributes->getNamedItem(nam);
  145.     if (att != 0)
  146.     {
  147.         fAttributes->removeNamedItem(nam);
  148.     }
  149. };
  150. IDOM_Attr *IDElementImpl::removeAttributeNode(IDOM_Attr *oldAttr)
  151. {
  152.     if (fNode.isReadOnly())
  153.         throw IDOM_DOMException(
  154.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  155.     IDOM_Node *found = fAttributes->getNamedItem(oldAttr->getName());
  156.     // If it is in fact the right object, remove it.
  157.     if (found == oldAttr)
  158.         fAttributes->removeNamedItem(oldAttr->getName());
  159.     else
  160.         throw IDOM_DOMException(IDOM_DOMException::NOT_FOUND_ERR, 0);
  161.     return (IDOM_Attr *)found;
  162. };
  163. void IDElementImpl::setAttribute(const XMLCh *nam, const XMLCh *val)
  164. {
  165.     if (fNode.isReadOnly())
  166.         throw IDOM_DOMException(
  167.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  168.     IDOM_Attr* newAttr = getAttributeNode(nam);
  169.     if (!newAttr)
  170.     {
  171.         newAttr = this->fNode.getOwnerDocument()->createAttribute(nam);
  172.         fAttributes->setNamedItem(newAttr);
  173.     }
  174.     newAttr->setNodeValue(val);
  175. };
  176. IDOM_Attr * IDElementImpl::setAttributeNode(IDOM_Attr *newAttr)
  177. {
  178.     if (fNode.isReadOnly())
  179.         throw IDOM_DOMException(
  180.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  181.     if (newAttr->getNodeType() != IDOM_Node::ATTRIBUTE_NODE)
  182.         throw IDOM_DOMException(IDOM_DOMException::WRONG_DOCUMENT_ERR, 0);
  183.         // idom_revisit.  Exception doesn't match test.
  184.     IDOM_Attr *oldAttr =
  185.       (IDOM_Attr *) fAttributes->getNamedItem(newAttr->getName());
  186.     // This will throw INUSE if necessary
  187.     fAttributes->setNamedItem(newAttr);
  188.     return oldAttr;
  189. };
  190. void IDElementImpl::setNodeValue(const XMLCh *x)
  191. {
  192.     fNode.setNodeValue(x);
  193. };
  194. void IDElementImpl::setReadOnly(bool readOnl, bool deep)
  195. {
  196.     fNode.setReadOnly(readOnl,deep);
  197.     fAttributes->setReadOnly(readOnl,true);
  198. };
  199. //Introduced in DOM Level 2
  200. const XMLCh * IDElementImpl::getAttributeNS(const XMLCh *fNamespaceURI,
  201. const XMLCh *fLocalName) const
  202. {
  203.     IDOM_Attr * attr=
  204.       (IDOM_Attr *)(fAttributes->getNamedItemNS(fNamespaceURI, fLocalName));
  205.     return (attr==0) ? 0 : attr->getValue();
  206. }
  207. void IDElementImpl::setAttributeNS(const XMLCh *fNamespaceURI,
  208. const XMLCh *qualifiedName, const XMLCh *fValue)
  209. {
  210.     if (fNode.isReadOnly())
  211.         throw IDOM_DOMException(
  212.     IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  213.     IDOM_Attr *newAttr =
  214.         this->fNode.getOwnerDocument()->createAttributeNS(fNamespaceURI, qualifiedName);
  215.     newAttr->setNodeValue(fValue);
  216.     fAttributes->setNamedItem(newAttr);
  217. }
  218. void IDElementImpl::removeAttributeNS(const XMLCh *fNamespaceURI,
  219. const XMLCh *fLocalName)
  220. {
  221.     if (fNode.isReadOnly())
  222.         throw IDOM_DOMException(
  223.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  224.     IDOM_Attr *att =
  225.         (IDOM_Attr *)fAttributes->getNamedItemNS(fNamespaceURI, fLocalName);
  226.     // Remove it
  227.     if (att != 0) {
  228.         fAttributes->removeNamedItemNS(fNamespaceURI, fLocalName);
  229.     }
  230. }
  231. IDOM_Attr *IDElementImpl::getAttributeNodeNS(const XMLCh *fNamespaceURI,
  232. const XMLCh *fLocalName) const
  233. {
  234.     return (IDOM_Attr *)fAttributes->getNamedItemNS(fNamespaceURI, fLocalName);
  235. }
  236. IDOM_Attr *IDElementImpl::setAttributeNodeNS(IDOM_Attr *newAttr)
  237. {
  238.     if (fNode.isReadOnly())
  239.         throw IDOM_DOMException(
  240.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  241.     if (newAttr -> getOwnerDocument() != this -> getOwnerDocument())
  242.         throw IDOM_DOMException(IDOM_DOMException::WRONG_DOCUMENT_ERR, 0);
  243.     IDOM_Attr *oldAttr = (IDOM_Attr *) fAttributes->getNamedItemNS(newAttr->getNamespaceURI(), newAttr->getLocalName());
  244.     // This will throw INUSE if necessary
  245.     fAttributes->setNamedItemNS(newAttr);
  246.     return oldAttr;
  247. }
  248. IDOM_NodeList *IDElementImpl::getElementsByTagNameNS(const XMLCh *namespaceURI,
  249. const XMLCh *localName) const
  250. {
  251.     IDDocumentImpl *docImpl = (IDDocumentImpl *)getOwnerDocument();;
  252.     return docImpl->getDeepNodeList(this, namespaceURI, localName);
  253. }
  254. // DOM_NamedNodeMap UTILITIES
  255. #ifdef idom_revisit
  256. NamedNodeMapImpl *IDElementImpl::NNM_cloneMap(IDOM_Node *nnm_ownerNode)
  257. {
  258. return (getAttributes() == 0) ? 0 : nnm_ownerNode->getAttributes()->cloneMap(nnm_ownerNode);
  259. }
  260. int IDElementImpl::NNM_findNamePoint(const XMLCh *nnm_name)
  261. {
  262. return (getAttributes() == 0) ? -1 : getAttributes()->findNamePoint(nnm_name);
  263. }
  264. unsigned int IDElementImpl::NNM_getLength()
  265. {
  266. return (getAttributes() == 0) ? 0 : getAttributes()->getLength();
  267. }
  268. IDOM_Node *IDElementImpl::NNM_getNamedItem(const XMLCh *nnm_name)
  269. {
  270. return (getAttributes() == 0) ? 0 : getAttributes()->getNamedItem(nnm_name);
  271. }
  272. IDOM_Node *IDElementImpl::NNM_item(unsigned int nnm_index)
  273. {
  274. return (getAttributes() == 0) ? 0 : getAttributes()->item(nnm_index);
  275. }
  276. void IDElementImpl::NNM_removeAll()
  277. {
  278. if (getAttributes() != 0)
  279. getAttributes()->removeAll();
  280. }
  281. IDOM_Node *IDElementImpl::NNM_removeNamedItem(const XMLCh *nnm_name)
  282. {
  283. if (getAttributes() == 0)
  284. throw IDOM_DOMException(IDOM_DOMException::NOT_FOUND_ERR, 0);
  285. else
  286. return getAttributes()->removeNamedItem(nnm_name);
  287. return 0;
  288. }
  289. IDOM_Node *IDElementImpl::NNM_setNamedItem(IDOM_Node *nnm_arg)
  290. {
  291. return fAttributes->setNamedItem(nnm_arg);
  292. }
  293. void IDElementImpl::NNM_setReadOnly(bool nnm_readOnly, bool nnm_deep)
  294. {
  295. if (getAttributes() != 0)
  296. getAttributes()->setReadOnly(nnm_readOnly, nnm_deep);
  297. }
  298. int IDElementImpl::NNM_findNamePoint(const XMLCh *nnm_namespaceURI, const XMLCh *nnm_localName)
  299. {
  300. return (getAttributes() == 0) ? -1 : getAttributes()->findNamePoint(nnm_namespaceURI, nnm_localName);
  301. }
  302. IDOM_Node *IDElementImpl::NNM_getNamedItemNS(const XMLCh *nnm_namespaceURI, const XMLCh *nnm_localName)
  303. {
  304. return (getAttributes() == 0) ? 0 : getAttributes()->getNamedItemNS(nnm_namespaceURI, nnm_localName);
  305. }
  306. IDOM_Node *IDElementImpl::NNM_setNamedItemNS(IDOM_Node *nnm_arg)
  307. {
  308. return getAttributes()->setNamedItemNS(nnm_arg);
  309. }
  310. IDOM_Node *IDElementImpl::NNM_removeNamedItemNS(const XMLCh *nnm_namespaceURI, const XMLCh *nnm_localName)
  311. {
  312. if (getAttributes() == 0)
  313.         throw IDOM_DOMException(IDOM_DOMException::NOT_FOUND_ERR, 0);
  314. else
  315. return getAttributes()->removeNamedItemNS(nnm_namespaceURI, nnm_localName);
  316. return 0;
  317. }
  318. void IDElementImpl::NNM_setOwnerDocument(DocumentImpl *nnm_doc)
  319. {
  320. if (getAttributes() != 0)
  321. getAttributes()->setOwnerDocument(nnm_doc);
  322. }
  323. #endif
  324. // util functions for default attributes
  325. // returns the default attribute map for this node from the owner document
  326. IDAttrMapImpl *IDElementImpl::getDefaultAttributes()
  327. {
  328. if ((fNode.fOwnerNode == 0) || (getOwnerDocument() == 0))
  329. return 0;
  330. IDOM_Document *tmpdoc = getOwnerDocument();
  331. if (tmpdoc->getDoctype() == 0)
  332. return 0;
  333. IDOM_Node *eldef = ((IDDocumentTypeImpl*)tmpdoc->getDoctype())->getElements()->getNamedItem(getNodeName());
  334. return (eldef == 0) ? 0 : (IDAttrMapImpl *)(eldef->getAttributes());
  335. }
  336. // resets all attributes for this node to their default values
  337. void IDElementImpl::setupDefaultAttributes()
  338. {
  339.     if ((fNode.fOwnerNode == 0) || (getOwnerDocument() == 0) || (getOwnerDocument()->getDoctype() == 0))
  340.         return;
  341.     IDAttrMapImpl* defAttrs = getDefaultAttributes();
  342.     if (defAttrs)
  343.         fAttributes = new (getOwnerDocument()) IDAttrMapImpl(this, defAttrs);
  344. }
  345. //
  346. //   Functions inherited from Node
  347. //
  348.            IDOM_Node          *IDElementImpl::appendChild(IDOM_Node *newChild)        {return fParent.appendChild (newChild); };
  349.            IDOM_NodeList      *IDElementImpl::getChildNodes() const          {return fParent.getChildNodes (); };
  350.            IDOM_Node          *IDElementImpl::getFirstChild() const          {return fParent.getFirstChild (); };
  351.            IDOM_Node          *IDElementImpl::getLastChild() const              {return fParent.getLastChild (); };
  352.      const XMLCh              *IDElementImpl::getLocalName() const                    {return fNode.getLocalName (); };
  353.      const XMLCh              *IDElementImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  354.            IDOM_Node          *IDElementImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  355.      const XMLCh              *IDElementImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  356.            IDOM_Document      *IDElementImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  357.      const XMLCh              *IDElementImpl::getPrefix() const                       {return fNode.getPrefix (); };
  358.            IDOM_Node          *IDElementImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  359.            IDOM_Node          *IDElementImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  360.            bool                IDElementImpl::hasChildNodes() const                   {return fParent.hasChildNodes (); };
  361.            IDOM_Node          *IDElementImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  362.                                                                             {return fParent.insertBefore (newChild, refChild); };
  363.            void                IDElementImpl::normalize()                             {fNode.normalize (); };
  364.            IDOM_Node          *IDElementImpl::removeChild(IDOM_Node *oldChild)        {return fParent.removeChild (oldChild); };
  365.            IDOM_Node          *IDElementImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  366.                                                                             {return fParent.replaceChild (newChild, oldChild); };
  367.            bool                IDElementImpl::supports(const XMLCh *feature, const XMLCh *version) const
  368.                                                                             {return fNode.supports (feature, version); };
  369.            void                IDElementImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };