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

词法分析

开发平台:

Visual 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.  * $Id: AbstractNumericFacetValidator.hpp,v 1.6 2003/05/15 18:53:26 knoaman Exp $
  58.  * $Log: AbstractNumericFacetValidator.hpp,v $
  59.  * Revision 1.6  2003/05/15 18:53:26  knoaman
  60.  * Partial implementation of the configurable memory manager.
  61.  *
  62.  * Revision 1.5  2002/12/18 14:17:55  gareth
  63.  * Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
  64.  *
  65.  * Revision 1.4  2002/11/04 14:53:27  tng
  66.  * C++ Namespace Support.
  67.  *
  68.  * Revision 1.3  2002/10/18 16:52:14  peiyongz
  69.  * Patch to Bug#13640: Getter methods not public in
  70.  *                                    DecimalDatatypeValidator
  71.  *
  72.  * Revision 1.2  2002/02/14 15:17:31  peiyongz
  73.  * getEnumString()
  74.  *
  75.  * Revision 1.1.1.1  2002/02/01 22:22:39  peiyongz
  76.  * sane_include
  77.  *
  78.  * Revision 1.3  2001/11/22 20:23:20  peiyongz
  79.  * _declspec(dllimport) and inline warning C4273
  80.  *
  81.  * Revision 1.2  2001/11/12 20:37:57  peiyongz
  82.  * SchemaDateTimeException defined
  83.  *
  84.  * Revision 1.1  2001/10/01 16:13:56  peiyongz
  85.  * DTV Reorganization:new classes: AbstractNumericFactValidator/ AbstractNumericValidator
  86.  *
  87.  */
  88. #if !defined(ABSTRACT_NUMERIC_FACET_VALIDATOR_HPP)
  89. #define ABSTRACT_NUMERIC_FACET_VALIDATOR_HPP
  90. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  91. #include <xercesc/util/RefArrayVectorOf.hpp>
  92. #include <xercesc/util/XMLNumber.hpp>
  93. XERCES_CPP_NAMESPACE_BEGIN
  94. class VALIDATORS_EXPORT AbstractNumericFacetValidator : public DatatypeValidator
  95. {
  96. public:
  97.     // -----------------------------------------------------------------------
  98.     //  Public ctor/dtor
  99.     // -----------------------------------------------------------------------
  100. /** @name Constructor. */
  101.     //@{
  102.     virtual ~AbstractNumericFacetValidator();
  103. //@}
  104. virtual const RefArrayVectorOf<XMLCh>* getEnumString() const;
  105. protected:
  106.     AbstractNumericFacetValidator
  107.     (
  108.         DatatypeValidator* const baseValidator
  109.         , RefHashTableOf<KVStringPair>* const facets
  110.         , const int finalSet
  111.         , const ValidatorType type
  112.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  113.     );
  114.     void init(RefArrayVectorOf<XMLCh>*  const enums);
  115.     //
  116.     // Abstract interface
  117.     //
  118.     virtual void assignAdditionalFacet(const XMLCh* const key
  119.                                      , const XMLCh* const value) = 0;
  120.     virtual void inheritAdditionalFacet() = 0;
  121.     virtual void checkAdditionalFacetConstraints() const = 0;
  122.     virtual void checkAdditionalFacetConstraintsBase() const = 0;
  123.     virtual int  compareValues(const XMLNumber* const lValue
  124.                              , const XMLNumber* const rValue) = 0;
  125.     virtual void checkContent(const XMLCh* const content
  126.                             , bool               asBase) = 0;
  127. // -----------------------------------------------------------------------
  128. // Setter methods
  129. // -----------------------------------------------------------------------
  130.     virtual void  setMaxInclusive(const XMLCh* const) = 0;
  131.     virtual void  setMaxExclusive(const XMLCh* const) = 0;
  132.     virtual void  setMinInclusive(const XMLCh* const) = 0;
  133.     virtual void  setMinExclusive(const XMLCh* const) = 0;
  134.     virtual void  setEnumeration() = 0;
  135.     static const int INDETERMINATE;
  136. public:
  137. // -----------------------------------------------------------------------
  138. // Getter methods
  139. // -----------------------------------------------------------------------
  140.     inline XMLNumber* const            getMaxInclusive() const;
  141.     inline XMLNumber* const            getMaxExclusive() const;
  142.     inline XMLNumber* const            getMinInclusive() const;
  143.     inline XMLNumber* const            getMinExclusive() const;
  144.     inline RefVectorOf<XMLNumber>*     getEnumeration() const;
  145. protected:
  146.     // -----------------------------------------------------------------------
  147.     //  Protected data members
  148.     //
  149.     //      Allow access to derived class
  150.     //
  151.     // -----------------------------------------------------------------------
  152.     bool                     fMaxInclusiveInherited;
  153.     bool                     fMaxExclusiveInherited;
  154.     bool                     fMinInclusiveInherited;
  155.     bool                     fMinExclusiveInherited;
  156.     bool                     fEnumerationInherited;
  157.     XMLNumber*               fMaxInclusive;
  158.     XMLNumber*               fMaxExclusive;
  159.     XMLNumber*               fMinInclusive;
  160.     XMLNumber*               fMinExclusive;
  161.     RefVectorOf<XMLNumber>*  fEnumeration;    // save the actual value
  162.     RefArrayVectorOf<XMLCh>*      fStrEnumeration;
  163. private:
  164.     void assignFacet();
  165.     void inspectFacet();
  166.     void inspectFacetBase();
  167.     void inheritFacet();
  168. };
  169. // -----------------------------------------------------------------------
  170. // Getter methods
  171. // -----------------------------------------------------------------------
  172. inline XMLNumber* const AbstractNumericFacetValidator::getMaxInclusive() const
  173. {
  174.     return fMaxInclusive;
  175. }
  176. inline XMLNumber* const AbstractNumericFacetValidator::getMaxExclusive() const
  177. {
  178.     return fMaxExclusive;
  179. }
  180. inline XMLNumber* const AbstractNumericFacetValidator::getMinInclusive() const
  181. {
  182.     return fMinInclusive;
  183. }
  184. inline XMLNumber* const AbstractNumericFacetValidator::getMinExclusive() const
  185. {
  186.     return fMinExclusive;
  187. }
  188. inline RefVectorOf<XMLNumber>* AbstractNumericFacetValidator::getEnumeration() const
  189. {
  190.     return fEnumeration;
  191. }
  192. XERCES_CPP_NAMESPACE_END
  193. #endif
  194. /**
  195.   * End of file AbstractNumericFacetValidator.hpp
  196.   */