Attributes.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:13k
源码类别:

词法分析

开发平台:

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