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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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: DOM_Range.cpp,v 1.2 2000/08/10 01:16:33 aruna1 Exp $
  58.  */
  59. #include <dom/DOM_Range.hpp>
  60. #include "DocumentImpl.hpp"
  61. #include "RangeImpl.hpp"
  62. DOM_Range::DOM_Range()
  63. :fImpl(0)
  64. {
  65. }
  66. DOM_Range::DOM_Range(RangeImpl* impl)
  67. {
  68.     fImpl = impl;
  69.     RefCountedImpl::addRef(fImpl);
  70. }
  71. DOM_Range::~DOM_Range()
  72. {
  73.     RefCountedImpl::removeRef (this->fImpl);
  74.     fImpl = 0;
  75. };
  76. DOM_Range & DOM_Range::operator = (const DOM_Range &other)
  77. {
  78.     if (this->fImpl != other.fImpl)
  79.     {
  80.         RefCountedImpl::removeRef(this->fImpl);
  81.         this->fImpl = other.fImpl;
  82.         RefCountedImpl::addRef(this->fImpl);
  83.     }
  84.     return *this;
  85. };
  86. DOM_Range & DOM_Range::operator = (const DOM_NullPtr *other)
  87. {
  88.     RefCountedImpl::removeRef(this->fImpl);
  89.     this->fImpl = 0;
  90.     return *this;
  91. };
  92. bool       DOM_Range::operator != (const DOM_Range & other) const
  93. {
  94.     return this->fImpl != other.fImpl;
  95. };
  96. bool       DOM_Range::operator == (const DOM_Range & other) const
  97. {
  98.     return this->fImpl == other.fImpl;
  99. };
  100. bool       DOM_Range::operator != (const DOM_NullPtr * other) const
  101. {
  102.     return this->fImpl != 0;
  103. };
  104. bool       DOM_Range::operator == (const DOM_NullPtr * other) const
  105. {
  106.     return this->fImpl == 0;
  107. }
  108. //getter functions
  109. DOM_Node DOM_Range::getStartContainer() const
  110. {
  111.     return ((RangeImpl *)fImpl)->getStartContainer();
  112. }
  113. unsigned int DOM_Range::getStartOffset() const
  114. {
  115.     return ((RangeImpl *)fImpl)->getStartOffset();
  116. }
  117. DOM_Node DOM_Range::getEndContainer() const
  118. {
  119.         return ((RangeImpl *)fImpl)->getEndContainer();
  120. }
  121. unsigned int DOM_Range::getEndOffset() const
  122. {
  123.         return ((RangeImpl *)fImpl)->getEndOffset();
  124. }
  125. const DOM_Node DOM_Range::getCommonAncestorContainer() const
  126. {
  127.         return ((RangeImpl *)fImpl)->getCommonAncestorContainer();
  128. }
  129. //setter functions    
  130. void DOM_Range::setStart(const DOM_Node& parent, unsigned int offset)
  131. {
  132.     this->fImpl->setStart(parent, offset);
  133. }
  134. void DOM_Range::setEnd(const DOM_Node& parent, unsigned int offset)
  135. {
  136.     this->fImpl->setEnd(parent, offset);
  137. }
  138. void DOM_Range::setStartBefore(const DOM_Node& refNode)
  139. {
  140.     this->fImpl->setStartBefore(refNode);
  141. }
  142. void DOM_Range::setStartAfter(const DOM_Node& refNode)
  143. {
  144.     this->fImpl->setStartAfter(refNode);
  145. }
  146. void DOM_Range::setEndBefore(const DOM_Node& refNode)
  147. {
  148.     this->fImpl->setEndBefore(refNode);
  149. }
  150. void DOM_Range::setEndAfter(const DOM_Node& refNode)
  151. {
  152.     this->fImpl->setEndAfter(refNode);
  153. }
  154. //misc functions
  155. void DOM_Range::collapse(bool toStart)
  156. {
  157.     this->fImpl->collapse(toStart);
  158. }
  159. bool DOM_Range::getCollapsed() const
  160. {
  161.     return ((RangeImpl *)fImpl)->getCollapsed();
  162. }
  163. void DOM_Range::selectNode(const DOM_Node& node)
  164. {
  165.   ((RangeImpl *)fImpl)->selectNode(node); 
  166. }
  167. void DOM_Range::selectNodeContents(const DOM_Node& node)
  168. {
  169.     ((RangeImpl *)fImpl)->selectNodeContents(node); 
  170. }
  171. //Functions related to comparing ange Boundrary-Points
  172. short DOM_Range::compareBoundaryPoints(CompareHow how, const DOM_Range& range) const
  173. {
  174.     return ((RangeImpl *)fImpl)->compareBoundaryPoints(how, range.fImpl);
  175. }
  176. void DOM_Range::deleteContents()
  177. {
  178.     ((RangeImpl *)fImpl)->deleteContents();
  179. }
  180. DOM_DocumentFragment DOM_Range::extractContents()
  181. {
  182.     return ((RangeImpl *)fImpl)->extractContents();
  183. }
  184. DOM_DocumentFragment DOM_Range::cloneContents() const
  185. {
  186.     return ((RangeImpl *)fImpl)->cloneContents();
  187. }
  188. void DOM_Range::insertNode(DOM_Node& node)
  189. {
  190.     ((RangeImpl *)fImpl)->insertNode(node);
  191. }
  192. //Misc functions
  193. void DOM_Range::surroundContents(DOM_Node& node)
  194. {
  195.     ((RangeImpl *)fImpl)->surroundContents(node);
  196. }
  197. DOM_Range DOM_Range::cloneRange() const
  198. {
  199.     return DOM_Range( ((RangeImpl *)fImpl)->cloneRange() );
  200. }
  201. DOMString DOM_Range::toString() const
  202. {
  203.     return ((RangeImpl *)fImpl)->toString();
  204. }
  205. void DOM_Range::detach()
  206. {
  207.     ((RangeImpl *)fImpl)->detach();
  208. }