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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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) 1999, 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.  * $Log: Iconv390TransService.hpp,v $
  58.  * Revision 1.6  2003/05/15 18:47:03  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.5  2003/03/07 18:15:57  tng
  62.  * Return a reference instead of void for operator=
  63.  *
  64.  * Revision 1.4  2003/01/06 21:46:08  tng
  65.  * Since 390 uses ICU or Uniconv390 TransService, change Iconv390 to use intrinsic transcoders only so as to bypass Bug 2393.
  66.  *
  67.  * Revision 1.3  2002/11/04 15:14:33  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/04/09 15:44:00  knoaman
  71.  * Add lower case string support.
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:36  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.3  2000/03/02 19:55:36  roddey
  77.  * This checkin includes many changes done while waiting for the
  78.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  79.  * available elsewhere.
  80.  *
  81.  * Revision 1.2  2000/02/14 17:59:49  abagchi
  82.  * Reused iconv descriptors
  83.  *
  84.  * Revision 1.1  2000/02/08 02:14:11  abagchi
  85.  * Initial checkin
  86.  *
  87.  *
  88.  */
  89. #ifndef ICONV390TRANSSERVICE_HPP
  90. #define ICONV390TRANSSERVICE_HPP
  91. #include <xercesc/util/TransService.hpp>
  92. #include <xercesc/util/Mutexes.hpp>
  93. #include <iconv.h>
  94. XERCES_CPP_NAMESPACE_BEGIN
  95. /* Max encoding name in characters. */
  96. #define UCNV_MAX_CONVERTER_NAME_LENGTH 60
  97. typedef struct iconvconverter {
  98.    struct iconvconverter *nextconverter;
  99.    char                   name [UCNV_MAX_CONVERTER_NAME_LENGTH];
  100.    XMLMutex               fMutex;
  101.    iconv_t                fIconv390Descriptor;
  102.    int                    usecount;
  103. } iconvconverter_t;
  104. class XMLUTIL_EXPORT Iconv390TransService : public XMLTransService
  105. {
  106. public :
  107.     // -----------------------------------------------------------------------
  108.     //  Constructors and Destructor
  109.     // -----------------------------------------------------------------------
  110.     Iconv390TransService();
  111.     ~Iconv390TransService();
  112.     // -----------------------------------------------------------------------
  113.     //  Implementation of the virtual transcoding service API
  114.     // -----------------------------------------------------------------------
  115.     virtual int compareIString
  116.     (
  117.         const   XMLCh* const    comp1
  118.         , const XMLCh* const    comp2
  119.     );
  120.     virtual int compareNIString
  121.     (
  122.         const   XMLCh* const    comp1
  123.         , const XMLCh* const    comp2
  124.         , const unsigned int    maxChars
  125.     );
  126.     virtual const XMLCh* getId() const;
  127.     virtual bool isSpace(const XMLCh toCheck) const;
  128.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  129.     virtual bool supportsSrcOfs() const;
  130.     virtual void upperCase(XMLCh* const toUpperCase) const;
  131.     virtual void lowerCase(XMLCh* const toLowerCase) const;
  132. protected :
  133.     // -----------------------------------------------------------------------
  134.     //  Protected virtual methods
  135.     // -----------------------------------------------------------------------
  136.     virtual XMLTranscoder* makeNewXMLTranscoder
  137.     (
  138.         const   XMLCh* const            encodingName
  139.         ,       XMLTransService::Codes& resValue
  140.         , const unsigned int            blockSize
  141.         ,       MemoryManager* const    manager
  142.     );
  143. private :
  144.     // -----------------------------------------------------------------------
  145.     //  Unimplemented constructors and operators
  146.     // -----------------------------------------------------------------------
  147.     Iconv390TransService(const Iconv390TransService&);
  148.     Iconv390TransService& operator=(const Iconv390TransService&);
  149. };
  150. class XMLUTIL_EXPORT Iconv390LCPTranscoder : public XMLLCPTranscoder
  151. {
  152. public :
  153.     // -----------------------------------------------------------------------
  154.     //  Constructors and Destructor
  155.     // -----------------------------------------------------------------------
  156.     Iconv390LCPTranscoder();
  157.     Iconv390LCPTranscoder(iconvconverter_t* const toAdopt);
  158.     ~Iconv390LCPTranscoder();
  159.     // -----------------------------------------------------------------------
  160.     //  Implementation of the virtual transcoder interface
  161.     // -----------------------------------------------------------------------
  162.     virtual unsigned int calcRequiredSize(const char* const srcText);
  163.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  164.     virtual char* transcode(const XMLCh* const toTranscode);
  165.     virtual char* transcode(const XMLCh* const toTranscode,
  166.                             MemoryManager* const manager);
  167.     virtual bool transcode
  168.     (
  169.         const   XMLCh* const    toTranscode
  170.         ,       char* const     toFill
  171.         , const unsigned int    maxBytes
  172.     );
  173.     virtual XMLCh* transcode(const char* const toTranscode);
  174.     virtual XMLCh* transcode(const char* const toTranscode,
  175.                              MemoryManager* const manager);
  176.     virtual bool transcode
  177.     (
  178.         const   char* const     toTranscode
  179.         ,       XMLCh* const    toFill
  180.         , const unsigned int    maxChars
  181.     );
  182. private :
  183.     // -----------------------------------------------------------------------
  184.     //  Unimplemented constructors and operators
  185.     // -----------------------------------------------------------------------
  186.     Iconv390LCPTranscoder(const Iconv390LCPTranscoder&);
  187.     Iconv390LCPTranscoder& operator=(const Iconv390LCPTranscoder&);
  188.     iconvconverter_t *converter;
  189. };
  190. XERCES_CPP_NAMESPACE_END
  191. #endif