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

词法分析

开发平台:

Visual C++

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