/* Copyright (C) 2011 by Ivan Safrin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "PolyString.h" #include #include using namespace Polycode; using namespace std; String::String() { } String::String(const wchar_t *str) { if (str) wstrToUtf8(contents, str); } String::String(const char *str) { if (str) contents = str; } String::String(const char *str, size_t n) { if (str) contents = string(str, n); } String::String(const string& str) { contents = str; } String::String(const wstring& str) { wstrToUtf8(contents, str); } String::String(const wchar_t wchar) { std::wstring srcstr; srcstr = srcstr + wchar; std::string newstr; wstrToUtf8(newstr, srcstr); contents = contents + newstr; } String::~String() { } size_t String::getDataSizeWithEncoding(int encoding) const { switch(encoding) { case ENCODING_UTF8: { return contents.size(); } default: return 0; } } const char *String::getDataWithEncoding(int encoding) const { switch(encoding) { case ENCODING_UTF8: { return contents.c_str(); } break; default: return NULL; } } wchar_t *String::getWDataWithEncoding(int encoding) { switch(encoding) { case ENCODING_UTF8: { utf8toWStr(w_contents, contents); return (wchar_t *)w_contents.c_str(); } break; default: return NULL; } } void String::setDataWithEncoding(char *data, int encoding) { switch(encoding) { case ENCODING_UTF8: { if (data) contents = data; else contents = std::string(); } default: break; } } bool String::isNumber() { #ifdef _WINDOWS return false; #else std::string::const_iterator it = contents.begin(); while (it != contents.end() && std::isdigit(*it)) ++it; return !contents.empty() && it == contents.end(); #endif } vector String::split(const String &delim) const { vector tokens; bool trimEmpty = false; if(contents == "") return tokens; std::string::size_type pos, lastPos = 0; while(true) { pos = contents.find_first_of(delim.contents, lastPos); if(pos == std::string::npos) { pos = contents.length(); if(pos != lastPos || !trimEmpty) tokens.push_back(vector::value_type(contents.data()+lastPos, (string::size_type)pos-lastPos )); break; } else { if(pos != lastPos || !trimEmpty) tokens.push_back(vector::value_type(contents.data()+lastPos, (string::size_type)pos-lastPos )); } lastPos = pos + 1; } return tokens; } Number String::toNumber() { return atof(contents.c_str()); } int String::toInteger() { return atoi(contents.c_str()); } String String::replace(const String &what, const String &withWhat) const { size_t pos = 0; std::string retString = contents; while((pos = retString.find(what.contents, pos)) != std::string::npos) { retString.replace(pos, what.length(), withWhat.contents); pos += withWhat.length(); } return retString; } String String::toLowerCase() const { string str = contents; std::transform(str.begin(), str.end(), str.begin(),::tolower); return String(str); } String String::toUpperCase() const { string str = contents; std::transform(str.begin(), str.end(), str.begin(),::toupper); return String(str); } String String::NumberToString(Number value, int precision) { stringstream ss; ss << fixed << setprecision(precision) << value; return String(ss.str()); } String String::IntToString(int value) { stringstream ss; ss << value; return String(ss.str()); } const string& String::getSTLString() const { return contents; } const char *String::c_str() const { return contents.c_str(); } void String::append(const char c) { contents.append(1,c); } void utf8toWStr(WStr& dest, const Str& src){ dest.clear(); wchar_t w = 0; int bytes = 0; wchar_t err = L'\uFFFD'; for (size_t i = 0; i < src.size(); i++){ unsigned char c = (unsigned char)src[i]; if (c <= 0x7f){//first byte if (bytes){ dest.push_back(err); bytes = 0; } dest.push_back((wchar_t)c); } else if (c <= 0xbf){//second/third/etc byte if (bytes){ w = ((w << 6)|(c & 0x3f)); bytes--; if (bytes == 0) dest.push_back(w); } else dest.push_back(err); } else if (c <= 0xdf){//2byte sequence start bytes = 1; w = c & 0x1f; } else if (c <= 0xef){//3byte sequence start bytes = 2; w = c & 0x0f; } else if (c <= 0xf7){//3byte sequence start bytes = 3; w = c & 0x07; } else{ dest.push_back(err); bytes = 0; } } if (bytes) dest.push_back(err); } void wstrToUtf8(Str& dest, const WStr& src){ dest.clear(); for (size_t i = 0; i < src.size(); i++){ wchar_t w = src[i]; if (w <= 0x7f) dest.push_back((char)w); else if (w <= 0x7ff){ dest.push_back(0xc0 | ((w >> 6)& 0x1f)); dest.push_back(0x80| (w & 0x3f)); } else if (w <= 0xffff){ dest.push_back(0xe0 | ((w >> 12)& 0x0f)); dest.push_back(0x80| ((w >> 6) & 0x3f)); dest.push_back(0x80| (w & 0x3f)); } else if (w <= 0x10ffff){ // FIXME: wchar_t is 16 bits on some platforms, should convert from UTF16 to UTF8 dest.push_back(0xf0 | ((w >> 18)& 0x07)); dest.push_back(0x80| ((w >> 12) & 0x3f)); dest.push_back(0x80| ((w >> 6) & 0x3f)); dest.push_back(0x80| (w & 0x3f)); } else dest.push_back('?'); } }