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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 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.  * $Id: Uniconv390TransService.hpp,v 1.4 2003/05/17 16:32:18 knoaman Exp $
  58.  */
  59. #ifndef UNICONV390TRANSSERVICE_HPP
  60. #define UNICONV390TRANSSERVICE_HPP
  61. #include <xercesc/util/Mutexes.hpp>
  62. #include <xercesc/util/TransService.hpp>
  63. #include <xercesc/util/Transcoders/ICU/ICUTransService.hpp>
  64. #include "uniconv.h"
  65. XERCES_CPP_NAMESPACE_BEGIN
  66. typedef struct uniconvconverter {
  67.    XMLMutex               fMutex;
  68.    uniconv_t                fIconv390DescriptorFrom;
  69.    uniconv_t                fIconv390DescriptorTo;
  70. } uniconvconverter_t;
  71. typedef struct uniconvcaseconverter {
  72.    XMLMutex  fcaseMutex;
  73.    uniconv_t ftoupperhand;
  74.    uniconv_t ftolowerhand;
  75. } uniconvcaseconverter_t;
  76. class XMLUTIL_EXPORT Uniconv390TransService : public XMLTransService
  77. {
  78. public :
  79.     // -----------------------------------------------------------------------
  80.     //  Constructors and Destructor
  81.     // -----------------------------------------------------------------------
  82.     Uniconv390TransService();
  83.     ~Uniconv390TransService();
  84.     // -----------------------------------------------------------------------
  85.     //  Implementation of the virtual transcoding service API
  86.     // -----------------------------------------------------------------------
  87.     virtual int compareIString
  88.     (
  89.         const   XMLCh* const    comp1
  90.         , const XMLCh* const    comp2
  91.     );
  92.     virtual int compareNIString
  93.     (
  94.         const   XMLCh* const    comp1
  95.         , const XMLCh* const    comp2
  96.         , const unsigned int    maxChars
  97.     );
  98.     virtual const XMLCh* getId() const;
  99.     virtual bool isSpace(const XMLCh toCheck) const;
  100.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  101.     virtual bool supportsSrcOfs() const;
  102.     virtual void upperCase(XMLCh* const toUpperCase) const;
  103.     virtual void lowerCase(XMLCh* const toLowerCase) const;
  104. protected :
  105.     // -----------------------------------------------------------------------
  106.     //  Protected virtual methods
  107.     // -----------------------------------------------------------------------
  108.     virtual XMLTranscoder* makeNewXMLTranscoder
  109.     (
  110.         const   XMLCh* const            encodingName
  111.         ,       XMLTransService::Codes& resValue
  112.         , const unsigned int            blockSize
  113.         ,       MemoryManager* const    manager
  114.     );
  115. private :
  116.     // -----------------------------------------------------------------------
  117.     //  Unimplemented constructors and operators
  118.     // -----------------------------------------------------------------------
  119.     Uniconv390TransService(const Uniconv390TransService&);
  120.     Uniconv390TransService& operator=(const Uniconv390TransService&);
  121.     ICUTransService * fICUService;
  122.     XMLLCPTranscoder* fLCPTranscoder;
  123.     uniconvcaseconverter_t *fCaseConverter;
  124. };
  125. class XMLUTIL_EXPORT Uniconv390Transcoder : public XMLTranscoder
  126. {
  127. public :
  128.     // -----------------------------------------------------------------------
  129.     //  Constructors and Destructor
  130.     // -----------------------------------------------------------------------
  131.     Uniconv390Transcoder
  132.     (
  133.         const   XMLCh* const        encodingName
  134.         ,        uniconvconverter_t* const   toAdopt
  135.         , const unsigned int        blockSize
  136.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  137.     );
  138.     ~Uniconv390Transcoder();
  139.     // -----------------------------------------------------------------------
  140.     //  Implementation of the virtual transcoder interface
  141.     // -----------------------------------------------------------------------
  142.     virtual unsigned int transcodeFrom
  143.     (
  144.         const   XMLByte* const          srcData
  145.         , const unsigned int            srcCount
  146.         ,       XMLCh* const            toFill
  147.         , const unsigned int            maxChars
  148.         ,       unsigned int&           bytesEaten
  149.         ,       unsigned char* const    charSizes
  150.     );
  151.     virtual unsigned int transcodeTo
  152.     (
  153.         const   XMLCh* const    srcData
  154.         , const unsigned int    srcCount
  155.         ,       XMLByte* const  toFill
  156.         , const unsigned int    maxBytes
  157.         ,       unsigned int&   charsEaten
  158.         , const UnRepOpts       options
  159.     );
  160.     virtual bool canTranscodeTo
  161.     (
  162.         const   unsigned int    toCheck
  163.     )   const;
  164. private :
  165.     // -----------------------------------------------------------------------
  166.     //  Unimplemented constructors and operators
  167.     // -----------------------------------------------------------------------
  168.     Uniconv390Transcoder();
  169.     Uniconv390Transcoder(const Uniconv390Transcoder&);
  170.     Uniconv390Transcoder& operator=(const Uniconv390Transcoder&);
  171.     ICUTranscoder * fICUTranscoder;
  172.     // -----------------------------------------------------------------------
  173.     //  Private data members
  174.     //
  175.     //  fConverter
  176.     //      This is a pointer to the converter structure that this transcoder
  177.     //      uses.
  178.     //
  179.     // -----------------------------------------------------------------------
  180.     uniconvconverter_t *fConverter;
  181. };
  182. class XMLUTIL_EXPORT Uniconv390LCPTranscoder : public XMLLCPTranscoder
  183. {
  184. public :
  185.     // -----------------------------------------------------------------------
  186.     //  Constructors and Destructor
  187.     // -----------------------------------------------------------------------
  188.     Uniconv390LCPTranscoder( uniconvconverter_t* const toAdopt);
  189.     ~Uniconv390LCPTranscoder();
  190.     // -----------------------------------------------------------------------
  191.     //  Implementation of the virtual transcoder interface
  192.     // -----------------------------------------------------------------------
  193.     virtual unsigned int calcRequiredSize(const char* const srcText);
  194.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  195.     virtual char* transcode(const XMLCh* const toTranscode);
  196.     virtual char* transcode(const XMLCh* const toTranscode,
  197.                             MemoryManager* const manager);
  198.     virtual XMLCh* transcode(const char* const toTranscode);
  199.     virtual XMLCh* transcode(const char* const toTranscode,
  200.                              MemoryManager* const manager);
  201.     virtual bool transcode
  202.     (
  203.         const   char* const     toTranscode
  204.         ,       XMLCh* const    toFill
  205.         , const unsigned int    maxChars
  206.     );
  207.     virtual bool transcode
  208.     (
  209.         const   XMLCh* const    toTranscode
  210.         ,       char* const     toFill
  211.         , const unsigned int    maxChars
  212.     );
  213. private :
  214.     // -----------------------------------------------------------------------
  215.     //  Unimplemented constructors and operators
  216.     // -----------------------------------------------------------------------
  217.     Uniconv390LCPTranscoder();
  218.     Uniconv390LCPTranscoder(const Uniconv390LCPTranscoder&);
  219.     Uniconv390LCPTranscoder& operator=(const Uniconv390LCPTranscoder&);
  220.     ICULCPTranscoder * fICULCPTranscoder;
  221.     // -----------------------------------------------------------------------
  222.     //  Private data members
  223.     //
  224.     //  fConverter
  225.     //      This is a pointer to the converter structure that this transcoder
  226.     //      uses.
  227.     // -----------------------------------------------------------------------
  228.     uniconvconverter_t *fConverter;
  229. };
  230. XERCES_CPP_NAMESPACE_END
  231. #endif