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

词法分析

开发平台:

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: AbstractStringValidator.hpp,v 1.8 2003/05/15 18:53:26 knoaman Exp $
  58.  * $Log: AbstractStringValidator.hpp,v $
  59.  * Revision 1.8  2003/05/15 18:53:26  knoaman
  60.  * Partial implementation of the configurable memory manager.
  61.  *
  62.  * Revision 1.7  2003/01/27 19:24:17  peiyongz
  63.  * normalize Base64 data before checking against enumeration.
  64.  *
  65.  * Revision 1.6  2003/01/24 23:18:34  peiyongz
  66.  * normalizeEnumeration() added to remove optional ws in Base64 data.
  67.  *
  68.  * Revision 1.5  2002/12/18 14:17:55  gareth
  69.  * Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
  70.  *
  71.  * Revision 1.4  2002/11/04 14:53:27  tng
  72.  * C++ Namespace Support.
  73.  *
  74.  * Revision 1.3  2002/10/18 16:52:14  peiyongz
  75.  * Patch to Bug#13640: Getter methods not public in
  76.  *                                    DecimalDatatypeValidator
  77.  *
  78.  * Revision 1.2  2002/02/14 15:17:31  peiyongz
  79.  * getEnumString()
  80.  *
  81.  * Revision 1.1.1.1  2002/02/01 22:22:40  peiyongz
  82.  * sane_include
  83.  *
  84.  * Revision 1.9  2001/12/13 16:48:29  peiyongz
  85.  * Avoid dangling pointer
  86.  *
  87.  * Revision 1.8  2001/11/22 20:23:20  peiyongz
  88.  * _declspec(dllimport) and inline warning C4273
  89.  *
  90.  * Revision 1.7  2001/11/15 16:08:15  peiyongz
  91.  * checkContent() made virtual to allow ListDTV participate in the building of
  92.  * its own (in AbstractStringValidator's init())
  93.  *
  94.  * Revision 1.6  2001/10/11 19:32:12  peiyongz
  95.  * Allow derived to overwrite inheritFacet()
  96.  *
  97.  * Revision 1.5  2001/10/09 21:00:54  peiyongz
  98.  * . init() take 1 arg,
  99.  * . make inspectFacetBase() virtual to allow ListDTV provide its own method,
  100.  * . reorganize init() into assignFacet(), inspectFacet(), inspectFacetBase() and
  101.  * inheritFacet() to improve mantainability.
  102.  * . macro to simplify code
  103.  * . save get***() to temp vars
  104.  *
  105.  * Revision 1.4  2001/09/27 13:51:25  peiyongz
  106.  * DTV Reorganization: ctor/init created to be used by derived class
  107.  *
  108.  * Revision 1.3  2001/09/24 15:30:16  peiyongz
  109.  * DTV Reorganization: init() to be invoked from derived class' ctor to allow
  110.  *        correct resolution of virtual methods like assignAdditionalFacet(),
  111.  *        inheritAdditionalFacet(), etc.
  112.  *
  113.  * Revision 1.2  2001/09/19 18:48:27  peiyongz
  114.  * DTV reorganization:getLength() added, move inline to class declaration to avoid inline
  115.  * function interdependency.
  116.  *
  117.  * Revision 1.1  2001/09/18 14:45:04  peiyongz
  118.  * DTV reorganization
  119.  *
  120.  */
  121. #if !defined(ABSTRACT_STRING_VALIDATOR_HPP)
  122. #define ABSTRACT_STRING_VALIDATOR_HPP
  123. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  124. XERCES_CPP_NAMESPACE_BEGIN
  125. class VALIDATORS_EXPORT AbstractStringValidator : public DatatypeValidator
  126. {
  127. public:
  128.     // -----------------------------------------------------------------------
  129.     //  Public ctor/dtor
  130.     // -----------------------------------------------------------------------
  131. /** @name Constructor. */
  132.     //@{
  133.     virtual ~AbstractStringValidator();
  134. //@}
  135. virtual const RefArrayVectorOf<XMLCh>* getEnumString() const;
  136.     // -----------------------------------------------------------------------
  137.     // Validation methods
  138.     // -----------------------------------------------------------------------
  139.     /** @name Validation Function */
  140.     //@{
  141.     /**
  142.      * validate that a string matches the boolean datatype
  143.      * @param content A string containing the content to be validated
  144.      *
  145.      * @exception throws InvalidDatatypeException if the content is
  146.      * is not valid.
  147.      */
  148. virtual void validate(const XMLCh* const content);
  149.     //@}
  150.     // -----------------------------------------------------------------------
  151.     // Compare methods
  152.     // -----------------------------------------------------------------------
  153.     /** @name Compare Function */
  154.     //@{
  155.     virtual int compare(const XMLCh* const, const XMLCh* const);
  156.     //@}
  157. protected:
  158.     AbstractStringValidator
  159.     (
  160.         DatatypeValidator* const baseValidator
  161.         , RefHashTableOf<KVStringPair>* const facets
  162.         , const int finalSet
  163.         , const ValidatorType type
  164.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  165.     );
  166.     void init(RefArrayVectorOf<XMLCh>*           const enums);
  167.     //
  168.     // Abstract interface
  169.     //
  170.     virtual void assignAdditionalFacet(const XMLCh* const key
  171.                                      , const XMLCh* const value) = 0;
  172.     virtual void inheritAdditionalFacet() = 0;
  173.     virtual void checkAdditionalFacetConstraints() const = 0;
  174.     virtual void checkAdditionalFacet(const XMLCh* const content) const = 0;
  175.     virtual void checkValueSpace(const XMLCh* const content) = 0;
  176.     virtual int  getLength(const XMLCh* const content) const = 0;
  177.     //
  178.     //   to Allow ListDTV to overwrite
  179.     //
  180.     virtual void inspectFacetBase();
  181.     virtual void inheritFacet();
  182.     virtual void checkContent(const XMLCh* const content, bool asBase);
  183.     /*
  184.      **  Base64BinaryDatatypeValidator to overwrite
  185.      */
  186.     virtual void normalizeEnumeration();
  187.     virtual void normalizeContent(XMLCh* const) const;
  188. public:
  189. // -----------------------------------------------------------------------
  190. // Getter methods
  191. // -----------------------------------------------------------------------
  192.     inline unsigned int         getLength() const;
  193.     inline unsigned int         getMaxLength() const;
  194.     inline unsigned int         getMinLength() const;
  195.     inline RefArrayVectorOf<XMLCh>*  getEnumeration() const;
  196. protected:
  197. // -----------------------------------------------------------------------
  198. // Setter methods
  199. // -----------------------------------------------------------------------
  200.     inline void                 setLength(unsigned int);
  201.     inline void                 setMaxLength(unsigned int);
  202.     inline void                 setMinLength(unsigned int);
  203.     inline void                 setEnumeration(RefArrayVectorOf<XMLCh>*, bool);
  204. private:
  205.     void assignFacet();
  206.     void inspectFacet();
  207.     // -----------------------------------------------------------------------
  208.     //  Private data members
  209.     //
  210.     // -----------------------------------------------------------------------
  211.      unsigned int         fLength;
  212.      unsigned int         fMaxLength;
  213.      unsigned int         fMinLength;
  214.      bool                 fEnumerationInherited;
  215.      RefArrayVectorOf<XMLCh>*  fEnumeration;
  216. };
  217. // -----------------------------------------------------------------------
  218. // Getter methods
  219. // -----------------------------------------------------------------------
  220. inline unsigned int AbstractStringValidator::getLength() const
  221. {
  222.     return fLength;
  223. }
  224. inline unsigned int AbstractStringValidator::getMaxLength() const
  225. {
  226.     return fMaxLength;
  227. }
  228. inline unsigned int AbstractStringValidator::getMinLength() const
  229. {
  230.     return fMinLength;
  231. }
  232. inline RefArrayVectorOf<XMLCh>* AbstractStringValidator:: getEnumeration() const
  233. {
  234.     return fEnumeration;
  235. }
  236. // -----------------------------------------------------------------------
  237. // Setter methods
  238. // -----------------------------------------------------------------------
  239. inline void AbstractStringValidator::setLength(unsigned int newLength)
  240. {
  241.     fLength = newLength;
  242. }
  243. inline void AbstractStringValidator::setMaxLength(unsigned int newMaxLength)
  244. {
  245.     fMaxLength = newMaxLength;
  246. }
  247. inline void AbstractStringValidator::setMinLength(unsigned int newMinLength)
  248. {
  249.     fMinLength = newMinLength;
  250. }
  251. inline void AbstractStringValidator::setEnumeration(RefArrayVectorOf<XMLCh>* enums
  252.                                            , bool                inherited)
  253. {
  254.     if (enums)
  255.     {
  256.         if ( !fEnumerationInherited && fEnumeration)
  257.             delete fEnumeration;
  258.         fEnumeration = enums;
  259.         fEnumerationInherited = inherited;
  260.         setFacetsDefined(DatatypeValidator::FACET_ENUMERATION);
  261.     }
  262. }
  263. XERCES_CPP_NAMESPACE_END
  264. #endif
  265. /**
  266.   * End of file AbstractStringValidator.hpp
  267.   */