13 #include <boost/functional/hash.hpp>
14 #include <boost/serialization/split_free.hpp>
99 template <
typename QStringType,
typename QCoreApp>
102 return QCoreApp::translate(
"makVrv::DtUnicode",
toUtf8().c_str(), 0);
106 template <
typename QStringType>
109 return fromUtf16(qstr.utf16(),qstr.length());
122 inline void setFromUtf8(
const unsigned char* utf8,
int len = -1);
131 inline void setFromUtf16(
const unsigned short* utf16,
int len = -1);
135 inline void setFromUtf32(
const unsigned int* utf32,
int len = -1);
143 inline void setFromAscii(
const char* ascii,
int len = -1);
146 template <
typename QStringType>
156 inline void toAscii(std::string& str)
const;
157 inline std::string
toAscii()
const { std::string temp;
toAscii(temp);
return temp;}
161 inline void toLatin1(std::string& str)
const;
164 inline void toUtf8(std::string& str)
const;
165 inline std::string
toUtf8()
const { std::string temp;
toUtf8(temp);
return temp;}
170 template <
typename QStringType>
177 template <
typename QStringType>
202 inline size_t length()
const;
236 inline void resize(
int size );
254 inline explicit DtUnicode(
const unsigned short* utf16,
int len = -1);
257 inline explicit DtUnicode(
const unsigned int* utf32,
int len = -1);
260 inline explicit DtUnicode(
const std::string& ascii);
276 inline void resize(
size_t newSize);
289 inline size_t size()
const;
298 inline bool unique()
const;
301 inline bool empty()
const;
310 volatile long*
count;
329 size_t seed = 2166136261U;
331 size_t last = val.
length();
332 size_t stride = 1 + last / 10;
338 for(; first < last ; first += stride )
340 seed = 16777619U * seed ^ (size_t)val.
codeUnits()[first];
Definition: DtUnicode.h:246
DtUnicode & operator+=(const DtUnicode &str)
Append a string to the end.
Definition: DtUnicode.inl:198
CodeUnit * begin
Definition: DtUnicode.h:314
size_t size() const
Definition: DtUnicode.inl:946
DtUnicode()
CTOR creates an empty string.
Definition: DtUnicode.inl:164
virtual ~DtUnicode()
DTOR may NOT deallocate memory as this string may share data.
Definition: DtUnicode.inl:178
A unicode string.
Definition: DtUnicode.h:33
DtUnicode subString(size_t pos=0, int len=-1) const
Create a substring starting at position, for n characters.
Definition: DtUnicode.inl:667
static DtUnicode fromUtf8(const unsigned char *utf8, int len=-1)
Create a unicode string from an UTF-16 encoded string, the string MUST be zero terminated if the leng...
Definition: DtUnicode.inl:256
void setFromLatin1(const char *latin, int len=-1)
Set from an UTF-8 encoded string, the string MUST be zero terminated if the length is not passed...
Definition: DtUnicode.inl:346
void concat(const CodeUnitArray &other)
Definition: DtUnicode.inl:961
bool operator!=(const DtUnicode &other) const
Test if two strings are not identical.
Definition: DtUnicode.inl:540
size_t capacity() const
Definition: DtUnicode.inl:953
static DtUnicode fromWCharArray(const wchar_t utf16[], int len=-1)
Static create via specifying encoding.
Definition: DtUnicode.inl:244
Contains the DtUnicode class definition.
bool unique() const
Am I unique.
Definition: DtUnicode.inl:971
CodeUnit * end
Definition: DtUnicode.h:315
void clear()
Resize the array to 0, does not change the memory allocation if the array is unique.
Definition: DtUnicode.inl:806
unsigned short CodeUnit
Definition: DtUnicode.h:36
void setFromUtf8(const unsigned char *utf8, int len=-1)
Set from an UTF-8 encoded string, the string MUST be zero terminated if the length is not passed...
Definition: DtUnicode.inl:318
size_t calculateCodePoints() const
Calculate the number of Code Points.
Definition: DtUnicode.inl:602
void reserve(size_t capacity)
Ensure the array's capacity is at least capacity, do not change size.
Definition: DtUnicode.inl:798
void push_back(const DtUnicodeChar &x)
Append a unicode character to the string.
Definition: DtUnicode.inl:691
CodeUnitArray()
Definition: DtUnicode.inl:762
size_t count(const DtUnicodeChar &x) const
Definition: DtUnicode.inl:617
Internal structure used to store the code units.
Definition: DtUnicode.h:268
std::string toUtf8() const
Definition: DtUnicode.h:165
size_t length() const
Get the length in Code Units.
Definition: DtUnicode.inl:596
void setFromUtf16(const unsigned short *utf16, int len=-1)
Set from an UTF-16 encoded string, the string MUST be zero terminated if the length is not passed...
Definition: DtUnicode.inl:481
DtUnicode operator+(const DtUnicode &str) const
Append two strings together.
Definition: DtUnicode.inl:216
bool empty() const
Am I empty.
Definition: DtUnicode.inl:977
size_t sizeInBytes() const
Get the size in 8bit bytes.
Definition: DtUnicode.h:205
void setFromAscii(const std::string &ascii)
Set from an ascii string, the string MUST be zero terminated if the length is not passed...
Definition: DtUnicode.inl:289
volatile std::atomic_long * count
Definition: DtUnicode.h:312
Definition: DtUnicode.h:247
virtual bool containsRightToLeft() const
Returns true if this text contains any right to left characters.
Definition: DtUnicode.inl:1009
A single unicode character.
Definition: DtUnicodeChar.h:17
static DtUnicode tr(const char *ascii)
Ascii translation function, used to be compatible with Qt's translation tools.
Definition: DtUnicode.h:92
void setFromUtf32(const unsigned int *utf32, int len=-1)
Set from an UTF-32 encoded string, the string MUST be zero terminated if the length is not passed...
Definition: DtUnicode.inl:493
QStringType translate() const
Utility function for translating a DtUnicode variable initialized using the static DtUnicode::tr func...
Definition: DtUnicode.h:100
CodeUnitArray myCodeUnits
Definition: DtUnicode.h:318
std::string toAscii() const
Definition: DtUnicode.h:157
DtUnicode & operator=(const DtUnicode &str)
Assignment operator copies the string, this function will NOT allocate memory for the string...
Definition: DtUnicode.inl:188
void resize(int size)
Resize a string to a new size, if the size < 0 the string will be empty.
Definition: DtUnicode.inl:700
Definition: DtUnicode.h:245
~CodeUnitArray()
Definition: DtUnicode.inl:770
int indexOf(const DtUnicodeChar &x, size_t pos=0) const
Search for a character starting a pos, returns index, or -1 if not found.
Definition: DtUnicode.inl:636
static DtUnicode fromWideString(const std::wstring &str)
Set from a std::wstring.
Definition: DtUnicode.inl:250
static DtUnicode fromUtf16(const unsigned short *utf16, int len=-1)
Create a unicode string from an UTF-16 encoded string, the string MUST be zero terminated if the leng...
Definition: DtUnicode.inl:267
void setFromQString(QStringType qstr)
Template function for setting from Qt 4 style string.
Definition: DtUnicode.h:147
const CodeUnit * codeUnits() const
Get an array of code units.
Definition: DtUnicode.h:211
bool operator==(const DtUnicode &other) const
Test if two strings are identical.
Definition: DtUnicode.inl:516
CodeUnit * last
Definition: DtUnicode.h:316
static DtUnicode fromQString(QStringType qstr)
Template function for setting from Qt 4 style string.
Definition: DtUnicode.h:107
x y t t *t x y t t t x y t t t x *y t *t t x *y t *t t x y t t t x y t t t x(y+z)
void setFromWCharArray(const wchar_t utf16[], int len=-1)
Initialize via specifying encoding.
Definition: DtUnicode.inl:476
void toQString(QStringType &qstr) const
Template function for initializing a Qt 4 style string.
Definition: DtUnicode.h:178
void resize(size_t newSize)
Resize the array.
Definition: DtUnicode.inl:870
size_t calculateCapacity(size_t necessarySize)
Definition: DtUnicode.inl:922
QStringType toQString() const
Template function for outputting a Qt 4 style string.
Definition: DtUnicode.h:171
std::size_t hash_value(DtUnicode const &val)
Definition: DtUnicode.h:325
static DtUnicode fromAscii(const std::string &ascii)
Create a unicode string from an ascii string, the string MUST be zero terminated if the length is not...
Definition: DtUnicode.inl:284
bool operator<(const DtUnicode &other) const
Test if a string is less than another based on their first different character or the length...
Definition: DtUnicode.inl:564
CodeUnitArray & operator=(const CodeUnitArray &)
Definition: DtUnicode.inl:784
static DtUnicode fromUtf32(const unsigned int *utf32, int len=-1)
Create a unicode string from an UTF-32 encoded string, the string MUST be zero terminated if the leng...
Definition: DtUnicode.inl:273
void dec_ref()
Decrement the reference count.
Definition: DtUnicode.inl:987
std::wstring toWideString() const
Definition: DtUnicode.h:167
std::string toLatin1() const
Definition: DtUnicode.h:162
void add_ref()
Increment the reference count.
Definition: DtUnicode.inl:982
Encoding
Definition: DtUnicode.h:243