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

词法分析

开发平台:

Visual 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: MacOSUnicodeConverter.hpp,v 1.9 2003/05/21 02:43:07 jberry Exp $
  58.  */
  59. #ifndef MACOSUNICODECONVERTER_HPP
  60. #define MACOSUNICODECONVERTER_HPP
  61. #include <cstddef>
  62. #include <xercesc/util/TransService.hpp>
  63. #if defined(__APPLE__)
  64.     // Framework includes from ProjectBuilder
  65.     #include <CoreServices/CoreServices.h>
  66. #else
  67.     // Classic includes otherwise
  68.     #include <UnicodeConverter.h>
  69. #endif
  70. XERCES_CPP_NAMESPACE_BEGIN
  71. //
  72. //  The transcoding service has to provide a couple of required string
  73. //  and character operations, but its most important service is the creation
  74. //  of transcoder objects. There are two types of transcoders, which are
  75. //  discussed below in the XMLTranscoder class' description.
  76. //
  77. class XMLUTIL_EXPORT MacOSUnicodeConverter : public XMLTransService
  78. {
  79. public :
  80.     // -----------------------------------------------------------------------
  81.     //  Public Constructors and Destructor
  82.     // -----------------------------------------------------------------------
  83.     ~MacOSUnicodeConverter();
  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.     //  Hidden constructors
  107.     // -----------------------------------------------------------------------
  108.     MacOSUnicodeConverter();
  109.     // -----------------------------------------------------------------------
  110.     //  Protected virtual methods
  111.     // -----------------------------------------------------------------------
  112.     virtual XMLTranscoder* makeNewXMLTranscoder
  113.     (
  114.         const   XMLCh* const            encodingName
  115.         ,       XMLTransService::Codes& resValue
  116.         , const unsigned int            blockSize
  117.         ,       MemoryManager* const    manager
  118.     );
  119.     // Sniff for available functionality
  120.     static bool IsMacOSUnicodeConverterSupported(void);
  121. private :
  122. friend class XMLPlatformUtils;
  123. bool mHasUnicodeCollation; // True if unicode collation is available
  124.     // -----------------------------------------------------------------------
  125.     //  Unimplemented constructors and operators
  126.     // -----------------------------------------------------------------------
  127.     MacOSUnicodeConverter(const MacOSUnicodeConverter&);
  128.     MacOSUnicodeConverter& operator=(const MacOSUnicodeConverter&);
  129.     // -----------------------------------------------------------------------
  130.     //  Private methods
  131.     // -----------------------------------------------------------------------
  132. void ConvertWideToNarrow(const XMLCh* wide, char* narrow, std::size_t maxChars);
  133. };
  134. //
  135. //  This type of transcoder is for non-local code page encodings, i.e.
  136. //  named encodings. These are used internally by the scanner to internalize
  137. //  raw XML into the internal Unicode format, and by writer classes to
  138. //  convert that internal Unicode format (which comes out of the parser)
  139. //  back out to a format that the receiving client code wants to use.
  140. //
  141. class XMLUTIL_EXPORT MacOSTranscoder : public XMLTranscoder
  142. {
  143. public :
  144.     // -----------------------------------------------------------------------
  145.     //  Constructors and Destructor
  146.     // -----------------------------------------------------------------------
  147.     MacOSTranscoder(
  148.     const XMLCh* const encodingName,
  149.     TextToUnicodeInfo textToUnicodeInfo,
  150.     UnicodeToTextInfo unicodeToTextInfo,
  151.     const unsigned int blockSize,
  152.     MemoryManager* const    manager = XMLPlatformUtils::fgMemoryManager
  153. );
  154.     ~MacOSTranscoder();
  155.     // -----------------------------------------------------------------------
  156.     //  The virtual transcoding interface
  157.     // -----------------------------------------------------------------------
  158.     virtual unsigned int transcodeFrom
  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.     virtual unsigned int transcodeTo
  168.     (
  169.         const   XMLCh* const    srcData
  170.         , const unsigned int    srcCount
  171.         ,       XMLByte* const  toFill
  172.         , const unsigned int    maxBytes
  173.         ,       unsigned int&   charsEaten
  174.         , const UnRepOpts       options
  175.     );
  176.     virtual bool canTranscodeTo
  177.     (
  178.         const   unsigned int    toCheck
  179.     )   const;
  180. private :
  181.     // -----------------------------------------------------------------------
  182.     //  Unimplemented constructors and operators
  183.     // -----------------------------------------------------------------------
  184.     MacOSTranscoder(const MacOSTranscoder&);
  185.     MacOSTranscoder& operator=(const MacOSTranscoder&);
  186.     // -----------------------------------------------------------------------
  187.     //  Private members
  188.     // -----------------------------------------------------------------------
  189.     TextToUnicodeInfo mTextToUnicodeInfo;
  190.     UnicodeToTextInfo mUnicodeToTextInfo;
  191. };
  192. //
  193. //  This class is a specialized transcoder that only transcodes between
  194. //  the internal XMLCh format and the local code page. It is specialized
  195. //  for the very common job of translating data from the client app's
  196. //  native code page to the internal format and vice versa.
  197. //
  198. class XMLUTIL_EXPORT MacOSLCPTranscoder : public XMLLCPTranscoder
  199. {
  200. public :
  201.     // -----------------------------------------------------------------------
  202.     //  Constructors and Destructor
  203.     // -----------------------------------------------------------------------
  204.     MacOSLCPTranscoder(TextToUnicodeInfo textToUnicodeInfo, UnicodeToTextInfo unicodeToTextInfo);
  205.     ~MacOSLCPTranscoder();
  206.     // -----------------------------------------------------------------------
  207.     //  The virtual transcoder API
  208.     //
  209.     //  NOTE:   All these APIs don't include null terminator characters in
  210.     //          their parameters. So calcRequiredSize() returns the number
  211.     //          of actual chars, not including the null. maxBytes and maxChars
  212.     //          parameters refer to actual chars, not including the null so
  213.     //          its assumed that the buffer is physically one char or byte
  214.     //          larger.
  215.     // -----------------------------------------------------------------------
  216.     virtual unsigned int calcRequiredSize(const char* const srcText);
  217.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  218.     virtual char* transcode(const XMLCh* const toTranscode);
  219.     virtual char* transcode(const XMLCh* const toTranscode,
  220.                             MemoryManager* const manager);
  221.     virtual XMLCh* transcode(const char* const toTranscode);
  222.     virtual XMLCh* transcode(const char* const toTranscode,
  223.                             MemoryManager* const manager);
  224.     virtual bool transcode
  225.     (
  226.         const   char* const     toTranscode
  227.         ,       XMLCh* const    toFill
  228.         , const unsigned int    maxChars
  229.     );
  230.     virtual bool transcode
  231.     (
  232.         const   XMLCh* const    toTranscode
  233.         ,       char* const     toFill
  234.         , const unsigned int    maxChars
  235.     );
  236. private :
  237.     // -----------------------------------------------------------------------
  238.     //  Unimplemented constructors and operators
  239.     // -----------------------------------------------------------------------
  240.     MacOSLCPTranscoder(const MacOSLCPTranscoder&);
  241.     MacOSLCPTranscoder& operator=(const MacOSLCPTranscoder&);
  242.     // -----------------------------------------------------------------------
  243.     //  Private data members
  244.     // -----------------------------------------------------------------------
  245.     TextToUnicodeInfo mTextToUnicodeInfo;
  246.     UnicodeToTextInfo mUnicodeToTextInfo;
  247.  };
  248. XERCES_CPP_NAMESPACE_END
  249. #endif