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

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. #ifndef __XMLChar_Converter_HPP__
  23. #define __XMLChar_Converter_HPP__
  24. #include "VXItypes.h"                 // for VXIchar
  25. #ifndef HAVE_XERCES
  26. #error Need Apache Xerces to build the VoiceXML interpreter
  27. #endif
  28. #include <util/XercesDefs.hpp>        // for XMLCh
  29. #include <util/XMLString.hpp>         // for XMLString
  30. using namespace xercesc;
  31. // Xerces specifies that XMLCh must be able to store UTF-16 characters.
  32. // VXIchar should be the general wide character representation (wchar_t) of the
  33. // platform.  As wchar_t may be other types, conversion functions are
  34. // necessary.
  35. // ------*---------*---------*---------*---------*---------*---------*---------
  36. // The native Solaris and Linux wide character encoding is UTF-32.  This
  37. // provides an imperfect conversion from UTF-16 to UTF-32, ignoring all
  38. // surrogate pairs.
  39. #if defined(__linux__) || 
  40.     defined(SOLARIS) || defined(__SVR4) || defined(UNIXWARE) || 
  41.     defined(_decunix_)
  42. #define UTF16TO32
  43. // ------*---------*---------*---------*---------*---------*---------*---------
  44. // Windows uses UTF-16 (or UCS-2 which is nearly equivalent), so no conversion
  45. // is necessary.
  46. #elif defined(XML_WIN32)
  47. #define NOCONVERSION
  48. // ------*---------*---------*---------*---------*---------*---------*---------
  49. #else
  50. #error Platform not supported.
  51. #endif
  52. // ------*---------*---------*---------*---------*---------*---------*---------
  53. #if defined(NOCONVERSION)
  54. #include <cstring>
  55. inline bool Compare(const XMLCh * x, const VXIchar * y)
  56. { return wcscmp(x, y) == 0; }
  57. struct VXIcharToXMLCh {
  58.   const XMLCh * c_str() const                 { return cstr; }
  59.   VXIcharToXMLCh(const VXIchar * x) : cstr(x) { if (cstr != NULL && cstr[0] == 0xFEFF) ++cstr; }
  60.   ~VXIcharToXMLCh()                           { }
  61. private:
  62.   const XMLCh * cstr;
  63.   VXIcharToXMLCh(const VXIcharToXMLCh &);
  64.   VXIcharToXMLCh& operator=(const VXIcharToXMLCh &);
  65. };
  66. struct XMLChToVXIchar {
  67.   const VXIchar * c_str() const             { return cstr; }
  68.   XMLChToVXIchar(const XMLCh * x) : cstr(x) { }
  69.   ~XMLChToVXIchar() { }
  70. private:
  71.   const VXIchar * cstr;
  72.   XMLChToVXIchar(const XMLChToVXIchar &);
  73.   XMLChToVXIchar& operator=(const XMLChToVXIchar &);
  74. };
  75. #endif /* NOCONVERSION */
  76. // ------*---------*---------*---------*---------*---------*---------*---------
  77. #if defined(UTF16TO32)
  78. #include <ostream>
  79. inline bool Compare(const XMLCh * x, const VXIchar * y)
  80. {
  81.   if (x == NULL && y == NULL) return true;
  82.   if (x == NULL && *y == '') return true;
  83.   if (y == NULL && *x == '') return true;
  84.   if (y == NULL || x == NULL) return false;
  85.   while (*x && *y && VXIchar(*x) == *y) ++x, ++y;
  86.   if (*x || *y) return false;
  87.   return true;
  88. }
  89. struct VXIcharToXMLCh {
  90.   const XMLCh * c_str() const { return cstr; }
  91.   VXIcharToXMLCh(const VXIchar * x) : cstr(NULL)
  92.   {
  93.     if (x == NULL) return;
  94.     unsigned int len = wcslen(x) + 1;
  95.     cstr = new XMLCh[len];
  96.     if (cstr == NULL) return;
  97.     for (unsigned int i = 0; i < len; ++i)
  98.       // We throw out any surrogate characters (0xD800 - 0xDFFF)
  99.       cstr[i] = ((x[i] ^ 0xD800) < 0x0100) ? XMLCh(0xBF) : XMLCh(x[i]);
  100.   }
  101.   ~VXIcharToXMLCh() { delete [] cstr; }
  102. private:
  103.   XMLCh * cstr;
  104.   VXIcharToXMLCh(const VXIcharToXMLCh &);
  105.   VXIcharToXMLCh& operator=(const VXIcharToXMLCh &);
  106. };
  107. struct XMLChToVXIchar {
  108.   const VXIchar * c_str() const { return cstr; }
  109.   XMLChToVXIchar(const XMLCh * x) : cstr(NULL)
  110.   {
  111.     if (x == NULL) return;
  112.     unsigned int len = XMLString::stringLen(x) + 1;
  113.     cstr = new VXIchar[len];
  114.     if (cstr == NULL) return;
  115.     
  116.     unsigned int i = 0;
  117.     if (x[0] == 0xFEFF) ++i;
  118.     for (unsigned j = 0; i < len; ++i, ++j)
  119.       // We throw out anything above 0xFFFF
  120.       cstr[j] = (x[i] != 0 && (x[i] & ~XMLCh(0xFFFF))) ? VXIchar(0xBE)
  121.                                                        : VXIchar(x[i]);
  122.   }
  123.   ~XMLChToVXIchar() { delete [] cstr; }
  124. private:
  125.   VXIchar * cstr;
  126.   XMLChToVXIchar(const XMLChToVXIchar &);
  127.   XMLChToVXIchar& operator=(const XMLChToVXIchar &);
  128. };
  129. #endif /* UTF16TO32 */
  130. // ------*---------*---------*---------*---------*---------*---------*---------
  131. inline std::basic_ostream<VXIchar>& operator<<(std::basic_ostream<VXIchar>& os,
  132.        const XMLChToVXIchar & val)
  133. { return os << val.c_str(); }
  134. class xmlcharstring {
  135. public:
  136.   // constructors
  137.   xmlcharstring(const XMLCh* s) : data(NULL), len(0) {
  138.   storeit(s);
  139.   }
  140.   xmlcharstring() : data(NULL), len(0) {}
  141.   xmlcharstring(const xmlcharstring &x) : data(NULL), len(0) {
  142.     if( !x.empty() ) storeit(x.c_str());
  143.   }
  144.   
  145.   // destructor
  146.   ~xmlcharstring() {
  147.     clear();
  148.   }
  149.   
  150.   // members
  151.   bool empty(void) const { return (len == 0); }
  152.   size_t length(void) const { return len; }
  153.   const XMLCh* c_str(void) const { return (data ? data : (const XMLCh*)""); }
  154.   void clear(void) {
  155.     if( data ) ::free(data);
  156.     data = NULL;
  157.     len = 0;
  158.   }   
  159.   const XMLCh operator[](unsigned int i) const { return data[i]; }    
  160.     
  161.   // copy assignment
  162.   xmlcharstring & operator=(const XMLCh* s) {
  163.     clear();
  164.     storeit(s);
  165.     return *this;     
  166.   }
  167.   xmlcharstring & operator=(const xmlcharstring &x) {
  168.     if( this != &x ) {
  169.       clear();
  170.       if( !x.empty() ) storeit(x.c_str());
  171.     }
  172.     return *this;
  173.   }
  174.   
  175.   // operators
  176.   xmlcharstring & operator+(const XMLCh* s) {
  177.     storeit(s, true); // store and preserve old content
  178.     return *this;     
  179.   }  
  180.   xmlcharstring & operator+=(const XMLCh* s) {
  181.     storeit(s, true);
  182.     return *this;
  183.   } 
  184.   xmlcharstring & operator+(const xmlcharstring & x) {
  185.     if( !x.empty() ) storeit(x.c_str(), true);
  186.     return *this;
  187.   } 
  188.   xmlcharstring & operator+=(const xmlcharstring & x) {
  189.     if( !x.empty() ) storeit(x.c_str(), true);
  190.     return *this;
  191.   } 
  192.   
  193.   // comparison
  194.   bool operator==(const XMLCh* s) {
  195.     return (XMLString::compareString(data, s) == 0);
  196.   }
  197.   bool operator==(const xmlcharstring & x) {
  198.     return operator==(x.c_str());
  199.   }
  200.   bool operator>(const XMLCh* s) {
  201.     return (XMLString::compareString(data, s) > 0);
  202.   }
  203.   bool operator>(const xmlcharstring & x) {
  204.     return operator>(x.c_str());
  205.   }
  206.   bool operator<(const XMLCh* s) {
  207.     return !operator>(s);
  208.   }
  209.   bool operator<(const xmlcharstring & x) {
  210.     return !operator>(x);
  211.   }
  212.   
  213. private:
  214.   void storeit(const XMLCh* s, bool preserve = false) {
  215.     if( s ) {
  216.       if( !preserve ) {
  217.         clear();
  218.         len = XMLString::stringLen(s);
  219.         data = (XMLCh*)::malloc(sizeof(XMLCh)*(len+1)); 
  220.         XMLString::copyString(data, s);        
  221.       }
  222.       else {
  223.         size_t plen = len;
  224.         len += XMLString::stringLen(s);
  225.         XMLCh* ptr = (XMLCh*)::realloc(data, sizeof(XMLCh)*(len+1)); 
  226.         data = ptr;
  227.         XMLString::copyString(&data[plen], s);        
  228.       }
  229.     }
  230.   }
  231.   
  232. private:
  233.   XMLCh* data;
  234.   size_t len;     
  235. };
  236. #endif