JsiCharCvt.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:5k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. // -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  23. #ifndef _JSI_CHAR_CVT_H__
  24. #define _JSI_CHAR_CVT_H__
  25. #include "VXItypes.h"                 // for VXIchar
  26. // SpiderMonkey jschar specifies that jschar must be able to store
  27. // UTF-16 characters.  VXIchar should be the general wide character
  28. // representation (wchar_t) of the platform.  As wchar_t may be other
  29. // types, conversion functions are necessary.
  30. // ------*---------*---------*---------*---------*---------*---------*---------
  31. // The native Solaris and Linux wide character encoding is UTF-32.  This
  32. // provides an imperfect conversion from UTF-16 to UTF-32, ignoring all
  33. // surrogate pairs.
  34. #if defined(__linux__) || 
  35.     defined(SOLARIS) || defined(__SVR4) || defined(UNIXWARE) || 
  36.     defined(_decunix_)
  37. #define UTF16TO32
  38. // ------*---------*---------*---------*---------*---------*---------*---------
  39. // Windows uses UTF-16 (or UCS-2 which is nearly equivalent), so no conversion
  40. // is necessary.
  41. #elif defined(WIN32)
  42. #define NOCONVERSION
  43. // ------*---------*---------*---------*---------*---------*---------*---------
  44. #else
  45. #error Platform not supported.
  46. #endif
  47. // ------*---------*---------*---------*---------*---------*---------*---------
  48. #if defined(NOCONVERSION)
  49. #include <cstring>
  50. inline bool CompareJSchar(const jschar * x, const VXIchar * y)
  51. { return wcscmp(x, y) == 0; }
  52. struct VXIcharToJschar {
  53.   const jschar * c_str() const                 { return cstr; }
  54.   size_t length() const                        { return wcslen(cstr); }
  55.   VXIcharToJschar(const VXIchar * x) : cstr(x) { }
  56.   ~VXIcharToJschar()                           { }
  57. private:
  58.   const jschar * cstr;
  59.   VXIcharToJschar(const VXIcharToJschar &);
  60.   VXIcharToJschar& operator=(const VXIcharToJschar &);
  61. };
  62. struct JscharToVXIchar {
  63.   const VXIchar * c_str() const               { return cstr; }
  64.   size_t length() const                       { return wcslen(cstr); }
  65.   JscharToVXIchar(const jschar * x) : cstr(x) { }
  66.   ~JscharToVXIchar() { }
  67. private:
  68.   const VXIchar * cstr;
  69.   JscharToVXIchar(const JscharToVXIchar &);
  70.   JscharToVXIchar& operator=(const JscharToVXIchar &);
  71. };
  72. #endif /* NOCONVERSION */
  73. // ------*---------*---------*---------*---------*---------*---------*---------
  74. #if defined(UTF16TO32)
  75. #include <ostream>
  76. inline bool CompareJSchar(const jschar * x, const VXIchar * y)
  77. {
  78.   if (x == NULL && y == NULL) return true;
  79.   if (x == NULL && *y == '') return true;
  80.   if (y == NULL && *x == '') return true;
  81.   if (y == NULL || x == NULL) return false;
  82.   while (*x && *y && VXIchar(*x) == *y) ++x, ++y;
  83.   if (*x || *y) return false;
  84.   return true;
  85. }
  86. struct VXIcharToJschar {
  87.   const jschar * c_str() const { return cstr; }
  88.   size_t length() const { return len; }
  89.   VXIcharToJschar(const VXIchar * x) : cstr(NULL), len(0)
  90.   {
  91.     if (x == NULL) return;
  92.     len = wcslen(x);
  93.     cstr = new jschar[len + 1];
  94.     if (cstr == NULL) return;
  95.     for (unsigned int i = 0; i < len + 1; ++i)
  96.       // We throw out any surrogate characters (0xD800 - 0xDFFF)
  97.       cstr[i] = ((x[i] ^ 0xD800) < 0x0100) ? jschar(0xBF) : jschar(x[i]);
  98.   }
  99.   ~VXIcharToJschar() { if (cstr) delete [] cstr; }
  100. private:
  101.   size_t len;
  102.   jschar * cstr;
  103.   VXIcharToJschar(const VXIcharToJschar &);
  104.   VXIcharToJschar& operator=(const VXIcharToJschar &);
  105. };
  106. struct JscharToVXIchar {
  107.   const VXIchar * c_str() const { return cstr; }
  108.   size_t length() const { return len; }
  109.   JscharToVXIchar(const jschar * x) : cstr(NULL), len(0)
  110.   {
  111.     if (x == NULL) return;
  112.     len = 0;
  113.     while (x[len]) len++;
  114.     cstr = new VXIchar[len + 1];
  115.     if (cstr == NULL) return;
  116.     
  117.     cstr[0] = 0; 
  118.     unsigned int i = 0;
  119.     if (x[0] == 0xFEFF) ++i;
  120.     for (unsigned int j = 0; i < len + 1; ++i, ++j)
  121.       // We throw out anything above 0xFFFF
  122.       cstr[j] = (x[i] != 0 && (x[i] & ~jschar(0xFFFF))) ? VXIchar(0xBE)
  123.                                                        : VXIchar(x[i]);
  124.   }
  125.   ~JscharToVXIchar() {if (cstr) delete [] cstr; }
  126. private:
  127.   size_t len;
  128.   VXIchar * cstr;
  129.   JscharToVXIchar(const JscharToVXIchar &);
  130.   JscharToVXIchar& operator=(const JscharToVXIchar &);
  131. };
  132. #endif /* UTF16TO32 */
  133. #endif /* include guard */