DatatypeValidatorFactory.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: DatatypeValidatorFactory.hpp,v 1.10 2003/05/22 02:10:52 knoaman Exp $
  58.  */
  59. #if !defined(DATATYPEVALIDATORFACTORY_HPP)
  60. #define DATATYPEVALIDATORFACTORY_HPP
  61. /**
  62.  * This class implements a factory of Datatype Validators. Internally the
  63.  * DatatypeValidators are kept in a registry.
  64.  * There is one instance of DatatypeValidatorFactory per Parser.
  65.  * There is one datatype Registry per instance of DatatypeValidatorFactory,
  66.  * such registry is first allocated with the number DatatypeValidators needed.
  67.  * e.g.
  68.  * If Parser finds an XML document with a DTD, a registry of DTD validators (only
  69.  * 9 validators) get initialized in the registry.
  70.  * The initialization process consist of instantiating the Datatype and
  71.  * facets and registering the Datatype into registry table.
  72.  * This implementation uses a Hahtable as a registry. The datatype validators created
  73.  * by the factory will be deleted by the registry.
  74.  *
  75.  * As the Parser parses an instance document it knows if validation needs
  76.  * to be checked. If no validation is necesary we should not instantiate a
  77.  * DatatypeValidatorFactory.
  78.  * If validation is needed, we need to instantiate a DatatypeValidatorFactory.
  79.  */
  80. // ---------------------------------------------------------------------------
  81. //  Includes
  82. // ---------------------------------------------------------------------------
  83. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  84. #include <xercesc/util/RefVectorOf.hpp>
  85. XERCES_CPP_NAMESPACE_BEGIN
  86. // ---------------------------------------------------------------------------
  87. //  DatatypeValidatorFactory: Local declaration
  88. // ---------------------------------------------------------------------------
  89. typedef RefHashTableOf<KVStringPair> KVStringPairHashTable;
  90. typedef RefHashTableOf<DatatypeValidator> DVHashTable;
  91. typedef RefArrayVectorOf<XMLCh> XMLChRefVector;
  92. class VALIDATORS_EXPORT DatatypeValidatorFactory : public XMemory
  93. {
  94. public:
  95.     // -----------------------------------------------------------------------
  96.     //  Public Constructors and Destructor
  97.     // -----------------------------------------------------------------------
  98.     /** @name Constructors */
  99.     //@{
  100.     DatatypeValidatorFactory
  101.     (
  102.         MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  103.     );
  104.     //@}
  105.     /** @name Destructor. */
  106.     //@{
  107.     ~DatatypeValidatorFactory();
  108.     //@}
  109.     // -----------------------------------------------------------------------
  110.     // Getter methods
  111.     // -----------------------------------------------------------------------
  112.     /** @name Getter Functions */
  113.     //@{
  114.     /**
  115.      * Returns the datatype validator
  116.      *
  117.      * @param  dvType   Datatype validator name/type
  118.      */
  119.     DatatypeValidator* getDatatypeValidator(const XMLCh* const dvType) const;
  120.     /**
  121.      * Returns the user defined registry of types
  122.      **/
  123.     DVHashTable* getUserDefinedRegistry() const;
  124.     /**
  125.      * Returns the built in  registry of types
  126.      **/
  127.     DVHashTable* getBuiltInRegistry() const;
  128.     //@}
  129.     // -----------------------------------------------------------------------
  130.     // Registry Initialization methods
  131.     // -----------------------------------------------------------------------
  132.     /** @name Registry Initialization Functions */
  133.     //@{
  134.     /**
  135.      * Initializes registry with primitive and derived Simple types.
  136.      *
  137.      * This method does not clear the registry to clear the registry you
  138.      * have to call resetRegistry.
  139.      *
  140.      * The net effect of this method is to start with the smallest set of
  141.      * datatypes needed by the validator.
  142.      *
  143.      * If we start with Schema's then we initialize to full set of
  144.      * validators.
  145.      */
  146.     void expandRegistryToFullSchemaSet();
  147.     //@}
  148.     // -----------------------------------------------------------------------
  149.     // Validator Factory methods
  150.     // -----------------------------------------------------------------------
  151.     /** @name Validator Factory Functions */
  152.     //@{
  153.     /**
  154.      * Creates a new datatype validator of type baseValidator's class and
  155.      * adds it to the registry
  156.      *
  157.      * @param  typeName        Datatype validator name
  158.      *
  159.      * @param  baseValidator   Base datatype validator
  160.      *
  161.      * @param  facets          datatype facets if any
  162.      *
  163.      * @param  enums           vector of values for enum facet
  164.      *
  165.      * @param  isDerivedByList Indicates whether the datatype is derived by
  166.      *                         list or not
  167.      *
  168.      * @param  finalSet       'final' values of the simpleType
  169.      *
  170.      * @param  isUserDefined  Indicates whether the datatype is built-in or
  171.      *                        user defined
  172.      */
  173.     DatatypeValidator* createDatatypeValidator
  174.     (
  175.         const XMLCh* const                    typeName
  176.         , DatatypeValidator* const            baseValidator
  177.         , RefHashTableOf<KVStringPair>* const facets
  178.         , RefArrayVectorOf<XMLCh>* const      enums
  179.         , const bool                          isDerivedByList
  180.         , const int                           finalSet = 0
  181.         , const bool                          isUserDefined = true
  182.     );
  183.     /**
  184.      * Creates a new datatype validator of type UnionDatatypeValidator and
  185.      * adds it to the registry
  186.      *
  187.      * @param  typeName       Datatype validator name
  188.      *
  189.      * @param  validators     Vector of datatype validators
  190.      *
  191.      * @param  finalSet       'final' values of the simpleType
  192.      *
  193.      * @param  isUserDefined  Indicates whether the datatype is built-in or
  194.      *                        user defined
  195.      */
  196.     DatatypeValidator* createDatatypeValidator
  197.     (
  198.           const XMLCh* const                    typeName
  199.         , RefVectorOf<DatatypeValidator>* const validators
  200.         , const int                             finalSet
  201.         , const bool                            isUserDefined = true
  202.     );
  203.     //@}
  204.     /**
  205.       * Reset datatype validator registry
  206.       */
  207.     void resetRegistry();
  208.     // -----------------------------------------------------------------------
  209.     //  Notification that lazy data has been deleted
  210.     // -----------------------------------------------------------------------
  211.     static void reinitRegistry();
  212. private:
  213.     // -----------------------------------------------------------------------
  214.     //  CleanUp methods
  215.     // -----------------------------------------------------------------------
  216.     void cleanUp();
  217.     // -----------------------------------------------------------------------
  218.     //  Private data members
  219.     //
  220.     //  fUserDefinedRegistry
  221.     //      This is a hashtable of user defined dataype validators.
  222.     //
  223.     //  fBuiltInRegistry
  224.     //      This is a hashtable of built-in primitive datatype validators.
  225.     // -----------------------------------------------------------------------
  226.     XERCES_CPP_NAMESPACE_QUALIFIER RefHashTableOf<XERCES_CPP_NAMESPACE_QUALIFIER DatatypeValidator>*        fUserDefinedRegistry;
  227.     static XERCES_CPP_NAMESPACE_QUALIFIER RefHashTableOf<DatatypeValidator>* fBuiltInRegistry;
  228.     XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager* const fMemoryManager;
  229.     friend class XPath2ContextImpl;
  230. };
  231. inline DatatypeValidator*
  232. DatatypeValidatorFactory::getDatatypeValidator(const XMLCh* const dvType) const
  233. {
  234. if (dvType) {
  235.         if (fBuiltInRegistry && fBuiltInRegistry->containsKey(dvType)) {
  236.     return fBuiltInRegistry->get(dvType);
  237.         }
  238.         if (fUserDefinedRegistry && fUserDefinedRegistry->containsKey(dvType)) {
  239.     return fUserDefinedRegistry->get(dvType);
  240.         }
  241.     }
  242. return 0;
  243. }
  244. inline DVHashTable*
  245. DatatypeValidatorFactory::getUserDefinedRegistry() const {
  246.     return fUserDefinedRegistry;
  247. }
  248. inline DVHashTable*
  249. DatatypeValidatorFactory::getBuiltInRegistry() const {
  250.     return fBuiltInRegistry;
  251. }
  252. // ---------------------------------------------------------------------------
  253. //  DatatypeValidator: CleanUp methods
  254. // ---------------------------------------------------------------------------
  255. inline void DatatypeValidatorFactory::cleanUp() {
  256. delete fUserDefinedRegistry;
  257. fUserDefinedRegistry = 0;
  258. }
  259. XERCES_CPP_NAMESPACE_END
  260. #endif
  261. /**
  262.   * End of file DatatypeValidatorFactory.hpp
  263.   */