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

xml/soap/webservice

开发平台:

C/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: UnionDatatypeValidator.hpp,v 1.8 2001/09/05 20:49:10 knoaman Exp $
  58.  * $Log: UnionDatatypeValidator.hpp,v $
  59.  * Revision 1.8  2001/09/05 20:49:10  knoaman
  60.  * Fix for complexTypes with mixed content model.
  61.  *
  62.  * Revision 1.7  2001/08/31 16:53:41  knoaman
  63.  * Misc. fixes.
  64.  *
  65.  * Revision 1.6  2001/08/24 17:12:01  knoaman
  66.  * Add support for anySimpleType.
  67.  * Remove parameter 'baseValidator' from the virtual method 'newInstance'.
  68.  *
  69.  * Revision 1.5  2001/08/21 20:05:41  peiyongz
  70.  * put back changes introduced in 1.3
  71.  *
  72.  * Revision 1.3  2001/08/16 14:41:38  knoaman
  73.  * implementation of virtual methods.
  74.  *
  75.  * Revision 1.2  2001/07/24 21:23:40  tng
  76.  * Schema: Use DatatypeValidator for ID/IDREF/ENTITY/ENTITIES/NOTATION.
  77.  *
  78.  * Revision 1.1  2001/07/13 14:10:40  peiyongz
  79.  * UnionDTV
  80.  *
  81.  */
  82. #if !defined(UNION_DATATYPEVALIDATOR_HPP)
  83. #define UNION_DATATYPEVALIDATOR_HPP
  84. #include <validators/datatype/DatatypeValidator.hpp>
  85. #include <validators/schema/SchemaSymbols.hpp>
  86. class VALIDATORS_EXPORT UnionDatatypeValidator : public DatatypeValidator
  87. {
  88. public:
  89.     // -----------------------------------------------------------------------
  90.     //  Public ctor/dtor
  91.     // -----------------------------------------------------------------------
  92. /** @name Constructor. */
  93.     //@{
  94.     UnionDatatypeValidator();
  95.     //
  96.     // constructor for native Union datatype validator
  97.     // <simpleType name="nativeUnion">
  98.     //      <union   memberTypes="member1 member2 ...">
  99.     // </simpleType>
  100.     //
  101.     UnionDatatypeValidator(RefVectorOf<DatatypeValidator>* const memberTypeValidators
  102.                          , const int                             finalSet);
  103.     //
  104.     // constructor for derived Union datatype validator
  105.     // <simpleType name="derivedUnion">
  106.     //      <restriction base="nativeUnion">
  107.     //          <pattern     value="patter_value"/>
  108.     //          <enumeartion value="enum_value"/>
  109.     //      </restriction>
  110.     // </simpleType>
  111.     //
  112.     UnionDatatypeValidator(DatatypeValidator*            const baseValidator
  113.                          , RefHashTableOf<KVStringPair>* const facets
  114.                          , RefVectorOf<XMLCh>*           const enums
  115.                          , const int                           finalSet);
  116.     virtual ~UnionDatatypeValidator();
  117. //@}
  118.     // -----------------------------------------------------------------------
  119.     // Getter methods
  120.     // -----------------------------------------------------------------------
  121.     /** @name Getter Functions */
  122.     //@{
  123.     /**
  124.       * Returns whether the type is atomic or not
  125.       */
  126.     virtual bool isAtomic() const;
  127.     //@}
  128.     // -----------------------------------------------------------------------
  129.     // Validation methods
  130.     // -----------------------------------------------------------------------
  131.     /** @name Validation Function */
  132.     //@{
  133.     /**
  134.      * validate that a string matches the boolean datatype
  135.      * @param content A string containing the content to be validated
  136.      *
  137.      * @exception throws InvalidDatatypeException if the content is
  138.      * is not valid.
  139.      */
  140. void validate(const XMLCh* const content);
  141.     /**
  142.       * Checks whether a given type can be used as a substitute
  143.       *
  144.       * @param  toCheck    A datatype validator of the type to be used as a
  145.       *                    substitute
  146.       *
  147.       * To be redefined in UnionDatatypeValidator
  148.       */
  149.     virtual bool isSubstitutableBy(const DatatypeValidator* const toCheck);
  150.     //@}
  151.     // -----------------------------------------------------------------------
  152.     // Compare methods
  153.     // -----------------------------------------------------------------------
  154.     /** @name Compare Function */
  155.     //@{
  156.     /**
  157.      * Compare two boolean data types
  158.      *
  159.      * @param content1
  160.      * @param content2
  161.      * @return
  162.      */
  163.     int compare(const XMLCh* const, const XMLCh* const);
  164.     //@}
  165.     /**
  166.       * Returns an instance of the base datatype validator class
  167.   * Used by the DatatypeValidatorFactory.
  168.       */
  169.     DatatypeValidator* newInstance(RefHashTableOf<KVStringPair>* const facets
  170.                                  , RefVectorOf<XMLCh>*           const enums
  171.                                  , const int                           finalSet);
  172.     RefVectorOf<DatatypeValidator>* getMemberTypeValidators() const;
  173. private:
  174.     void checkContent(const XMLCh* const content, bool asBase);
  175.     void init(DatatypeValidator*            const baseValidator
  176.             , RefHashTableOf<KVStringPair>* const facets
  177.             , RefVectorOf<XMLCh>*           const enums);
  178.     void cleanUp();
  179.     RefVectorOf<XMLCh>*  getEnumeration() const;
  180.     void                 setEnumeration(RefVectorOf<XMLCh>*, bool);
  181.     // -----------------------------------------------------------------------
  182.     //  Private data members
  183.     //
  184.     //  fEnumeration
  185.     //      we own it.
  186.     //
  187.     //  fMemberTypeValidators
  188.     //      we own it.
  189.     //
  190.     // -----------------------------------------------------------------------
  191.      bool                 fEnumerationInherited;
  192.      RefVectorOf<XMLCh>*  fEnumeration;
  193.      RefVectorOf<DatatypeValidator>*  fMemberTypeValidators;
  194. };
  195. inline DatatypeValidator* UnionDatatypeValidator::newInstance(
  196.                                       RefHashTableOf<KVStringPair>* const facets
  197.                                     , RefVectorOf<XMLCh>*           const enums
  198.                                     , const int                           finalSet)
  199. {
  200.     return (DatatypeValidator*) new UnionDatatypeValidator(this, facets, enums, finalSet);
  201. }
  202. inline void UnionDatatypeValidator::validate( const XMLCh* const content)
  203. {
  204.     checkContent(content, false);
  205. }
  206. inline void UnionDatatypeValidator::cleanUp()
  207. {
  208.     //~RefVectorOf will delete all adopted elements
  209.     if (fEnumeration && !fEnumerationInherited)
  210.         delete fEnumeration;
  211.     if (fMemberTypeValidators)
  212.         delete fMemberTypeValidators;
  213. }
  214. inline RefVectorOf<XMLCh>* UnionDatatypeValidator:: getEnumeration() const
  215. {
  216.     return fEnumeration;
  217. }
  218. inline void UnionDatatypeValidator::setEnumeration(RefVectorOf<XMLCh>* enums
  219.                                                  , bool                inherited)
  220. {
  221.     if (enums)
  222.     {
  223.         if (fEnumeration && !fEnumerationInherited)
  224.             delete fEnumeration;
  225.         fEnumeration = enums;
  226.         fEnumerationInherited = inherited;
  227.         setFacetsDefined(DatatypeValidator::FACET_ENUMERATION);
  228.     }
  229. }
  230. //
  231. // get the native UnionDTV's fMemberTypeValidators
  232. //
  233. inline
  234. RefVectorOf<DatatypeValidator>* UnionDatatypeValidator::getMemberTypeValidators() const
  235. {
  236.     UnionDatatypeValidator* thisdv = (UnionDatatypeValidator*)this; // cast away constness
  237.     while (thisdv->getBaseValidator())
  238.         thisdv = (UnionDatatypeValidator*) thisdv->getBaseValidator();
  239.     return thisdv->fMemberTypeValidators;
  240. }
  241. inline bool UnionDatatypeValidator::isAtomic() const {
  242.     RefVectorOf<DatatypeValidator>* memberDVs = getMemberTypeValidators();
  243.     if (!memberDVs) {
  244.         return false;
  245.     }
  246.     unsigned int memberSize = memberDVs->size();
  247.     for (unsigned int i=0; i < memberSize; i++) {
  248.         if (!memberDVs->elementAt(i)->isAtomic()) {
  249.             return false;
  250.         }
  251.     }
  252.     return true;
  253. }
  254. inline bool UnionDatatypeValidator::isSubstitutableBy(const DatatypeValidator* const toCheck) {
  255.     if (toCheck == this) {
  256.         return true;
  257.     }
  258.     unsigned int memberSize = fMemberTypeValidators->size();
  259.     for (unsigned int i=0; i < memberSize; i++) {
  260.         if (fMemberTypeValidators->elementAt(i)->isSubstitutableBy(toCheck)) {
  261.             return true;
  262.         }
  263.     }
  264.     return false;
  265. }
  266. /**
  267.   * End of file UnionDatatypeValidator.hpp
  268.   */
  269. #endif