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

词法分析

开发平台:

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.  * $Log: Win32TransService.hpp,v $
  58.  * Revision 1.6  2003/05/17 16:32:18  knoaman
  59.  * Memory manager implementation : transcoder update.
  60.  *
  61.  * Revision 1.5  2003/05/15 18:47:07  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2003/03/07 18:15:58  tng
  65.  * Return a reference instead of void for operator=
  66.  *
  67.  * Revision 1.3  2002/11/04 15:14:34  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/04/09 15:44:00  knoaman
  71.  * Add lower case string support.
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.10  2000/05/09 00:22:45  andyh
  77.  * Memory Cleanup.  XMLPlatformUtils::Terminate() deletes all lazily
  78.  * allocated memory; memory leak checking tools will no longer report
  79.  * that leaks exist.  (DOM GetElementsByTagID temporarily removed
  80.  * as part of this.)
  81.  *
  82.  * Revision 1.9  2000/03/18 00:00:04  roddey
  83.  * Initial updates for two way transcoding support
  84.  *
  85.  * Revision 1.8  2000/03/07 23:45:36  roddey
  86.  * First cut for additions to Win32 xcode. Based very loosely on a
  87.  * prototype from Eric Ulevik.
  88.  *
  89.  * Revision 1.7  2000/03/02 19:55:36  roddey
  90.  * This checkin includes many changes done while waiting for the
  91.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  92.  * available elsewhere.
  93.  *
  94.  * Revision 1.6  2000/02/06 07:48:34  rahulj
  95.  * Year 2K copyright swat.
  96.  *
  97.  * Revision 1.5  2000/01/25 22:49:58  roddey
  98.  * Moved the supportsSrcOfs() method from the individual transcoder to the
  99.  * transcoding service, where it should have been to begin with.
  100.  *
  101.  * Revision 1.4  2000/01/25 19:19:09  roddey
  102.  * Simple addition of a getId() method to the xcode and netacess abstractions to
  103.  * allow each impl to give back an id string.
  104.  *
  105.  * Revision 1.3  1999/12/18 00:22:33  roddey
  106.  * Changes to support the new, completely orthagonal, transcoder architecture.
  107.  *
  108.  * Revision 1.2  1999/12/15 19:44:02  roddey
  109.  * Now implements the new transcoding abstractions, with separate interface
  110.  * classes for XML transcoders and local code page transcoders.
  111.  *
  112.  * Revision 1.1.1.1  1999/11/09 01:06:06  twl
  113.  * Initial checkin
  114.  *
  115.  * Revision 1.2  1999/11/08 20:45:35  rahul
  116.  * Swat for adding in Product name and CVS comment log variable.
  117.  *
  118.  */
  119. #ifndef WIN32TRANSSERVICE_HPP
  120. #define WIN32TRANSSERVICE_HPP
  121. #include <xercesc/util/TransService.hpp>
  122. #include <xercesc/util/RefHashTableOf.hpp>
  123. #include <windows.h>
  124. XERCES_CPP_NAMESPACE_BEGIN
  125. class CPMapEntry;
  126. //---------------------------------------------------------------------------
  127. //
  128. //  class Win32TransService
  129. //
  130. //---------------------------------------------------------------------------
  131. class XMLUTIL_EXPORT Win32TransService : public XMLTransService
  132. {
  133. public :
  134.     // -----------------------------------------------------------------------
  135.     //  Constructors and Destructor
  136.     // -----------------------------------------------------------------------
  137.     Win32TransService();
  138.     virtual ~Win32TransService();
  139.     // -----------------------------------------------------------------------
  140.     //  Implementation of the virtual transcoding service API
  141.     // -----------------------------------------------------------------------
  142.     virtual int compareIString
  143.     (
  144.         const   XMLCh* const    comp1
  145.         , const XMLCh* const    comp2
  146.     );
  147.     virtual int compareNIString
  148.     (
  149.         const   XMLCh* const    comp1
  150.         , const XMLCh* const    comp2
  151.         , const unsigned int    maxChars
  152.     );
  153.     virtual const XMLCh* getId() const;
  154.     virtual bool isSpace(const XMLCh toCheck) const;
  155.     virtual XMLLCPTranscoder* makeNewLCPTranscoder();
  156.     virtual bool supportsSrcOfs() const;
  157.     virtual void upperCase(XMLCh* const toUpperCase) const;
  158.     virtual void lowerCase(XMLCh* const toLowerCase) const;
  159. protected :
  160.     // -----------------------------------------------------------------------
  161.     //  Protected virtual methods, implemented in Win32TransService2.cpp
  162.     // -----------------------------------------------------------------------
  163.     virtual XMLTranscoder* makeNewXMLTranscoder
  164.     (
  165.         const   XMLCh* const            encodingName
  166.         ,       XMLTransService::Codes& resValue
  167.         , const unsigned int            blockSize
  168.         ,       MemoryManager* const    manager
  169.     );
  170. private :
  171.     // -----------------------------------------------------------------------
  172.     //  Unimplemented constructors and operators
  173.     // -----------------------------------------------------------------------
  174.     Win32TransService(const Win32TransService&);
  175.     Win32TransService& operator=(const Win32TransService&);
  176.     //      This is a hash table of entries which map encoding names to their
  177.     //      Windows specific code pages. The code page allows us to create
  178.     //      transcoders for those encodings. The encoding names come from XML
  179.     //      files.
  180.     //
  181.     //      This map is shared unsynchronized among all threads of the process,
  182.     //      which is cool since it will be read only once its initialized.
  183.     static bool isAlias(const   HKEY            encodingKey
  184.                     ,       char* const     aliasBuf = 0
  185.                     , const unsigned int    nameBufSz = 0);
  186.     RefHashTableOf<CPMapEntry>    *fCPMap;
  187. };
  188. //---------------------------------------------------------------------------
  189. //
  190. //  class Win32Transcoder
  191. //
  192. //---------------------------------------------------------------------------
  193. class XMLUTIL_EXPORT Win32Transcoder : public XMLTranscoder
  194. {
  195. public :
  196.     // -----------------------------------------------------------------------
  197.     //  Constructors and Destructor
  198.     // -----------------------------------------------------------------------
  199.     Win32Transcoder
  200.     (
  201.         const   XMLCh* const    encodingName
  202.         , const unsigned int    winCP
  203.         , const unsigned int    ieCP
  204.         , const unsigned int    blockSize
  205.         , MemoryManager* const  manager = XMLPlatformUtils::fgMemoryManager);
  206.     ~Win32Transcoder();
  207.     // -----------------------------------------------------------------------
  208.     //  Implementation of the virtual transcoder interface
  209.     // -----------------------------------------------------------------------
  210.     virtual unsigned int transcodeFrom
  211.     (
  212.         const   XMLByte* const          srcData
  213.         , const unsigned int            srcCount
  214.         ,       XMLCh* const            toFill
  215.         , const unsigned int            maxChars
  216.         ,       unsigned int&           bytesEaten
  217.         ,       unsigned char* const    charSizes
  218.     );
  219.     virtual unsigned int transcodeTo
  220.     (
  221.         const   XMLCh* const    srcData
  222.         , const unsigned int    srcCount
  223.         ,       XMLByte* const  toFill
  224.         , const unsigned int    maxBytes
  225.         ,       unsigned int&   charsEaten
  226.         , const UnRepOpts       options
  227.     );
  228.     virtual bool canTranscodeTo
  229.     (
  230.         const   unsigned int    toCheck
  231.     )   const;
  232. private :
  233.     // -----------------------------------------------------------------------
  234.     //  Unimplemented constructors and operators
  235.     // -----------------------------------------------------------------------
  236.     Win32Transcoder(const Win32Transcoder&);
  237.     Win32Transcoder& operator=(const Win32Transcoder&);
  238.     // -----------------------------------------------------------------------
  239.     //  Private data members
  240.     //
  241.     //  fIECP
  242.     //      This is the internet explorer code page for this encoding.
  243.     //
  244.     //  fWinCP
  245.     //      This is the windows code page for this encoding.
  246.     // -----------------------------------------------------------------------
  247.     unsigned int    fIECP;
  248.     unsigned int    fWinCP;
  249. };
  250. //---------------------------------------------------------------------------
  251. //
  252. //  class Win32LCPTranscoder
  253. //
  254. //---------------------------------------------------------------------------
  255. class XMLUTIL_EXPORT Win32LCPTranscoder : public XMLLCPTranscoder
  256. {
  257. public :
  258.     // -----------------------------------------------------------------------
  259.     //  Constructors and Destructor
  260.     // -----------------------------------------------------------------------
  261.     Win32LCPTranscoder();
  262.     ~Win32LCPTranscoder();
  263.     // -----------------------------------------------------------------------
  264.     //  Implementation of the virtual transcoder interface
  265.     // -----------------------------------------------------------------------
  266.     virtual unsigned int calcRequiredSize(const char* const srcText);
  267.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText);
  268.     virtual char* transcode(const XMLCh* const toTranscode);
  269.     virtual char* transcode(const XMLCh* const toTranscode,
  270.                             MemoryManager* const manager);
  271.     virtual XMLCh* transcode(const char* const toTranscode);
  272.     virtual XMLCh* transcode(const char* const toTranscode,
  273.                              MemoryManager* const manager);
  274.     virtual bool transcode
  275.     (
  276.         const   char* const     toTranscode
  277.         ,       XMLCh* const    toFill
  278.         , const unsigned int    maxChars
  279.     );
  280.     virtual bool transcode
  281.     (
  282.         const   XMLCh* const    toTranscode
  283.         ,       char* const     toFill
  284.         , const unsigned int    maxChars
  285.     );
  286. private :
  287.     // -----------------------------------------------------------------------
  288.     //  Unimplemented constructors and operators
  289.     // -----------------------------------------------------------------------
  290.     Win32LCPTranscoder(const Win32LCPTranscoder&);
  291.     Win32LCPTranscoder& operator=(const Win32LCPTranscoder&);
  292. };
  293. XERCES_CPP_NAMESPACE_END
  294. #endif