Unicode.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:3k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: Unicode.h,v 1.8.2.2 2003/12/17 12:19:58 mike Exp $
  29.  * 
  30.  */
  31. #ifndef UNICODE_H
  32. #define UNICODE_H
  33. class Unicode {
  34. public:
  35.   // conversion to unicode
  36.   static int       WCLength(int codepage,const char *mbstr,int mblen);
  37.   static void       ToWC(int codepage,const char *mbstr,int mblen,
  38.     wchar_t *wcstr,int wclen);
  39.   // conversion to system default codepage
  40.   static int       MBLength(const wchar_t *wcstr,int wclen);
  41.   static void       ToMB(const wchar_t *wcstr,int wclen,char *mbstr,int mblen);
  42.   // utf8
  43.   static Buffer<char> ToUtf8(const CString& cs);
  44.   // convenience functions
  45.   static Buffer<wchar_t>  ToWCbuf(int codepage,const char *mbstr,int mblen);
  46.   static Buffer<char>   ToMBbuf(const wchar_t *wcstr,int wclen);
  47.   // MFC interface
  48.   static CString   ToCS(const wchar_t *wcstr,int wclen);
  49.   static CString   ToCS(const Buffer<wchar_t>& wcbuf) {
  50.     return ToCS(wcbuf,wcbuf.size());
  51.   }
  52.   static CString   ToCS(int codepage,const char *mbstr,int mblen) {
  53.     return ToCS(ToWCbuf(codepage,mbstr,mblen));
  54.   }
  55.   static Buffer<wchar_t>  ToWCbuf(const CString& str);
  56.   static Buffer<wchar_t>  ToWCbufZ(const CString& str);
  57.   // codepages support
  58.   static int   GetNumCodePages();
  59.   static const TCHAR   *GetCodePageName(int num);
  60.   static const wchar_t   *GetCodePageNameW(int num);
  61.   static int   GetIntCodePage(UINT mscp);
  62.   static UINT   GetMSCodePage(int cp);
  63.   static int   FindCodePage(const TCHAR *name);
  64.   static int   DefaultCodePage();
  65.   static const wchar_t   *GetTable(int cp); // only for builtin encodings
  66.   // codepage detection
  67.   static int       DetectCodePage(const char *mbstr,int mblen);
  68.   // case conversion
  69.   static Buffer<wchar_t>  Lower(const Buffer<wchar_t>& str);
  70.   // sortkey generation
  71.   static Buffer<char>  SortKey(LCID lcid,const wchar_t *str,int len);
  72.   static Buffer<char>  SortKey(LCID lcid,const wchar_t *str) {
  73.     return SortKey(lcid,str,wcslen(str));
  74.   }
  75. };
  76. #endif