RangeTokenMap.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: RangeTokenMap.hpp,v 1.3 2001/10/23 23:13:41 peiyongz Exp $
  58.  */
  59. #if !defined(RANGETOKENMAP_HPP)
  60. #define RANGETOKENMAP_HPP
  61. // ---------------------------------------------------------------------------
  62. //  Includes
  63. // ---------------------------------------------------------------------------
  64. #include <util/StringPool.hpp>
  65. #include <util/Mutexes.hpp>
  66. // ---------------------------------------------------------------------------
  67. //  Forward Declaration
  68. // ---------------------------------------------------------------------------
  69. class RangeToken;
  70. class RangeFactory;
  71. class TokenFactory;
  72. class XMLUTIL_EXPORT RangeTokenElemMap {
  73. public:
  74.     RangeTokenElemMap(unsigned int categoryId);
  75.     ~RangeTokenElemMap();
  76.     // -----------------------------------------------------------------------
  77.     //  Getter methods
  78.     // -----------------------------------------------------------------------
  79. unsigned int getCategoryId() const;
  80. RangeToken*  getRangeToken(const bool complement = false) const;
  81. // -----------------------------------------------------------------------
  82.     //  Setter methods
  83.     // -----------------------------------------------------------------------
  84. void setRangeToken(RangeToken* const tok, const bool complement = false);
  85. void setCategoryId(const unsigned int categId);
  86. private:
  87.     // -----------------------------------------------------------------------
  88.     //  Unimplemented constructors and operators
  89.     // -----------------------------------------------------------------------
  90.     RangeTokenElemMap(const RangeTokenElemMap&);
  91.     void operator=(const RangeTokenElemMap&);
  92.     // Data members
  93.     unsigned int fCategoryId;
  94.     RangeToken*  fRange;
  95.     RangeToken*  fNRange;
  96. };
  97. class XMLUTIL_EXPORT RangeTokenMap {
  98. public:
  99. // -----------------------------------------------------------------------
  100.     //  Constructors and destructors
  101.     // -----------------------------------------------------------------------
  102.     virtual ~RangeTokenMap();
  103.     // -----------------------------------------------------------------------
  104.     //  Putter methods
  105.     // -----------------------------------------------------------------------
  106.     void addCategory(const XMLCh* const categoryName);
  107. void addRangeMap(const XMLCh* const categoryName,
  108.                      RangeFactory* const rangeFactory);
  109.     void addKeywordMap(const XMLCh* const keyword,
  110.                        const XMLCh* const categoryName);
  111.     // -----------------------------------------------------------------------
  112.     //  Instance methods
  113.     // -----------------------------------------------------------------------
  114. static RangeTokenMap* instance();
  115.     // -----------------------------------------------------------------------
  116.     //  Setter methods
  117.     // -----------------------------------------------------------------------
  118. void setRangeToken(const XMLCh* const keyword, RangeToken* const tok,
  119.                        const bool complement = false);
  120.     // -----------------------------------------------------------------------
  121.     //  Getter methods
  122.     // -----------------------------------------------------------------------
  123. TokenFactory* getTokenFactory() const;
  124. // -----------------------------------------------------------------------
  125.     //  Notification that lazy data has been deleted
  126.     // -----------------------------------------------------------------------
  127. static void reinitInstance();
  128. protected:
  129.     // -----------------------------------------------------------------------
  130.     //  Constructor and destructors
  131.     // -----------------------------------------------------------------------
  132.     RangeTokenMap();
  133.     // -----------------------------------------------------------------------
  134.     //  Getter methods
  135.     // -----------------------------------------------------------------------
  136.     /*
  137.      *  Gets a commonly used RangeToken from the token registry based on the
  138.      *  range name - Called by TokenFactory.
  139.      */
  140.  RangeToken* getRange(const XMLCh* const name,
  141.                           const bool complement = false);
  142.      RefHashTableOf<RangeTokenElemMap>* getTokenRegistry() const;
  143.      RefHashTableOf<RangeFactory>* getRangeMap() const;
  144.  XMLStringPool* getCategories() const;
  145. private:
  146. // -----------------------------------------------------------------------
  147.     //  Unimplemented constructors and operators
  148.     // -----------------------------------------------------------------------
  149.     RangeTokenMap(const RangeTokenMap&);
  150.     void operator=(const RangeTokenMap&);
  151.     // -----------------------------------------------------------------------
  152.     //  Private Helpers methods
  153.     // -----------------------------------------------------------------------
  154.     /*
  155.      *  Initializes the registry with a set of commonly used RangeToken
  156.      *  objects.
  157.      */
  158.      void initializeRegistry();
  159.  friend class TokenFactory;
  160.     // -----------------------------------------------------------------------
  161.     //  Private data members
  162.     //
  163.     //  fTokenRegistry
  164.     //      Contains a set of commonly used tokens
  165. //
  166.     //  fRangeMap
  167.     //      Contains a map between a category name and a RangeFactory object.
  168.     //
  169.     //  fCategories
  170.     //      Contains range categories names
  171.     //
  172.     //  fTokenFactory
  173.     //      Token factory object
  174.     //
  175.     //  fInstance
  176.     //      A RangeTokenMap instance
  177.     //
  178.     //  fMutex
  179.     //      A mutex object for synchronization
  180.     // -----------------------------------------------------------------------
  181.     bool                               fRegistryInitialized;
  182.     RefHashTableOf<RangeTokenElemMap>* fTokenRegistry;
  183.     RefHashTableOf<RangeFactory>*      fRangeMap;
  184. XMLStringPool*                     fCategories;
  185.     TokenFactory*                      fTokenFactory;
  186.     XMLMutex                           fMutex;
  187.     static RangeTokenMap*              fInstance;
  188. };
  189. // ---------------------------------------------------------------------------
  190. //  RangeTokenElemMap: Getter methods
  191. // ---------------------------------------------------------------------------
  192. inline unsigned int RangeTokenElemMap::getCategoryId() const {
  193.     return fCategoryId;
  194. }
  195. inline RangeToken* RangeTokenElemMap::getRangeToken(const bool complement) const {
  196. return complement ? fNRange : fRange;
  197. }
  198. // ---------------------------------------------------------------------------
  199. //  RangeTokenElemMap: Setter methods
  200. // ---------------------------------------------------------------------------
  201. inline void RangeTokenElemMap::setCategoryId(const unsigned int categId) {
  202.     fCategoryId = categId;
  203. }
  204. inline void RangeTokenElemMap::setRangeToken(RangeToken* const tok,
  205.                                       const bool complement) {
  206.     if (complement)
  207.         fNRange = tok;
  208. else
  209.         fRange = tok;
  210. }
  211. // ---------------------------------------------------------------------------
  212. //  RangeTokenMap: Getter methods
  213. // ---------------------------------------------------------------------------
  214. inline RefHashTableOf<RangeTokenElemMap>* RangeTokenMap::getTokenRegistry() const {
  215.     return fTokenRegistry;
  216. }
  217. inline RefHashTableOf<RangeFactory>* RangeTokenMap::getRangeMap() const {
  218.     return fRangeMap;
  219. }
  220. inline XMLStringPool* RangeTokenMap::getCategories() const {
  221.     return fCategories;
  222. }
  223. inline TokenFactory* RangeTokenMap::getTokenFactory() const {
  224.     return fTokenFactory;
  225. }
  226. #endif
  227. /**
  228.   * End file RangeToken.hpp
  229.   */