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

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.  * $Log: XUtil.hpp,v $
  58.  * Revision 1.3  2001/11/02 14:13:45  knoaman
  59.  * Add support for identity constraints.
  60.  *
  61.  * Revision 1.2  2001/05/11 13:27:39  tng
  62.  * Copyright update.
  63.  *
  64.  * Revision 1.1  2001/03/30 16:06:00  tng
  65.  * Schema: XUtil, added by Pei Yong Zhang
  66.  *
  67.  */
  68. #if !defined(XUTIL_HPP)
  69. #define XUTIL_HPP
  70. #include <dom/DOM_Element.hpp>
  71. #include <dom/DOM_Document.hpp>
  72. #include <dom/DOM_NamedNodeMap.hpp>
  73. #include <dom/DOM_Node.hpp>
  74. /**
  75.  * Some useful utility methods.
  76.  */
  77. class VALIDATORS_EXPORT XUtil
  78. {
  79. public:
  80.     //
  81.     // Copies the source tree into the specified place in a destination
  82.     // tree. The source node and its children are appended as children
  83.     // of the destination node.
  84.     // <p>
  85.     // <em>Note:</em> This is an iterative implementation.
  86.     //
  87.     static void copyInto(const DOM_Node &src, DOM_Node &dest);
  88.     /*
  89.      * Returns the concatenated child text of the specified node.
  90.      * This method only looks at the immediate children of type
  91.      * <code>Node.TEXT_NODE</code> or the children of any child
  92.      * node that is of type <code>Node.CDATA_SECTION_NODE</code>
  93.      * for the concatenation.
  94.      *
  95.      * @param node The node to look at.
  96.      */
  97.     static DOMString getChildText(const DOM_Node &node);
  98.     // Finds and returns the first child element node.
  99.     static DOM_Element getFirstChildElement(const DOM_Node &parent);
  100.     // Finds and returns the first child element node with the given name.
  101.     static DOM_Element getFirstChildElement(const DOM_Node    &parent
  102.                                   , const XMLCh* const elemName);
  103.     // Finds and returns the first child node with the given name.
  104.     static DOM_Element getFirstChildElement(const DOM_Node     &parent
  105.                                   , const XMLCh** const elemNames
  106.   , unsigned int        length);
  107.     // Finds and returns the first child node with the given name and
  108.     // attribute name, value pair.
  109.     static DOM_Element getFirstChildElement(const DOM_Node    &parent
  110.                                   , const XMLCh* const elemName
  111.                                           , const XMLCh* const attrName
  112.                                           , const XMLCh* const attrValue);
  113.     // Finds and returns the first child node with the given qualifiedname.
  114.     static DOM_Element getFirstChildElementNS(const DOM_Node     &parent
  115.                                             , const XMLCh** const elemNames
  116.                                             , const XMLCh* const uriStr
  117.                                             , unsigned int        length);
  118.     // Finds and returns the last child element node.
  119.     static DOM_Element getLastChildElement(const DOM_Node &parent);
  120.     // Finds and returns the last child element node with the given name.
  121.     static DOM_Element getLastChildElement(const DOM_Node    &parent
  122.                                          , const XMLCh* const elemName);
  123.     // Finds and returns the last child node with the given name.
  124.     static DOM_Element getLastChildElement(const DOM_Node     &parent
  125.                                          , const XMLCh** const elemNames
  126.                                      , unsigned int        length);
  127.     // Finds and returns the last child node with the given name and
  128.     // attribute name, value pair.
  129.     static DOM_Element getLastChildElement(const DOM_Node    &parent
  130.                                          , const XMLCh* const elemName
  131.                                          , const XMLCh* const attrName
  132.                                          , const XMLCh* const attrValue);
  133.     // Finds and returns the next sibling element node.
  134.     static DOM_Element getNextSiblingElement(const DOM_Node &node);
  135.     // Finds and returns the next sibling element node with the given name.
  136.     static DOM_Element getNextSiblingElement(const DOM_Node    &node
  137.                                    , const XMLCh* const elemName);
  138.     // Finds and returns the next sibling node with the given name.
  139.     static DOM_Element getNextSiblingElement(const DOM_Node     &node
  140.                                    , const XMLCh** const elemNames
  141.    , unsigned int        length);
  142.     // Finds and returns the next sibling node with the given name and
  143.     // attribute name, value pair. Since only elements have attributes,
  144.     // the node returned will be of type Node.ELEMENT_NODE.
  145.     static DOM_Element getNextSiblingElement(const DOM_Node    &parent
  146.                                    , const XMLCh* const elemName
  147.                                            , const XMLCh* const attrName
  148.                                            , const XMLCh* const attrValue);
  149.     // Finds and returns the next sibling node with the given qualified name.
  150.     static DOM_Element getNextSiblingElementNS(const DOM_Node     &node
  151.                                              , const XMLCh** const elemNames
  152.                                              , const XMLCh* const uriStr
  153.                                              , unsigned int        length);
  154. protected:
  155.     // -----------------------------------------------------------------------
  156.     //  Constructors and Destructor
  157.     // -----------------------------------------------------------------------
  158. // This class cannot be instantiated.
  159.      XUtil() {};
  160. ~XUtil() {};
  161. };
  162. #endif