Iconv400TransService.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) 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.  * $Id: Iconv400TransService.hpp,v 1.2 2000/09/28 22:42:45 aruna1 Exp $
  58.  */
  59. #ifndef ICONV400TRANSSERVICE_HPP
  60. #define ICONV400TRANSSERVICE_HPP
  61. #include <util/Mutexes.hpp>
  62. #include <util/TransService.hpp>
  63. #include <qlg.h>
  64. struct UConverter;
  65. class XMLUTIL_EXPORT Iconv400TransService : public XMLTransService
  66. {
  67. public :
  68.     // -----------------------------------------------------------------------
  69.     //  Public, static methods
  70.     // -----------------------------------------------------------------------
  71.     // -----------------------------------------------------------------------
  72.     //  Constructors and Destructor
  73.     // -----------------------------------------------------------------------
  74.     Iconv400TransService();
  75.     ~Iconv400TransService();
  76.     // -----------------------------------------------------------------------
  77.     //  Implementation of the virtual transcoding service API
  78.     // -----------------------------------------------------------------------
  79.     virtual int compareIString
  80.     (
  81.         const   XMLCh* const    comp1
  82.         , const XMLCh* const    comp2
  83.     );
  84.     virtual int compareNIString
  85.     (
  86.         const   XMLCh* const    comp1
  87.         , const XMLCh* const    comp2
  88.         , const unsigned int    maxChars
  89.     );
  90.     virtual const XMLCh* getId() const;
  91.     virtual bool isSpace(const XMLCh toCheck) const;
  92.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  93.     virtual bool supportsSrcOfs() const;
  94.     virtual void upperCase(XMLCh* const toUpperCase) const;
  95. protected :
  96.     // -----------------------------------------------------------------------
  97.     //  Protected virtual methods
  98.     // -----------------------------------------------------------------------
  99.     virtual XMLTranscoder* makeNewXMLTranscoder
  100.     (
  101.         const   XMLCh* const            encodingName
  102.         ,       XMLTransService::Codes& resValue
  103.         , const unsigned int            blockSize
  104.     );
  105. private :
  106.     // -----------------------------------------------------------------------
  107.     //  Unimplemented constructors and operators
  108.     // -----------------------------------------------------------------------
  109.     Iconv400TransService(const Iconv400TransService&);
  110.     void operator=(const Iconv400TransService&);
  111.     XMLCh toUnicodeUpper(XMLCh toupper) const;
  112.     Qlg_CCSID_ReqCtlBlk_T convertCtlblk; 
  113. };
  114. class XMLUTIL_EXPORT Iconv400Transcoder : public XMLTranscoder
  115. {
  116. public :
  117.     // -----------------------------------------------------------------------
  118.     //  Constructors and Destructor
  119.     // -----------------------------------------------------------------------
  120.     Iconv400Transcoder
  121.     (
  122.         const   XMLCh* const        encodingName
  123.         ,       UConverter* const   toAdopt
  124.         , const unsigned int        blockSize
  125.     );
  126.     ~Iconv400Transcoder();
  127.     virtual unsigned int transcodeFrom
  128.     (
  129.         const   XMLByte* const          srcData
  130.         , const unsigned int            srcCount
  131.         ,       XMLCh* const            toFill
  132.         , const unsigned int            maxChars
  133.         ,       unsigned int&           bytesEaten
  134.         ,       unsigned char* const    charSizes
  135.     );
  136.     virtual unsigned int transcodeTo
  137.     (
  138.         const   XMLCh* const    srcData
  139.         , const unsigned int    srcCount
  140.         ,       XMLByte* const  toFill
  141.         , const unsigned int    maxBytes
  142.         ,       unsigned int&   charsEaten
  143.         , const UnRepOpts       options
  144.     );
  145.     virtual bool canTranscodeTo
  146.     (
  147.         const   unsigned int    toCheck
  148.     )   const;
  149.     // -----------------------------------------------------------------------
  150.     //  Implementation of the virtual transcoder interface
  151.     // -----------------------------------------------------------------------
  152.     virtual XMLCh transcodeOne
  153.     (
  154.         const   XMLByte* const  srcData
  155.         , const unsigned int    srcBytes
  156.         ,       unsigned int&   bytesEaten
  157.     );
  158.     virtual unsigned int transcodeXML
  159.     (
  160.         const   XMLByte* const          srcData
  161.         , const unsigned int            srcCount
  162.         ,       XMLCh* const            toFill
  163.         , const unsigned int            maxChars
  164.         ,       unsigned int&           bytesEaten
  165.         ,       unsigned char* const    charSizes
  166.     );
  167. private :
  168.     // -----------------------------------------------------------------------
  169.     //  Unimplemented constructors and operators
  170.     // -----------------------------------------------------------------------
  171.     Iconv400Transcoder();
  172.     Iconv400Transcoder(const Iconv400Transcoder&);
  173.     void operator=(const Iconv400Transcoder&);
  174.     // -----------------------------------------------------------------------
  175.     //  Private data members
  176.     //
  177.     //  fConverter
  178.     //      This is a pointer to the Iconv400 converter that this transcoder
  179.     //      uses.
  180.     //
  181.     //  fFixed
  182.     //      This is set to true if the encoding is a fixed size one. This
  183.     //      can be used to optimize some operations.
  184.     //
  185.     //  fSrcOffsets
  186.     //      This is an array of longs, which are allocated to the size of
  187.     //      the trancoding block (if any) indicated in the ctor. It is used
  188.     //      to get the character offsets from Iconv400, which are then translated
  189.     //      into an array of char sizes for return.
  190.     // -----------------------------------------------------------------------
  191.     UConverter*     fConverter;
  192.     bool            fFixed;
  193.     long*           fSrcOffsets;
  194. };
  195. class XMLUTIL_EXPORT Iconv400LCPTranscoder : public XMLLCPTranscoder
  196. {
  197. public :
  198.     // -----------------------------------------------------------------------
  199.     //  Constructors and Destructor
  200.     // -----------------------------------------------------------------------
  201.     Iconv400LCPTranscoder(UConverter* const toAdopt);
  202.     ~Iconv400LCPTranscoder();
  203.     // -----------------------------------------------------------------------
  204.     //  Implementation of the virtual transcoder interface
  205.     // -----------------------------------------------------------------------
  206.     virtual unsigned int calcRequiredSize(const char* const srcText);
  207.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  208.     virtual char* transcode(const XMLCh* const toTranscode);
  209.     virtual XMLCh* transcode(const char* const toTranscode);
  210.     virtual bool transcode
  211.     (
  212.         const   char* const     toTranscode
  213.         ,       XMLCh* const    toFill
  214.         , const unsigned int    maxChars
  215.     );
  216.     virtual bool transcode
  217.     (
  218.         const   XMLCh* const    toTranscode
  219.         ,       char* const     toFill
  220.         , const unsigned int    maxChars
  221.     );
  222. private :
  223.     // -----------------------------------------------------------------------
  224.     //  Unimplemented constructors and operators
  225.     // -----------------------------------------------------------------------
  226.     Iconv400LCPTranscoder();
  227.     Iconv400LCPTranscoder(const Iconv400LCPTranscoder&);
  228.     void operator=(const Iconv400LCPTranscoder&);
  229.     // -----------------------------------------------------------------------
  230.     //  Private data members
  231.     //
  232.     //  fConverter
  233.     //      This is a pointer to the Iconv converter that this transcoder
  234.     //      uses.
  235.     //
  236.     //  fMutex
  237.     //      We have to synchronize threaded calls to the converter.
  238.     // -----------------------------------------------------------------------
  239.     UConverter*     fConverter;
  240.     XMLMutex        fMutex;
  241. };
  242. #endif