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

词法分析

开发平台:

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) 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.  * $Log: IconvGNUTransService.hpp,v $
  58.  * Revision 1.5  2003/05/17 16:32:18  knoaman
  59.  * Memory manager implementation : transcoder update.
  60.  *
  61.  * Revision 1.4  2003/05/15 18:47:05  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2003/03/07 18:15:57  tng
  65.  * Return a reference instead of void for operator=
  66.  *
  67.  * Revision 1.2  2002/11/04 15:14:34  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.1  2002/08/19 19:38:18  tng
  71.  * [Bug 11771] Linux specific IconvGNU transcoder.  Patch from Vasily Tchekalkin.
  72.  *
  73.  */
  74. #ifndef ICONVGNUTRANSSERVICE_HPP
  75. #define ICONVGNUTRANSSERVICE_HPP
  76. #include <xercesc/util/TransService.hpp>
  77. #include <iconv.h>
  78. XERCES_CPP_NAMESPACE_BEGIN
  79. // ---------------------------------------------------------------------------
  80. //  Libiconv wrapper (low-level conversion utilities collection)
  81. // ---------------------------------------------------------------------------
  82. class XMLUTIL_EXPORT IconvGNUWrapper
  83. {
  84. public:
  85.     // -----------------------------------------------------------------------
  86.     //  Constructors and Destructor
  87.     // -----------------------------------------------------------------------
  88.     IconvGNUWrapper
  89.     (
  90.   iconv_t cd_from,
  91.   iconv_t cd_to,
  92.   size_t uchsize,
  93.   unsigned int ubo
  94.     );
  95.     virtual ~IconvGNUWrapper();
  96.     // Convert "native unicode" character into XMLCh
  97.     void mbcToXMLCh (const char *mbc, XMLCh *toRet) const;
  98.     // Convert XMLCh into "native unicode" character
  99.     void xmlChToMbc (XMLCh xch, char *mbc) const;
  100.     // Return uppercase equivalent for XMLCh
  101.     XMLCh  toUpper (const XMLCh ch) const;
  102.     // Return uppercase equivalent for XMLCh
  103.     XMLCh  toLower (const XMLCh ch) const;
  104.     // Check if passed characters belongs to the :space: class
  105.     virtual bool isSpace(const XMLCh toCheck) const;
  106.     // Fill array of XMLCh characters with data, supplyed in the array
  107.     // of "native unicode" characters.
  108.     XMLCh* mbsToXML (
  109.   const char* mbs_str,
  110.   size_t mbs_cnt,
  111.   XMLCh* xml_str,
  112.   size_t xml_cnt
  113.     ) const;
  114.     // Fill array of "native unicode" characters with data, supplyed
  115.     // in the array of XMLCh characters.
  116.     char* xmlToMbs
  117.     (
  118.   const XMLCh* xml_str,
  119.   size_t xml_cnt,
  120.   char* mbs_str,
  121.   size_t mbs_cnt
  122.     ) const;
  123.     // Wrapper aroung the iconv() for transcoding from the local charset
  124.     size_t iconvFrom
  125.     (
  126.   const char *fromPtr,
  127.   size_t *fromLen,
  128.   char **toPtr,
  129.   size_t toLen
  130.     ) const;
  131.     // Wrapper aroung the iconv() for transcoding to the local charset
  132.     size_t iconvTo
  133.     (
  134.   const char *fromPtr,
  135.   size_t *fromLen,
  136.   char **toPtr,
  137.   size_t toLen
  138.     ) const;
  139.     // Private data accessors
  140.     inline iconv_t cdTo () const { return fCDTo; }
  141.     inline iconv_t cdFrom () const { return fCDFrom; }
  142.     inline size_t uChSize () const { return fUChSize; }
  143.     inline unsigned int UBO () const { return fUBO; }
  144. protected:
  145.     // Hiden defaull constructor
  146.     IconvGNUWrapper();
  147.     // Private data accessors
  148.     inline void setCDTo (iconv_t cd) { fCDTo = cd; }
  149.     inline void setCDFrom (iconv_t cd) { fCDFrom = cd; }
  150.     inline void setUChSize (size_t sz) { fUChSize = sz; }
  151.     inline void setUBO (unsigned int u) { fUBO = u; }
  152. private:
  153.     // -----------------------------------------------------------------------
  154.     //  Unimplemented constructors and operators
  155.     // -----------------------------------------------------------------------
  156.     IconvGNUWrapper(const IconvGNUWrapper&);
  157.     IconvGNUWrapper& operator=(const IconvGNUWrapper&);
  158.     // -----------------------------------------------------------------------
  159.     //  Private data members
  160.     //
  161.     //  fCDTo
  162.     //     Characterset conversion descriptor TO the local-host encoding
  163.     //  fCDFrom
  164.     //     Characterset conversion descriptor FROM the local-host encoding
  165.     //  fUChSize
  166.     //      Sizeof the "native unicode" character in bytes
  167.     //  fUBO
  168.     //      "Native unicode" characters byte order
  169.     // -----------------------------------------------------------------------
  170.     size_t fUChSize;
  171.     unsigned int fUBO;
  172.     iconv_t fCDTo;
  173.     iconv_t fCDFrom;
  174. };
  175. // ---------------------------------------------------------------------------
  176. //  FreeBSD-specific Transcoding Service implementation
  177. // ---------------------------------------------------------------------------
  178. class XMLUTIL_EXPORT IconvGNUTransService : public XMLTransService, IconvGNUWrapper
  179. {
  180. public :
  181.     // -----------------------------------------------------------------------
  182.     //  Constructors and Destructor
  183.     // -----------------------------------------------------------------------
  184.     IconvGNUTransService();
  185.     ~IconvGNUTransService();
  186.     // -----------------------------------------------------------------------
  187.     //  Implementation of the virtual transcoding service API
  188.     // -----------------------------------------------------------------------
  189.     virtual int compareIString
  190.     (
  191.         const   XMLCh* const    comp1
  192.         , const XMLCh* const    comp2
  193.     );
  194.     virtual int compareNIString
  195.     (
  196.         const   XMLCh* const    comp1
  197.         , const XMLCh* const    comp2
  198.         , const unsigned int    maxChars
  199.     );
  200.     virtual const XMLCh* getId() const;
  201.     virtual bool isSpace(const XMLCh toCheck) const;
  202.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  203.     virtual bool supportsSrcOfs() const;
  204.     virtual void upperCase(XMLCh* const toUpperCase) const;
  205.     virtual void lowerCase(XMLCh* const toUpperCase) const;
  206. protected :
  207.     // -----------------------------------------------------------------------
  208.     //  Protected virtual methods
  209.     // -----------------------------------------------------------------------
  210.     virtual XMLTranscoder* makeNewXMLTranscoder
  211.     (
  212.         const   XMLCh* const            encodingName
  213.         ,       XMLTransService::Codes& resValue
  214.         , const unsigned int            blockSize
  215.         ,       MemoryManager* const    manager
  216.     );
  217. private :
  218.     // -----------------------------------------------------------------------
  219.     //  Unimplemented constructors and operators
  220.     // -----------------------------------------------------------------------
  221.     IconvGNUTransService(const IconvGNUTransService&);
  222.     IconvGNUTransService& operator=(const IconvGNUTransService&);
  223.     // -----------------------------------------------------------------------
  224.     //  Private data members
  225.     //
  226.     //  fUnicodeCP
  227.     //      Unicode encoding schema name
  228.     // -----------------------------------------------------------------------
  229.     const char* fUnicodeCP;
  230. };
  231. //----------------------------------------------------------------------------
  232. // Implementation of the transcoders for arbitrary input characterset is
  233. // supported ONLY through libiconv interface
  234. //----------------------------------------------------------------------------
  235. class XMLUTIL_EXPORT IconvGNUTranscoder : public XMLTranscoder, IconvGNUWrapper
  236. {
  237. public :
  238.     // -----------------------------------------------------------------------
  239.     //  Constructors and Destructor
  240.     // -----------------------------------------------------------------------
  241.     IconvGNUTranscoder(const XMLCh* const encodingName
  242.    , const unsigned int blockSize
  243.    , iconv_t cd_from
  244.    , iconv_t cd_to
  245.    , size_t uchsize
  246.    , unsigned int ubo
  247.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  248.     );
  249.     ~IconvGNUTranscoder();
  250.     // -----------------------------------------------------------------------
  251.     //  Implementation of the virtual transcoder interface
  252.     // -----------------------------------------------------------------------
  253.     virtual unsigned int transcodeFrom
  254.     (
  255.         const   XMLByte* const          srcData
  256.         , const unsigned int            srcCount
  257.         ,       XMLCh* const            toFill
  258.         , const unsigned int            maxChars
  259.         ,       unsigned int&           bytesEaten
  260.         ,       unsigned char* const    charSizes
  261.     );
  262.     virtual unsigned int transcodeTo
  263.     (
  264.         const   XMLCh* const srcData
  265.         , const unsigned int srcCount
  266.         ,       XMLByte* const toFill
  267.         , const unsigned int maxBytes
  268.         ,       unsigned int& charsEaten
  269.         , const UnRepOpts options
  270.     );
  271.     virtual bool canTranscodeTo
  272.     (
  273.         const   unsigned int toCheck
  274.     )   const;
  275. private :
  276.     // -----------------------------------------------------------------------
  277.     //  Unimplemented constructors and operators
  278.     // -----------------------------------------------------------------------
  279.     IconvGNUTranscoder();
  280.     IconvGNUTranscoder(const IconvGNUTranscoder&);
  281.     IconvGNUTranscoder& operator=(const IconvGNUTranscoder&);
  282. };
  283. // ---------------------------------------------------------------------------
  284. //  GNU-specific XMLCh <-> local (host) characterset transcoder
  285. // ---------------------------------------------------------------------------
  286. class XMLUTIL_EXPORT IconvGNULCPTranscoder : public XMLLCPTranscoder, IconvGNUWrapper
  287. {
  288. public :
  289.     // -----------------------------------------------------------------------
  290.     //  Constructors and Destructor
  291.     // -----------------------------------------------------------------------
  292.     IconvGNULCPTranscoder
  293.     (
  294.   iconv_t from,
  295.   iconv_t to,
  296.   size_t uchsize,
  297.   unsigned int ubo
  298.     );
  299. protected:
  300.     IconvGNULCPTranscoder(); // Unimplemented
  301. public:
  302.     ~IconvGNULCPTranscoder();
  303.     // -----------------------------------------------------------------------
  304.     //  Implementation of the virtual transcoder interface
  305.     // -----------------------------------------------------------------------
  306.     virtual unsigned int calcRequiredSize(const char* const srcText);
  307.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  308.     virtual char* transcode(const XMLCh* const toTranscode);
  309.     virtual char* transcode(const XMLCh* const toTranscode,
  310.                             MemoryManager* const manager);
  311.     virtual bool transcode
  312.     (
  313.         const   XMLCh* const    toTranscode
  314.         ,       char* const     toFill
  315.         , const unsigned int    maxBytes
  316.     );
  317.     virtual XMLCh* transcode(const char* const toTranscode);
  318.     virtual XMLCh* transcode(const char* const toTranscode,
  319.                              MemoryManager* const manager);
  320.     virtual bool transcode
  321.     (
  322.         const   char* const     toTranscode
  323.         ,       XMLCh* const    toFill
  324.         , const unsigned int    maxChars
  325.     );
  326. private :
  327.     // -----------------------------------------------------------------------
  328.     //  Unimplemented constructors and operators
  329.     // -----------------------------------------------------------------------
  330.     IconvGNULCPTranscoder(const IconvGNULCPTranscoder&);
  331.     IconvGNULCPTranscoder& operator=(const IconvGNULCPTranscoder&);
  332. };
  333. XERCES_CPP_NAMESPACE_END
  334. #endif /* ICONVGNUTRANSSERVICE */