mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-31 20:03:02 +01:00
344 lines
7.5 KiB
C++
344 lines
7.5 KiB
C++
|
#include "firebird.h"
|
||
|
#include "fb_string.h"
|
||
|
|
||
|
#include <ctype.h>
|
||
|
|
||
|
#ifdef HAVE_STRCASECMP
|
||
|
#define STRNCASECMP strncasecmp
|
||
|
#else
|
||
|
#ifdef HAVE_STRICMP
|
||
|
#define STRNCASECMP strnicmp
|
||
|
#else
|
||
|
namespace {
|
||
|
int StringIgnoreCaseCompare(const char* s1, const char* s2, unsigned int l) {
|
||
|
while (l--) {
|
||
|
int delta = toupper(*s1++) - toupper(*s2++);
|
||
|
if (delta) {
|
||
|
return delta;
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
#define STRNCASECMP StringIgnoreCaseCompare
|
||
|
#endif // HAVE_STRICMP
|
||
|
#endif // HAVE_STRCASECMP
|
||
|
|
||
|
namespace {
|
||
|
class strBitMask {
|
||
|
private:
|
||
|
char m[32];
|
||
|
public:
|
||
|
strBitMask(Firebird::AbstractString::const_pointer s, int l) {
|
||
|
memset(m, 0, sizeof(m));
|
||
|
if (l == Firebird::AbstractString::npos) {
|
||
|
l = strlen(s);
|
||
|
}
|
||
|
Firebird::AbstractString::const_pointer end = s + l;
|
||
|
while(s < end) {
|
||
|
unsigned char c = static_cast<unsigned char>(*s++);
|
||
|
m[c >> 3] |= (1 << (c & 7));
|
||
|
}
|
||
|
}
|
||
|
inline bool Contains(char c) {
|
||
|
return m[c >> 3] & (1 << (c & 7));
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
namespace Firebird {
|
||
|
const AbstractString::size_type AbstractString::npos = ~0;
|
||
|
|
||
|
AbstractString::AbstractString(const AbstractString& v) {
|
||
|
memcpy(createStorage(v.length()), v.c_str(), v.length());
|
||
|
}
|
||
|
AbstractString::AbstractString(size_type size, const_pointer data) {
|
||
|
memcpy(createStorage(size), data, size);
|
||
|
}
|
||
|
AbstractString::AbstractString(const_pointer p1, size_type n1,
|
||
|
const_pointer p2, size_type n2) {
|
||
|
char *s = createStorage(n1 + n2);
|
||
|
memcpy(s, p1, n1);
|
||
|
memcpy(&s[n1], p2, n2);
|
||
|
}
|
||
|
AbstractString::AbstractString(size_type size, char_type c) {
|
||
|
memset(createStorage(size), c, size);
|
||
|
}
|
||
|
void AbstractString::AdjustRange(size_type length, size_type& pos, size_type& n) {
|
||
|
if (pos == npos) {
|
||
|
pos = length > n ? length - n : 0;
|
||
|
}
|
||
|
if (pos >= length) {
|
||
|
pos = length;
|
||
|
n = 0;
|
||
|
return;
|
||
|
}
|
||
|
else if (pos + n > length || n == npos) {
|
||
|
n = length - pos;
|
||
|
}
|
||
|
}
|
||
|
AbstractString::pointer AbstractString::baseAssign(size_type n) {
|
||
|
StoragePair x;
|
||
|
openStorage(x, n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "baseAssign"
|
||
|
#endif
|
||
|
);
|
||
|
x.newStorage[n] = 0;
|
||
|
return x.newStorage;
|
||
|
}
|
||
|
AbstractString::pointer AbstractString::baseAppend(size_type n) {
|
||
|
StoragePair x;
|
||
|
openStorage(x, length() + n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "baseAppend"
|
||
|
#endif
|
||
|
);
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, x.oldStorage, x.oldSize);
|
||
|
}
|
||
|
x.newStorage[length()] = 0;
|
||
|
return &x.newStorage[x.oldSize];
|
||
|
}
|
||
|
AbstractString::pointer AbstractString::baseInsert(size_type p0, size_type n) {
|
||
|
if (p0 >= length()) {
|
||
|
return baseAppend(n);
|
||
|
}
|
||
|
StoragePair x;
|
||
|
openStorage(x, length() + n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "baseInsert"
|
||
|
#endif
|
||
|
);
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, x.oldStorage, p0);
|
||
|
memcpy(&x.newStorage[p0 + n],
|
||
|
&x.oldStorage[p0], x.oldSize - p0);
|
||
|
}
|
||
|
else {
|
||
|
memmove(&x.newStorage[p0 + n], &x.newStorage[p0],
|
||
|
x.oldSize - p0);
|
||
|
}
|
||
|
x.newStorage[length()] = 0;
|
||
|
return &x.newStorage[p0];
|
||
|
}
|
||
|
void AbstractString::baseErase(size_type p0, size_type n) {
|
||
|
AdjustRange(length(), p0, n);
|
||
|
StoragePair x;
|
||
|
openStorage(x, length() - n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "baseErase"
|
||
|
#endif
|
||
|
);
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, x.oldStorage, p0);
|
||
|
memcpy(&x.newStorage[p0], &x.oldStorage[p0 + n],
|
||
|
x.oldSize - (p0 + n));
|
||
|
}
|
||
|
else {
|
||
|
memmove(&x.newStorage[p0],
|
||
|
&x.newStorage[p0 + n], x.oldSize - (p0 + n));
|
||
|
}
|
||
|
x.newStorage[length()] = 0;
|
||
|
}
|
||
|
/* void AbstractString::reserve(size_type n) {
|
||
|
if (n <= actualSize) {
|
||
|
return;
|
||
|
}
|
||
|
unsigned short l = userSize;
|
||
|
StoragePair x;
|
||
|
openStorage(x, n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "reserve"
|
||
|
#endif
|
||
|
);
|
||
|
userSize = l;
|
||
|
if (actualSize > smallStorageSize) {
|
||
|
forced = n;
|
||
|
}
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, x.oldStorage, l);
|
||
|
}
|
||
|
x.newStorage[l] = 0;
|
||
|
}*/
|
||
|
void AbstractString::resize(size_type n, char_type c) {
|
||
|
if (n == length()) {
|
||
|
return;
|
||
|
}
|
||
|
StoragePair x;
|
||
|
openStorage(x, n
|
||
|
#ifdef DEV_BUILD
|
||
|
, "resize"
|
||
|
#endif
|
||
|
);
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, x.oldStorage, n < x.oldSize ? n : x.oldSize);
|
||
|
}
|
||
|
if (n > x.oldSize) {
|
||
|
memset(&x.newStorage[x.oldSize], c, n - x.oldSize);
|
||
|
}
|
||
|
x.newStorage[n] = 0;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::rfind(const_pointer s, size_type pos) const {
|
||
|
const size_type l = strlen(s);
|
||
|
int lastpos = length() - l;
|
||
|
if (lastpos < 0) {
|
||
|
return npos;
|
||
|
}
|
||
|
if (pos != npos) {
|
||
|
if (pos < lastpos) {
|
||
|
lastpos = pos;
|
||
|
}
|
||
|
}
|
||
|
const_pointer start = c_str();
|
||
|
const_pointer end = &start[lastpos];
|
||
|
while (end >= start) {
|
||
|
if (memcmp(end, s, l) == 0) {
|
||
|
return end - start;
|
||
|
}
|
||
|
--end;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::rfind(char_type c, size_type pos) const {
|
||
|
int lastpos = length() - 1;
|
||
|
if (lastpos < 0) {
|
||
|
return npos;
|
||
|
}
|
||
|
if (pos != npos) {
|
||
|
if (pos < lastpos) {
|
||
|
lastpos = pos;
|
||
|
}
|
||
|
}
|
||
|
const_pointer start = c_str();
|
||
|
const_pointer end = &start[lastpos];
|
||
|
while (end >= start) {
|
||
|
if (*end == c) {
|
||
|
return end - start;
|
||
|
}
|
||
|
--end;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::find_first_of(const_pointer s, size_type pos, size_type n) const {
|
||
|
strBitMask sm(s, n);
|
||
|
const_pointer p = &c_str()[pos];
|
||
|
while (pos < length()) {
|
||
|
if (sm.Contains(*p++)) {
|
||
|
return pos;
|
||
|
}
|
||
|
++pos;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::find_last_of(const_pointer s, size_type pos, size_type n) const {
|
||
|
strBitMask sm(s, n);
|
||
|
int lpos = length() - 1;
|
||
|
if (pos != npos && pos < lpos) {
|
||
|
lpos = pos;
|
||
|
}
|
||
|
const_pointer p = &c_str()[lpos];
|
||
|
while (lpos >= 0) {
|
||
|
if (sm.Contains(*p--)) {
|
||
|
return lpos;
|
||
|
}
|
||
|
--lpos;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::find_first_not_of(const_pointer s, size_type pos, size_type n) const {
|
||
|
strBitMask sm(s, n);
|
||
|
const_pointer p = &c_str()[pos];
|
||
|
while (pos < length()) {
|
||
|
if (! sm.Contains(*p++)) {
|
||
|
return pos;
|
||
|
}
|
||
|
++pos;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
AbstractString::size_type AbstractString::find_last_not_of(const_pointer s, size_type pos, size_type n) const {
|
||
|
strBitMask sm(s, n);
|
||
|
int lpos = length() - 1;
|
||
|
if (pos != npos && pos < lpos) {
|
||
|
lpos = pos;
|
||
|
}
|
||
|
const_pointer p = &c_str()[lpos];
|
||
|
while (lpos >= 0) {
|
||
|
if (! sm.Contains(*p--)) {
|
||
|
return lpos;
|
||
|
}
|
||
|
--lpos;
|
||
|
}
|
||
|
return npos;
|
||
|
}
|
||
|
bool AbstractString::LoadFromFile(FILE *file) {
|
||
|
baseErase(0, length());
|
||
|
if (! file)
|
||
|
return false;
|
||
|
bool rc = false;
|
||
|
int c;
|
||
|
while ((c = getc(file)) != EOF) {
|
||
|
rc = true;
|
||
|
if (c == '\n') {
|
||
|
break;
|
||
|
}
|
||
|
*baseAppend(1) = c;
|
||
|
}
|
||
|
return rc;
|
||
|
}
|
||
|
void AbstractString::upper() {
|
||
|
for(pointer p = Modify(); *p; p++) {
|
||
|
*p = toupper(*p);
|
||
|
}
|
||
|
}
|
||
|
void AbstractString::lower() {
|
||
|
for(pointer p = Modify(); *p; p++) {
|
||
|
*p = tolower(*p);
|
||
|
}
|
||
|
}
|
||
|
void AbstractString::baseTrim(TrimType WhereTrim, const_pointer ToTrim) {
|
||
|
strBitMask sm(ToTrim, strlen(ToTrim));
|
||
|
const_pointer b = c_str();
|
||
|
const_pointer e = &c_str()[length() - 1];
|
||
|
if (WhereTrim != TrimRight) {
|
||
|
while (b <= e) {
|
||
|
if (! sm.Contains(*b)) {
|
||
|
break;
|
||
|
}
|
||
|
++b;
|
||
|
}
|
||
|
}
|
||
|
if (WhereTrim != TrimLeft) {
|
||
|
while (b <= e) {
|
||
|
if (! sm.Contains(*e)) {
|
||
|
break;
|
||
|
}
|
||
|
--e;
|
||
|
}
|
||
|
}
|
||
|
int NewLength = e - b + 1;
|
||
|
|
||
|
if (NewLength == length())
|
||
|
return;
|
||
|
StoragePair x;
|
||
|
openStorage(x, NewLength
|
||
|
#ifdef DEV_BUILD
|
||
|
, "baseTrim"
|
||
|
#endif
|
||
|
);
|
||
|
if (x.oldStorage) {
|
||
|
memcpy(x.newStorage, b, NewLength);
|
||
|
}
|
||
|
else if (b != x.newStorage) {
|
||
|
memmove(x.newStorage, b, NewLength);
|
||
|
}
|
||
|
x.newStorage[NewLength] = 0;
|
||
|
}
|
||
|
int PathNameComparator::compare(AbstractString::const_pointer s1, AbstractString::const_pointer s2, AbstractString::size_type n) {
|
||
|
if (CASE_SENSITIVITY)
|
||
|
return memcmp(s1, s2, n);
|
||
|
return STRNCASECMP(s1, s2, n);
|
||
|
}
|
||
|
} // namespace Firebird
|