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

词法分析

开发平台:

Visual 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.  * $Log: AttributeList.hpp,v $
  58.  * Revision 1.3  2003/03/07 18:10:06  tng
  59.  * Return a reference instead of void for operator=
  60.  *
  61.  * Revision 1.2  2002/11/04 14:56:25  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.1.1.1  2002/02/01 22:22:07  peiyongz
  65.  * sane_include
  66.  *
  67.  * Revision 1.8  2000/03/02 19:54:34  roddey
  68.  * This checkin includes many changes done while waiting for the
  69.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  70.  * available elsewhere.
  71.  *
  72.  * Revision 1.7  2000/02/24 20:12:54  abagchi
  73.  * Swat for removing Log from API docs
  74.  *
  75.  * Revision 1.6  2000/02/12 03:31:55  rahulj
  76.  * Removed duplicate CVS Log entries.
  77.  *
  78.  * Revision 1.5  2000/02/12 01:27:19  aruna1
  79.  * Documentation updated
  80.  *
  81.  * Revision 1.4  2000/02/09 02:12:21  abagchi
  82.  * Added getValue docs
  83.  *
  84.  * Revision 1.3  2000/02/06 07:47:57  rahulj
  85.  * Year 2K copyright swat.
  86.  *
  87.  * Revision 1.2  1999/12/15 19:58:31  roddey
  88.  * Added new convenience version of getValue() that takes a short character
  89.  * string for the attribute name.
  90.  *
  91.  * Revision 1.1.1.1  1999/11/09 01:07:43  twl
  92.  * Initial checkin
  93.  *
  94.  * Revision 1.2  1999/11/08 20:44:54  rahul
  95.  * Swat for adding in Product name and CVS comment log variable.
  96.  *
  97.  */
  98. #ifndef ATTRIBUTELIST_HPP
  99. #define ATTRIBUTELIST_HPP
  100. #include <xercesc/util/XercesDefs.hpp>
  101. XERCES_CPP_NAMESPACE_BEGIN
  102. /**
  103.   * Interface for an element's attribute specifications.
  104.   *
  105.   * The SAX parser implements this interface and passes an instance
  106.   * to the SAX application as the second argument of each startElement
  107.   * event.
  108.   *
  109.   * The instance provided will return valid results only during the
  110.   * scope of the startElement invocation (to save it for future
  111.   * use, the application must make a copy: the AttributeListImpl
  112.   * helper class provides a convenient constructor for doing so).
  113.   *
  114.   * An AttributeList includes only attributes that have been
  115.   * specified or defaulted: #IMPLIED attributes will not be included.
  116.   *
  117.   * There are two ways for the SAX application to obtain information
  118.   * from the AttributeList.  First, it can iterate through the entire
  119.   * list:
  120.   *
  121.   * <pre>
  122.   * public void startElement (String name, AttributeList atts) {
  123.   *   for (int i = 0; i < atts.getLength(); i++) {
  124.   *     String name = atts.getName(i);
  125.   *     String type = atts.getType(i);
  126.   *     String value = atts.getValue(i);
  127.   *     [...]
  128.   *   }
  129.   * }
  130.   * </pre>
  131.   *
  132.   * (Note that the result of getLength() will be zero if there
  133.   * are no attributes.)
  134.   *
  135.   * As an alternative, the application can request the value or
  136.   * type of specific attributes:
  137.   *
  138.   * <pre>
  139.   * public void startElement (String name, AttributeList atts) {
  140.   *   String identifier = atts.getValue("id");
  141.   *   String label = atts.getValue("label");
  142.   *   [...]
  143.   * }
  144.   * </pre>
  145.   *
  146.   * The AttributeListImpl helper class provides a convenience
  147.   * implementation for use by parser or application writers.
  148.   *
  149.   * @see DocumentHandler#startElement
  150.   * @see AttributeListImpl#AttributeListImpl
  151.   */
  152. class SAX_EXPORT AttributeList
  153. {
  154. public:
  155.     // -----------------------------------------------------------------------
  156.     //  Constructors and Destructor
  157.     // -----------------------------------------------------------------------
  158.     /** @name Constructors and Destructor */
  159.     //@{
  160.     /** Default constructor */
  161.     AttributeList()
  162.     {
  163.     }
  164.     /** Destructor */
  165.     virtual ~AttributeList()
  166.     {
  167.     }
  168.     //@}
  169.     /** @name The virtual attribute list interface */
  170.     //@{
  171.   /**
  172.     * Return the number of attributes in this list.
  173.     *
  174.     * The SAX parser may provide attributes in any
  175.     * arbitrary order, regardless of the order in which they were
  176.     * declared or specified.  The number of attributes may be
  177.     * zero.
  178.     *
  179.     * @return The number of attributes in the list.
  180.     */
  181.     virtual unsigned int getLength() const = 0;
  182.   /**
  183.     * Return the name of an attribute in this list (by position).
  184.     *
  185.     * The names must be unique: the SAX parser shall not include the
  186.     * same attribute twice.  Attributes without values (those declared
  187.     * #IMPLIED without a value specified in the start tag) will be
  188.     * omitted from the list.
  189.     *
  190.     * If the attribute name has a namespace prefix, the prefix
  191.     * will still be attached.
  192.     *
  193.     * @param index The index of the attribute in the list (starting at 0).
  194.     * @return The name of the indexed attribute, or null
  195.     *         if the index is out of range.
  196.     * @see #getLength
  197.     */
  198.     virtual const XMLCh* getName(const unsigned int index) const = 0;
  199.   /**
  200.     * Return the type of an attribute in the list (by position).
  201.     *
  202.     * The attribute type is one of the strings "CDATA", "ID",
  203.     * "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES",
  204.     * or "NOTATION" (always in upper case).
  205.     *
  206.     * If the parser has not read a declaration for the attribute,
  207.     * or if the parser does not report attribute types, then it must
  208.     * return the value "CDATA" as stated in the XML 1.0 Recommentation
  209.     * (clause 3.3.3, "Attribute-Value Normalization").
  210.     *
  211.     * For an enumerated attribute that is not a notation, the
  212.     * parser will report the type as "NMTOKEN".
  213.     *
  214.     * @param index The index of the attribute in the list (starting at 0).
  215.     * @return The attribute type as a string, or
  216.     *         null if the index is out of range.
  217.     * @see #getLength
  218.     * @see #getType(String)
  219.     */
  220.     virtual const XMLCh* getType(const unsigned int index) const = 0;
  221.   /**
  222.     * Return the value of an attribute in the list (by position).
  223.     *
  224.     * If the attribute value is a list of tokens (IDREFS,
  225.     * ENTITIES, or NMTOKENS), the tokens will be concatenated
  226.     * into a single string separated by whitespace.
  227.     *
  228.     * @param index The index of the attribute in the list (starting at 0).
  229.     * @return The attribute value as a string, or
  230.     *         null if the index is out of range.
  231.     * @see #getLength
  232.     * @see #getValue(XMLCh*)
  233.     * @see #getValue(char *)
  234.     */
  235.     virtual const XMLCh* getValue(const unsigned int index) const = 0;
  236.   /**
  237.     * Return the type of an attribute in the list (by name).
  238.     *
  239.     * The return value is the same as the return value for
  240.     * getType(int).
  241.     *
  242.     * If the attribute name has a namespace prefix in the document,
  243.     * the application must include the prefix here.
  244.     *
  245.     * @param name The name of the attribute.
  246.     * @return The attribute type as a string, or null if no
  247.     *         such attribute exists.
  248.     * @see #getType(int)
  249.     */
  250.     virtual const XMLCh* getType(const XMLCh* const name) const = 0;
  251.   /**
  252.     * Return the value of an attribute in the list (by name).
  253.     *
  254.     * The return value is the same as the return value for
  255.     * getValue(int).
  256.     *
  257.     * If the attribute name has a namespace prefix in the document,
  258.     * the application must include the prefix here.
  259.     *
  260.     * @param name The name of the attribute in the list.
  261.     * @return The attribute value as a string, or null if
  262.     *         no such attribute exists.
  263.     * @see #getValue(int)
  264.     * @see #getValue(char *)
  265.     */
  266.     virtual const XMLCh* getValue(const XMLCh* const name) const = 0;
  267.   /**
  268.     * Return the value of an attribute in the list (by name).
  269.     *
  270.     * The return value is the same as the return value for
  271.     * getValue(int).
  272.     *
  273.     * If the attribute name has a namespace prefix in the document,
  274.     * the application must include the prefix here.
  275.     *
  276.     * @param name The name of the attribute in the list.
  277.     * @return The attribute value as a string, or null if
  278.     *         no such attribute exists.
  279.     * @see #getValue(int)
  280.     * @see #getValue(XMLCh*)
  281.     */
  282.     virtual const XMLCh* getValue(const char* const name) const = 0;
  283.     //@}
  284. private :
  285.     /* Constructors and operators */
  286.     /* Copy constructor */
  287.     AttributeList(const AttributeList&);
  288.     /* Assignment operator */
  289.     AttributeList& operator=(const AttributeList&);
  290. };
  291. XERCES_CPP_NAMESPACE_END
  292. #endif