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
|
// This file is part of the uSTL library, an STL implementation.
//
// Copyright (c) 2005 by Mike Sharov <msharov@users.sourceforge.net>
// This file is free software, distributed under the MIT License.
#include "ustring.h"
#include "mistream.h"
#include "mostream.h"
#include "ualgo.h"
#include <stdio.h> // for vsnprintf (in string::format)
namespace ustl {
//----------------------------------------------------------------------
const uoff_t string::npos;
//----------------------------------------------------------------------
/// Assigns itself the value of string \p s
string::string (const string& s)
: memblock ((s.size()+1) & (s.is_linked()-1)) // Allocate with terminator if not linked (can't call virtuals from base ctor)
{
if (s.is_linked())
relink (s.c_str(), s.size());
else {
copy_n (s.begin(), size(), begin());
relink (begin(), size()-1); // --m_Size
}
}
/// Links to \p s
string::string (const_pointer s)
: memblock ()
{
if (!s) s = "";
relink (s, strlen(s));
}
/// Creates a string of length \p n filled with character \p c.
string::string (size_type n, value_type c)
: memblock (n+1) // because base ctor can't call virtuals of this class
{
relink (begin(), size()-1); // --m_Size
fill_n (begin(), n, c);
at(n) = 0;
}
/// Resize the string to \p n characters. New space contents is undefined.
void string::resize (size_type n)
{
if (!(n | memblock::capacity()))
return (relink ("",0));
memblock::resize (n);
at(n) = 0;
}
/// Assigns itself the value of string \p s
void string::assign (const_pointer s)
{
if (!s) s = "";
assign (s, strlen (s));
}
/// Assigns itself the value of string \p s of length \p len.
void string::assign (const_pointer s, size_type len)
{
while (len && s[len - 1] == 0)
-- len;
resize (len);
copy_n (s, len, begin());
}
/// Appends to itself the value of string \p s of length \p len.
void string::append (const_pointer s)
{
if (!s) s = "";
append (s, strlen (s));
}
/// Appends to itself the value of string \p s of length \p len.
void string::append (const_pointer s, size_type len)
{
while (len && s[len - 1] == 0)
-- len;
resize (size() + len);
copy_n (s, len, end() - len);
}
/// Appends to itself \p n characters of value \p c.
void string::append (size_type n, value_type c)
{
resize (size() + n);
fill_n (end() - n, n, c);
}
/// Copies into itself at offset \p start, the value of string \p p of length \p n.
string::size_type string::copyto (pointer p, size_type n, const_iterator start) const
{
assert (p && n);
if (!start)
start = begin();
const size_type btc = min(n-1, size());
copy_n (start, btc, p);
p[btc] = 0;
return (btc+1);
}
/// Returns comparison value regarding string \p s.
/// The return value is:
/// \li 1 if this string is greater (by value, not length) than string \p s
/// \li 0 if this string is equal to string \p s
/// \li -1 if this string is less than string \p s
///
/*static*/ int string::compare (const_iterator first1, const_iterator last1, const_iterator first2, const_iterator last2)
{
assert (first1 <= last1 && (first2 <= last2 || !last2) && "Negative ranges result in memory allocation errors.");
const size_type len1 = distance (first1, last1), len2 = distance (first2, last2);
const int rvbylen = sign (int(len1 - len2));
int rv = memcmp (first1, first2, min (len1, len2));
return (rv ? rv : rvbylen);
}
/// Returns true if this string is equal to string \p s.
bool string::operator== (const_pointer s) const
{
if (!s) s = "";
return (size() == strlen(s) && 0 == memcmp (c_str(), s, size()));
}
/// Returns the beginning of character \p i.
string::const_iterator string::wiat (uoff_t i) const
{
utf8in_iterator<string::const_iterator> cfinder (begin());
cfinder += i;
return (cfinder.base());
}
/// Inserts wide character \p c at \p ipo \p n times as a UTF-8 string.
///
/// \p ipo is a byte position, not a character position, and is intended
/// to be obtained from one of the find functions. Generally you are not
/// able to know the character position in a localized string; different
/// languages will have different character counts, so use find instead.
///
void string::insert (const uoff_t ipo, wchar_t c, size_type n)
{
iterator ip (iat(ipo));
ip = iterator (memblock::insert (memblock::iterator(ip), n * Utf8Bytes(c)));
fill_n (utf8out (ip), n, c);
*end() = 0;
}
/// Inserts sequence of wide characters at \p ipo (byte position from a find call)
void string::insert (const uoff_t ipo, const wchar_t* first, const wchar_t* last, const size_type n)
{
iterator ip (iat(ipo));
size_type nti = distance (first, last), bti = 0;
for (uoff_t i = 0; i < nti; ++ i)
bti += Utf8Bytes(first[i]);
ip = iterator (memblock::insert (memblock::iterator(ip), n * bti));
utf8out_iterator<string::iterator> uout (utf8out (ip));
for (uoff_t j = 0; j < n; ++ j)
for (uoff_t k = 0; k < nti; ++ k, ++ uout)
*uout = first[k];
*end() = 0;
}
/// Inserts character \p c into this string at \p start.
string::iterator string::insert (iterator start, const_reference c, size_type n)
{
start = iterator (memblock::insert (memblock::iterator(start), n));
fill_n (start, n, c);
*end() = 0;
return (start);
}
/// Inserts \p count instances of string \p s at offset \p start.
string::iterator string::insert (iterator start, const_pointer s, size_type n)
{
if (!s) s = "";
return (insert (start, s, s + strlen(s), n));
}
/// Inserts [first,last] \p n times.
string::iterator string::insert (iterator start, const_pointer first, const_pointer last, size_type n)
{
assert (first <= last);
assert (begin() <= start && end() >= start);
assert ((first < begin() || first >= end() || size() + abs_distance(first,last) < capacity()) && "Insertion of self with autoresize is not supported");
start = iterator (memblock::insert (memblock::iterator(start), distance(first, last) * n));
fill (memblock::iterator(start), first, distance(first, last), n);
*end() = 0;
return (start);
}
/// Erases \p size bytes at \p ep.
string::iterator string::erase (iterator ep, size_type n)
{
string::iterator rv = memblock::erase (memblock::iterator(ep), n);
*end() = 0;
return (rv);
}
/// Erases \p n bytes at byte offset \p epo.
void string::erase (uoff_t epo, size_type n)
{
erase (iat(epo), n);
}
/// Replaces range [\p start, \p start + \p len] with string \p s.
void string::replace (iterator first, iterator last, const_pointer s)
{
if (!s) s = "";
replace (first, last, s, s + strlen(s));
}
/// Replaces range [\p start, \p start + \p len] with \p count instances of string \p s.
void string::replace (iterator first, iterator last, const_pointer i1, const_pointer i2, size_type n)
{
assert (first <= last);
assert (n || distance(first, last));
assert (first >= begin() && first <= end() && last >= first && last <= end());
assert ((i1 < begin() || i1 >= end() || abs_distance(i1,i2) * n + size() < capacity()) && "Replacement by self can not autoresize");
const size_type bte = distance(first, last), bti = distance(i1, i2) * n;
if (bti < bte)
first = iterator (memblock::erase (memblock::iterator(first), bte - bti));
else if (bte < bti)
first = iterator (memblock::insert (memblock::iterator(first), bti - bte));
fill (memblock::iterator(first), i1, distance(i1, i2), n);
*end() = 0;
}
/// Returns the offset of the first occurence of \p c after \p pos.
uoff_t string::find (const_reference c, uoff_t pos) const
{
const_iterator found = ::ustl::find (iat(pos), end(), c);
return (found < end() ? (uoff_t) distance(begin(),found) : npos);
}
/// Returns the offset of the first occurence of substring \p s of length \p n after \p pos.
uoff_t string::find (const string& s, uoff_t pos) const
{
if (s.empty() || s.size() > size() - pos)
return (npos);
const uoff_t endi = s.size() - 1;
const_reference endchar = s[endi];
uoff_t lastPos = endi;
while (lastPos-- && s[lastPos] != endchar) ;
const size_type skip = endi - lastPos;
const_iterator i = iat(pos) + endi;
for (; i < end() && (i = ::ustl::find (i, end(), endchar)) < end(); i += skip)
if (memcmp (i - endi, s.c_str(), s.size()) == 0)
return (distance (begin(), i) - endi);
return (npos);
}
/// Returns the offset of the last occurence of character \p c before \p pos.
uoff_t string::rfind (const_reference c, uoff_t pos) const
{
for (int i = min(pos,size()-1); i >= 0; --i)
if (at(i) == c)
return (i);
return (npos);
}
/// Returns the offset of the last occurence of substring \p s of size \p n before \p pos.
uoff_t string::rfind (const string& s, uoff_t pos) const
{
const_iterator d = iat(pos) - 1;
const_iterator sp = begin() + s.size() - 1;
const_iterator m = s.end() - 1;
for (long int i = 0; d > sp && size_type(i) < s.size(); -- d)
for (i = 0; size_type(i) < s.size(); ++ i)
if (m[-i] != d[-i])
break;
return (d > sp ? (uoff_t) distance (begin(), d + 2 - s.size()) : npos);
}
/// Returns the offset of the first occurence of one of characters in \p s of size \p n after \p pos.
uoff_t string::find_first_of (const string& s, uoff_t pos) const
{
for (uoff_t i = min(pos,size()); i < size(); ++ i)
if (s.find (at(i)) != npos)
return (i);
return (npos);
}
/// Returns the offset of the first occurence of one of characters not in \p s of size \p n after \p pos.
uoff_t string::find_first_not_of (const string& s, uoff_t pos) const
{
for (uoff_t i = min(pos,size()); i < size(); ++ i)
if (s.find (at(i)) == npos)
return (i);
return (npos);
}
/// Returns the offset of the last occurence of one of characters in \p s of size \p n before \p pos.
uoff_t string::find_last_of (const string& s, uoff_t pos) const
{
for (int i = min(pos,size()-1); i >= 0; -- i)
if (s.find (at(i)) != npos)
return (i);
return (npos);
}
/// Returns the offset of the last occurence of one of characters not in \p s of size \p n before \p pos.
uoff_t string::find_last_not_of (const string& s, uoff_t pos) const
{
for (int i = min(pos,size()-1); i >= 0; -- i)
if (s.find (at(i)) == npos)
return (i);
return (npos);
}
/// Equivalent to a vsprintf on the string.
int string::vformat (const char* fmt, va_list args)
{
#if HAVE_VA_COPY
va_list args2;
#else
#define args2 args
#undef __va_copy
#define __va_copy(x,y)
#endif
size_t rv = size();
do {
reserve (rv);
__va_copy (args2, args);
rv = vsnprintf (data(), memblock::capacity(), fmt, args2);
rv = min (rv, memblock::capacity());
} while (rv > capacity());
resize (min (rv, capacity()));
return (rv);
}
/// Equivalent to a sprintf on the string.
int string::format (const char* fmt, ...)
{
va_list args;
va_start (args, fmt);
const int rv = vformat (fmt, args);
va_end (args);
return (rv);
}
/// Returns the number of bytes required to write this object to a stream.
size_t string::stream_size (void) const
{
return (Utf8Bytes(size()) + size());
}
/// Reads the object from stream \p os
void string::read (istream& is)
{
char szbuf [8];
is >> szbuf[0];
size_t szsz (Utf8SequenceBytes (szbuf[0]) - 1), n = 0;
if (!is.verify_remaining ("read", "ustl::string", szsz)) return;
is.read (szbuf + 1, szsz);
n = *utf8in(szbuf);
if (!is.verify_remaining ("read", "ustl::string", n)) return;
resize (n);
is.read (data(), size());
}
/// Writes the object to stream \p os
void string::write (ostream& os) const
{
const written_size_type sz (size());
assert (sz == size() && "No support for writing strings larger than 4G");
char szbuf [8];
utf8out_iterator<char*> szout (szbuf);
*szout = sz;
size_t szsz = distance (szbuf, szout.base());
if (!os.verify_remaining ("write", "ustl::string", szsz + sz)) return;
os.write (szbuf, szsz);
os.write (cdata(), sz);
}
/// Returns a hash value for [first, last)
/*static*/ hashvalue_t string::hash (const char* first, const char* last)
{
hashvalue_t h = 0;
// This has the bits flowing into each other from both sides of the number
for (; first < last; ++ first)
h = *first + ((h << 7) | (h >> (BitsInType(hashvalue_t) - 7)));
return (h);
}
string::size_type string::minimumFreeCapacity (void) const throw() { return (1); }
} // namespace ustl
|