finalcut/src/fstring.cpp

1863 lines
39 KiB
C++
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* fstring.cpp - Unicode string class with UTF-8 support *
* *
* This file is part of the Final Cut widget toolkit *
* *
* Copyright 2012-2018 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
2015-05-23 13:35:12 +02:00
2017-09-11 03:06:02 +02:00
#include <string>
#include <vector>
#include "final/fstring.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FString
//----------------------------------------------------------------------
// constructors and destructor
//----------------------------------------------------------------------
FString::FString (int len)
{
if ( len > 0 )
initLength(std::size_t(len));
2015-05-23 13:35:12 +02:00
else
initLength(0);
}
//----------------------------------------------------------------------
FString::FString (std::size_t len)
2015-05-23 13:35:12 +02:00
{
initLength(len);
}
//----------------------------------------------------------------------
FString::FString (std::size_t len, wchar_t c)
2015-05-23 13:35:12 +02:00
{
wchar_t* ps;
wchar_t* pe;
2015-05-23 13:35:12 +02:00
initLength(len);
ps = string;
pe = string + len;
while ( pe != ps )
*--pe = c;
}
//----------------------------------------------------------------------
FString::FString (const FString& s) // copy constructor
{
if ( ! s.isNull() )
_assign (s.string);
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FString::FString (const std::wstring& s)
{
if ( ! s.empty() )
2018-03-05 03:15:16 +01:00
_assign (s.c_str());
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::FString (const wchar_t s[])
2015-05-23 13:35:12 +02:00
{
if ( s )
_assign (s);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::FString (const std::string& s)
{
if ( ! s.empty() )
2018-03-05 03:15:16 +01:00
{
const wchar_t* wc_string = c_to_wc_str(s.c_str());
_assign(wc_string);
delete[] wc_string;
2018-03-05 03:15:16 +01:00
}
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::FString (const char s[])
2015-05-23 13:35:12 +02:00
{
if ( s )
2018-03-05 03:15:16 +01:00
{
const wchar_t* wc_string = c_to_wc_str(s);
_assign( wc_string );
delete[] wc_string;
2018-03-05 03:15:16 +01:00
}
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::FString (fc::SpecialCharacter c)
{
if ( c )
{
wchar_t s[2];
s[0] = static_cast<wchar_t>(c);
s[1] = L'\0';
_assign (s);
}
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FString::FString (const wchar_t c)
{
if ( c )
2018-03-05 03:15:16 +01:00
{
wchar_t s[2];
s[0] = c;
s[1] = L'\0';
_assign (s);
2018-03-05 03:15:16 +01:00
}
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::FString (const char c)
{
if ( c )
2018-03-05 03:15:16 +01:00
{
wchar_t s[2];
s[0] = wchar_t(c & 0xff);
s[1] = L'\0';
_assign (s);
2018-03-05 03:15:16 +01:00
}
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString::~FString() // destructor
{
if ( string )
delete[](string);
2015-05-23 13:35:12 +02:00
if ( c_string )
delete[](c_string);
}
// FString operators
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FString& FString::operator = (const FString& s)
2015-05-23 13:35:12 +02:00
{
2018-03-05 03:15:16 +01:00
_assign (s.string);
return *this;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString& FString::operator += (const FString& s)
{
_insert (length, s.length, s.string);
return *this;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
const FString FString::operator + (const FString& s)
2015-05-23 13:35:12 +02:00
{
FString tmp(string);
tmp._insert (length, s.length, s.string);
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString FString::operator + (const wchar_t c)
2015-05-23 13:35:12 +02:00
{
wchar_t s[2];
s[0] = c;
s[1] = L'\0';
FString tmp(string);
tmp._insert (length, 1, s);
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString FString::operator + (const char c)
2015-05-23 13:35:12 +02:00
{
wchar_t s[2];
s[0] = wchar_t(c & 0xff);
s[1] = L'\0';
FString tmp(string);
tmp._insert (length, 1, s);
return tmp;
2015-05-23 13:35:12 +02:00
}
2017-09-20 02:51:17 +02:00
//----------------------------------------------------------------------
FString& FString::operator << (const FString& s)
{
_insert (length, s.length, s.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (fc::SpecialCharacter c)
{
FString s(static_cast<wchar_t>(c));
_insert (length, s.length, s.string);
return *this;
}
2017-09-20 02:51:17 +02:00
//----------------------------------------------------------------------
FString& FString::operator << (const wchar_t c)
{
FString s(c);
2017-09-20 02:51:17 +02:00
_insert (length, s.length, s.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const char c)
{
FString s(c);
2017-09-20 02:51:17 +02:00
_insert (length, s.length, s.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const sInt16 num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const uInt16 num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const int num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const uInt num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const long num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const uLong num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const float num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const double num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
FString& FString::operator << (const lDouble num)
{
FString numstr = FString().setNumber(num);
_insert (length, numstr.length, numstr.string);
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (FString& s)
{
s._insert (s.length, length, string);
_assign(s.string);
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (std::wstring& s)
{
s += std::wstring(string);
return *this;
}
2018-03-03 22:24:57 +01:00
//----------------------------------------------------------------------
const FString& FString::operator >> (std::string& s)
{
s += toString();
return *this;
}
2017-09-20 02:51:17 +02:00
//----------------------------------------------------------------------
const FString& FString::operator >> (wchar_t& c)
{
c = ( length > 0 ) ? string[0] : L'\0';
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (char& c)
{
c = ( length > 0 ) ? char(string[0] & 0xff) : '\0';
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (sInt16& num)
{
num = toShort();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (uInt16& num)
{
num = toUShort();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (int& num)
{
num = toInt();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (uInt& num)
{
num = toUInt();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (long& num)
{
num = toLong();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (uLong& num)
{
num = toULong();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (double& num)
{
num = toDouble();
return *this;
}
//----------------------------------------------------------------------
const FString& FString::operator >> (float& num)
{
num = toFloat();
return *this;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
const FString& FString::operator () ()
2015-05-23 13:35:12 +02:00
{
return *this;
2015-05-23 13:35:12 +02:00
}
// public methods of FString
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
std::size_t FString::getUTF8length() const
2015-05-23 13:35:12 +02:00
{
std::size_t len;
const char* s;
2015-05-23 13:35:12 +02:00
2018-02-25 21:42:18 +01:00
if ( ! string )
return 0;
2015-05-23 13:35:12 +02:00
len = 0;
s = c_str();
while ( *s )
len += std::size_t((*s++ & 0xc0) != 0x80);
2015-05-23 13:35:12 +02:00
return len;
}
2018-03-21 00:02:43 +01:00
//----------------------------------------------------------------------
2018-10-05 05:35:33 +02:00
FString& FString::sprintf (const FString format, ...)
2018-03-21 00:02:43 +01:00
{
static const int BUFSIZE = 4096;
wchar_t buffer[BUFSIZE];
va_list args;
if ( ! format )
{
clear();
return *this;
}
va_start (args, format);
std::vswprintf (buffer, BUFSIZE, format.wc_str(), args);
va_end (args);
_assign (buffer);
return *this;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FString FString::clear()
{
if ( string )
delete[](string);
2015-05-23 13:35:12 +02:00
length = 0;
bufsize = 0;
string = 0;
return *this;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const wchar_t* FString::wc_str() const
{
// Returns a constant wide character string
return string;
}
//----------------------------------------------------------------------
wchar_t* FString::wc_str()
{
// Returns a wide character string
return string;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const char* FString::c_str() const
{
// Returns a constant c-string
if ( length > 0 )
return wc_to_c_str (string);
2018-03-10 13:17:57 +01:00
else if ( string )
return const_cast<char*>("");
else
return 0;
}
//----------------------------------------------------------------------
char* FString::c_str()
{
// Returns a c-string
2017-09-11 03:06:02 +02:00
if ( length > 0 )
return wc_to_c_str (string);
2018-03-10 13:17:57 +01:00
else if ( string )
return const_cast<char*>("");
else
return 0;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const std::string FString::toString() const
{
return std::string(c_str(), length);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString FString::toLower() const
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
p = s.string;
if ( p )
{
while ( *p )
{
*p = wchar_t(std::towlower(wint_t(*p)));
2015-05-23 13:35:12 +02:00
p++;
}
}
2015-05-23 13:35:12 +02:00
return s;
}
//----------------------------------------------------------------------
FString FString::toUpper() const
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
p = s.string;
if ( p )
{
while ( *p )
{
*p = wchar_t(std::towupper(wint_t(*p)));
2015-05-23 13:35:12 +02:00
p++;
}
}
2015-05-23 13:35:12 +02:00
return s;
}
//----------------------------------------------------------------------
sInt16 FString::toShort() const
{
long num;
2015-09-22 04:18:20 +02:00
num = toLong();
2018-03-05 00:25:05 +01:00
if ( num > SHRT_MAX )
throw std::overflow_error ("overflow");
2018-03-05 00:25:05 +01:00
if ( num < SHRT_MIN )
throw std::underflow_error ("underflow");
return sInt16(num);
}
//----------------------------------------------------------------------
uInt16 FString::toUShort() const
{
uLong num;
2018-03-05 00:25:05 +01:00
num = uLong(toULong());
if ( num > USHRT_MAX )
throw std::overflow_error ("overflow");
return uInt16(num);
}
//----------------------------------------------------------------------
int FString::toInt() const
{
long num;
2015-09-22 04:18:20 +02:00
num = toLong();
2018-03-05 00:25:05 +01:00
if ( num > INT_MAX )
throw std::overflow_error ("overflow");
2018-03-05 00:25:05 +01:00
if ( num < INT_MIN )
throw std::underflow_error ("underflow");
return int(num);
}
//----------------------------------------------------------------------
uInt FString::toUInt() const
{
uLong num;
2018-03-05 00:25:05 +01:00
num = uLong(toULong());
if ( num > UINT_MAX )
throw std::overflow_error ("overflow");
return uInt(num);
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
long FString::toLong() const
{
bool neg;
long num;
long tenth_limit;
long tenth_limit_digit;
wchar_t* p;
2015-05-23 13:35:12 +02:00
FString s;
neg = false;
2015-05-23 13:35:12 +02:00
num = 0;
tenth_limit = LONG_MAX / 10;
tenth_limit_digit = LONG_MAX % 10;
2015-09-22 04:18:20 +02:00
s = trim();
2015-05-23 13:35:12 +02:00
p = s.string;
if ( ! p )
throw std::invalid_argument ("null value");
if ( ! *p )
throw std::invalid_argument ("empty value");
if ( *p == L'-' )
2015-05-23 13:35:12 +02:00
{
p++;
neg = true;
tenth_limit = -(LONG_MIN / 10);
tenth_limit_digit += 1;
}
else if ( *p == L'+' )
{
p++;
}
2016-11-20 18:26:15 +01:00
while ( std::iswdigit(wint_t(*p)) )
{
uChar d = uChar((*p) - L'0');
if ( num > tenth_limit
2017-11-26 22:37:18 +01:00
|| (num == tenth_limit && d > tenth_limit_digit) )
2015-05-23 13:35:12 +02:00
{
2018-03-05 00:25:05 +01:00
if ( neg )
throw std::underflow_error ("underflow");
else
throw std::overflow_error ("overflow");
2015-05-23 13:35:12 +02:00
}
num = (num << 3) + (num << 1) + d; // (10 * num) + d
p++;
2015-05-23 13:35:12 +02:00
}
2016-11-20 18:26:15 +01:00
if ( *p != L'\0' && ! std::iswdigit(wint_t(*p)) )
throw std::invalid_argument ("no valid number");
if ( neg )
num = (~num) + 1;
2015-05-23 13:35:12 +02:00
return num;
}
//----------------------------------------------------------------------
uLong FString::toULong() const
{
uLong num;
uLong tenth_limit;
uLong tenth_limit_digit;
wchar_t* p;
2015-05-23 13:35:12 +02:00
FString s;
num = 0;
tenth_limit = ULONG_MAX / 10;
tenth_limit_digit = ULONG_MAX % 10;
2015-09-22 04:18:20 +02:00
s = trim();
2015-05-23 13:35:12 +02:00
p = s.string;
if ( ! p )
throw std::invalid_argument ("null value");
if ( ! *p )
throw std::invalid_argument ("empty value");
2018-03-05 00:25:05 +01:00
if ( *p == L'-' )
{
throw std::underflow_error ("underflow");
}
else if ( *p == L'+' )
2015-05-23 13:35:12 +02:00
{
p++;
}
2016-11-20 18:26:15 +01:00
while ( std::iswdigit(wint_t(*p)) )
{
uChar d = uChar((*p) - L'0');
if ( num > tenth_limit
2017-11-26 22:37:18 +01:00
|| (num == tenth_limit && d > tenth_limit_digit) )
2015-05-23 13:35:12 +02:00
{
throw std::overflow_error ("overflow");
2015-05-23 13:35:12 +02:00
}
num = (num << 3) + (num << 1) + d; // (10 * num) + d
p++;
2015-05-23 13:35:12 +02:00
}
2016-11-20 18:26:15 +01:00
if ( *p != L'\0' && ! std::iswdigit(wint_t(*p)) )
throw std::invalid_argument ("no valid number");
2015-05-23 13:35:12 +02:00
return num;
}
//----------------------------------------------------------------------
float FString::toFloat() const
{
double num;
2015-09-22 04:18:20 +02:00
num = toDouble();
2018-03-05 03:15:16 +01:00
if ( num > double(FLT_MAX) || num < double(-FLT_MAX) )
throw std::overflow_error ("overflow");
if ( std::fabs(num) < double(FLT_EPSILON) ) // num == 0.0f
2018-03-05 00:25:05 +01:00
throw std::underflow_error ("underflow");
return float(num);
}
//----------------------------------------------------------------------
double FString::toDouble() const
{
wchar_t* p;
double ret;
2015-09-22 04:18:20 +02:00
if ( ! string )
throw std::invalid_argument ("null value");
2015-09-22 04:18:20 +02:00
if ( ! *string )
throw std::invalid_argument ("empty value");
ret = std::wcstod(string, &p);
if ( p != 0 && *p != '\0' )
throw std::invalid_argument ("no valid floating point value");
if ( errno == ERANGE )
{
if ( ret >= HUGE_VAL || ret <= -HUGE_VAL )
throw std::overflow_error ("overflow");
2017-09-11 03:06:02 +02:00
if ( std::fabs(ret) < DBL_EPSILON ) // ret == 0.0l
throw std::underflow_error ("underflow");
}
return ret;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FString FString::ltrim() const
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
p = s.string;
while ( std::iswspace(wint_t(*p)) )
2015-05-23 13:35:12 +02:00
p++;
2015-05-23 13:35:12 +02:00
return FString(p);
}
//----------------------------------------------------------------------
FString FString::rtrim() const
{
wchar_t* p;
wchar_t* last;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
p = s.string;
last = p + length;
while ( std::iswspace(wint_t(*--last)) && last > p )
s.length--;
if ( last == p && std::iswspace(wint_t(*last)) )
2018-03-05 03:15:16 +01:00
s = L"";
2015-05-23 13:35:12 +02:00
else
*(last + 1) = '\0';
2015-05-23 13:35:12 +02:00
return s;
}
//----------------------------------------------------------------------
FString FString::trim() const
{
// handle NULL and empty string
if ( ! (string && *string) )
return *this;
2015-09-22 04:18:20 +02:00
FString s(ltrim());
2015-05-23 13:35:12 +02:00
return s.rtrim();
}
//----------------------------------------------------------------------
FString FString::left (std::size_t len) const
2015-05-23 13:35:12 +02:00
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
if ( len > length )
return s;
2015-05-23 13:35:12 +02:00
p = s.string;
s.length = len;
*(p + len) = '\0';
2015-05-23 13:35:12 +02:00
return s;
}
//----------------------------------------------------------------------
FString FString::right (std::size_t len) const
2015-05-23 13:35:12 +02:00
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
if ( len > length )
return s;
2015-05-23 13:35:12 +02:00
p = s.string;
p += (length - len);
2015-05-23 13:35:12 +02:00
return FString(p);
}
//----------------------------------------------------------------------
FString FString::mid (std::size_t pos, std::size_t len) const
2015-05-23 13:35:12 +02:00
{
wchar_t* p;
wchar_t* first;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
if ( pos == 0 )
pos = 1;
if ( pos <= length && pos + len > length )
2015-05-23 13:35:12 +02:00
len = length - pos + 1;
if ( pos > length || pos + len - 1 > length || len == 0 )
2015-05-23 13:35:12 +02:00
return FString(L"");
p = s.string;
first = p + pos - 1;
*(first + len) = '\0';
2015-05-23 13:35:12 +02:00
return FString(first);
}
//----------------------------------------------------------------------
2017-09-20 16:56:20 +02:00
FStringList FString::split (const FString& delimiter)
2015-05-23 13:35:12 +02:00
{
wchar_t* rest;
wchar_t* token;
2015-09-22 04:18:20 +02:00
FString s(string);
2017-09-20 16:56:20 +02:00
FStringList string_list;
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2017-09-20 16:56:20 +02:00
return string_list;
2015-05-23 13:35:12 +02:00
rest = 0;
token = extractToken(&rest, s.string, delimiter.wc_str());
while ( token )
{
2017-09-20 16:56:20 +02:00
string_list.push_back (FString(token));
2015-05-28 22:48:15 +02:00
token = extractToken (&rest, 0, delimiter.wc_str());
2015-05-23 13:35:12 +02:00
}
2017-09-20 16:56:20 +02:00
return string_list;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString& FString::setString (const FString& s)
2015-05-23 13:35:12 +02:00
{
_assign (s.string);
return *this;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString& FString::setNumber (long num)
{
wchar_t* s;
bool neg;
2015-05-23 13:35:12 +02:00
wchar_t buf[30];
s = &buf[29];
if ( num < 0 )
{
neg = true;
num = -num;
}
else
{
neg = false;
}
2015-05-23 13:35:12 +02:00
*s = '\0';
2015-05-23 13:35:12 +02:00
do
{
*--s = L"0123456789"[num % 10];
2015-05-23 13:35:12 +02:00
num /= 10;
}
while ( num );
2015-05-23 13:35:12 +02:00
if ( neg )
*--s = '-';
_assign (s);
2015-05-23 13:35:12 +02:00
return *this;
}
//----------------------------------------------------------------------
FString& FString::setNumber (uLong num)
{
wchar_t* s;
2015-05-23 13:35:12 +02:00
wchar_t buf[30];
s = &buf[29];
*s = '\0';
do
{
*--s = L"0123456789"[num % 10];
2015-05-23 13:35:12 +02:00
num /= 10;
}
while ( num );
2015-05-23 13:35:12 +02:00
_assign (s);
2015-05-23 13:35:12 +02:00
return *this;
}
//----------------------------------------------------------------------
FString& FString::setNumber (lDouble num, int precision)
{
wchar_t* s;
wchar_t format[20]; // = "%.<precision>Lg"
s = &format[0];
*s++ = L'%';
*s++ = L'.';
2017-09-20 02:51:17 +02:00
// The precision can not have more than 2 digits
if ( precision > 99 )
precision = 99;
if ( precision >= 10 )
{
2017-09-20 02:51:17 +02:00
// The precision value is 2 digits long
*s++ = precision / 10 + L'0';
*s++ = precision % 10 + L'0';
}
else
2017-09-20 02:51:17 +02:00
{
// The precision value has only 1 digit
*s++ = precision + L'0';
2017-09-20 02:51:17 +02:00
}
*s++ = L'L';
*s++ = L'g';
2017-09-20 02:51:17 +02:00
*s = L'\0';
return sprintf(format, num);
}
//----------------------------------------------------------------------
2015-05-23 13:35:12 +02:00
FString& FString::setFormatedNumber (long num, char separator)
{
int n;
wchar_t* s;
bool neg;
2015-05-23 13:35:12 +02:00
wchar_t buf[30];
n = 0;
s = &buf[29];
if ( separator == 0 )
separator = ' ';
2015-05-23 13:35:12 +02:00
if ( num < 0 )
{
neg = true;
num = -num;
}
else
{
neg = false;
}
2015-05-23 13:35:12 +02:00
*s = L'\0';
2015-05-23 13:35:12 +02:00
do
{
*--s = L"0123456789"[num % 10];
2015-05-23 13:35:12 +02:00
num /= 10;
2015-05-23 13:35:12 +02:00
if ( num && ++n % 3 == 0 )
*--s = separator;
}
while ( num );
2015-05-23 13:35:12 +02:00
if ( neg )
*--s = '-';
_assign (s);
2015-05-23 13:35:12 +02:00
return *this;
}
//----------------------------------------------------------------------
FString& FString::setFormatedNumber (uLong num, char separator)
{
int n;
wchar_t* s;
2015-05-23 13:35:12 +02:00
wchar_t buf[30];
n = 0;
s = &buf[29];
*s = L'\0';
if ( separator == 0 )
separator = ' ';
2015-05-23 13:35:12 +02:00
do
{
*--s = L"0123456789"[num % 10];
2015-05-23 13:35:12 +02:00
num /= 10;
2015-05-23 13:35:12 +02:00
if ( num && ++n % 3 == 0 )
*--s = separator;
}
while ( num );
2015-05-23 13:35:12 +02:00
_assign (s);
2015-05-23 13:35:12 +02:00
return *this;
}
// FString operators
//----------------------------------------------------------------------
bool FString::operator < (const FString& s) const
{
if ( string && ! s.string )
return false;
2015-05-23 13:35:12 +02:00
if ( ! string && s.string )
return true;
if ( ! (string || s.string) )
2015-05-23 13:35:12 +02:00
return false;
return ( std::wcscmp(string, s.string) < 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FString::operator <= (const FString& s) const
{
2018-02-28 23:52:34 +01:00
if ( ! (string || s.string) )
return true;
2015-05-23 13:35:12 +02:00
if ( string && ! s.string )
return false;
2015-05-23 13:35:12 +02:00
if ( ! string && s.string )
return true;
return ( std::wcscmp(string, s.string) <= 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FString::operator == (const FString& s) const
{
2018-02-25 21:42:18 +01:00
if ( ! (string || s.string) )
return true;
2017-08-12 20:10:27 +02:00
if ( bool(string) != bool(s.string) )
2015-05-23 13:35:12 +02:00
return false;
return ( std::wcscmp(string, s.string) == 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FString::operator != (const FString& s) const
{
2018-02-25 21:42:18 +01:00
if ( ! (string || s.string) )
return false;
2017-08-12 20:10:27 +02:00
if ( bool(string) != bool(s.string) )
2015-05-23 13:35:12 +02:00
return true;
return ( std::wcscmp(string, s.string) != 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FString::operator >= (const FString& s) const
{
if ( string && ! s.string )
return true;
2015-05-23 13:35:12 +02:00
if ( ! string && s.string )
return false;
if ( ! (string || s.string) )
2015-05-23 13:35:12 +02:00
return true;
return ( std::wcscmp(string, s.string) >= 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FString::operator > (const FString& s) const
{
2018-03-01 00:00:30 +01:00
if ( ! (string || s.string) )
return false;
2015-05-23 13:35:12 +02:00
if ( string && ! s.string )
return true;
2015-05-23 13:35:12 +02:00
if ( ! string && s.string )
return false;
return ( std::wcscmp(string, s.string) > 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString& FString::insert (const FString& s, int pos)
{
if ( isNegative(pos) || uInt(pos) > length )
2015-05-23 13:35:12 +02:00
throw std::out_of_range("");
_insert (uInt(pos), s.length, s.string);
return *this;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString& FString::insert (const FString& s, std::size_t pos)
2015-05-23 13:35:12 +02:00
{
2018-03-07 00:48:06 +01:00
if ( pos > length )
2015-05-23 13:35:12 +02:00
throw std::out_of_range("");
_insert (pos, s.length, s.string);
return *this;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FString FString::replace (const FString& from, const FString& to)
{
wchar_t* p;
std::size_t from_length, to_length, pos;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
// handle NULL and empty string
if ( ! (string && *string) )
2015-05-23 13:35:12 +02:00
return s;
2015-05-23 13:35:12 +02:00
if ( from.isNull() || to.isNull() )
return s;
2018-03-14 00:53:28 +01:00
if ( from.isEmpty() )
2018-03-08 17:57:17 +01:00
return s;
2015-05-23 13:35:12 +02:00
p = s.string;
from_length = from.getLength();
to_length = to.getLength();
pos = 0;
2015-05-23 13:35:12 +02:00
while ( *p )
{
if ( std::wcsncmp(p, from.string, from_length) == 0 )
2015-05-23 13:35:12 +02:00
{
s._remove(pos, from_length);
s._insert(pos, to_length, to.string);
pos += to_length;
p = s.string + pos;
}
else
{
pos++;
p++;
}
}
2015-05-23 13:35:12 +02:00
return s;
}
//----------------------------------------------------------------------
FString FString::replaceControlCodes() const
{
wchar_t* p;
2015-09-22 04:18:20 +02:00
FString s(string);
2015-05-23 13:35:12 +02:00
p = s.string;
if ( p )
{
while ( *p )
{
if ( *p <= L'\x1f' )
{
*p += L'\x2400';
}
else if ( *p == L'\x7f' )
{
*p = L'\x2421';
}
else if ( *p >= L'\x80' && *p <= L'\x9f' )
{
*p = L' ';
}
else if ( ! std::iswprint(wint_t(*p)) )
*p = L' ';
p++;
}
}
return s;
}
//----------------------------------------------------------------------
2017-03-26 20:40:04 +02:00
FString FString::expandTabs (int tabstop) const
{
uLong last;
2017-09-20 16:56:20 +02:00
FStringList tab_split;
FString instr(string);
FString outstr;
2017-03-26 20:40:04 +02:00
if ( tabstop <= 0 )
return instr;
tab_split = instr.split("\t");
last = tab_split.size();
for (std::size_t i = 0; i < last; i++)
{
std::size_t len = tab_split[i].getLength();
std::size_t tab_len = std::size_t(tabstop);
2018-03-08 17:57:17 +01:00
if ( i == last - 1 )
outstr += tab_split[i];
else
outstr += tab_split[i] + FString(tab_len - (len % tab_len), L' ');
}
return outstr;
}
//----------------------------------------------------------------------
FString FString::removeDel() const
{
wchar_t* p;
FString s(string);
p = s.string;
if ( p )
{
uInt i = 0;
uInt d = 0;
while ( *p )
{
if ( *p == 0x7f )
{
d++;
}
else if ( d > 0 )
{
d--;
}
else
{
s.string[i] = *p;
i++;
}
p++;
}
s.string[i] = L'\0';
s.length = i;
}
return s;
}
//----------------------------------------------------------------------
FString FString::removeBackspaces() const
{
wchar_t* p;
FString s(string);
p = s.string;
if ( p )
{
uInt i = 0;
while ( *p )
{
if ( *p != L'\b' )
{
s.string[i] = *p;
i++;
}
else if ( i > 0 )
{
i--;
}
p++;
}
s.string[i] = L'\0';
s.length = i;
}
return s;
}
2018-03-10 05:27:55 +01:00
//----------------------------------------------------------------------
const FString& FString::overwrite (const FString& s, int pos)
{
if ( pos < 0 )
return overwrite (s, 0);
return overwrite (s, std::size_t(pos));
2018-03-10 05:27:55 +01:00
}
//----------------------------------------------------------------------
const FString& FString::overwrite (const FString& s, std::size_t pos)
{
2018-03-10 05:27:55 +01:00
if ( pos > length )
pos = length;
if ( length >= (pos + s.length) )
{
std::wcsncpy (string + pos, s.string, s.length);
}
else
{
std::wcsncpy (string + pos, s.string, length - pos);
_insert (length, pos + s.length - length, s.string + length - pos);
}
return *this;
}
2018-03-10 05:27:55 +01:00
//----------------------------------------------------------------------
const FString& FString::remove (std::size_t pos, std::size_t len)
{
2018-03-10 05:27:55 +01:00
if ( pos > length )
return *this;
if ( pos + len > length )
len = length - pos;
_remove (pos, len);
return *this;
}
//----------------------------------------------------------------------
2018-03-10 05:27:55 +01:00
bool FString::includes (const FString& s) const
{
2018-03-10 05:27:55 +01:00
if ( ! s )
return false;
if ( ! (string && s.string) )
2018-02-25 21:42:18 +01:00
return false;
return ( std::wcsstr(string, s.string) != 0 );
}
// private methods of FString
//----------------------------------------------------------------------
inline void FString::initLength (std::size_t len)
{
if ( len == 0 )
return;
length = len;
bufsize = FWDBUFFER + len + 1;
2017-08-12 22:55:29 +02:00
try
{
string = new wchar_t[bufsize]();
std::wmemset (string, L'\0', bufsize);
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << ex.what() << std::endl;
}
}
//----------------------------------------------------------------------
inline void FString::_assign (const wchar_t s[])
{
2018-03-05 22:26:44 +01:00
if ( ! s )
{
clear();
return;
}
2018-03-10 13:17:57 +01:00
if ( string && std::wcscmp(string, s) == 0 )
return; // string == s
uInt new_length = uInt(std::wcslen(s));
if ( ! string || new_length > capacity() )
{
if ( string )
delete[](string);
bufsize = FWDBUFFER + new_length + 1;
try
{
string = new wchar_t[bufsize]();
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << ex.what() << std::endl;
return;
}
}
2017-04-11 00:30:27 +02:00
std::wcsncpy (string, s, bufsize);
length = new_length;
string[capacity()] = L'\0';
}
//----------------------------------------------------------------------
inline void FString::_insert (std::size_t len, const wchar_t s[])
{
if ( len == 0 ) // String s is a null or a empty string
return;
2018-10-02 01:03:44 +02:00
if ( string )
delete[](string);
2018-10-02 01:03:44 +02:00
length = len;
bufsize = FWDBUFFER + length + 1;
2018-10-02 01:03:44 +02:00
try
{
string = new wchar_t[bufsize]();
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return;
}
std::wcsncpy (string, s, bufsize);
string[capacity()] = L'\0';
2018-10-02 01:03:44 +02:00
}
2018-10-02 01:03:44 +02:00
//----------------------------------------------------------------------
inline void FString::_insert ( std::size_t pos
, std::size_t len
, const wchar_t s[] )
2018-10-02 01:03:44 +02:00
{
if ( len == 0 ) // String s is a null or a empty string
return;
2018-10-02 01:03:44 +02:00
if ( ! string ) // string is null
{
_insert (len, s);
}
else
{
std::size_t x;
if ( length + len <= capacity() )
{
// output string <= bufsize
for (x = length; x + 1 > pos; x--) // shifting right side + '\0'
string[x + len] = string[x];
for (x = 0; x < len; x++) // insert string
string[x + pos] = s[x];
length += len;
}
else
{
wchar_t* sptr;
// output string > bufsize
bufsize = FWDBUFFER + length + len + 1;
try
{
sptr = new wchar_t[bufsize](); // generate new string
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return;
}
std::size_t y = 0;
for (x = 0; x < pos; x++) // left side
sptr[y++] = string[x];
for (x = 0 ; x < len; x++) // insert string
sptr[y++] = s[x];
for (x = pos; x < length + 1; x++) // right side + '\0'
sptr[y++] = string[x];
length += len;
delete[](string); // delete old string
string = sptr;
}
}
}
//----------------------------------------------------------------------
inline void FString::_remove (std::size_t pos, std::size_t len)
{
if ( capacity() - length + len <= FWDBUFFER )
{
// shifting left side to pos
for (std::size_t i = pos; i + len < length + 1; i++)
string[i] = string[i + len];
length -= len;
}
else
{
wchar_t* sptr;
bufsize = length + 1 - len + FWDBUFFER;
try
{
sptr = new wchar_t[bufsize](); // generate new string
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return;
}
std::size_t x, y = 0;
for (x = 0; x < pos; x++) // left side
sptr[y++] = string[x];
for (x = pos + len; x < length + 1; x++) // right side + '\0'
sptr[y++] = string[x];
delete[](string); // delete old string
string = sptr;
length -= len;
}
}
//----------------------------------------------------------------------
inline char* FString::wc_to_c_str (const wchar_t s[]) const
{
int mblength
, size
, dest_size;
const wchar_t* src;
if ( ! s ) // handle NULL string
return 0;
if ( ! *s ) // handle empty string
{
try
{
// Generate a empty string ("")
c_string = new char[1]();
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return 0;
}
return c_string;
}
if ( c_string )
delete[](c_string);
size = int(std::wcslen(s)) + 1;
dest_size = size * int(CHAR_SIZE);
src = s;
std::mbstate_t state;
std::memset (&state, '\0', sizeof(mbstate_t));
try
{
2018-10-08 04:14:20 +02:00
c_string = new char[std::size_t(dest_size)]();
// pre-initialiaze the whole string with '\0'
std::memset (c_string, '\0', std::size_t(dest_size));
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return 0;
}
2018-10-08 04:14:20 +02:00
mblength = int(std::wcsrtombs (c_string, &src, std::size_t(dest_size), &state));
if ( mblength == -1 && errno != EILSEQ )
{
delete[](c_string);
c_string = 0;
return const_cast<char*>("");
}
return c_string;
}
//----------------------------------------------------------------------
inline wchar_t* FString::c_to_wc_str (const char s[]) const
{
int wclength
, size
, dest_size;
const char* src;
wchar_t* dest;
if ( ! s ) // handle NULL string
return 0;
if ( ! *s ) // handle empty string
{
try
{
// Generate a empty wide string (L"")
return new wchar_t[1]();
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return 0;
}
}
size = int(std::strlen(s)) + 1;
dest_size = size * int(CHAR_SIZE);
src = s;
std::mbstate_t state;
std::memset (&state, '\0', sizeof(mbstate_t));
try
{
2018-10-08 04:14:20 +02:00
dest = new wchar_t[std::size_t(size)]();
// pre-initialiaze the whole string with '\0'
std::wmemset (dest, L'\0', std::size_t(size));
}
catch (const std::bad_alloc& ex)
{
std::cerr << bad_alloc_str << " " << ex.what() << std::endl;
return 0;
}
2018-10-08 04:14:20 +02:00
wclength = int(std::mbsrtowcs (dest, &src, std::size_t(dest_size), &state));
2015-05-23 13:35:12 +02:00
if ( wclength == -1 )
2015-05-23 13:35:12 +02:00
{
if ( src != s )
return dest;
else
2015-05-23 13:35:12 +02:00
{
delete[] dest;
return 0;
2015-05-23 13:35:12 +02:00
}
}
if ( wclength == size )
dest[size - 1] = '\0';
if ( wclength )
return dest;
else
2015-05-23 13:35:12 +02:00
{
delete[] dest;
return 0;
2015-05-23 13:35:12 +02:00
}
}
//----------------------------------------------------------------------
inline wchar_t* FString::extractToken ( wchar_t* rest[]
, const wchar_t s[]
, const wchar_t delim[] )
2015-05-23 13:35:12 +02:00
{
wchar_t* token;
token = ( s ) ? const_cast<wchar_t*>(s) : *rest;
2015-05-23 13:35:12 +02:00
2018-03-14 00:53:28 +01:00
if ( ! token )
return 0;
if ( ! token[0] )
return 0;
2015-05-23 13:35:12 +02:00
*rest = std::wcspbrk(token, delim);
if ( *rest )
*(*rest)++ = '\0';
else
*rest = token + std::wcslen(token);
return token;
}
// FString non-member operators
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
const FString operator + (const FString& s1, const FString& s2)
2015-05-23 13:35:12 +02:00
{
FString tmp(s1);
tmp._insert ( uInt(std::wcslen(s1.wc_str()))
, uInt(std::wcslen(s2.wc_str()))
, s2.wc_str() );
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString operator + (const FString& s, const wchar_t c)
2015-05-23 13:35:12 +02:00
{
FString tmp(s);
tmp._insert ( uInt(std::wcslen(s.wc_str())), 1, &c);
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString operator + (const std::wstring& s1, const FString& s2)
2015-05-23 13:35:12 +02:00
{
FString tmp(s1);
tmp._insert ( uInt(std::wcslen(s1.c_str()))
, uInt(std::wcslen(s2.wc_str()))
, s2.wc_str() );
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString operator + (const wchar_t s1[], const FString& s2)
2015-05-23 13:35:12 +02:00
{
FString tmp(s1);
tmp._insert ( uInt(std::wcslen(s1))
, uInt(std::wcslen(s2.wc_str()))
, s2.wc_str() );
return tmp;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
const FString operator + (const std::string& s1, const FString& s2)
2015-05-23 13:35:12 +02:00
{
FString tmp(s1);
tmp._insert ( tmp.getLength()
, uInt(std::wcslen(s2.wc_str()))
, s2.wc_str() );
return tmp;
}
//----------------------------------------------------------------------
const FString operator + (const char s1[], const FString& s2)
{
FString tmp(s1);
tmp._insert ( tmp.getLength()
, uInt(std::wcslen(s2.wc_str()))
, s2.wc_str() );
return tmp;
}
//----------------------------------------------------------------------
const FString operator + (const wchar_t c, const FString& s)
{
FString tmp(c);
tmp._insert (1, uInt(std::wcslen(s.wc_str())), s.wc_str());
return tmp;
2015-05-23 13:35:12 +02:00
}
2015-05-28 22:48:15 +02:00
//----------------------------------------------------------------------
const FString operator + (const char c, const FString& s)
2015-05-28 22:48:15 +02:00
{
FString tmp(c);
tmp._insert (1, uInt(std::wcslen(s.wc_str())), s.wc_str());
return tmp;
2015-05-28 22:48:15 +02:00
}
//----------------------------------------------------------------------
const FString operator + (const FString& s, const char c)
{
FString tmp1(s);
wchar_t tmp2[2];
tmp2[0] = wchar_t(c & 0xff);
tmp2[1] = L'\0';
tmp1._insert (s.length, 1, tmp2);
return tmp1;
}
2017-09-20 02:51:17 +02:00
//----------------------------------------------------------------------
std::ostream& operator << (std::ostream& outstr, const FString& s)
{
2018-03-10 13:17:57 +01:00
if ( s.length > 0 )
2017-09-20 02:51:17 +02:00
outstr << s.wc_to_c_str( s.string );
return outstr;
}
//----------------------------------------------------------------------
std::istream& operator >> (std::istream& instr, FString& s)
{
const wchar_t* wc_str;
char buf[FString::INPBUFFER + 1];
instr.getline (buf, FString::INPBUFFER);
wc_str = s.c_to_wc_str(buf);
if ( wc_str )
{
s._assign (wc_str);
delete[] wc_str;
}
return instr;
}
//----------------------------------------------------------------------
std::wostream& operator << (std::wostream& outstr, const FString& s)
{
2018-03-10 13:17:57 +01:00
if ( s.length > 0 )
2017-09-20 02:51:17 +02:00
outstr << s.string;
return outstr;
}
//----------------------------------------------------------------------
std::wistream& operator >> (std::wistream& instr, FString& s)
{
wchar_t buf[FString::INPBUFFER + 1];
instr.getline (buf, FString::INPBUFFER);
s._assign (buf);
return instr;
}
} // namespace finalcut