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

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: IDDocumentTypeImpl.cpp,v 1.5 2001/12/07 01:37:24 tng Exp $
  58.  */
  59. #include "IDDocumentTypeImpl.hpp"
  60. #include "IDOM_Node.hpp"
  61. #include "IDNamedNodeMapImpl.hpp"
  62. #include "IDOM_DOMException.hpp"
  63. #include "IDDocumentImpl.hpp"
  64. #include "IDCasts.hpp"
  65. IDDocumentTypeImpl::IDDocumentTypeImpl(IDOM_Document *ownerDoc,
  66.                                    const XMLCh *dtName)
  67.     : fNode(ownerDoc),
  68.     fParent(ownerDoc),
  69.     publicId(0),
  70.     systemId(0),
  71.     name(0),
  72.     internalSubset(0), //DOM Level 2
  73.     intSubsetReading(false),
  74.     entities(0),
  75.     notations(0),
  76.     elements(0)
  77. {
  78.     if (ownerDoc) {
  79.         name = ((IDDocumentImpl *)ownerDoc)->getPooledString(dtName);
  80.         entities = new (ownerDoc) IDNamedNodeMapImpl(this);
  81.         notations= new (ownerDoc) IDNamedNodeMapImpl(this);
  82.         elements = new (ownerDoc) IDNamedNodeMapImpl(this);
  83.     }
  84.     else {
  85.         name = XMLString::replicate(dtName);
  86.     }
  87. };
  88. //Introduced in DOM Level 2
  89. IDDocumentTypeImpl::IDDocumentTypeImpl(IDOM_Document *ownerDoc,
  90.                                    const XMLCh *qualifiedName,
  91.                                    const XMLCh *pubId,
  92.                                    const XMLCh *sysId)
  93. : fNode(ownerDoc),
  94.     fParent(ownerDoc),
  95.     publicId(0),
  96.     systemId(0),
  97.     name(0),
  98.     internalSubset(0), //DOM Level 2
  99.     intSubsetReading(false),
  100.     entities(0),
  101.     notations(0),
  102.     elements(0)
  103. {
  104.     if (IDDocumentImpl::indexofQualifiedName(qualifiedName) < 0)
  105.         throw IDOM_DOMException(IDOM_DOMException::NAMESPACE_ERR, 0);
  106.     if (ownerDoc) {
  107.         IDDocumentImpl *docImpl = (IDDocumentImpl *)ownerDoc;
  108.         publicId = docImpl->cloneString(pubId);
  109.         systemId = docImpl->cloneString(sysId);
  110.         name = ((IDDocumentImpl *)ownerDoc)->getPooledString(qualifiedName);
  111.         entities = new (ownerDoc) IDNamedNodeMapImpl(this);
  112.         notations= new (ownerDoc) IDNamedNodeMapImpl(this);
  113.         elements = new (ownerDoc) IDNamedNodeMapImpl(this);
  114.     }
  115.     else {
  116.         publicId = XMLString::replicate(pubId);
  117.         systemId = XMLString::replicate(sysId);
  118.         name = XMLString::replicate(qualifiedName);
  119.     }
  120. };
  121. IDDocumentTypeImpl::IDDocumentTypeImpl(const IDDocumentTypeImpl &other, bool deep)
  122.     : fNode(other.fNode),
  123.     fParent(other.fParent),
  124.     fChild(other.fChild),
  125.     publicId(0),
  126.     systemId(0),
  127.     name(0),
  128.     internalSubset(0), //DOM Level 2
  129.     intSubsetReading(other.intSubsetReading),
  130.     entities(0),
  131.     notations(0),
  132.     elements(0)
  133. {
  134.     if ((IDDocumentImpl *)this->fNode.getOwnerDocument()) {
  135.         name = other.name;
  136.         if (deep)
  137.             fParent.cloneChildren(&other);
  138.         entities = ((IDNamedNodeMapImpl *)other.entities)->cloneMap(this);
  139.         notations= ((IDNamedNodeMapImpl *)other.notations)->cloneMap(this);
  140.         elements = ((IDNamedNodeMapImpl *)other.notations)->cloneMap(this);
  141.         //DOM Level 2
  142.         publicId = other.publicId;
  143.         systemId = other.systemId;
  144.         internalSubset = other.internalSubset;
  145.     }
  146.     else {
  147.         name = XMLString::replicate(other.name);
  148.         publicId = XMLString::replicate(other.publicId);
  149.         systemId = XMLString::replicate(other.systemId);
  150.         internalSubset = XMLString::replicate(other.internalSubset);
  151.     }
  152. }
  153. IDDocumentTypeImpl::~IDDocumentTypeImpl()
  154. {
  155.     if (!(castToNodeImpl(this)->getOwnerDocument())) {
  156.         XMLCh* temp = (XMLCh*) name;  // cast off const
  157.         delete [] temp;
  158.         temp = (XMLCh*) publicId;  // cast off const
  159.         delete [] temp;
  160.         temp = (XMLCh*) systemId;
  161.         delete [] temp;
  162.         temp = (XMLCh*) internalSubset;
  163.         delete [] temp;
  164.     }
  165. }
  166. IDOM_Node *IDDocumentTypeImpl::cloneNode(bool deep) const
  167. {
  168.     if (castToNodeImpl(this)->getOwnerDocument())
  169.         return new (castToNodeImpl(this)->getOwnerDocument()) IDDocumentTypeImpl(*this, deep);
  170.     return new IDDocumentTypeImpl(*this, deep);
  171. }
  172. /**
  173.  * NON-DOM
  174.  * set the ownerDocument of this node and its children
  175.  */
  176. void IDDocumentTypeImpl::setOwnerDocument(IDOM_Document *doc) {
  177.     if (castToNodeImpl(this)->getOwnerDocument()) {
  178.         fNode.setOwnerDocument(doc);
  179.         fParent.setOwnerDocument(doc);
  180.     }
  181.     else {
  182.         if (doc) {
  183.             IDDocumentImpl *docImpl = (IDDocumentImpl *)doc;
  184.             XMLCh* temp = (XMLCh*) publicId; // cast off const
  185.             publicId = docImpl->cloneString(publicId);
  186.             delete [] temp;
  187.             temp = (XMLCh*) systemId; // cast off const
  188.             systemId = docImpl->cloneString(systemId);
  189.             delete [] temp;
  190.             temp = (XMLCh*) internalSubset; // cast off const
  191.             internalSubset = docImpl->cloneString(internalSubset);
  192.             delete [] temp;
  193.             temp = (XMLCh*) name; // cast off const
  194.             name = docImpl->cloneString(name);
  195.             delete [] temp;
  196.             entities = new (docImpl) IDNamedNodeMapImpl(this);
  197.             notations= new (docImpl) IDNamedNodeMapImpl(this);
  198.             elements = new (docImpl) IDNamedNodeMapImpl(this);
  199.             fNode.setOwnerDocument(doc);
  200.             fParent.setOwnerDocument(doc);
  201.         }
  202.     }
  203. }
  204. const XMLCh * IDDocumentTypeImpl::getNodeName() const
  205. {
  206.     return name;
  207. };
  208. short IDDocumentTypeImpl::getNodeType()  const {
  209.     return IDOM_Node::DOCUMENT_TYPE_NODE;
  210. };
  211. IDOM_NamedNodeMap *IDDocumentTypeImpl::getEntities() const
  212. {
  213.     return entities;
  214. };
  215. const XMLCh * IDDocumentTypeImpl::getName() const
  216. {
  217.     return name;
  218. };
  219. IDOM_NamedNodeMap *IDDocumentTypeImpl::getNotations() const
  220. {
  221.     return notations;
  222. };
  223. IDOM_NamedNodeMap *IDDocumentTypeImpl::getElements() const
  224. {
  225.     return elements;
  226. };
  227. void IDDocumentTypeImpl::setNodeValue(const XMLCh *val)
  228. {
  229.     fNode.setNodeValue(val);
  230. };
  231. void IDDocumentTypeImpl::setReadOnly(bool readOnl, bool deep)
  232. {
  233.     fNode.setReadOnly(readOnl,deep);
  234.     if (entities)
  235.         ((IDNamedNodeMapImpl *)entities)->setReadOnly(readOnl,true);
  236.     if (notations)
  237.         ((IDNamedNodeMapImpl *)notations)->setReadOnly(readOnl,true);
  238. };
  239. //Introduced in DOM Level 2
  240. const XMLCh * IDDocumentTypeImpl::getPublicId() const
  241. {
  242.     return publicId;
  243. }
  244. const XMLCh * IDDocumentTypeImpl::getSystemId() const
  245. {
  246.     return systemId;
  247. }
  248. const XMLCh * IDDocumentTypeImpl::getInternalSubset() const
  249. {
  250.     return internalSubset;
  251. }
  252. bool IDDocumentTypeImpl::isIntSubsetReading() const
  253. {
  254.     return intSubsetReading;
  255. }
  256. //set functions
  257. void        IDDocumentTypeImpl::setPublicId(const XMLCh *value)
  258. {
  259.     // idom_revist.  Why shouldn't 0 be assigned like any other value?
  260.     if (value == 0)
  261.         return;
  262.     if ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())
  263.         publicId = ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())->getPooledString(value);
  264.     else {
  265.         XMLCh* temp = (XMLCh*) publicId; // cast off const
  266.         delete [] temp;
  267.         publicId = XMLString::replicate(value);
  268.     }
  269. }
  270. void        IDDocumentTypeImpl::setSystemId(const XMLCh *value)
  271. {
  272.     if (value == 0)
  273.         return;
  274.     if ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())
  275.         systemId = ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())->getPooledString(value);
  276.     else {
  277.         XMLCh* temp = (XMLCh*) systemId; // cast off const
  278.         delete [] temp;
  279.         systemId = XMLString::replicate(value);
  280.     }
  281. }
  282. void        IDDocumentTypeImpl::setInternalSubset(const XMLCh *value)
  283. {
  284.     if (value == 0)
  285.         return;
  286.     if ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())
  287.         internalSubset = ((IDDocumentImpl *)castToNodeImpl(this)->getOwnerDocument())->getPooledString(value);
  288.     else {
  289.         XMLCh* temp = (XMLCh*) internalSubset; // cast off const
  290.         delete [] temp;
  291.         internalSubset = XMLString::replicate(value);
  292.     }
  293. }
  294. //
  295. // Delegation for functions inherited from Node
  296. //
  297.            IDOM_Node          *IDDocumentTypeImpl::appendChild(IDOM_Node *newChild)        {return fParent.appendChild (newChild); };
  298.            IDOM_NamedNodeMap  *IDDocumentTypeImpl::getAttributes() const          {return fNode.getAttributes (); };
  299.            IDOM_NodeList      *IDDocumentTypeImpl::getChildNodes() const          {return fParent.getChildNodes (); };
  300.            IDOM_Node          *IDDocumentTypeImpl::getFirstChild() const          {return fParent.getFirstChild (); };
  301.            IDOM_Node          *IDDocumentTypeImpl::getLastChild() const              {return fParent.getLastChild (); };
  302.      const XMLCh              *IDDocumentTypeImpl::getLocalName() const                    {return fNode.getLocalName (); };
  303.      const XMLCh              *IDDocumentTypeImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  304.            IDOM_Node          *IDDocumentTypeImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  305.      const XMLCh              *IDDocumentTypeImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  306.            IDOM_Document      *IDDocumentTypeImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  307.      const XMLCh              *IDDocumentTypeImpl::getPrefix() const                       {return fNode.getPrefix (); };
  308.            IDOM_Node          *IDDocumentTypeImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  309.            IDOM_Node          *IDDocumentTypeImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  310.            bool                IDDocumentTypeImpl::hasChildNodes() const                   {return fParent.hasChildNodes (); };
  311.            IDOM_Node          *IDDocumentTypeImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  312.                                                                             {return fParent.insertBefore (newChild, refChild); };
  313.            void                IDDocumentTypeImpl::normalize()                             {fNode.normalize (); };
  314.            IDOM_Node          *IDDocumentTypeImpl::removeChild(IDOM_Node *oldChild)        {return fParent.removeChild (oldChild); };
  315.            IDOM_Node          *IDDocumentTypeImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  316.                                                                             {return fParent.replaceChild (newChild, oldChild); };
  317.            bool                IDDocumentTypeImpl::supports(const XMLCh *feature, const XMLCh *version) const
  318.                                                                             {return fNode.supports (feature, version); };
  319.            void                IDDocumentTypeImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };