-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathustring.cc
397 lines (352 loc) · 12.5 KB
/
ustring.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
// 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 string::size_type string::npos;
//----------------------------------------------------------------------
/// Assigns itself the value of string \p s
string::string (const string& s)
: memblock ((s.size()+1) & (s.is_linked()-1)) // +1 because base ctor can't call virtuals of this class
{
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) noexcept
: 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) // +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
string& string::assign (const_pointer s)
{
if (!s) s = "";
assign (s, strlen (s));
return (*this);
}
/// Assigns itself the value of string \p s of length \p len.
string& string::assign (const_pointer s, size_type len)
{
resize (len);
copy_n (s, len, begin());
return (*this);
}
/// Appends to itself the value of string \p s of length \p len.
string& string::append (const_pointer s)
{
if (!s) s = "";
append (s, strlen (s));
return (*this);
}
/// Appends to itself the value of string \p s of length \p len.
string& string::append (const_pointer s, size_type len)
{
resize (size() + len);
copy_n (s, len, end() - len);
return (*this);
}
/// Appends to itself \p n characters of value \p c.
string& string::append (size_type n, value_type c)
{
resize (size() + n);
fill_n (end() - n, n, c);
return (*this);
}
/// Copies [start,start+n) into [p,n). The result is not null terminated.
string::size_type string::copy (pointer p, size_type n, size_type start) const noexcept
{
assert (p && n && start <= size());
const size_type btc = min(n, size()-start);
copy_n (iat(start), btc, p);
return (btc);
}
/// 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) noexcept
{
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 noexcept
{
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 (size_type i) const noexcept
{
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.
///
string& string::insert (size_type ipo, size_type n, wvalue_type c)
{
iterator ip (iat(ipo));
ip = iterator (memblock::insert (memblock::iterator(ip), n * Utf8Bytes(c)));
fill_n (utf8out (ip), n, c);
*end() = 0;
return (*this);
}
/// Inserts sequence of wide characters at \p ipo (byte position from a find call)
string& string::insert (size_type ipo, const wvalue_type* first, const wvalue_type* last, const size_type n)
{
iterator ip (iat(ipo));
size_type nti = distance (first, last), bti = 0;
for (size_type 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 (size_type j = 0; j < n; ++ j)
for (size_type k = 0; k < nti; ++ k, ++ uout)
*uout = first[k];
*end() = 0;
return (*this);
}
/// Inserts character \p c into this string at \p start.
string::iterator string::insert (const_iterator start, size_type n, value_type c)
{
memblock::iterator ip = memblock::insert (memblock::const_iterator(start), n);
fill_n (ip, n, c);
*end() = 0;
return (iterator(ip));
}
/// Inserts \p count instances of string \p s at offset \p start.
string::iterator string::insert (const_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 (const_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");
memblock::iterator ip = iterator (memblock::insert (memblock::const_iterator(start), distance(first, last) * n));
fill (ip, first, distance(first, last), n);
*end() = 0;
return (iterator(ip));
}
/// Erases \p size bytes at \p ep.
string::iterator string::erase (const_iterator ep, size_type n)
{
string::iterator rv = memblock::erase (memblock::const_iterator(ep), n);
*end() = 0;
return (rv);
}
/// Erases \p n bytes at byte offset \p epo.
string& string::erase (size_type epo, size_type n)
{
erase (iat(epo), n);
return (*this);
}
/// Replaces range [\p start, \p start + \p len] with string \p s.
string& string::replace (const_iterator first, const_iterator last, const_pointer s)
{
if (!s) s = "";
replace (first, last, s, s + strlen(s));
return (*this);
}
/// Replaces range [\p start, \p start + \p len] with \p count instances of string \p s.
string& string::replace (const_iterator first, const_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;
memblock::const_iterator rp = static_cast<memblock::const_iterator>(first);
if (bti < bte)
rp = memblock::erase (rp, bte - bti);
else if (bte < bti)
rp = memblock::insert (rp, bti - bte);
fill (rp, i1, distance(i1, i2), n);
*end() = 0;
return (*this);
}
/// Returns the offset of the first occurence of \p c after \p pos.
string::size_type string::find (value_type c, size_type pos) const noexcept
{
const_iterator found = ::ustl::find (iat(pos), end(), c);
return (found < end() ? (size_type) distance(begin(),found) : npos);
}
/// Returns the offset of the first occurence of substring \p s of length \p n after \p pos.
string::size_type string::find (const string& s, size_type pos) const noexcept
{
if (s.empty() || s.size() > size() - pos)
return (npos);
size_type endi = s.size() - 1;
value_type endchar = s[endi];
size_type 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.
string::size_type string::rfind (value_type c, size_type pos) const noexcept
{
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.
string::size_type string::rfind (const string& s, size_type pos) const noexcept
{
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 ? (size_type) 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.
string::size_type string::find_first_of (const string& s, size_type pos) const noexcept
{
for (size_type 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.
string::size_type string::find_first_not_of (const string& s, size_type pos) const noexcept
{
for (size_type 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.
string::size_type string::find_last_of (const string& s, size_type pos) const noexcept
{
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.
string::size_type string::find_last_not_of (const string& s, size_type pos) const noexcept
{
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
int rv = size();
do {
resize (rv);
__va_copy (args2, args);
rv = vsnprintf (data(), memblock::capacity(), fmt, args2);
} while (rv >= (int)memblock::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 noexcept
{
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) noexcept
{
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 noexcept { return (1); }
} // namespace ustl