1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
|
/***************************************************************
* Purpose: High performance string class
* Author: ZenJu (zhnmju123@gmx.de)
* Created: Jan. 2009
**************************************************************/
#ifndef ZSTRING_H_INCLUDED
#define ZSTRING_H_INCLUDED
#include <cstring>
#include <cctype>
#include <assert.h>
#include <new>
#include <cstdlib>
namespace FreeFileSync
{
#ifdef FFS_WIN
//super fast case-insensitive string comparison: way faster than wxString::CmpNoCase()!!!
int compareStringsWin32(const wchar_t* a, const wchar_t* b, const int aCount = -1, const int bCount = -1);
#endif //FFS_WIN
}
#ifdef FFS_WIN
#define ZSTRING_WIDE_CHAR //use wide character strings
#elif defined FFS_LINUX
#define ZSTRING_CHAR //use char strings
#endif
#ifdef ZSTRING_CHAR
typedef char DefaultChar;
#elif defined ZSTRING_WIDE_CHAR
typedef wchar_t DefaultChar;
#endif
class Zsubstr;
class Zstring
{
public:
Zstring();
Zstring(const DefaultChar* source); //string is copied: O(length)
Zstring(const DefaultChar* source, size_t length); //string is copied: O(length)
Zstring(const Zstring& source); //reference-counting => O(1)
~Zstring();
operator const DefaultChar*() const; //implicit conversion to C string
//wxWidgets functions
bool StartsWith(const DefaultChar* begin) const;
bool StartsWith(const Zstring& begin) const;
bool EndsWith(const DefaultChar* end) const;
bool EndsWith(const Zstring& end) const;
#ifdef FFS_WIN
int CmpNoCase(const DefaultChar* other) const;
int CmpNoCase(const Zstring& other) const;
#endif
int Cmp(const DefaultChar* other) const;
int Cmp(const Zstring& other) const;
Zstring& Replace(const DefaultChar* old, const DefaultChar* replacement, bool replaceAll = true);
Zstring AfterLast(DefaultChar ch) const;
Zstring BeforeLast(DefaultChar ch) const;
size_t Find(DefaultChar ch, bool fromEnd) const;
bool Matches(const DefaultChar* mask) const;
Zstring& Trim(bool fromRight); //from right or left
Zstring& MakeLower();
//std::string functions
size_t length() const;
const DefaultChar* c_str() const;
Zstring substr(size_t pos = 0, size_t len = npos) const; //allocate new string
Zsubstr zsubstr(size_t pos = 0) const; //use ref-counting!
bool empty() const;
int compare(const DefaultChar* other) const;
int compare(const Zstring& other) const;
int compare(const size_t pos1, const size_t n1, const DefaultChar* other) const;
size_t find(const DefaultChar* str, const size_t pos = 0 ) const;
size_t find(const DefaultChar ch, const size_t pos = 0) const;
size_t rfind(const DefaultChar ch, size_t pos = npos) const;
Zstring& replace(size_t pos1, size_t n1, const DefaultChar* str, size_t n2);
size_t size() const;
Zstring& operator=(const Zstring& source);
Zstring& operator=(const DefaultChar* source);
bool operator == (const Zstring& other) const;
bool operator == (const DefaultChar* other) const;
bool operator < (const Zstring& other) const;
bool operator < (const DefaultChar* other) const;
bool operator != (const Zstring& other) const;
bool operator != (const DefaultChar* other) const;
DefaultChar operator[](const size_t pos) const;
Zstring& operator+=(const Zstring& other);
Zstring& operator+=(const DefaultChar* other);
Zstring& operator+=(DefaultChar ch);
const Zstring operator+(const Zstring& string2) const;
const Zstring operator+(const DefaultChar* string2) const;
const Zstring operator+(const DefaultChar ch) const;
static const size_t npos = static_cast<size_t>(-1);
private:
void initAndCopy(const DefaultChar* source, size_t length);
void incRef() const; //support for reference-counting
void decRef(); //
void copyBeforeWrite(const size_t capacityNeeded); //and copy-on-write
struct StringDescriptor
{
mutable unsigned int refCount;
size_t length;
size_t capacity; //allocated length without null-termination
};
static void allocate(const size_t newLength, Zstring::StringDescriptor*& newDescr, DefaultChar*& newData);
StringDescriptor* descr;
DefaultChar* data;
};
class Zsubstr //ref-counted substring of a Zstring
{
public:
Zsubstr();
Zsubstr(const Zstring& ref, const size_t pos);
const DefaultChar* c_str() const;
size_t length() const;
bool StartsWith(const Zstring& begin) const;
size_t findFromEnd(const DefaultChar ch) const;
private:
Zstring m_ref;
const DefaultChar* m_data;
size_t m_length;
};
//#######################################################################################
//begin of implementation
#ifdef ZSTRING_CHAR
inline
size_t defaultLength(const char* input)
{
return strlen(input);
}
inline
int defaultCompare(const char* str1, const char* str2)
{
return strcmp(str1, str2);
}
inline
int defaultCompare(const char* str1, const char* str2, const size_t count)
{
return strncmp(str1, str2, count);
}
inline
char* defaultStrFind(const char* str1, const char* str2)
{
return strstr(str1, str2);
}
inline
char* defaultStrFind(const char* str1, int ch)
{
return strchr(str1, ch);
}
inline
bool defaultIsWhiteSpace(const char ch)
{
// some compilers (e.g. VC++ 6.0) return true for a call to isspace('\xEA') => exclude char(128) to char(255)
return ((unsigned char)ch < 128) && isspace((unsigned char)ch) != 0;
}
inline
char defaultToLower(const char ch)
{
return tolower((unsigned char)ch); //caution: although tolower() has int as input parameter it expects unsigned chars!
}
#elif defined ZSTRING_WIDE_CHAR
inline
size_t defaultLength(const wchar_t* input)
{
return wcslen(input);
}
inline
int defaultCompare(const wchar_t* str1, const wchar_t* str2)
{
return wcscmp(str1, str2);
}
inline
int defaultCompare(const wchar_t* str1, const wchar_t* str2, const size_t count)
{
return wcsncmp(str1, str2, count);
}
inline
wchar_t* defaultStrFind(const wchar_t* str1, const wchar_t* str2)
{
return wcsstr(str1, str2);
}
inline
wchar_t* defaultStrFind(const wchar_t* str1, int ch)
{
return wcschr(str1, ch);
}
inline
bool defaultIsWhiteSpace(const wchar_t ch)
{
// some compilers (e.g. VC++ 6.0) return true for a call to isspace('\xEA') => exclude char(128) to char(255)
return (ch < 128 || ch > 255) && iswspace(ch) != 0;
}
inline
wchar_t defaultToLower(const wchar_t ch)
{
return towlower(ch);
}
#endif
#ifdef __WXDEBUG__
class AllocationCount //small test for memory leaks in Zstring
{
public:
void inc()
{
++count;
}
void dec()
{
--count;
}
static AllocationCount& getGlobal();
private:
AllocationCount() : count(0) {}
~AllocationCount();
int count;
};
#endif
inline
size_t getCapacityToAllocate(const size_t length)
{
return (length + (19 - length % 16)); //allocate some additional length to speed up concatenation
}
inline
void Zstring::allocate(const size_t newLength,
StringDescriptor*& newDescr,
DefaultChar*& newData)
{ //allocate and set data for new string
const size_t newCapacity = getCapacityToAllocate(newLength);
assert(newCapacity);
newDescr = (StringDescriptor*) malloc( sizeof(StringDescriptor) + (newCapacity + 1) * sizeof(DefaultChar));
if (newDescr == NULL)
throw std::bad_alloc();
newData = (DefaultChar*)(newDescr + 1);
newDescr->refCount = 1;
newDescr->length = newLength;
newDescr->capacity = newCapacity;
#ifdef __WXDEBUG__
AllocationCount::getGlobal().inc(); //test Zstring for memory leaks
#endif
}
inline
Zstring::Zstring()
{
//static (dummy) empty Zstring
#ifdef ZSTRING_CHAR
static Zstring emptyString("");
#elif defined ZSTRING_WIDE_CHAR
static Zstring emptyString(L"");
#endif
emptyString.incRef();
descr = emptyString.descr;
data = emptyString.data;
}
inline
Zstring::Zstring(const DefaultChar* source)
{
initAndCopy(source, defaultLength(source));
}
inline
Zstring::Zstring(const DefaultChar* source, size_t length)
{
initAndCopy(source, length);
}
inline
Zstring::Zstring(const Zstring& source)
{
descr = source.descr;
data = source.data;
incRef(); //reference counting!
}
inline
Zstring::~Zstring()
{
decRef();
}
inline
void Zstring::initAndCopy(const DefaultChar* source, size_t length)
{
allocate(length, descr, data);
memcpy(data, source, length * sizeof(DefaultChar));
data[length] = 0;
}
inline
void Zstring::incRef() const
{
assert(descr);
++descr->refCount;
}
inline
void Zstring::decRef()
{
assert(descr && descr->refCount >= 1); //descr points to the begin of the allocated memory block
if (--descr->refCount == 0)
{
free(descr); //this must NEVER be changed!! E.g. Trim() relies on descr being start of allocated memory block
descr = NULL;
#ifdef __WXDEBUG__
AllocationCount::getGlobal().dec(); //test Zstring for memory leaks
#endif
}
}
#ifdef FFS_WIN
inline
int Zstring::CmpNoCase(const DefaultChar* other) const
{
return FreeFileSync::compareStringsWin32(c_str(), other); //way faster than wxString::CmpNoCase()!!
}
inline
int Zstring::CmpNoCase(const Zstring& other) const
{
return FreeFileSync::compareStringsWin32(c_str(), other.c_str(), length(), other.length()); //way faster than wxString::CmpNoCase()!!
}
#endif
inline
Zstring::operator const DefaultChar*() const
{
return c_str();
}
inline
Zstring& Zstring::operator=(const Zstring& source)
{
source.incRef(); //implicitly handle case "this == &source" and avoid this check
decRef(); //
descr = source.descr;
data = source.data;
return *this;
}
inline
size_t Zstring::Find(DefaultChar ch, bool fromEnd) const
{
if (fromEnd)
return rfind(ch, npos);
else
return find(ch, 0);
}
// get all characters after the last occurence of ch
// (returns the whole string if ch not found)
inline
Zstring Zstring::AfterLast(DefaultChar ch) const
{
size_t pos = rfind(ch, npos);
if (pos == npos )
return *this;
else
return c_str() + pos + 1;
}
// get all characters before the last occurence of ch
// (returns empty string if ch not found)
inline
Zstring Zstring::BeforeLast(DefaultChar ch) const
{
size_t pos = rfind(ch, npos);
if (pos != npos && pos != 0 )
return Zstring(data, pos); //data is non-empty string in this context: else ch would not have been found!
else
return Zstring();
}
inline
bool Zstring::StartsWith(const DefaultChar* begin) const
{
const size_t beginLength = defaultLength(begin);
if (length() < beginLength)
return false;
return compare(0, beginLength, begin) == 0;
}
inline
bool Zstring::StartsWith(const Zstring& begin) const
{
const size_t beginLength = begin.length();
if (length() < beginLength)
return false;
return compare(0, beginLength, begin) == 0;
}
inline
bool Zstring::EndsWith(const DefaultChar* end) const
{
const size_t thisLength = length();
const size_t endLength = defaultLength(end);
if (thisLength < endLength)
return false;
return compare(thisLength - endLength, endLength, end) == 0;
}
inline
bool Zstring::EndsWith(const Zstring& end) const
{
const size_t thisLength = length();
const size_t endLength = end.length();
if (thisLength < endLength)
return false;
return compare(thisLength - endLength, endLength, end) == 0;
}
inline
size_t Zstring::find(const DefaultChar* str, const size_t pos) const
{
assert(pos <= length());
const DefaultChar* thisStr = c_str();
const DefaultChar* found = defaultStrFind(thisStr + pos, str);
return found == NULL ? npos : found - thisStr;
}
inline
size_t Zstring::find(const DefaultChar ch, const size_t pos) const
{
assert(pos <= length());
const DefaultChar* thisStr = c_str();
const DefaultChar* found = defaultStrFind(thisStr + pos, ch);
return found == NULL ? npos : found - thisStr;
}
inline
int Zstring::Cmp(const DefaultChar* other) const
{
return compare(other);
}
inline
int Zstring::Cmp(const Zstring& other) const
{
return defaultCompare(c_str(), other.c_str()); //overload using strcmp(char*, char*) should be fastest!
}
inline
bool Zstring::operator == (const Zstring& other) const
{
return length() != other.length() ? false : defaultCompare(c_str(), other.c_str()) == 0;
}
inline
bool Zstring::operator == (const DefaultChar* other) const
{
return defaultCompare(c_str(), other) == 0; //overload using strcmp(char*, char*) should be fastest!
}
inline
bool Zstring::operator < (const Zstring& other) const
{
return defaultCompare(c_str(), other.c_str()) < 0;
}
inline
bool Zstring::operator < (const DefaultChar* other) const
{
return defaultCompare(c_str(), other) < 0; //overload using strcmp(char*, char*) should be fastest!
}
inline
bool Zstring::operator != (const Zstring& other) const
{
return length() != other.length() ? true: defaultCompare(c_str(), other.c_str()) != 0;
}
inline
bool Zstring::operator != (const DefaultChar* other) const
{
return defaultCompare(c_str(), other) != 0; //overload using strcmp(char*, char*) should be fastest!
}
inline
int Zstring::compare(const Zstring& other) const
{
return defaultCompare(c_str(), other.c_str()); //overload using strcmp(char*, char*) should be fastest!
}
inline
int Zstring::compare(const DefaultChar* other) const
{
return defaultCompare(c_str(), other); //overload using strcmp(char*, char*) should be fastest!
}
inline
int Zstring::compare(const size_t pos1, const size_t n1, const DefaultChar* other) const
{
assert(length() - pos1 >= n1);
return defaultCompare(c_str() + pos1, other, n1);
}
inline
size_t Zstring::length() const
{
return descr->length;
}
inline
size_t Zstring::size() const
{
return descr->length;
}
inline
const DefaultChar* Zstring::c_str() const
{
return data;
}
inline
bool Zstring::empty() const
{
return descr->length == 0;
}
inline
DefaultChar Zstring::operator[](const size_t pos) const
{
assert(pos < length());
return data[pos];
}
inline
const Zstring Zstring::operator+(const Zstring& string2) const
{
return Zstring(*this)+=string2;
}
inline
const Zstring Zstring::operator+(const DefaultChar* string2) const
{
return Zstring(*this)+=string2;
}
inline
const Zstring Zstring::operator+(const DefaultChar ch) const
{
return Zstring(*this)+=ch;
}
//##################### Zsubstr #############################
inline
Zsubstr Zstring::zsubstr(size_t pos) const
{
assert(pos <= length());
return Zsubstr(*this, pos); //return reference counted string
}
inline
Zsubstr::Zsubstr()
{
m_data = m_ref.c_str();
m_length = 0;
}
inline
Zsubstr::Zsubstr(const Zstring& ref, const size_t pos) :
m_ref(ref),
m_data(ref.c_str() + pos),
m_length(ref.length() - pos) {}
inline
const DefaultChar* Zsubstr::c_str() const
{
return m_data;
}
inline
size_t Zsubstr::length() const
{
return m_length;
}
inline
bool Zsubstr::StartsWith(const Zstring& begin) const
{
const size_t beginLength = begin.length();
if (length() < beginLength)
return false;
return defaultCompare(m_data, begin.c_str(), beginLength) == 0;
}
inline
size_t Zsubstr::findFromEnd(const DefaultChar ch) const
{
if (length() == 0)
return Zstring::npos;
size_t pos = length() - 1;
do //pos points to last char of the string
{
if (m_data[pos] == ch)
return pos;
}
while (--pos != static_cast<size_t>(-1));
return Zstring::npos;
}
#endif // ZSTRING_H_INCLUDED
|