ICUTransService.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.  * $Log: ICUTransService.hpp,v $
  58.  * Revision 1.10  2000/03/18 00:00:03  roddey
  59.  * Initial updates for two way transcoding support
  60.  *
  61.  * Revision 1.9  2000/03/02 19:55:34  roddey
  62.  * This checkin includes many changes done while waiting for the
  63.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  64.  * available elsewhere.
  65.  *
  66.  * Revision 1.8  2000/02/06 07:48:32  rahulj
  67.  * Year 2K copyright swat.
  68.  *
  69.  * Revision 1.7  2000/01/25 22:49:56  roddey
  70.  * Moved the supportsSrcOfs() method from the individual transcoder to the
  71.  * transcoding service, where it should have been to begin with.
  72.  *
  73.  * Revision 1.6  2000/01/25 19:19:08  roddey
  74.  * Simple addition of a getId() method to the xcode and netacess abstractions to
  75.  * allow each impl to give back an id string.
  76.  *
  77.  * Revision 1.5  2000/01/19 23:21:11  abagchi
  78.  * Made this file compatible with ICU 1.4
  79.  *
  80.  * Revision 1.4  2000/01/19 00:58:07  roddey
  81.  * Update to support new ICU 1.4 release.
  82.  *
  83.  * Revision 1.3  1999/12/18 00:22:32  roddey
  84.  * Changes to support the new, completely orthagonal, transcoder architecture.
  85.  *
  86.  * Revision 1.2  1999/12/15 19:43:45  roddey
  87.  * Now implements the new transcoding abstractions, with separate interface
  88.  * classes for XML transcoders and local code page transcoders.
  89.  *
  90.  * Revision 1.1.1.1  1999/11/09 01:06:08  twl
  91.  * Initial checkin
  92.  *
  93.  * Revision 1.3  1999/11/08 20:45:34  rahul
  94.  * Swat for adding in Product name and CVS comment log variable.
  95.  *
  96.  */
  97. #ifndef ICUTRANSSERVICE_HPP
  98. #define ICUTRANSSERVICE_HPP
  99. #include <util/Mutexes.hpp>
  100. #include <util/TransService.hpp>
  101. struct UConverter;
  102. class XMLUTIL_EXPORT ICUTransService : public XMLTransService
  103. {
  104. public :
  105.     // -----------------------------------------------------------------------
  106.     //  Constructors and Destructor
  107.     // -----------------------------------------------------------------------
  108.     ICUTransService();
  109.     ~ICUTransService();
  110.     // -----------------------------------------------------------------------
  111.     //  Implementation of the virtual transcoding service API
  112.     // -----------------------------------------------------------------------
  113.     virtual int compareIString
  114.     (
  115.         const   XMLCh* const    comp1
  116.         , const XMLCh* const    comp2
  117.     );
  118.     virtual int compareNIString
  119.     (
  120.         const   XMLCh* const    comp1
  121.         , const XMLCh* const    comp2
  122.         , const unsigned int    maxChars
  123.     );
  124.     virtual const XMLCh* getId() const;
  125.     virtual bool isSpace(const XMLCh toCheck) const;
  126.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  127.     virtual bool supportsSrcOfs() const;
  128.     virtual void upperCase(XMLCh* const toUpperCase) const;
  129. protected :
  130.     // -----------------------------------------------------------------------
  131.     //  Protected virtual methods
  132.     // -----------------------------------------------------------------------
  133.     virtual XMLTranscoder* makeNewXMLTranscoder
  134.     (
  135.         const   XMLCh* const            encodingName
  136.         ,       XMLTransService::Codes& resValue
  137.         , const unsigned int            blockSize
  138.     );
  139. private :
  140.     // -----------------------------------------------------------------------
  141.     //  Unimplemented constructors and operators
  142.     // -----------------------------------------------------------------------
  143.     ICUTransService(const ICUTransService&);
  144.     void operator=(const ICUTransService&);
  145. };
  146. class XMLUTIL_EXPORT ICUTranscoder : public XMLTranscoder
  147. {
  148. public :
  149.     // -----------------------------------------------------------------------
  150.     //  Constructors and Destructor
  151.     // -----------------------------------------------------------------------
  152.     ICUTranscoder
  153.     (
  154.         const   XMLCh* const        encodingName
  155.         ,       UConverter* const   toAdopt
  156.         , const unsigned int        blockSize
  157.     );
  158.     ~ICUTranscoder();
  159.     // -----------------------------------------------------------------------
  160.     //  Implementation of the virtual transcoder interface
  161.     // -----------------------------------------------------------------------
  162.     virtual unsigned int transcodeFrom
  163.     (
  164.         const   XMLByte* const          srcData
  165.         , const unsigned int            srcCount
  166.         ,       XMLCh* const            toFill
  167.         , const unsigned int            maxChars
  168.         ,       unsigned int&           bytesEaten
  169.         ,       unsigned char* const    charSizes
  170.     );
  171.     virtual unsigned int transcodeTo
  172.     (
  173.         const   XMLCh* const    srcData
  174.         , const unsigned int    srcCount
  175.         ,       XMLByte* const  toFill
  176.         , const unsigned int    maxBytes
  177.         ,       unsigned int&   charsEaten
  178.         , const UnRepOpts       options
  179.     );
  180.     virtual bool canTranscodeTo
  181.     (
  182.         const   unsigned int    toCheck
  183.     )   const;
  184. private :
  185.     // -----------------------------------------------------------------------
  186.     //  Unimplemented constructors and operators
  187.     // -----------------------------------------------------------------------
  188.     ICUTranscoder();
  189.     ICUTranscoder(const ICUTranscoder&);
  190.     void operator=(const ICUTranscoder&);
  191.     // -----------------------------------------------------------------------
  192.     //  Private data members
  193.     //
  194.     //  fConverter
  195.     //      This is a pointer to the ICU converter that this transcoder
  196.     //      uses.
  197.     //
  198.     //  fFixed
  199.     //      This is set to true if the encoding is a fixed size one. This
  200.     //      can be used to optimize some operations.
  201.     //
  202.     //  fSrcOffsets
  203.     //      This is an array of longs, which are allocated to the size of
  204.     //      the trancoding block (if any) indicated in the ctor. It is used
  205.     //      to get the character offsets from ICU, which are then translated
  206.     //      into an array of char sizes for return.
  207.     // -----------------------------------------------------------------------
  208.     UConverter*     fConverter;
  209.     bool            fFixed;
  210.     XMLUInt32*      fSrcOffsets;
  211. };
  212. class XMLUTIL_EXPORT ICULCPTranscoder : public XMLLCPTranscoder
  213. {
  214. public :
  215.     // -----------------------------------------------------------------------
  216.     //  Constructors and Destructor
  217.     // -----------------------------------------------------------------------
  218.     ICULCPTranscoder(UConverter* const toAdopt);
  219.     ~ICULCPTranscoder();
  220.     // -----------------------------------------------------------------------
  221.     //  Implementation of the virtual transcoder interface
  222.     // -----------------------------------------------------------------------
  223.     virtual unsigned int calcRequiredSize(const char* const srcText);
  224.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  225.     virtual char* transcode(const XMLCh* const toTranscode);
  226.     virtual XMLCh* transcode(const char* const toTranscode);
  227.     virtual bool transcode
  228.     (
  229.         const   char* const     toTranscode
  230.         ,       XMLCh* const    toFill
  231.         , const unsigned int    maxChars
  232.     );
  233.     virtual bool transcode
  234.     (
  235.         const   XMLCh* const    toTranscode
  236.         ,       char* const     toFill
  237.         , const unsigned int    maxChars
  238.     );
  239. private :
  240.     // -----------------------------------------------------------------------
  241.     //  Unimplemented constructors and operators
  242.     // -----------------------------------------------------------------------
  243.     ICULCPTranscoder();
  244.     ICULCPTranscoder(const ICULCPTranscoder&);
  245.     void operator=(const ICULCPTranscoder&);
  246.     // -----------------------------------------------------------------------
  247.     //  Private data members
  248.     //
  249.     //  fConverter
  250.     //      This is a pointer to the ICU converter that this transcoder
  251.     //      uses.
  252.     //
  253.     //  fMutex
  254.     //      We have to synchronize threaded calls to the converter.
  255.     // -----------------------------------------------------------------------
  256.     UConverter*     fConverter;
  257.     XMLMutex        fMutex;
  258. };
  259. #endif