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

xml/soap/webservice

开发平台:

C/C++

  1. #ifndef IDRangeImpl_HEADER_GUARD_
  2. #define IDRangeImpl_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 2001 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 2001, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58.  /*
  59.  * $Id: IDRangeImpl.hpp,v 1.3 2001/06/04 14:55:36 tng Exp $
  60.  */
  61. #include <util/XercesDefs.hpp>
  62. #include "IDOM_Range.hpp"
  63. class       IDOM_Node;
  64. class       IDOM_DocumentFragment;
  65. class       IDOM_Text;
  66. class CDOM_EXPORT IDRangeImpl: public IDOM_Range {
  67. private:
  68.     enum TraversalType {
  69.         EXTRACT_CONTENTS = 1,
  70.         CLONE_CONTENTS   = 2,
  71.         DELETE_CONTENTS  = 3
  72.     };
  73.     enum TraversePoint {
  74.         BEFORE  = -1,
  75.         START   = 0,
  76.         AFTER   = 1
  77.     };
  78.     //private data
  79.     IDOM_Node       *fStartContainer;
  80.     unsigned int    fStartOffset;
  81.     IDOM_Node       *fEndContainer;
  82.     unsigned int    fEndOffset;
  83.     bool            fCollapsed;
  84.     IDOM_Document   *fDocument;
  85.     bool            fDetached;
  86.     IDOM_Node       *fRemoveChild;
  87. public:
  88.     //c'tor
  89.     IDRangeImpl(IDOM_Document* doc);
  90.     IDRangeImpl(const IDRangeImpl& other);
  91.     //d'tor
  92.     ~IDRangeImpl();
  93.     //getter functions
  94.     virtual IDOM_Node* getStartContainer() const;
  95.     virtual unsigned int getStartOffset() const;
  96.     virtual IDOM_Node* getEndContainer() const;
  97.     virtual unsigned int getEndOffset() const;
  98.     virtual bool getCollapsed() const;
  99.     virtual const IDOM_Node* getCommonAncestorContainer() const;
  100.     //setter functions
  101.     virtual void setStart(const IDOM_Node *parent, unsigned int offset);
  102.     virtual void setEnd(const IDOM_Node *parent, unsigned int offset);
  103.     virtual void setStartBefore(const IDOM_Node *refNode);
  104.     virtual void setStartAfter(const IDOM_Node *refNode);
  105.     virtual void setEndBefore(const IDOM_Node *refNode);
  106.     virtual void setEndAfter(const IDOM_Node *refNode);
  107.     //misc functions
  108.     virtual void collapse(bool toStart);
  109.     virtual void selectNode(const IDOM_Node *node);
  110.     virtual void selectNodeContents(const IDOM_Node *node);
  111.     //Functions related to comparing range Boundrary-Points
  112.     virtual short compareBoundaryPoints(CompareHow how, const IDOM_Range* range) const;
  113.     virtual void deleteContents();
  114.     virtual IDOM_DocumentFragment* extractContents();
  115.     virtual IDOM_DocumentFragment* cloneContents() const;
  116.     virtual void insertNode(IDOM_Node* node);
  117.     //Misc functions
  118.     virtual void surroundContents(IDOM_Node *node);
  119.     virtual IDOM_Range* cloneRange() const;
  120.     virtual const XMLCh* toString() const;
  121.     virtual void detach();
  122.     //getter functions
  123.     IDOM_Document*         getDocument();
  124.     // functions to inform all existing valid ranges about a change
  125.     void updateSplitInfo(IDOM_Text* oldNode, IDOM_Text* startNode, unsigned int offset);
  126.     void updateRangeForInsertedNode(IDOM_Node* node);
  127.     void receiveReplacedText(IDOM_Node* node);
  128.     void updateRangeForDeletedText(IDOM_Node* node, unsigned int offset, int count);
  129.     void updateRangeForDeletedNode(IDOM_Node* node);
  130. private:
  131.     //setter functions
  132.     void        setStartContainer(const IDOM_Node* node);
  133.     void        setStartOffset(unsigned int offset) ;
  134.     void        setEndContainer(const IDOM_Node* node);
  135.     void        setEndOffset(unsigned int offset) ;
  136.     //misc functions
  137.     void        validateNode(const IDOM_Node* node) const;
  138.     bool        isValidAncestorType(const IDOM_Node* node) const;
  139.     bool        hasLegalRootContainer(const IDOM_Node* node) const;
  140.     bool        isLegalContainedNode(const IDOM_Node* node ) const;
  141.     void        checkIndex(const IDOM_Node* node, unsigned int offset) const;
  142.     static bool isAncestorOf(const IDOM_Node* a, const IDOM_Node* b);
  143.     unsigned short        indexOf(const IDOM_Node* child, const IDOM_Node* parent) const;
  144.     const IDOM_Node*       commonAncestorOf(const IDOM_Node* pointA, const IDOM_Node* pointB) const;
  145.     IDOM_Node*             nextNode(const IDOM_Node* node, bool visitChildren) const;
  146.     IDOM_DocumentFragment* traverseContents(TraversalType type);
  147.     void                  checkReadOnly(IDOM_Node* start, IDOM_Node* end,
  148.                                   unsigned int starOffset, unsigned int endOffset);
  149.     void                  recurseTreeAndCheck(IDOM_Node* start, IDOM_Node* end);
  150.     IDOM_Node*             removeChild(IDOM_Node* parent, IDOM_Node* child);
  151.     IDOM_DocumentFragment* traverseSameContainer( int how );
  152.     IDOM_DocumentFragment* traverseCommonStartContainer( IDOM_Node *endAncestor, int how );
  153.     IDOM_DocumentFragment* traverseCommonEndContainer( IDOM_Node *startAncestor, int how );
  154.     IDOM_DocumentFragment* traverseCommonAncestors( IDOM_Node *startAncestor, IDOM_Node *endAncestor, int how );
  155.     IDOM_Node*    traverseRightBoundary( IDOM_Node *root, int how );
  156.     IDOM_Node*    traverseLeftBoundary( IDOM_Node *root, int how );
  157.     IDOM_Node*    traverseNode( IDOM_Node *n, bool isFullySelected, bool isLeft, int how );
  158.     IDOM_Node*    traverseFullySelected( IDOM_Node *n, int how );
  159.     IDOM_Node*    traversePartiallySelected( IDOM_Node *n, int how );
  160.     IDOM_Node*    traverseTextNode( IDOM_Node *n, bool isLeft, int how );
  161.     IDOM_Node*    getSelectedNode( IDOM_Node *container, int offset );
  162. };
  163. #endif