-
Notifications
You must be signed in to change notification settings - Fork 0
/
string.cc
501 lines (381 loc) · 11.8 KB
/
string.cc
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
/* string.cc -- basic string functions
Copyright (C) 1997-2013, Brian Bray
*/
//
// There is probably a clever way to reduce the redundancy of the code below,
// but this was hard to do without either adding extra call overhead or
// requiring that <string.h> be included in the header file and thus into
// the users program.
#include "bw/bwassert.h"
#include "bw/string.h"
#include <cctype>
#include <cstring>
namespace bw {
// Compilation time options
// When Strings are shortened, they are re-allocated to a smaller size if
// more than maxSpill characters are allocated, but unused.
const int maxSpill=128;
// Allocations for string space are always in multiples of quantaAlloc.
// quantaAlloc must be a power of 2.
const int quantaAlloc=16;
/////////////////////////////////////////////////////////////////////////
/*: class String
Represents a null terminated string.
This implementation is uses pointers to null terminated character arrays.
Reference counts are not used. Characters are "char"s, not "wchar_t"s in
the "C" locale.
*/
/////////////////////////////////////////////////////////////////////////
/*: routine String::String
Constructors. Parameters specify an initial string in one of a variety
of formats or give an integer for the initial capacity.
Prototype: String( const int length=0 )
Prototype: String( const String& str );
Prototype: String( const char* psz );
Prototype: String( const char* ps, const int len );
*/
String::String( const int len )
{
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness, not strictly required
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Adds one and rounds up
bwassert( m_lenMax>len );
bwassert( (m_lenMax&15) == 0 );
m_pszString = new char[m_lenMax];
*m_pszString = '\0';
}
String::String( const String& str )
{
int len = str.length();
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness, not strictly required
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Adds one and rounds up
m_pszString = new char[m_lenMax];
::strcpy( m_pszString, str.m_pszString );
}
String::String( const char* psz)
{
bwassert( psz );
int len = ::strlen( psz );
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness, not strictly required
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Adds one and rounds up
m_pszString = new char[m_lenMax];
::strcpy( m_pszString, psz );
}
String::String( const char* ps, const int len )
{
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Adds one and round up
m_pszString = new char[m_lenMax];
::memcpy( m_pszString, ps, len );
m_pszString[len] = '\0';
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::~String
Destructor
*/
String::~String()
{
bwassert( m_pszString );
delete [] m_pszString;
#ifdef _DEBUG
m_pszString = 0; // Will cause rogue pointers to assert
#endif
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::operator+
String concatenation operators.
Prototype: char* + String
Prototype: String + String
Prototype: String + char*
*/
String operator+( const char* psz, const String& str )
{
String strRet( ::strlen(psz)+str.length() );
::strcpy( strRet.m_pszString, psz );
::strcat( strRet.m_pszString, str.m_pszString );
return strRet;
}
String String::operator+( const String& str ) const
{
bwassert( m_pszString );
bwassert( str.m_pszString );
String strRet( length()+str.length() );
::strcpy( strRet.m_pszString, m_pszString );
::strcat( strRet.m_pszString, str.m_pszString );
return strRet;
}
String String::operator+( const char* psz ) const
{
bwassert( m_pszString );
String strRet( length()+::strlen(psz) );
::strcpy( strRet.m_pszString, m_pszString );
::strcat( strRet.m_pszString, psz );
return strRet;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::operator=
Assignment operators.
Prototype: (String) = (String);
Prototype: (String) = (char *);
Prototype: (String) = (char);
*/
String& String::operator=( const char* psz)
{
bwassert( m_pszString );
bwassert( psz );
if (m_pszString != psz) { // Handle a=a
int len = ::strlen(psz);
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness, not strictly required
if (len>=m_lenMax || m_lenMax>(len+maxSpill)) {
delete [] m_pszString;
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Add 1 and round up
m_pszString = new char[m_lenMax];
}
::strcpy( m_pszString, psz );
}
return *this;
}
String& String::operator=( char ch )
{
bwassert( m_pszString );
if (m_lenMax>(maxSpill+1)) {
// Need to shorten
delete [] m_pszString;
m_lenMax = quantaAlloc;
m_pszString = new char[quantaAlloc];
}
m_pszString[0] = ch;
m_pszString[1] = '\0';
return *this;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::operator(char*)
char* conversion
Prototype: operator const char*() const inline;
*/
/////////////////////////////////////////////////////////////////////////
/*: routine String::length()
Return length to terminator
*/
int String::length() const
{
bwassert( m_pszString );
return ::strlen( m_pszString );
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::append
Append to string.
Prototype: void append( const String& str) inline
Prototype: void append( const char* psz )
Prototype: void append( char ch )
*/
void String::append( const char* psz)
{
bwassert( m_pszString );
ensureCapacity( length()+::strlen( psz ) );
::strcat( m_pszString, psz );
}
void String::append( char ch )
{
bwassert( m_pszString );
int len = length();
ensureCapacity( len+1 );
m_pszString[len] = ch;
m_pszString[len+1] = '\0';
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::ensureCapacity()
Make sure buffer is big enough.
*/
void String::ensureCapacity( int len )
{
bwassert( m_pszString );
bwassert( len>=0 );
bwassert( len<65536 ); // Reasonableness, not strictly required
if (len>=m_lenMax) {
m_lenMax = (len+quantaAlloc) & -quantaAlloc; // Add 1 and round up
char* pszNew = new char[m_lenMax];
::strcpy( pszNew, m_pszString );
delete [] m_pszString;
m_pszString = pszNew;
}
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::capacity()
Returns capacity of string (not including terminator)
Prototype: int capacity() const inline;
*/
/////////////////////////////////////////////////////////////////////////
/*: routine String::operator==
Comparison operators for strings. These are case sensitive and not
localized.
There are a complete set of comparison operators for String's and
char*'s. Operators are: ==, !=, <=, >=, <, and >.
Prototype: (String) <op> (String)
Prototype: (String) <op> (char*)
Prototype: (char*) <op> (String)
*/
/////////////////////////////////////////////////////////////////////////
/*: routine String::compareTo
Case sensitive comparison
Prototype: int compareTo( const String& str ) const
Prototype: int compareTo( const char* psz ) const
Returns: 0 if the strings are equal, >0 if the this string is
greater than the given string, <0 if this string is less than
the given string.
*/
int String::compareTo( const char* psz ) const
{
bwassert( m_pszString );
bwassert( psz );
return ::strcmp(m_pszString, psz);
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::equals()
Case sensitive comparison for equality
Prototype: bool equals( const char* psz ) const
Prototype: bool equals( const String& str ) const
*/
/////////////////////////////////////////////////////////////////////////
/*: routine String::equalsIgnoreCase
Case insensitive comparison for equality.
Prototype: bool equalsIgnoreCase( const char* psz ) const
Prototype: bool equalsIgnoreCase( const String& str ) const
*/
bool String::equalsIgnoreCase( const char* psz ) const
{
bwassert( m_pszString );
bwassert( psz );
return strcasecmp(m_pszString, psz)==0;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::indexOf()
Finds first occurrance of character or string.
Prototype: int indexOf( char ch ) const
Prototype: int indexOf( const char* psz ) const
Prototype: int indexOf( const String& str ) const
Returns: Index of first occurrance or -1 if not found
*/
int String::indexOf( char ch ) const
{
bwassert( m_pszString );
char *psz = ::strchr(m_pszString, ch);
if (psz)
return psz - m_pszString;
else
return -1;
}
int String::indexOf( const char* psz ) const
{
bwassert( m_pszString );
bwassert( psz );
char* pszT = ::strstr(m_pszString, psz);
if (pszT)
return pszT - m_pszString;
else
return -1;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::lastIndexOf
Finds last occurrance of character or string.
Prototype: int lastIndexOf( char ch ) const
Prototype: int lastIndexOf( const char* psz ) const
Prototype: int lastIndexOf( const String& str ) const
Returns: Index of last occurrance or -1 if not found
*/
int String::lastIndexOf( char ch ) const
{
bwassert( m_pszString );
char *psz = ::strrchr(m_pszString, ch);
if (psz)
return psz - m_pszString;
else
return -1;
}
int String::lastIndexOf( const char* psz ) const
{
bwassert( m_pszString );
bwassert( psz );
// There is no library function for this operation, so I'll
// have to code it myself
int nCmp = ::strlen(psz);
int indx;
int indx2;
for (indx=::strlen(m_pszString)-1; indx>=nCmp-1; --indx) {
for (indx2=0; indx2<nCmp; ++indx2) {
if (m_pszString[indx-indx2]!=psz[nCmp-1-indx2])
break;
}
if (indx2==nCmp)
return indx - (nCmp-1);
}
return -1;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::startsWith
Tells if this string starts with the given string. Case dependent.
Prototype: bool startsWith( const char* psz ) const
Prototype: bool startsWith( const String& str ) const
*/
bool String::startsWith( const char* psz ) const
{
bwassert( m_pszString );
bwassert( psz );
return ::strstr(m_pszString, psz) == m_pszString;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::substring
Extracts a substring.
Extracts from the start index to just before the end index. If
no end index is given, extracts to the end of the string. The
indices must be contained within the string and end>=start.
Prototype: String substring( int start ) const
Prototype: String substring( int start, int end ) const
*/
String String::substring( int start ) const
{
bwassert( m_pszString );
bwassert( start>=0 );
bwassert( start<=length() );
return String( &m_pszString[start] );
}
String String::substring( int start, int end ) const
{
bwassert( m_pszString );
bwassert( start>=0 );
bwassert( start<=length() );
bwassert( end>=0 );
bwassert( end<=length() );
bwassert( end>=start );
String str;
int len = end-start;
str.ensureCapacity( len );
::strncpy(str.m_pszString, &m_pszString[start], len);
str.m_pszString[len] = '\0';
return str;
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::toUpperCase()
Convert String to upper case. Current c locale is used.
*/
void String::toUpperCase()
{
bwassert( m_pszString );
for (char *pch = m_pszString; *pch; pch++)
*pch = toupper(*pch);
}
/////////////////////////////////////////////////////////////////////////
/*: routine String::toLowerCase()
Convert String to lower case. Current c locale is used.
*/
void String::toLowerCase()
{
bwassert( m_pszString );
for (char *pch = m_pszString; *pch; pch++)
*pch = tolower(*pch);
}
} // namespace bw