2001-12-24 03:51:06 +01:00
|
|
|
/*
|
2004-02-28 20:44:04 +01:00
|
|
|
* PROGRAM: string class definition
|
|
|
|
* MODULE: fb_string.h
|
|
|
|
* DESCRIPTION: Provides almost that same functionality,
|
|
|
|
* that STL::basic_string<char> does,
|
|
|
|
* but behaves MemoryPools friendly.
|
2001-12-24 03:51:06 +01:00
|
|
|
*
|
2004-02-28 20:44:04 +01:00
|
|
|
* The contents of this file are subject to the Initial
|
|
|
|
* Developer's Public License Version 1.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
|
|
|
* http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
|
2001-12-24 03:51:06 +01:00
|
|
|
*
|
2004-02-28 20:44:04 +01:00
|
|
|
* Software distributed under the License is distributed AS IS,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing rights
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Alexander Peshkoff
|
|
|
|
* for the Firebird Open Source RDBMS project.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Alexander Peshkoff <peshkoff@mail.ru>
|
|
|
|
* and all contributors signed below.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
2001-12-24 03:51:06 +01:00
|
|
|
*/
|
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
#ifndef INCLUDE_FB_STRING_H
|
|
|
|
#define INCLUDE_FB_STRING_H
|
2004-02-08 18:08:34 +01:00
|
|
|
|
2004-03-14 14:22:16 +01:00
|
|
|
#include "../jrd/ib_stdio.h"
|
2004-02-08 18:08:34 +01:00
|
|
|
#include <string.h>
|
2001-12-24 03:51:06 +01:00
|
|
|
|
|
|
|
#include "../include/fb_types.h"
|
2004-02-08 18:08:34 +01:00
|
|
|
#include "../include/fb_exception.h"
|
2003-01-16 18:47:10 +01:00
|
|
|
#include "../common/classes/alloc.h"
|
2003-05-30 14:17:47 +02:00
|
|
|
#include "../include/gen/autoconfig.h"
|
2001-12-24 03:51:06 +01:00
|
|
|
|
|
|
|
namespace Firebird
|
|
|
|
{
|
2004-03-14 14:22:16 +01:00
|
|
|
class AbstractString : private AutoStorage {
|
2004-02-08 18:08:34 +01:00
|
|
|
public:
|
|
|
|
typedef char char_type;
|
|
|
|
typedef unsigned int size_type;
|
|
|
|
typedef int difference_type;
|
|
|
|
typedef char* pointer;
|
|
|
|
typedef const char* const_pointer;
|
|
|
|
typedef char& reference;
|
|
|
|
typedef const char& const_reference;
|
|
|
|
typedef char value_type;
|
|
|
|
typedef pointer iterator;
|
|
|
|
typedef const_pointer const_iterator;
|
|
|
|
static const size_type npos;
|
|
|
|
enum {smallStorageSize = 32, reserveSize = 16, keepSize = 512};
|
|
|
|
protected:
|
|
|
|
union {
|
|
|
|
char_type smallStorage[smallStorageSize];
|
|
|
|
struct {
|
|
|
|
char_type* bigStorage;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
unsigned short userSize, actualSize;
|
|
|
|
private:
|
|
|
|
inline void checkPos(size_type pos) const {
|
|
|
|
if (pos >= length()) {
|
|
|
|
fatal_exception::raise("Firebird::string - pos out of range");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static inline void checkSize(size_type size) {
|
|
|
|
if (size > max_size()) {
|
|
|
|
fatal_exception::raise("Firebird::string - size exceeds predefined limit");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Returns bigStorage for string sized <uSize>,
|
|
|
|
// not taking care about ability to place it
|
|
|
|
// in smallStorage. Changes actualSize of string.
|
|
|
|
inline void allocateStorage(size_type uSize
|
|
|
|
#ifdef DEV_BUILD
|
2004-03-14 14:22:16 +01:00
|
|
|
, const char *file, int line
|
2004-02-08 18:08:34 +01:00
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
fb_assert(uSize >= smallStorageSize);
|
|
|
|
size_type aSize = uSize + reserveSize + 1;
|
|
|
|
actualSize = aSize;
|
2004-03-14 14:22:16 +01:00
|
|
|
bigStorage = new (getPool()
|
2004-02-08 18:08:34 +01:00
|
|
|
#ifdef DEV_BUILD
|
2004-03-14 14:22:16 +01:00
|
|
|
, file, 0
|
2004-02-08 18:08:34 +01:00
|
|
|
#endif
|
2004-03-14 14:22:16 +01:00
|
|
|
) char[aSize];
|
2004-02-08 18:08:34 +01:00
|
|
|
}
|
|
|
|
// Returns valid pointer to new storage
|
|
|
|
// and sets all size related information of this string.
|
2004-03-14 14:22:16 +01:00
|
|
|
// Usage - constructors.
|
2004-02-08 18:08:34 +01:00
|
|
|
inline pointer createStorage(size_type uSize) {
|
|
|
|
checkSize(uSize);
|
|
|
|
userSize = uSize;
|
|
|
|
if (uSize < smallStorageSize) {
|
|
|
|
actualSize = smallStorageSize;
|
|
|
|
smallStorage[uSize] = 0;
|
|
|
|
return smallStorage;
|
|
|
|
}
|
|
|
|
allocateStorage(uSize
|
|
|
|
#ifdef DEV_BUILD
|
2004-03-14 14:22:16 +01:00
|
|
|
, __FILE__, __LINE__
|
2004-02-08 18:08:34 +01:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
bigStorage[uSize] = 0;
|
|
|
|
return bigStorage;
|
|
|
|
}
|
|
|
|
// Returns (possibly reallocated) newStorage for current string,
|
|
|
|
// setting values for oldStorage (if string is not
|
|
|
|
// updated inplace) and oldSize. oldStorage
|
|
|
|
// should be released after use if oldSize >= smallStorageSize
|
|
|
|
struct StoragePair {
|
|
|
|
pointer newStorage, oldStorage;
|
|
|
|
size_type oldSize;
|
|
|
|
char_type oldSmallStorage[smallStorageSize];
|
|
|
|
~StoragePair() {
|
|
|
|
if (oldSize >= AbstractString::smallStorageSize)
|
2004-03-18 06:56:06 +01:00
|
|
|
delete[] oldStorage;
|
2004-02-08 18:08:34 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
friend struct StoragePair;
|
|
|
|
inline void openStorage(StoragePair& rc, size_type newSize
|
|
|
|
#ifdef DEV_BUILD
|
2004-03-14 14:22:16 +01:00
|
|
|
, const char *file, int line
|
2004-02-08 18:08:34 +01:00
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
checkSize(newSize);
|
|
|
|
rc.oldStorage = 0;
|
|
|
|
rc.oldSize = userSize;
|
|
|
|
userSize = newSize;
|
|
|
|
if (newSize < smallStorageSize) {
|
|
|
|
if (actualSize > smallStorageSize) {
|
|
|
|
rc.oldStorage = bigStorage;
|
|
|
|
}
|
|
|
|
rc.newStorage = smallStorage;
|
|
|
|
actualSize = smallStorageSize;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (newSize < actualSize && newSize + keepSize > actualSize) {
|
|
|
|
rc.newStorage = bigStorage;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (actualSize <= smallStorageSize) {
|
|
|
|
memcpy(rc.oldSmallStorage, smallStorage, rc.oldSize);
|
|
|
|
rc.oldStorage = rc.oldSmallStorage;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc.oldStorage = bigStorage;
|
|
|
|
}
|
|
|
|
allocateStorage(newSize
|
|
|
|
#ifdef DEV_BUILD
|
2004-03-14 14:22:16 +01:00
|
|
|
, file, line
|
2004-02-08 18:08:34 +01:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
rc.newStorage = bigStorage;
|
|
|
|
}
|
|
|
|
// Returns pointer to current storage.
|
|
|
|
inline pointer getStorage() {
|
|
|
|
return actualSize <= smallStorageSize ?
|
|
|
|
smallStorage : bigStorage;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
AbstractString(size_type size, const_pointer data);
|
|
|
|
AbstractString(const_pointer p1, size_type n1,
|
|
|
|
const_pointer p2, size_type n2);
|
|
|
|
AbstractString(const AbstractString& v);
|
|
|
|
inline AbstractString() {
|
|
|
|
actualSize = smallStorageSize;
|
|
|
|
userSize = 0;
|
|
|
|
smallStorage[0] = 0;
|
|
|
|
}
|
|
|
|
AbstractString(size_type size, char_type c);
|
2004-03-14 14:22:16 +01:00
|
|
|
inline explicit AbstractString(MemoryPool& p) : AutoStorage(p) {
|
2004-02-28 20:44:04 +01:00
|
|
|
actualSize = smallStorageSize;
|
|
|
|
userSize = 0;
|
|
|
|
smallStorage[0] = 0;
|
|
|
|
}
|
2004-03-18 06:56:06 +01:00
|
|
|
inline AbstractString(MemoryPool& p, const AbstractString& v)
|
2004-03-14 14:22:16 +01:00
|
|
|
: AutoStorage(p)
|
2004-03-07 08:58:55 +01:00
|
|
|
{
|
2004-02-28 20:44:04 +01:00
|
|
|
memcpy(createStorage(v.length()), v.c_str(), v.length());
|
|
|
|
}
|
|
|
|
|
2004-02-08 18:08:34 +01:00
|
|
|
pointer Modify(void) {
|
|
|
|
return getStorage();
|
|
|
|
}
|
|
|
|
static void AdjustRange(size_type length, size_type& pos, size_type& n);
|
|
|
|
pointer baseAssign(size_type n);
|
|
|
|
pointer baseAppend(size_type n);
|
|
|
|
pointer baseInsert(size_type p0, size_type n);
|
|
|
|
void baseErase(size_type p0, size_type n);
|
|
|
|
enum TrimType {TrimLeft, TrimRight, TrimBoth};
|
|
|
|
void baseTrim(TrimType WhereTrim, const_pointer ToTrim);
|
|
|
|
public:
|
|
|
|
inline const_pointer c_str() const {
|
|
|
|
return actualSize <= smallStorageSize ?
|
|
|
|
smallStorage : bigStorage;
|
|
|
|
}
|
|
|
|
inline size_type length() const {
|
|
|
|
return userSize;
|
|
|
|
}
|
|
|
|
//void reserve(size_type n = 0);
|
|
|
|
void resize(size_type n, char_type c = ' ');
|
|
|
|
inline size_type copy(pointer s, size_type n, size_type pos = 0) const {
|
|
|
|
AdjustRange(length(), pos, n);
|
|
|
|
memcpy(s, &c_str()[pos], n);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
/* inline void swap(AbstractString& str) {
|
|
|
|
Storage *tmp = StringData;
|
|
|
|
StringData = str.StringData;
|
|
|
|
str.StringData = tmp;
|
|
|
|
}*/
|
2002-07-05 17:00:26 +02:00
|
|
|
|
2004-02-08 18:08:34 +01:00
|
|
|
inline size_type find(const AbstractString& str, size_type pos = 0) const {
|
|
|
|
return find(str.c_str(), pos);
|
|
|
|
}
|
|
|
|
inline size_type find(const_pointer s, size_type pos = 0) const {
|
|
|
|
const_pointer p = strstr(&c_str()[pos], s);
|
|
|
|
return p ? p - c_str() : npos;
|
|
|
|
}
|
|
|
|
inline size_type find(char_type c, size_type pos = 0) const {
|
|
|
|
const_pointer p = strchr(&c_str()[pos], c);
|
|
|
|
return p ? p - c_str() : npos;
|
|
|
|
}
|
|
|
|
inline size_type rfind(const AbstractString& str, size_type pos = npos) const {
|
|
|
|
return rfind(str.c_str(), pos);
|
|
|
|
}
|
|
|
|
size_type rfind(const_pointer s, size_type pos = npos) const;
|
|
|
|
size_type rfind(char_type c, size_type pos = npos) const;
|
|
|
|
inline size_type find_first_of(const AbstractString& str, size_type pos = 0) const {
|
|
|
|
return find_first_of(str.c_str(), pos, str.length());
|
|
|
|
}
|
|
|
|
size_type find_first_of(const_pointer s, size_type pos, size_type n) const;
|
|
|
|
inline size_type find_first_of(const_pointer s, size_type pos = 0) const {
|
|
|
|
return find_first_of(s, pos, strlen(s));
|
|
|
|
}
|
|
|
|
inline size_type find_first_of(char_type c, size_type pos = 0) const {
|
|
|
|
return find(c, pos);
|
|
|
|
}
|
|
|
|
inline size_type find_last_of(const AbstractString& str, size_type pos = npos) const {
|
|
|
|
return find_last_of(str.c_str(), pos, str.length());
|
|
|
|
}
|
|
|
|
size_type find_last_of(const_pointer s, size_type pos, size_type n = npos) const;
|
|
|
|
inline size_type find_last_of(const_pointer s, size_type pos = npos) const {
|
|
|
|
return find_last_of(s, pos, strlen(s));
|
|
|
|
}
|
|
|
|
inline size_type find_last_of(char_type c, size_type pos = npos) const {
|
|
|
|
return rfind(c, pos);
|
|
|
|
}
|
|
|
|
inline size_type find_first_not_of(const AbstractString& str, size_type pos = 0) const {
|
|
|
|
return find_first_not_of(str.c_str(), pos, str.length());
|
|
|
|
}
|
|
|
|
size_type find_first_not_of(const_pointer s, size_type pos, size_type n) const;
|
|
|
|
inline size_type find_first_not_of(const_pointer s, size_type pos = 0) const {
|
|
|
|
return find_first_not_of(s, pos, strlen(s));
|
|
|
|
}
|
|
|
|
inline size_type find_first_not_of(char_type c, size_type pos = 0) const {
|
|
|
|
char s[2];
|
|
|
|
s[0] = c;
|
|
|
|
s[1] = 0;
|
|
|
|
return find_first_not_of(s, pos, 1);
|
|
|
|
}
|
|
|
|
inline size_type find_last_not_of(const AbstractString& str, size_type pos = npos) const {
|
|
|
|
return find_last_not_of(str.c_str(), pos, str.length());
|
|
|
|
}
|
|
|
|
size_type find_last_not_of(const_pointer s, size_type pos, size_type n = npos) const;
|
|
|
|
inline size_type find_last_not_of(const_pointer s, size_type pos = npos) const {
|
|
|
|
return find_last_not_of(s, pos, strlen(s));
|
|
|
|
}
|
|
|
|
inline size_type find_last_not_of(char_type c, size_type pos = npos) const {
|
|
|
|
char s[2];
|
|
|
|
s[0] = c;
|
|
|
|
s[1] = 0;
|
|
|
|
return find_last_not_of(s, pos, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline iterator begin() {
|
|
|
|
return Modify();
|
|
|
|
}
|
|
|
|
inline const_iterator begin() const {
|
|
|
|
return c_str();
|
|
|
|
}
|
|
|
|
inline iterator end() {
|
|
|
|
return &Modify()[length()];
|
|
|
|
}
|
|
|
|
inline const_iterator end() const {
|
|
|
|
return &c_str()[length()];
|
|
|
|
}
|
|
|
|
inline const_reference at(size_type pos) const {
|
|
|
|
checkPos(pos);
|
|
|
|
return c_str()[pos];
|
|
|
|
}
|
|
|
|
inline reference at(size_type pos) {
|
|
|
|
checkPos(pos);
|
|
|
|
return Modify()[pos];
|
|
|
|
}
|
|
|
|
inline const_reference operator[](size_type pos) const {
|
|
|
|
return at(pos);
|
|
|
|
}
|
|
|
|
inline reference operator[](size_type pos) {
|
|
|
|
return at(pos);
|
|
|
|
}
|
|
|
|
inline const_pointer data() const {
|
|
|
|
return c_str();
|
|
|
|
}
|
|
|
|
inline size_type size() const {
|
|
|
|
return length();
|
|
|
|
}
|
|
|
|
static inline size_type max_size() {
|
|
|
|
return 0xfffe;
|
|
|
|
}
|
|
|
|
inline size_type capacity() const {
|
|
|
|
return actualSize - 1;
|
|
|
|
}
|
|
|
|
inline bool empty() const {
|
|
|
|
return length() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void upper();
|
|
|
|
void lower();
|
|
|
|
inline void ltrim(const_pointer ToTrim = " ") {
|
|
|
|
baseTrim(TrimLeft, ToTrim);
|
|
|
|
}
|
|
|
|
inline void rtrim(const_pointer ToTrim = " ") {
|
|
|
|
baseTrim(TrimRight, ToTrim);
|
|
|
|
}
|
|
|
|
inline void trim(const_pointer ToTrim = " ") {
|
|
|
|
baseTrim(TrimBoth, ToTrim);
|
|
|
|
}
|
|
|
|
inline void alltrim(const_pointer ToTrim = " ") {
|
|
|
|
baseTrim(TrimBoth, ToTrim);
|
|
|
|
}
|
2004-03-14 14:22:16 +01:00
|
|
|
bool LoadFromFile(IB_FILE *file);
|
2004-03-20 15:57:40 +01:00
|
|
|
void printf(const char* Format, ...);
|
2004-02-08 18:08:34 +01:00
|
|
|
inline ~AbstractString() {
|
|
|
|
if (actualSize > smallStorageSize)
|
2004-03-18 06:56:06 +01:00
|
|
|
delete[] bigStorage;
|
2004-02-08 18:08:34 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class StringComparator {
|
2003-05-30 14:17:47 +02:00
|
|
|
public:
|
2004-02-08 18:08:34 +01:00
|
|
|
static inline int compare(AbstractString::const_pointer s1, AbstractString::const_pointer s2, unsigned int n) {
|
|
|
|
return memcmp(s1, s2, n);
|
2003-05-30 14:17:47 +02:00
|
|
|
}
|
|
|
|
};
|
2004-02-08 18:08:34 +01:00
|
|
|
class PathNameComparator {
|
|
|
|
public:
|
|
|
|
static int compare(AbstractString::const_pointer s1, AbstractString::const_pointer s2, unsigned int n);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Comparator>
|
|
|
|
class StringBase : public AbstractString {
|
|
|
|
typedef StringBase<Comparator> StringType;
|
|
|
|
protected:
|
|
|
|
inline StringBase<Comparator>(const_pointer p1, size_type n1,
|
|
|
|
const_pointer p2, size_type n2) :
|
|
|
|
AbstractString(p1, n1, p2, n2) {;}
|
|
|
|
private:
|
|
|
|
inline StringType add(const_pointer s, size_type n) const {
|
|
|
|
return StringBase<Comparator>(c_str(), length(), s, n);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
inline StringBase<Comparator>() : AbstractString() {}
|
|
|
|
inline StringBase<Comparator>(const StringType& v) : AbstractString(v) {}
|
|
|
|
inline StringBase<Comparator>(const_pointer s, size_type n) : AbstractString(n, s) {}
|
|
|
|
inline StringBase<Comparator>(const_pointer s) : AbstractString(strlen(s), s) {}
|
2004-03-20 15:57:40 +01:00
|
|
|
inline StringBase<Comparator>(const unsigned char* s) : AbstractString(strlen((char*)s), (char*)s) {}
|
2004-02-08 18:08:34 +01:00
|
|
|
inline StringBase<Comparator>(size_type n, char_type c) : AbstractString(n, c) {}
|
|
|
|
inline StringBase<Comparator>(char_type c) : AbstractString(1, c) {}
|
|
|
|
inline StringBase<Comparator>(const_iterator first, const_iterator last) : AbstractString(last - first, first) {}
|
2004-03-14 14:22:16 +01:00
|
|
|
inline explicit StringBase<Comparator>(MemoryPool& p) : AbstractString(p) {}
|
2004-03-18 06:56:06 +01:00
|
|
|
inline StringBase<Comparator>(MemoryPool& p, const AbstractString& v) : AbstractString(p, v) {}
|
2004-02-08 18:08:34 +01:00
|
|
|
|
|
|
|
inline StringType& append(const StringType& str) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
return append(str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline StringType& append(const StringType& str, size_type pos, size_type n) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
AdjustRange(str.length(), pos, n);
|
|
|
|
return append(&str.c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline StringType& append(const_pointer s, size_type n) {
|
|
|
|
memcpy(baseAppend(n), s, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline StringType& append(const_pointer s) {
|
|
|
|
return append(s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType& append(size_type n, char_type c) {
|
|
|
|
memset(baseAppend(n), c, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline StringType& append(const_iterator first, const_iterator last) {
|
|
|
|
return append(first, last - first);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType& assign(const StringType& str) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
return assign(str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline StringType& assign(const StringType& str, size_type pos, size_type n) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
AdjustRange(str.length(), pos, n);
|
|
|
|
return assign(&str.c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline StringType& assign(const_pointer s, size_type n) {
|
|
|
|
memcpy(baseAssign(n), s, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline StringType& assign(const_pointer s) {
|
|
|
|
return assign(s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType& assign(size_type n, char_type c) {
|
|
|
|
memset(baseAssign(n), c, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline StringType& assign(const_iterator first, const_iterator last) {
|
|
|
|
return assign(first, last - first);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType& operator=(const StringType& v) {
|
|
|
|
fb_assert(&v != this);
|
|
|
|
return assign(v);
|
|
|
|
}
|
|
|
|
inline StringType& operator=(const_pointer s) {
|
|
|
|
return assign(s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType& operator=(char_type c) {
|
|
|
|
return assign(&c, 1);
|
|
|
|
}
|
|
|
|
inline StringType& operator+=(const StringType& v) {
|
|
|
|
fb_assert(&v != this);
|
|
|
|
return append(v);
|
|
|
|
}
|
|
|
|
inline StringType& operator+=(const_pointer s) {
|
|
|
|
return append(s);
|
|
|
|
}
|
|
|
|
inline StringType& operator+=(char_type c) {
|
|
|
|
return append(1, c);
|
|
|
|
}
|
|
|
|
inline StringType operator+(const StringType& v) const {
|
|
|
|
fb_assert(&v != this);
|
2004-02-28 20:44:04 +01:00
|
|
|
return add(v.c_str(), v.length());
|
2004-02-08 18:08:34 +01:00
|
|
|
}
|
|
|
|
inline StringType operator+(const_pointer s) const {
|
|
|
|
return add(s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType operator+(char_type c) const {
|
|
|
|
return add(&c, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringBase<StringComparator> ToString() {
|
|
|
|
return StringBase<StringComparator>(c_str());
|
|
|
|
}
|
|
|
|
inline StringBase<StringComparator> ToPathName() {
|
|
|
|
return StringBase<PathNameComparator>(c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType& insert(size_type p0, const StringType& str) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
return insert(p0, str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline StringType& insert(size_type p0, const StringType& str, size_type pos, size_type n) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
AdjustRange(str.length(), pos, n);
|
|
|
|
return insert(p0, &str.c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline StringType& insert(size_type p0, const_pointer s, size_type n) {
|
|
|
|
if (p0 >= length()) {
|
|
|
|
return append(s, n);
|
|
|
|
}
|
|
|
|
memcpy(baseInsert(p0, n), s, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline StringType& insert(size_type p0, const_pointer s) {
|
|
|
|
return insert(p0, s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType& insert(size_type p0, size_type n, char_type c) {
|
|
|
|
if (p0 >= length()) {
|
|
|
|
return append(n, c);
|
|
|
|
}
|
|
|
|
memset(baseInsert(p0, n), c, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// iterator insert(iterator it, char_type c); // what to return here?
|
|
|
|
inline void insert(iterator it, size_type n, char_type c) {
|
|
|
|
insert(it - c_str(), n, c);
|
|
|
|
}
|
|
|
|
inline void insert(iterator it, const_iterator first, const_iterator last) {
|
|
|
|
insert(it - c_str(), first, last - first);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType& erase(size_type p0 = 0, size_type n = npos) {
|
|
|
|
baseErase(p0, n);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline iterator erase(iterator it) {
|
|
|
|
erase(it - c_str(), 1);
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
inline iterator erase(iterator first, iterator last) {
|
|
|
|
erase(first - c_str(), last-first);
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType& replace(size_type p0, size_type n0, const StringType& str) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
return replace(p0, n0, str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline StringType& replace(size_type p0, size_type n0, const StringType& str, size_type pos, size_type n) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
AdjustRange(str.length(), pos, n);
|
|
|
|
return replace(p0, n0, &str.c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline StringType& replace(size_type p0, size_type n0, const_pointer s, size_type n) {
|
|
|
|
erase(p0, n0);
|
|
|
|
return insert(p0, s, n);
|
|
|
|
}
|
|
|
|
inline StringType& replace(size_type p0, size_type n0, const_pointer s) {
|
|
|
|
return replace(p0, n0, s, strlen(s));
|
|
|
|
}
|
|
|
|
inline StringType& replace(size_type p0, size_type n0, size_type n, char_type c) {
|
|
|
|
erase(p0, n0);
|
|
|
|
return insert(p0, n, c);
|
|
|
|
}
|
|
|
|
inline StringType& replace(iterator first0, iterator last0, const StringType& str) {
|
|
|
|
fb_assert(&str != this);
|
|
|
|
return replace(first0 - c_str(), last0 - first0, str);
|
|
|
|
}
|
|
|
|
inline StringType& replace(iterator first0, iterator last0, const_pointer s, size_type n) {
|
|
|
|
return replace(first0 - c_str(), last0 - first0, s, n);
|
|
|
|
}
|
|
|
|
inline StringType& replace(iterator first0, iterator last0, const_pointer s) {
|
|
|
|
return replace(first0 - c_str(), last0 - first0, s);
|
|
|
|
}
|
|
|
|
inline StringType& replace(iterator first0, iterator last0, size_type n, char_type c) {
|
|
|
|
return replace(first0 - c_str(), last0 - first0, n, c);
|
|
|
|
}
|
|
|
|
inline StringType& replace(iterator first0, iterator last0, const_iterator first, const_iterator last) {
|
|
|
|
return replace(first0 - c_str(), last0 - first0, first, last - first);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline StringType substr(size_type pos = 0, size_type n = npos) const {
|
|
|
|
AdjustRange(length(), pos, n);
|
|
|
|
return StringType(&c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline int compare(const StringType& str) const {
|
|
|
|
return compare(0, length(), str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline int compare(size_type p0, size_type n0, const StringType& str) {
|
|
|
|
return compare(p0, n0, str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
inline int compare(size_type p0, size_type n0, const StringType& str, size_type pos, size_type n) {
|
|
|
|
AdjustRange(str.length(), pos, n);
|
|
|
|
return compare(p0, n0, &str.c_str()[pos], n);
|
|
|
|
}
|
|
|
|
inline int compare(const_pointer s) const {
|
|
|
|
return compare(0, length(), s, strlen(s));
|
|
|
|
}
|
|
|
|
int compare(size_type p0, size_type n0, const_pointer s, size_type n) const {
|
|
|
|
AdjustRange(length(), p0, n0);
|
|
|
|
size_type ml = n0 < n ? n0 : n;
|
|
|
|
int rc = Comparator::compare(&c_str()[p0], s, ml);
|
|
|
|
return rc ? rc : n - n0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator< (const StringType& str) const {return compare(str) < 0;}
|
|
|
|
inline bool operator<=(const StringType& str) const {return compare(str) <= 0;}
|
|
|
|
inline bool operator==(const StringType& str) const {return compare(str) == 0;}
|
|
|
|
inline bool operator>=(const StringType& str) const {return compare(str) >= 0;}
|
|
|
|
inline bool operator> (const StringType& str) const {return compare(str) > 0;}
|
|
|
|
inline bool operator!=(const StringType& str) const {return compare(str) != 0;}
|
2004-03-14 14:22:16 +01:00
|
|
|
|
|
|
|
inline operator bool() {return length() > 0;}
|
2004-02-08 18:08:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef StringBase<StringComparator> string;
|
|
|
|
inline string operator+(string::const_pointer s, const string& str) {
|
|
|
|
string rc(s);
|
|
|
|
rc += str;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
inline string operator+(string::char_type c, const string& str) {
|
|
|
|
string rc(c);
|
|
|
|
rc += str;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef StringBase<PathNameComparator> PathName;
|
|
|
|
inline PathName operator+(PathName::const_pointer s, const PathName& str) {
|
|
|
|
PathName rc(s);
|
|
|
|
rc += str;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
inline PathName operator+(PathName::char_type c, const PathName& str) {
|
|
|
|
PathName rc(c);
|
|
|
|
rc += str;
|
|
|
|
return rc;
|
|
|
|
}
|
2003-05-30 14:17:47 +02:00
|
|
|
}
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2002-07-05 17:00:26 +02:00
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
#endif // INCLUDE_FB_STRING_H
|