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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 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.  * $Log: Attributes.hpp,v $
  58.  * Revision 1.5  2001/05/11 13:26:25  tng
  59.  * Copyright update.
  60.  *
  61.  * Revision 1.4  2001/02/26 19:44:19  tng
  62.  * Schema: add utility class QName, by Pei Yong Zhang.
  63.  *
  64.  * Revision 1.3  2000/08/09 22:19:28  jpolast
  65.  * many conformance & stability changes:
  66.  *   - ContentHandler::resetDocument() removed
  67.  *   - attrs param of ContentHandler::startDocument() made const
  68.  *   - SAXExceptions thrown now have msgs
  69.  *   - removed duplicate function signatures that had 'const'
  70.  *       [ eg: getContentHander() ]
  71.  *   - changed getFeature and getProperty to apply to const objs
  72.  *   - setProperty now takes a void* instead of const void*
  73.  *   - SAX2XMLReaderImpl does not inherit from SAXParser anymore
  74.  *   - Reuse Validator (http://apache.org/xml/features/reuse-validator) implemented
  75.  *   - Features & Properties now read-only during parse
  76.  *
  77.  * Revision 1.2  2000/08/07 18:21:26  jpolast
  78.  * change SAX_EXPORT module to SAX2_EXPORT
  79.  *
  80.  * Revision 1.1  2000/08/02 18:02:34  jpolast
  81.  * initial checkin of sax2 implementation
  82.  * submitted by Simon Fell (simon@fell.com)
  83.  * and Joe Polastre (jpolast@apache.org)
  84.  *
  85.  *
  86.  */
  87. #ifndef ATTRIBUTES_HPP
  88. #define ATTRIBUTES_HPP
  89. #include <util/XercesDefs.hpp>
  90. /**
  91.   * Interface for an element's attribute specifications.
  92.   *
  93.   * The SAX2 parser implements this interface and passes an instance
  94.   * to the SAX2 application as the last argument of each startElement
  95.   * event.
  96.   *
  97.   * The instance provided will return valid results only during the
  98.   * scope of the startElement invocation (to save it for future
  99.   * use, the application must make a copy: the AttributesImpl
  100.   * helper class provides a convenient constructor for doing so).
  101.   *
  102.   * An Attributes includes only attributes that have been
  103.   * specified or defaulted: #IMPLIED attributes will not be included.
  104.   *
  105.   * There are two ways for the SAX application to obtain information
  106.   * from the Attributes.  First, it can iterate through the entire
  107.   * list:
  108.   *
  109.   * <pre>
  110.   * public void startElement (String uri, String localpart, String qName, Attributes atts) {
  111.   *   for (int i = 0; i < atts.getLength(); i++) {
  112.   *     String Qname = atts.getQName(i);
  113.   * String URI   = atts.getURI(i)
  114.   * String local = atts.GetLocalName(i)
  115.   *     String type  = atts.getType(i);
  116.   *     String value = atts.getValue(i);
  117.   *     [...]
  118.   *   }
  119.   * }
  120.   * </pre>
  121.   *
  122.   * (Note that the result of getLength() will be zero if there
  123.   * are no attributes.)
  124.   *
  125.   * As an alternative, the application can request the value or
  126.   * type of specific attributes:
  127.   *
  128.   * <pre>
  129.   * public void startElement (String uri, String localpart, String qName, Attributes atts) {
  130.   *   String identifier = atts.getValue("id");
  131.   *   String label = atts.getValue("label");
  132.   *   [...]
  133.   * }
  134.   * </pre>
  135.   *
  136.   * The AttributesImpl helper class provides a convenience
  137.   * implementation for use by parser or application writers.
  138.   *
  139.   * @see Sax2DocumentHandler#startElement
  140.   * @see AttributesImpl#AttributesImpl
  141.   */
  142. class SAX2_EXPORT Attributes
  143. {
  144. public:
  145.     // -----------------------------------------------------------------------
  146.     //  Constructors and Destructor
  147.     // -----------------------------------------------------------------------
  148.     /** @name Constructors and Destructor */
  149.     //@{
  150.     /** Default constructor */
  151.     Attributes()
  152.     {
  153.     }
  154.     /** Destructor */
  155.     virtual ~Attributes()
  156.     {
  157.     }
  158.     //@}
  159.     /** @name The virtual attribute list interface */
  160.     //@{
  161.   /**
  162.     * Return the number of attributes in this list.
  163.     *
  164.     * The SAX parser may provide attributes in any
  165.     * arbitrary order, regardless of the order in which they were
  166.     * declared or specified.  The number of attributes may be
  167.     * zero.
  168.     *
  169.     * @return The number of attributes in the list.
  170.     */
  171.     virtual unsigned int getLength() const = 0;
  172.   /**
  173.     * Return the namespace URI of an attribute in this list (by position).
  174.     *
  175.     * The QNames must be unique: the SAX parser shall not include the
  176.     * same attribute twice.  Attributes without values (those declared
  177.     * #IMPLIED without a value specified in the start tag) will be
  178.     * omitted from the list.
  179.     *
  180.     * @param index The index of the attribute in the list (starting at 0).
  181.     * @return The URI of the indexed attribute, or null
  182.     *         if the index is out of range.
  183.     * @see #getLength
  184.     */
  185. virtual const XMLCh* getURI(const unsigned int index) const = 0;
  186.   /**
  187.     * Return the local name of an attribute in this list (by position).
  188.     *
  189.     * The QNames must be unique: the SAX parser shall not include the
  190.     * same attribute twice.  Attributes without values (those declared
  191.     * #IMPLIED without a value specified in the start tag) will be
  192.     * omitted from the list.
  193.     *
  194.     * @param index The index of the attribute in the list (starting at 0).
  195.     * @return The local name of the indexed attribute, or null
  196.     *         if the index is out of range.
  197.     * @see #getLength
  198.     */
  199.     virtual const XMLCh* getLocalName(const unsigned int index) const = 0;
  200.   /**
  201.     * Return the qName of an attribute in this list (by position).
  202.     *
  203.     * The QNames must be unique: the SAX parser shall not include the
  204.     * same attribute twice.  Attributes without values (those declared
  205.     * #IMPLIED without a value specified in the start tag) will be
  206.     * omitted from the list.
  207.     *
  208.     * @param index The index of the attribute in the list (starting at 0).
  209.     * @return The qName of the indexed attribute, or null
  210.     *         if the index is out of range.
  211.     * @see #getLength
  212.     */
  213.     virtual const XMLCh* getQName(const unsigned int index) const = 0;
  214.   /**
  215.     * Return the type of an attribute in the list (by position).
  216.     *
  217.     * The attribute type is one of the strings "CDATA", "ID",
  218.     * "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES",
  219.     * or "NOTATION" (always in upper case).
  220.     *
  221.     * If the parser has not read a declaration for the attribute,
  222.     * or if the parser does not report attribute types, then it must
  223.     * return the value "CDATA" as stated in the XML 1.0 Recommentation
  224.     * (clause 3.3.3, "Attribute-Value Normalization").
  225.     *
  226.     * For an enumerated attribute that is not a notation, the
  227.     * parser will report the type as "NMTOKEN".
  228.     *
  229.     * @param index The index of the attribute in the list (starting at 0).
  230.     * @return The attribute type as a string, or
  231.     *         null if the index is out of range.
  232.     * @see #getLength
  233.     * @see #getType(String)
  234.     */
  235.     virtual const XMLCh* getType(const unsigned int index) const = 0;
  236.   /**
  237.     * Return the value of an attribute in the list (by position).
  238.     *
  239.     * If the attribute value is a list of tokens (IDREFS,
  240.     * ENTITIES, or NMTOKENS), the tokens will be concatenated
  241.     * into a single string separated by whitespace.
  242.     *
  243.     * @param index The index of the attribute in the list (starting at 0).
  244.     * @return The attribute value as a string, or
  245.     *         null if the index is out of range.
  246.     * @see #getLength
  247.     * @see #getValue(XMLCh*)
  248.     */
  249.     virtual const XMLCh* getValue(const unsigned int index) const = 0;
  250.     ////////////////////////////////////////////////////////////////////
  251.     // Name-based query.
  252.     ////////////////////////////////////////////////////////////////////
  253.    /**
  254.      * Look up the index of an attribute by Namespace name.
  255.      *
  256.      * @param uri The Namespace URI, or the empty string if
  257.      *        the name has no Namespace URI.
  258.      * @param localName The attribute's local name.
  259.      * @return The index of the attribute, or -1 if it does not
  260.      *         appear in the list.
  261.      */
  262. virtual int getIndex(const XMLCh* const uri, const XMLCh* const localPart ) const = 0 ;
  263.    /**
  264.      * Look up the index of an attribute by XML 1.0 qualified name.
  265.      *
  266.      * @param qName The qualified (prefixed) name.
  267.      * @return The index of the attribute, or -1 if it does not
  268.      *         appear in the list.
  269.      */
  270. virtual int getIndex(const XMLCh* const qName ) const = 0 ;
  271.    /**
  272.      * Look up an attribute's type by Namespace name.
  273.      *
  274.      * <p>See #getType for a description of the possible types.</p>
  275.      *
  276.      * @param uri The Namespace URI, or the empty String if the
  277.      *        name has no Namespace URI.
  278.      * @param localName The local name of the attribute.
  279.      * @return The attribute type as a string, or null if the
  280.      *         attribute is not in the list or if Namespace
  281.      *         processing is not being performed.
  282.      */
  283. virtual const XMLCh* getType(const XMLCh* const uri, const XMLCh* const localPart ) const = 0 ;
  284.    /**
  285.      * Look up an attribute's type by XML 1.0 qualified name.
  286.      *
  287.      * <p>See #getType for a description of the possible types.</p>
  288.      *
  289.      * @param qName The XML 1.0 qualified name.
  290.      * @return The attribute type as a string, or null if the
  291.      *         attribute is not in the list or if qualified names
  292.      *         are not available.
  293.      */
  294.     virtual const XMLCh* getType(const XMLCh* const qName) const = 0;
  295.    /**
  296.      * Look up an attribute's value by Namespace name.
  297.      *
  298.      * <p>See #getValue for a description of the possible values.</p>
  299.      *
  300.      * @param uri The Namespace URI, or the empty String if the
  301.      *        name has no Namespace URI.
  302.      * @param localPart The local name of the attribute.
  303.      * @return The attribute value as a string, or null if the
  304.      *         attribute is not in the list.
  305.      */
  306. virtual const XMLCh* getValue(const XMLCh* const uri, const XMLCh* const localPart ) const = 0 ;
  307.    /**
  308.      * Look up an attribute's value by XML 1.0 qualified name.
  309.      *
  310.      * <p>See #getValue for a description of the possible values.</p>
  311.      *
  312.      * @param qName The XML 1.0 qualified name.
  313.      * @return The attribute value as a string, or null if the
  314.      *         attribute is not in the list or if qualified names
  315.      *         are not available.
  316.      */
  317.     virtual const XMLCh* getValue(const XMLCh* const qName) const = 0;
  318.     //@}
  319. private :
  320.     /* Constructors and operators */
  321.     /* Copy constructor */
  322.     Attributes(const Attributes&);
  323.     /* Assignment operator */
  324.     void operator=(const Attributes&);
  325. };
  326. #endif