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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 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. #ifndef CYGWINTRANSSERVICE_HPP
  57. #define CYGWINTRANSSERVICE_HPP
  58. #include <xercesc/util/TransService.hpp>
  59. #include <xercesc/util/RefHashTableOf.hpp>
  60. #include <windows.h>
  61. XERCES_CPP_NAMESPACE_BEGIN
  62. class CPMapEntry;
  63. //---------------------------------------------------------------------------
  64. //
  65. //  class CygwinTransService
  66. //
  67. //---------------------------------------------------------------------------
  68. class XMLUTIL_EXPORT CygwinTransService : public XMLTransService
  69. {
  70. public :
  71.     // -----------------------------------------------------------------------
  72.     //  Constructors and Destructor
  73.     // -----------------------------------------------------------------------
  74.     CygwinTransService();
  75.     virtual ~CygwinTransService();
  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.     virtual void lowerCase(XMLCh* const toLowerCase) const;
  96. protected :
  97.     // -----------------------------------------------------------------------
  98.     //  Protected virtual methods, implemented in CygwinTransService.cpp
  99.     // -----------------------------------------------------------------------
  100.     virtual XMLTranscoder* makeNewXMLTranscoder
  101.     (
  102.         const   XMLCh* const            encodingName
  103.         ,       XMLTransService::Codes& resValue
  104.         , const unsigned int            blockSize
  105.         ,       MemoryManager* const    manager
  106.     );
  107.     virtual int auxCompareString
  108.     (
  109.         const   XMLCh* const  comp1
  110.         , const XMLCh* const  comp2
  111.         , signed long         maxChars
  112.         , const  bool         ignoreCase
  113.     );
  114. private :
  115.     // -----------------------------------------------------------------------
  116.     //  Unimplemented constructors and operators
  117.     // -----------------------------------------------------------------------
  118.     CygwinTransService(const CygwinTransService&);
  119.     CygwinTransService& operator=(const CygwinTransService&);
  120.     //      This is a hash table of entries which map encoding names to their
  121.     //      Windows specific code pages. The code page allows us to create
  122.     //      transcoders for those encodings. The encoding names come from XML
  123.     //      files.
  124.     //
  125.     //      This map is shared unsynchronized among all threads of the process,
  126.     //      which is cool since it will be read only once its initialized.
  127.     static bool isAlias(const HKEY          encodingKey
  128.                     ,       char* const     aliasBuf = 0
  129.                     , const unsigned int    nameBufSz = 0);
  130.     RefHashTableOf<CPMapEntry>    *fCPMap;
  131. };
  132. //---------------------------------------------------------------------------
  133. //
  134. //  class CygwinTranscoder
  135. //
  136. //---------------------------------------------------------------------------
  137. class XMLUTIL_EXPORT CygwinTranscoder : public XMLTranscoder
  138. {
  139. public :
  140.     // -----------------------------------------------------------------------
  141.     //  Constructors and Destructor
  142.     // -----------------------------------------------------------------------
  143.     CygwinTranscoder
  144.     (
  145.         const   XMLCh* const    encodingName
  146.         , const unsigned int    winCP
  147.         , const unsigned int    ieCP
  148.         , const unsigned int    blockSize
  149.         , MemoryManager* const  manager = XMLPlatformUtils::fgMemoryManager);
  150.     ~CygwinTranscoder();
  151.     // -----------------------------------------------------------------------
  152.     //  Implementation of the virtual transcoder interface
  153.     // -----------------------------------------------------------------------
  154.     virtual unsigned int transcodeFrom
  155.     (
  156.         const   XMLByte* const          srcData
  157.         , const unsigned int            srcCount
  158.         ,       XMLCh* const            toFill
  159.         , const unsigned int            maxChars
  160.         ,       unsigned int&           bytesEaten
  161.         ,       unsigned char* const    charSizes
  162.     );
  163.     virtual unsigned int transcodeTo
  164.     (
  165.         const   XMLCh* const    srcData
  166.         , const unsigned int    srcCount
  167.         ,       XMLByte* const  toFill
  168.         , const unsigned int    maxBytes
  169.         ,       unsigned int&   charsEaten
  170.         , const UnRepOpts       options
  171.     );
  172.     virtual bool canTranscodeTo
  173.     (
  174.         const   unsigned int    toCheck
  175.     )   const;
  176. private :
  177.     // -----------------------------------------------------------------------
  178.     //  Unimplemented constructors and operators
  179.     // -----------------------------------------------------------------------
  180.     CygwinTranscoder(const CygwinTranscoder&);
  181.     CygwinTranscoder& operator=(const CygwinTranscoder&);
  182.     // -----------------------------------------------------------------------
  183.     //  Private data members
  184.     //
  185.     //  fIECP
  186.     //      This is the internet explorer code page for this encoding.
  187.     //
  188.     //  fWinCP
  189.     //      This is the windows code page for this encoding.
  190.     // -----------------------------------------------------------------------
  191.     unsigned int    fIECP;
  192.     unsigned int    fWinCP;
  193. };
  194. //---------------------------------------------------------------------------
  195. //
  196. //  class CygwinLCPTranscoder
  197. //
  198. //---------------------------------------------------------------------------
  199. class XMLUTIL_EXPORT CygwinLCPTranscoder : public XMLLCPTranscoder
  200. {
  201. public :
  202.     // -----------------------------------------------------------------------
  203.     //  Constructors and Destructor
  204.     // -----------------------------------------------------------------------
  205.     CygwinLCPTranscoder();
  206.     ~CygwinLCPTranscoder();
  207.     // -----------------------------------------------------------------------
  208.     //  Implementation of the virtual transcoder interface
  209.     // -----------------------------------------------------------------------
  210.     virtual unsigned int calcRequiredSize(const char* const srcText);
  211.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  212.     virtual char* transcode(const XMLCh* const toTranscode);
  213.     virtual char* transcode(const XMLCh* const toTranscode,
  214.                             MemoryManager* const manager);
  215.     virtual XMLCh* transcode(const char* const toTranscode);
  216.     virtual XMLCh* transcode(const char* const toTranscode,
  217.                              MemoryManager* const manager);
  218.     virtual bool transcode
  219.     (
  220.         const   char* const     toTranscode
  221.         ,       XMLCh* const    toFill
  222.         , const unsigned int    maxChars
  223.     );
  224.     virtual bool transcode
  225.     (
  226.         const   XMLCh* const    toTranscode
  227.         ,       char* const     toFill
  228.         , const unsigned int    maxChars
  229.     );
  230. private :
  231.     // -----------------------------------------------------------------------
  232.     //  Unimplemented constructors and operators
  233.     // -----------------------------------------------------------------------
  234.     CygwinLCPTranscoder(const CygwinLCPTranscoder&);
  235.     CygwinLCPTranscoder& operator=(const CygwinLCPTranscoder&);
  236. };
  237. XERCES_CPP_NAMESPACE_END
  238. #endif