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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2002 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: DOMNotationImpl.cpp,v 1.12 2002/11/04 15:07:34 tng Exp $
  58.  */
  59. #include "DOMDocumentImpl.hpp"
  60. #include "DOMNotationImpl.hpp"
  61. #include <xercesc/dom/DOMException.hpp>
  62. #include <xercesc/dom/DOMNode.hpp>
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. DOMNotationImpl::DOMNotationImpl(DOMDocument *ownerDoc, const XMLCh *nName)
  65.     : fNode(ownerDoc), fName(0), fPublicId(0), fSystemId(0), fBaseURI(0)
  66. {
  67.     fNode.setIsLeafNode(true);
  68.     fName = ((DOMDocumentImpl *)ownerDoc)->getPooledString(nName);
  69. };
  70. DOMNotationImpl::DOMNotationImpl(const DOMNotationImpl &other, bool deep)
  71.     : fNode(other.fNode)
  72. {
  73.     fNode.setIsLeafNode(true);
  74.     fName = other.fName;
  75.     fPublicId = other.fPublicId;
  76.     fSystemId = other.fSystemId;
  77.     fBaseURI = other.fBaseURI;
  78. };
  79. DOMNotationImpl::~DOMNotationImpl()
  80. {
  81. };
  82. DOMNode *DOMNotationImpl::cloneNode(bool deep) const
  83. {
  84.     DOMNode* newNode = new (getOwnerDocument(), DOMDocumentImpl::NOTATION_OBJECT) DOMNotationImpl(*this, deep);
  85.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  86.     return newNode;
  87. };
  88. const XMLCh * DOMNotationImpl::getNodeName() const {
  89.     return fName;
  90. };
  91. short DOMNotationImpl::getNodeType() const {
  92.     return DOMNode::NOTATION_NODE;
  93. };
  94. const XMLCh * DOMNotationImpl::getPublicId() const
  95. {
  96.     return fPublicId;
  97. };
  98. const XMLCh * DOMNotationImpl::getSystemId() const
  99. {
  100.     return fSystemId;
  101. };
  102. void DOMNotationImpl::setNodeValue(const XMLCh *arg)
  103. {
  104.     fNode.setNodeValue(arg);
  105. };
  106. void DOMNotationImpl::setPublicId(const XMLCh *arg)
  107. {
  108.     if(fNode.isReadOnly())
  109.         throw DOMException(
  110.         DOMException::NO_MODIFICATION_ALLOWED_ERR,0);
  111.     fPublicId = ((DOMDocumentImpl *)getOwnerDocument())->cloneString(arg);
  112. };
  113. void DOMNotationImpl::setSystemId(const XMLCh *arg)
  114. {
  115.     if(fNode.isReadOnly())
  116.         throw DOMException(
  117.         DOMException::NO_MODIFICATION_ALLOWED_ERR,0);
  118.     fSystemId = ((DOMDocumentImpl *)getOwnerDocument())->cloneString(arg);
  119. };
  120. void DOMNotationImpl::release()
  121. {
  122.     if (fNode.isOwned() && !fNode.isToBeReleased())
  123.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  124.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  125.     if (doc) {
  126.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  127.         doc->release(this, DOMDocumentImpl::NOTATION_OBJECT);
  128.     }
  129.     else {
  130.         // shouldn't reach here
  131.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  132.     }
  133. }
  134. void DOMNotationImpl::setBaseURI(const XMLCh* baseURI) {
  135.     if (baseURI && *baseURI) {
  136.         XMLCh* temp = (XMLCh*) ((DOMDocumentImpl *)getOwnerDocument())->allocate((XMLString::stringLen(baseURI) + 9)*sizeof(XMLCh));
  137.         XMLString::fixURI(baseURI, temp);
  138.         fBaseURI = temp;
  139.     }
  140.     else
  141.         fBaseURI = 0;
  142. }
  143. const XMLCh* DOMNotationImpl::getBaseURI() const
  144. {
  145.     return fBaseURI;
  146. }
  147.            DOMNode*         DOMNotationImpl::appendChild(DOMNode *newChild)          {return fNode.appendChild (newChild); };
  148.            DOMNamedNodeMap* DOMNotationImpl::getAttributes() const                   {return fNode.getAttributes (); };
  149.            DOMNodeList*     DOMNotationImpl::getChildNodes() const                   {return fNode.getChildNodes (); };
  150.            DOMNode*         DOMNotationImpl::getFirstChild() const                   {return fNode.getFirstChild (); };
  151.            DOMNode*         DOMNotationImpl::getLastChild() const                    {return fNode.getLastChild (); };
  152.      const XMLCh*           DOMNotationImpl::getLocalName() const                    {return fNode.getLocalName (); };
  153.      const XMLCh*           DOMNotationImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  154.            DOMNode*         DOMNotationImpl::getNextSibling() const                  {return fNode.getNextSibling (); };
  155.      const XMLCh*           DOMNotationImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  156.            DOMDocument*     DOMNotationImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  157.      const XMLCh*           DOMNotationImpl::getPrefix() const                       {return fNode.getPrefix (); };
  158.            DOMNode*         DOMNotationImpl::getParentNode() const                   {return fNode.getParentNode (); };
  159.            DOMNode*         DOMNotationImpl::getPreviousSibling() const              {return fNode.getPreviousSibling (); };
  160.            bool             DOMNotationImpl::hasChildNodes() const                   {return fNode.hasChildNodes (); };
  161.            DOMNode*         DOMNotationImpl::insertBefore(DOMNode *newChild, DOMNode *refChild)
  162.                                                                                      {return fNode.insertBefore (newChild, refChild); };
  163.            void             DOMNotationImpl::normalize()                             {fNode.normalize (); };
  164.            DOMNode*         DOMNotationImpl::removeChild(DOMNode *oldChild)          {return fNode.removeChild (oldChild); };
  165.            DOMNode*         DOMNotationImpl::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  166.                                                                                      {return fNode.replaceChild (newChild, oldChild); };
  167.            bool             DOMNotationImpl::isSupported(const XMLCh *feature, const XMLCh *version) const
  168.                                                                                      {return fNode.isSupported (feature, version); };
  169.            void             DOMNotationImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  170.            bool             DOMNotationImpl::hasAttributes() const                   {return fNode.hasAttributes(); };
  171.            bool             DOMNotationImpl::isSameNode(const DOMNode* other) const  {return fNode.isSameNode(other); };
  172.            bool             DOMNotationImpl::isEqualNode(const DOMNode* arg) const   {return fNode.isEqualNode(arg); };
  173.            void*            DOMNotationImpl::setUserData(const XMLCh* key, void* data, DOMUserDataHandler* handler)
  174.                                                                                      {return fNode.setUserData(key, data, handler); };
  175.            void*            DOMNotationImpl::getUserData(const XMLCh* key) const     {return fNode.getUserData(key); };
  176.            short            DOMNotationImpl::compareTreePosition(const DOMNode* other) const {return fNode.compareTreePosition(other); };
  177.            const XMLCh*     DOMNotationImpl::getTextContent() const                  {return fNode.getTextContent(); };
  178.            void             DOMNotationImpl::setTextContent(const XMLCh* textContent){fNode.setTextContent(textContent); };
  179.            const XMLCh*     DOMNotationImpl::lookupNamespacePrefix(const XMLCh* namespaceURI, bool useDefault) const  {return fNode.lookupNamespacePrefix(namespaceURI, useDefault); };
  180.            bool             DOMNotationImpl::isDefaultNamespace(const XMLCh* namespaceURI) const {return fNode.isDefaultNamespace(namespaceURI); };
  181.            const XMLCh*     DOMNotationImpl::lookupNamespaceURI(const XMLCh* prefix) const  {return fNode.lookupNamespaceURI(prefix); };
  182.            DOMNode*         DOMNotationImpl::getInterface(const XMLCh* feature)      {return fNode.getInterface(feature); };
  183. XERCES_CPP_NAMESPACE_END