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

xml/soap/webservice

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *****************************************************************************
  3.  *
  4.  * SBjsiString, string class that is a subset of STL wstring
  5.  *
  6.  * The SBjsiString class stores a string in a grow-only buffer, a
  7.  * functional subset of the STL wstring class. This header merely
  8.  * exists to make it easy to eliminate the use of STL wstring which
  9.  * does not exist on some Linux versions.
  10.  *
  11.  *****************************************************************************
  12.  ****************************************************************************/
  13. /****************License************************************************
  14.  * Vocalocity OpenVXI
  15.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  16.  * This program is free software; you can redistribute it and/or
  17.  * modify it under the terms of the GNU General Public License
  18.  * as published by the Free Software Foundation; either version 2
  19.  * of the License, or (at your option) any later version.
  20.  *  
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  *
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  29.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  30.  * registered trademarks of Vocalocity, Inc. 
  31.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  32.  * by Vocalocity.
  33.  ***********************************************************************/
  34. // -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  35. #ifndef _SBJSISTRINGSTL_HPP__
  36. #define _SBJSISTRINGSTL_HPP__
  37. #include "SBjsiInternal.h"
  38. // Highly efficient STL wstring implementation, use a wrapper to
  39. // ensure we don't go beyond a specific subset of functionality that
  40. // will break the non-STL implementation
  41. #include <string>
  42. using namespace std;
  43. class SBjsiNString;
  44. class SBjsiString
  45. {
  46.  public:
  47.   // Constructors and destructor
  48.   SBjsiString():
  49.     details()
  50.   {}
  51.   SBjsiString(const VXIchar *str):
  52.     details(str)
  53.   {}
  54.   SBjsiString(const SBjsiString &str):
  55.     details(str.details)
  56.   {}
  57.   SBjsiString(const VXIchar *str, int len):
  58.     details(str, len)
  59.   {}
  60.   SBjsiString(const char *str):
  61.     details()
  62.   {
  63.     details.reserve(strlen(str) + 1);
  64.     while (*str) details += (unsigned char) *str++;
  65.   }
  66.   SBjsiString(const char *str, int len):
  67.     details()
  68.   {
  69.     details.reserve(len + 1);
  70.     for (int i = 0; i < len; i++) details += (unsigned char) str[i];
  71.   }
  72.   SBjsiString(const SBjsiNString &str):
  73.     details()
  74.   {
  75.     operator=(str);
  76.   }
  77.   virtual ~SBjsiString()
  78.   {}
  79.   // Assignment operators
  80.   SBjsiString& operator=(const SBjsiString &str)
  81.   {
  82.     if ( &str != this ) details = str.details;
  83.     return *this;
  84.   }
  85.   SBjsiString & operator=(const VXIchar *str)
  86.   {
  87.     details = str;
  88.     return *this;
  89.   }
  90.   SBjsiString& operator=(const char *str)
  91.   {
  92.     clear();
  93.     return operator+=(str);
  94.   }
  95.   SBjsiString& operator=(const SBjsiNString& str)
  96.   {
  97.     clear();
  98.     return operator+=(str);
  99.   }
  100.   // Clear operator
  101.   void clear()
  102.   {
  103.     details.resize(0);
  104.   }
  105.   // Operators for appending data to the string
  106.   SBjsiString& operator+=(const SBjsiString & str)
  107.   {
  108.     details += str.details;
  109.     return *this;
  110.   }
  111.   SBjsiString& operator+=(const VXIchar *str)
  112.   {
  113.     details += str;
  114.     return *this;
  115.   }
  116.   inline SBjsiString& operator+=(const SBjsiNString& str);
  117.   SBjsiString& operator+=(const char *str)
  118.   {
  119.     details.reserve(details.size() + strlen(str));
  120.     while (*str) details += (unsigned char) *str++;
  121.     return *this;
  122.   }
  123.   SBjsiString & operator+=(VXIchar c)
  124.   {
  125.     details += c;
  126.     return *this;
  127.   }
  128.   SBjsiString& operator+=(char c)
  129.   {
  130.     details += (unsigned char) c;
  131.     return *this;
  132.   }
  133.   SBjsiString& append(const VXIchar *str, int len)
  134.   {
  135.     details.append(str, len);
  136.     return *this;
  137.   }
  138.   SBjsiString& append(const char *str, int len)
  139.   {
  140.     details.reserve(details.size() + len + 1);
  141.     for (int i = 0; i < len; i++) details += (unsigned char) str[i];
  142.     return *this;
  143.   }
  144. bool operator==(const VXIchar *str)
  145. {
  146. return wcscmp( str, this->c_str() ) == 0;
  147. }
  148. bool operator==(const SBjsiString& str)
  149. {
  150. return wcscmp( str.c_str(), this->c_str() ) == 0;
  151. }
  152.   // Operators to access the string data
  153.   unsigned int length() const
  154.   {
  155.     return details.length();
  156.   }
  157.   const VXIchar *c_str() const
  158.   {
  159.     return details.c_str();
  160.   }
  161.   const VXIchar *data() const
  162.   {
  163.     return details.data();
  164.   }
  165.   const VXIchar operator[] (unsigned int i) const
  166.   {
  167.     return details[i];
  168.   }
  169.   VXIchar& operator[] (unsigned int i)
  170.   {
  171.     return details[i];
  172.   }
  173.   void resize(int n, VXIchar c = L'')
  174.   {
  175.     details.resize(n,c);
  176.   }
  177.   void replace(int p, int n, VXIchar *s)
  178.   {
  179.     details.replace(p,n,s);
  180.   }
  181.   // Operator to search the string for a character
  182.   unsigned int find(VXIchar c) const
  183.   {
  184.     return details.find(c);
  185.   }
  186.  private:
  187.   std::basic_string<VXIchar> details;
  188. };
  189. class SBjsiNString
  190. {
  191.  public:
  192.   // Constructors and destructor
  193.   SBjsiNString(): details()
  194.   {}
  195.   SBjsiNString (const char *str):
  196.     details(str)
  197.   {}
  198.   SBjsiNString(const SBjsiNString &str):
  199.     details(str.details)
  200.   {}
  201.   SBjsiNString(const VXIchar *str):
  202.     details()
  203.   {
  204.     details.reserve(wcslen(str) + 1);
  205.     while (*str) details += SBinetW2C(*str++);
  206.   }
  207.   SBjsiNString(const SBjsiString& str):
  208.     details()
  209.   {
  210.     operator=(str);
  211.   }
  212.   SBjsiNString(const char *str, int len):
  213.     details(str,len)
  214.   {}
  215.   SBjsiNString(const VXIchar *str, int len):
  216.     details()
  217.   {
  218.     details.reserve(len + 1);
  219.     for (int i = 0; i < len; i++) details += SBinetW2C(str[i]);
  220.   }
  221.   virtual ~SBjsiNString()
  222.   {}
  223.   // Assignment operators
  224.   SBjsiNString& operator=(const SBjsiNString &str)
  225.   {
  226.     if (&str != this) details = str.details;
  227.     return *this;
  228.   }
  229.   SBjsiNString& operator=(const char *str)
  230.   {
  231.     details = str;
  232.     return *this;
  233.   }
  234.   SBjsiNString& operator=(const VXIchar *str)
  235.   {
  236.     clear();
  237.     return operator+=(str);
  238.   }
  239.   SBjsiNString& operator=(const SBjsiString& str)
  240.   {
  241.     clear();
  242.     return operator+=(str);
  243.   }
  244.   // Clear operator
  245.   void clear()
  246.   {
  247.     details.resize(0);
  248.   }
  249.   // Operators for appending data to the string
  250.   SBjsiNString& operator+=(const SBjsiNString & str)
  251.   {
  252.     details += str.details;
  253.     return *this;
  254.   }
  255.   SBjsiNString& operator+=(const char *str)
  256.   {
  257.     details += str;
  258.     return *this;
  259.   }
  260.   SBjsiNString& operator+=(char c)
  261.   {
  262.     details += c;
  263.     return *this;
  264.   }
  265.   SBjsiNString& operator+=(const SBjsiString & str)
  266.   {
  267.     int n = str.length();
  268.     details.reserve(n + 1);
  269.     for (int i = 0; i < n; i++) details += SBinetW2C(str[i]);
  270.     return *this;
  271.   }
  272.   SBjsiNString& operator+=(const VXIchar *str)
  273.   {
  274.     details.reserve(details.size() + wcslen(str) + 1);
  275.     while (*str) details += SBinetW2C(*str++);
  276.     return *this;
  277.   }
  278.   SBjsiNString& operator+=(VXIchar c)
  279.   {
  280.     details += SBinetW2C(c);
  281.     return *this;
  282.   }
  283.   SBjsiNString& append(const char *str, int len)
  284.   {
  285.     details.append(str, len);
  286.     return *this;
  287.   }
  288.   SBjsiNString& append(const VXIchar *str, int len)
  289.   {
  290.     details.reserve(details.size() + len + 1);
  291.     for (int i = 0; i < len; i++)
  292.       details += SBinetW2C(str[i]);
  293.     return *this;
  294.   }
  295.   // Operators to access the string data
  296.   unsigned int length() const
  297.   {
  298.     return details.length();
  299.   }
  300.   const char *c_str( ) const
  301.   {
  302.     return details.c_str( );
  303.   }
  304.   const char *data() const
  305.   {
  306.     return details.data();
  307.   }
  308.   char operator[] (unsigned int i) const
  309.   {
  310.     return details[i];
  311.   }
  312.   char& operator[] (unsigned int i)
  313.   {
  314.     return details[i];
  315.   }
  316.   void resize(int n, char c = '')
  317.   {
  318.     details.resize(n,c);
  319.   }
  320.   // Operator to search the string for a character
  321.   unsigned int find(char c) const
  322.   {
  323.     return details.find(c);
  324.   }
  325.  private:
  326.   string  details;
  327. };
  328. SBjsiString& SBjsiString::operator+=(const SBjsiNString& str)
  329. {
  330.   int n = str.length();
  331.   details.reserve(n + 1);
  332.   for (int i = 0; i < n; i++) details += (unsigned char) str[i];
  333.   return *this;
  334. }
  335. #endif  /* include guard */