]> git.saurik.com Git - apple/javascriptcore.git/blob - kjs/ustring.cpp
6f6add81909ebc9ed4ee102ac546813bd70aa6c4
[apple/javascriptcore.git] / kjs / ustring.cpp
1 // -*- c-basic-offset: 2 -*-
2 /*
3 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca)
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24 #include "config.h"
25 #include "ustring.h"
26
27 #include "JSLock.h"
28 #include "collector.h"
29 #include "dtoa.h"
30 #include "function.h"
31 #include "identifier.h"
32 #include "operations.h"
33 #include <ctype.h>
34 #include <float.h>
35 #include <limits.h>
36 #include <math.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <wtf/Assertions.h>
40 #include <wtf/ASCIICType.h>
41 #include <wtf/MathExtras.h>
42 #include <wtf/Vector.h>
43 #include <wtf/unicode/UTF8.h>
44
45 #if HAVE(STRING_H)
46 #include <string.h>
47 #endif
48 #if HAVE(STRINGS_H)
49 #include <strings.h>
50 #endif
51
52 using namespace WTF;
53 using namespace WTF::Unicode;
54 using namespace std;
55
56 namespace KJS {
57
58 extern const double NaN;
59 extern const double Inf;
60
61 static inline const size_t overflowIndicator() { return std::numeric_limits<size_t>::max(); }
62 static inline const size_t maxUChars() { return std::numeric_limits<size_t>::max() / sizeof(UChar); }
63
64 static inline UChar* allocChars(size_t length)
65 {
66 ASSERT(length);
67 if (length > maxUChars())
68 return 0;
69 return static_cast<UChar*>(fastMalloc(sizeof(UChar) * length));
70 }
71
72 static inline UChar* reallocChars(UChar* buffer, size_t length)
73 {
74 ASSERT(length);
75 if (length > maxUChars())
76 return 0;
77 return static_cast<UChar*>(fastRealloc(buffer, sizeof(UChar) * length));
78 }
79
80 COMPILE_ASSERT(sizeof(UChar) == 2, uchar_is_2_bytes)
81
82 CString::CString(const char *c)
83 {
84 length = strlen(c);
85 data = new char[length+1];
86 memcpy(data, c, length + 1);
87 }
88
89 CString::CString(const char *c, size_t len)
90 {
91 length = len;
92 data = new char[len+1];
93 memcpy(data, c, len);
94 data[len] = 0;
95 }
96
97 CString::CString(const CString &b)
98 {
99 length = b.length;
100 if (b.data) {
101 data = new char[length+1];
102 memcpy(data, b.data, length + 1);
103 }
104 else
105 data = 0;
106 }
107
108 CString::~CString()
109 {
110 delete [] data;
111 }
112
113 CString &CString::append(const CString &t)
114 {
115 char *n;
116 n = new char[length+t.length+1];
117 if (length)
118 memcpy(n, data, length);
119 if (t.length)
120 memcpy(n+length, t.data, t.length);
121 length += t.length;
122 n[length] = 0;
123
124 delete [] data;
125 data = n;
126
127 return *this;
128 }
129
130 CString &CString::operator=(const char *c)
131 {
132 if (data)
133 delete [] data;
134 length = strlen(c);
135 data = new char[length+1];
136 memcpy(data, c, length + 1);
137
138 return *this;
139 }
140
141 CString &CString::operator=(const CString &str)
142 {
143 if (this == &str)
144 return *this;
145
146 if (data)
147 delete [] data;
148 length = str.length;
149 if (str.data) {
150 data = new char[length + 1];
151 memcpy(data, str.data, length + 1);
152 }
153 else
154 data = 0;
155
156 return *this;
157 }
158
159 bool operator==(const CString& c1, const CString& c2)
160 {
161 size_t len = c1.size();
162 return len == c2.size() && (len == 0 || memcmp(c1.c_str(), c2.c_str(), len) == 0);
163 }
164
165 // Hack here to avoid a global with a constructor; point to an unsigned short instead of a UChar.
166 static unsigned short almostUChar;
167 UString::Rep UString::Rep::null = { 0, 0, 1, 0, 0, &UString::Rep::null, 0, 0, 0, 0, 0, 0 };
168 UString::Rep UString::Rep::empty = { 0, 0, 1, 0, 0, &UString::Rep::empty, 0, reinterpret_cast<UChar*>(&almostUChar), 0, 0, 0, 0 };
169 const int normalStatBufferSize = 4096;
170 static char *statBuffer = 0; // FIXME: This buffer is never deallocated.
171 static int statBufferSize = 0;
172
173 PassRefPtr<UString::Rep> UString::Rep::createCopying(const UChar *d, int l)
174 {
175 int sizeInBytes = l * sizeof(UChar);
176 UChar *copyD = static_cast<UChar *>(fastMalloc(sizeInBytes));
177 memcpy(copyD, d, sizeInBytes);
178
179 return create(copyD, l);
180 }
181
182 PassRefPtr<UString::Rep> UString::Rep::create(UChar *d, int l)
183 {
184 Rep* r = new Rep;
185 r->offset = 0;
186 r->len = l;
187 r->rc = 1;
188 r->_hash = 0;
189 r->isIdentifier = 0;
190 r->baseString = r;
191 r->reportedCost = 0;
192 r->buf = d;
193 r->usedCapacity = l;
194 r->capacity = l;
195 r->usedPreCapacity = 0;
196 r->preCapacity = 0;
197
198 // steal the single reference this Rep was created with
199 return adoptRef(r);
200 }
201
202 PassRefPtr<UString::Rep> UString::Rep::create(PassRefPtr<Rep> base, int offset, int length)
203 {
204 ASSERT(base);
205
206 int baseOffset = base->offset;
207
208 base = base->baseString;
209
210 ASSERT(-(offset + baseOffset) <= base->usedPreCapacity);
211 ASSERT(offset + baseOffset + length <= base->usedCapacity);
212
213 Rep *r = new Rep;
214 r->offset = baseOffset + offset;
215 r->len = length;
216 r->rc = 1;
217 r->_hash = 0;
218 r->isIdentifier = 0;
219 r->baseString = base.releaseRef();
220 r->reportedCost = 0;
221 r->buf = 0;
222 r->usedCapacity = 0;
223 r->capacity = 0;
224 r->usedPreCapacity = 0;
225 r->preCapacity = 0;
226
227 // steal the single reference this Rep was created with
228 return adoptRef(r);
229 }
230
231 void UString::Rep::destroy()
232 {
233 if (isIdentifier)
234 Identifier::remove(this);
235 if (baseString != this) {
236 baseString->deref();
237 } else {
238 fastFree(buf);
239 }
240 delete this;
241 }
242
243 // Golden ratio - arbitrary start value to avoid mapping all 0's to all 0's
244 // or anything like that.
245 const unsigned PHI = 0x9e3779b9U;
246
247 // Paul Hsieh's SuperFastHash
248 // http://www.azillionmonkeys.com/qed/hash.html
249 unsigned UString::Rep::computeHash(const UChar *s, int len)
250 {
251 unsigned l = len;
252 uint32_t hash = PHI;
253 uint32_t tmp;
254
255 int rem = l & 1;
256 l >>= 1;
257
258 // Main loop
259 for (; l > 0; l--) {
260 hash += s[0].uc;
261 tmp = (s[1].uc << 11) ^ hash;
262 hash = (hash << 16) ^ tmp;
263 s += 2;
264 hash += hash >> 11;
265 }
266
267 // Handle end case
268 if (rem) {
269 hash += s[0].uc;
270 hash ^= hash << 11;
271 hash += hash >> 17;
272 }
273
274 // Force "avalanching" of final 127 bits
275 hash ^= hash << 3;
276 hash += hash >> 5;
277 hash ^= hash << 2;
278 hash += hash >> 15;
279 hash ^= hash << 10;
280
281 // this avoids ever returning a hash code of 0, since that is used to
282 // signal "hash not computed yet", using a value that is likely to be
283 // effectively the same as 0 when the low bits are masked
284 if (hash == 0)
285 hash = 0x80000000;
286
287 return hash;
288 }
289
290 // Paul Hsieh's SuperFastHash
291 // http://www.azillionmonkeys.com/qed/hash.html
292 unsigned UString::Rep::computeHash(const char *s)
293 {
294 // This hash is designed to work on 16-bit chunks at a time. But since the normal case
295 // (above) is to hash UTF-16 characters, we just treat the 8-bit chars as if they
296 // were 16-bit chunks, which should give matching results
297
298 uint32_t hash = PHI;
299 uint32_t tmp;
300 size_t l = strlen(s);
301
302 size_t rem = l & 1;
303 l >>= 1;
304
305 // Main loop
306 for (; l > 0; l--) {
307 hash += (unsigned char)s[0];
308 tmp = ((unsigned char)s[1] << 11) ^ hash;
309 hash = (hash << 16) ^ tmp;
310 s += 2;
311 hash += hash >> 11;
312 }
313
314 // Handle end case
315 if (rem) {
316 hash += (unsigned char)s[0];
317 hash ^= hash << 11;
318 hash += hash >> 17;
319 }
320
321 // Force "avalanching" of final 127 bits
322 hash ^= hash << 3;
323 hash += hash >> 5;
324 hash ^= hash << 2;
325 hash += hash >> 15;
326 hash ^= hash << 10;
327
328 // this avoids ever returning a hash code of 0, since that is used to
329 // signal "hash not computed yet", using a value that is likely to be
330 // effectively the same as 0 when the low bits are masked
331 if (hash == 0)
332 hash = 0x80000000;
333
334 return hash;
335 }
336
337 // put these early so they can be inlined
338 inline size_t UString::expandedSize(size_t size, size_t otherSize) const
339 {
340 // Do the size calculation in two parts, returning overflowIndicator if
341 // we overflow the maximum value that we can handle.
342
343 if (size > maxUChars())
344 return overflowIndicator();
345
346 size_t expandedSize = ((size + 10) / 10 * 11) + 1;
347 if (maxUChars() - expandedSize < otherSize)
348 return overflowIndicator();
349
350 return expandedSize + otherSize;
351 }
352
353 inline int UString::usedCapacity() const
354 {
355 return m_rep->baseString->usedCapacity;
356 }
357
358 inline int UString::usedPreCapacity() const
359 {
360 return m_rep->baseString->usedPreCapacity;
361 }
362
363 void UString::expandCapacity(int requiredLength)
364 {
365 Rep* r = m_rep->baseString;
366
367 if (requiredLength > r->capacity) {
368 size_t newCapacity = expandedSize(requiredLength, r->preCapacity);
369 UChar* oldBuf = r->buf;
370 r->buf = reallocChars(r->buf, newCapacity);
371 if (!r->buf) {
372 r->buf = oldBuf;
373 m_rep = &Rep::null;
374 return;
375 }
376 r->capacity = newCapacity - r->preCapacity;
377 }
378 if (requiredLength > r->usedCapacity) {
379 r->usedCapacity = requiredLength;
380 }
381 }
382
383 void UString::expandPreCapacity(int requiredPreCap)
384 {
385 Rep* r = m_rep->baseString;
386
387 if (requiredPreCap > r->preCapacity) {
388 size_t newCapacity = expandedSize(requiredPreCap, r->capacity);
389 int delta = newCapacity - r->capacity - r->preCapacity;
390
391 UChar* newBuf = allocChars(newCapacity);
392 if (!newBuf) {
393 m_rep = &Rep::null;
394 return;
395 }
396 memcpy(newBuf + delta, r->buf, (r->capacity + r->preCapacity) * sizeof(UChar));
397 fastFree(r->buf);
398 r->buf = newBuf;
399
400 r->preCapacity = newCapacity - r->capacity;
401 }
402 if (requiredPreCap > r->usedPreCapacity) {
403 r->usedPreCapacity = requiredPreCap;
404 }
405 }
406
407 UString::UString(const char *c)
408 {
409 if (!c) {
410 m_rep = &Rep::null;
411 return;
412 }
413
414 if (!c[0]) {
415 m_rep = &Rep::empty;
416 return;
417 }
418
419 size_t length = strlen(c);
420 UChar *d = allocChars(length);
421 if (!d)
422 m_rep = &Rep::null;
423 else {
424 for (size_t i = 0; i < length; i++)
425 d[i].uc = c[i];
426 m_rep = Rep::create(d, static_cast<int>(length));
427 }
428 }
429
430 UString::UString(const UChar *c, int length)
431 {
432 if (length == 0)
433 m_rep = &Rep::empty;
434 else
435 m_rep = Rep::createCopying(c, length);
436 }
437
438 UString::UString(UChar *c, int length, bool copy)
439 {
440 if (length == 0)
441 m_rep = &Rep::empty;
442 else if (copy)
443 m_rep = Rep::createCopying(c, length);
444 else
445 m_rep = Rep::create(c, length);
446 }
447
448 UString::UString(const Vector<UChar>& buffer)
449 {
450 if (!buffer.size())
451 m_rep = &Rep::empty;
452 else
453 m_rep = Rep::createCopying(buffer.data(), buffer.size());
454 }
455
456
457 UString::UString(const UString &a, const UString &b)
458 {
459 int aSize = a.size();
460 int aOffset = a.m_rep->offset;
461 int bSize = b.size();
462 int bOffset = b.m_rep->offset;
463 int length = aSize + bSize;
464
465 // possible cases:
466
467 if (aSize == 0) {
468 // a is empty
469 m_rep = b.m_rep;
470 } else if (bSize == 0) {
471 // b is empty
472 m_rep = a.m_rep;
473 } else if (aOffset + aSize == a.usedCapacity() && aSize >= minShareSize && 4 * aSize >= bSize &&
474 (-bOffset != b.usedPreCapacity() || aSize >= bSize)) {
475 // - a reaches the end of its buffer so it qualifies for shared append
476 // - also, it's at least a quarter the length of b - appending to a much shorter
477 // string does more harm than good
478 // - however, if b qualifies for prepend and is longer than a, we'd rather prepend
479 UString x(a);
480 x.expandCapacity(aOffset + length);
481 if (a.data() && x.data()) {
482 memcpy(const_cast<UChar *>(a.data() + aSize), b.data(), bSize * sizeof(UChar));
483 m_rep = Rep::create(a.m_rep, 0, length);
484 } else
485 m_rep = &Rep::null;
486 } else if (-bOffset == b.usedPreCapacity() && bSize >= minShareSize && 4 * bSize >= aSize) {
487 // - b reaches the beginning of its buffer so it qualifies for shared prepend
488 // - also, it's at least a quarter the length of a - prepending to a much shorter
489 // string does more harm than good
490 UString y(b);
491 y.expandPreCapacity(-bOffset + aSize);
492 if (b.data() && y.data()) {
493 memcpy(const_cast<UChar *>(b.data() - aSize), a.data(), aSize * sizeof(UChar));
494 m_rep = Rep::create(b.m_rep, -aSize, length);
495 } else
496 m_rep = &Rep::null;
497 } else {
498 // a does not qualify for append, and b does not qualify for prepend, gotta make a whole new string
499 size_t newCapacity = expandedSize(length, 0);
500 UChar* d = allocChars(newCapacity);
501 if (!d)
502 m_rep = &Rep::null;
503 else {
504 memcpy(d, a.data(), aSize * sizeof(UChar));
505 memcpy(d + aSize, b.data(), bSize * sizeof(UChar));
506 m_rep = Rep::create(d, length);
507 m_rep->capacity = newCapacity;
508 }
509 }
510 }
511
512 const UString& UString::null()
513 {
514 static UString* n = new UString;
515 return *n;
516 }
517
518 UString UString::from(int i)
519 {
520 UChar buf[1 + sizeof(i) * 3];
521 UChar *end = buf + sizeof(buf) / sizeof(UChar);
522 UChar *p = end;
523
524 if (i == 0) {
525 *--p = '0';
526 } else if (i == INT_MIN) {
527 char minBuf[1 + sizeof(i) * 3];
528 snprintf(minBuf, 1 + sizeof(i) * 3, "%d", INT_MIN);
529 return UString(minBuf);
530 } else {
531 bool negative = false;
532 if (i < 0) {
533 negative = true;
534 i = -i;
535 }
536 while (i) {
537 *--p = (unsigned short)((i % 10) + '0');
538 i /= 10;
539 }
540 if (negative) {
541 *--p = '-';
542 }
543 }
544
545 return UString(p, static_cast<int>(end - p));
546 }
547
548 UString UString::from(unsigned int u)
549 {
550 UChar buf[sizeof(u) * 3];
551 UChar *end = buf + sizeof(buf) / sizeof(UChar);
552 UChar *p = end;
553
554 if (u == 0) {
555 *--p = '0';
556 } else {
557 while (u) {
558 *--p = (unsigned short)((u % 10) + '0');
559 u /= 10;
560 }
561 }
562
563 return UString(p, static_cast<int>(end - p));
564 }
565
566 UString UString::from(long l)
567 {
568 UChar buf[1 + sizeof(l) * 3];
569 UChar *end = buf + sizeof(buf) / sizeof(UChar);
570 UChar *p = end;
571
572 if (l == 0) {
573 *--p = '0';
574 } else if (l == LONG_MIN) {
575 char minBuf[1 + sizeof(l) * 3];
576 snprintf(minBuf, 1 + sizeof(l) * 3, "%ld", LONG_MIN);
577 return UString(minBuf);
578 } else {
579 bool negative = false;
580 if (l < 0) {
581 negative = true;
582 l = -l;
583 }
584 while (l) {
585 *--p = (unsigned short)((l % 10) + '0');
586 l /= 10;
587 }
588 if (negative) {
589 *--p = '-';
590 }
591 }
592
593 return UString(p, static_cast<int>(end - p));
594 }
595
596 UString UString::from(double d)
597 {
598 // avoid ever printing -NaN, in JS conceptually there is only one NaN value
599 if (isnan(d))
600 return "NaN";
601
602 int buflength= 80;
603 char buf[buflength];
604 int decimalPoint;
605 int sign;
606
607 char *result = kjs_dtoa(d, 0, 0, &decimalPoint, &sign, NULL);
608 int length = static_cast<int>(strlen(result));
609
610 int i = 0;
611 if (sign) {
612 buf[i++] = '-';
613 }
614
615 if (decimalPoint <= 0 && decimalPoint > -6) {
616 buf[i++] = '0';
617 buf[i++] = '.';
618 for (int j = decimalPoint; j < 0; j++) {
619 buf[i++] = '0';
620 }
621 strlcpy(buf + i, result, buflength - i);
622 } else if (decimalPoint <= 21 && decimalPoint > 0) {
623 if (length <= decimalPoint) {
624 strlcpy(buf + i, result, buflength - i);
625 i += length;
626 for (int j = 0; j < decimalPoint - length; j++) {
627 buf[i++] = '0';
628 }
629 buf[i] = '\0';
630 } else {
631 int len = (decimalPoint <= buflength - i ? decimalPoint : buflength - i);
632 strncpy(buf + i, result, len);
633 i += len;
634 buf[i++] = '.';
635 strlcpy(buf + i, result + decimalPoint, buflength - i);
636 }
637 } else if (result[0] < '0' || result[0] > '9') {
638 strlcpy(buf + i, result, buflength - i);
639 } else {
640 buf[i++] = result[0];
641 if (length > 1) {
642 buf[i++] = '.';
643 strlcpy(buf + i, result + 1, buflength - i);
644 i += length - 1;
645 }
646
647 buf[i++] = 'e';
648 buf[i++] = (decimalPoint >= 0) ? '+' : '-';
649 // decimalPoint can't be more than 3 digits decimal given the
650 // nature of float representation
651 int exponential = decimalPoint - 1;
652 if (exponential < 0)
653 exponential = -exponential;
654 if (exponential >= 100)
655 buf[i++] = static_cast<char>('0' + exponential / 100);
656 if (exponential >= 10)
657 buf[i++] = static_cast<char>('0' + (exponential % 100) / 10);
658 buf[i++] = static_cast<char>('0' + exponential % 10);
659 buf[i++] = '\0';
660 assert(i <= buflength);
661 }
662
663 kjs_freedtoa(result);
664
665 return UString(buf);
666 }
667
668 UString UString::spliceSubstringsWithSeparators(const Range* substringRanges, int rangeCount, const UString* separators, int separatorCount) const
669 {
670 if (rangeCount == 1 && separatorCount == 0) {
671 int thisSize = size();
672 int position = substringRanges[0].position;
673 int length = substringRanges[0].length;
674 if (position <= 0 && length >= thisSize)
675 return *this;
676 return UString::Rep::create(m_rep, max(0, position), min(thisSize, length));
677 }
678
679 int totalLength = 0;
680 for (int i = 0; i < rangeCount; i++)
681 totalLength += substringRanges[i].length;
682 for (int i = 0; i < separatorCount; i++)
683 totalLength += separators[i].size();
684
685 if (totalLength == 0)
686 return "";
687
688 UChar* buffer = allocChars(totalLength);
689 if (!buffer)
690 return null();
691
692 int maxCount = max(rangeCount, separatorCount);
693 int bufferPos = 0;
694 for (int i = 0; i < maxCount; i++) {
695 if (i < rangeCount) {
696 memcpy(buffer + bufferPos, data() + substringRanges[i].position, substringRanges[i].length * sizeof(UChar));
697 bufferPos += substringRanges[i].length;
698 }
699 if (i < separatorCount) {
700 memcpy(buffer + bufferPos, separators[i].data(), separators[i].size() * sizeof(UChar));
701 bufferPos += separators[i].size();
702 }
703 }
704
705 return UString::Rep::create(buffer, totalLength);
706 }
707
708 UString &UString::append(const UString &t)
709 {
710 int thisSize = size();
711 int thisOffset = m_rep->offset;
712 int tSize = t.size();
713 int length = thisSize + tSize;
714
715 // possible cases:
716 if (thisSize == 0) {
717 // this is empty
718 *this = t;
719 } else if (tSize == 0) {
720 // t is empty
721 } else if (m_rep->baseIsSelf() && m_rep->rc == 1) {
722 // this is direct and has refcount of 1 (so we can just alter it directly)
723 expandCapacity(thisOffset + length);
724 if (data()) {
725 memcpy(const_cast<UChar*>(data() + thisSize), t.data(), tSize * sizeof(UChar));
726 m_rep->len = length;
727 m_rep->_hash = 0;
728 }
729 } else if (thisOffset + thisSize == usedCapacity() && thisSize >= minShareSize) {
730 // this reaches the end of the buffer - extend it if it's long enough to append to
731 expandCapacity(thisOffset + length);
732 if (data()) {
733 memcpy(const_cast<UChar*>(data() + thisSize), t.data(), tSize * sizeof(UChar));
734 m_rep = Rep::create(m_rep, 0, length);
735 }
736 } else {
737 // this is shared with someone using more capacity, gotta make a whole new string
738 size_t newCapacity = expandedSize(length, 0);
739 UChar* d = allocChars(newCapacity);
740 if (!d)
741 m_rep = &Rep::null;
742 else {
743 memcpy(d, data(), thisSize * sizeof(UChar));
744 memcpy(const_cast<UChar*>(d + thisSize), t.data(), tSize * sizeof(UChar));
745 m_rep = Rep::create(d, length);
746 m_rep->capacity = newCapacity;
747 }
748 }
749
750 return *this;
751 }
752
753 UString &UString::append(const char *t)
754 {
755 int thisSize = size();
756 int thisOffset = m_rep->offset;
757 int tSize = static_cast<int>(strlen(t));
758 int length = thisSize + tSize;
759
760 // possible cases:
761 if (thisSize == 0) {
762 // this is empty
763 *this = t;
764 } else if (tSize == 0) {
765 // t is empty, we'll just return *this below.
766 } else if (m_rep->baseIsSelf() && m_rep->rc == 1) {
767 // this is direct and has refcount of 1 (so we can just alter it directly)
768 expandCapacity(thisOffset + length);
769 UChar *d = const_cast<UChar *>(data());
770 if (d) {
771 for (int i = 0; i < tSize; ++i)
772 d[thisSize + i] = t[i];
773 m_rep->len = length;
774 m_rep->_hash = 0;
775 }
776 } else if (thisOffset + thisSize == usedCapacity() && thisSize >= minShareSize) {
777 // this string reaches the end of the buffer - extend it
778 expandCapacity(thisOffset + length);
779 UChar *d = const_cast<UChar *>(data());
780 if (d) {
781 for (int i = 0; i < tSize; ++i)
782 d[thisSize + i] = t[i];
783 m_rep = Rep::create(m_rep, 0, length);
784 }
785 } else {
786 // this is shared with someone using more capacity, gotta make a whole new string
787 size_t newCapacity = expandedSize(length, 0);
788 UChar* d = allocChars(newCapacity);
789 if (!d)
790 m_rep = &Rep::null;
791 else {
792 memcpy(d, data(), thisSize * sizeof(UChar));
793 for (int i = 0; i < tSize; ++i)
794 d[thisSize + i] = t[i];
795 m_rep = Rep::create(d, length);
796 m_rep->capacity = newCapacity;
797 }
798 }
799
800 return *this;
801 }
802
803 UString &UString::append(unsigned short c)
804 {
805 int thisOffset = m_rep->offset;
806 int length = size();
807
808 // possible cases:
809 if (length == 0) {
810 // this is empty - must make a new m_rep because we don't want to pollute the shared empty one
811 size_t newCapacity = expandedSize(1, 0);
812 UChar* d = allocChars(newCapacity);
813 if (!d)
814 m_rep = &Rep::null;
815 else {
816 d[0] = c;
817 m_rep = Rep::create(d, 1);
818 m_rep->capacity = newCapacity;
819 }
820 } else if (m_rep->baseIsSelf() && m_rep->rc == 1) {
821 // this is direct and has refcount of 1 (so we can just alter it directly)
822 expandCapacity(thisOffset + length + 1);
823 UChar *d = const_cast<UChar *>(data());
824 if (d) {
825 d[length] = c;
826 m_rep->len = length + 1;
827 m_rep->_hash = 0;
828 }
829 } else if (thisOffset + length == usedCapacity() && length >= minShareSize) {
830 // this reaches the end of the string - extend it and share
831 expandCapacity(thisOffset + length + 1);
832 UChar *d = const_cast<UChar *>(data());
833 if (d) {
834 d[length] = c;
835 m_rep = Rep::create(m_rep, 0, length + 1);
836 }
837 } else {
838 // this is shared with someone using more capacity, gotta make a whole new string
839 size_t newCapacity = expandedSize(length + 1, 0);
840 UChar* d = allocChars(newCapacity);
841 if (!d)
842 m_rep = &Rep::null;
843 else {
844 memcpy(d, data(), length * sizeof(UChar));
845 d[length] = c;
846 m_rep = Rep::create(d, length + 1);
847 m_rep->capacity = newCapacity;
848 }
849 }
850
851 return *this;
852 }
853
854 CString UString::cstring() const
855 {
856 return ascii();
857 }
858
859 char *UString::ascii() const
860 {
861 // Never make the buffer smaller than normalStatBufferSize.
862 // Thus we almost never need to reallocate.
863 int length = size();
864 int neededSize = length + 1;
865 if (neededSize < normalStatBufferSize) {
866 neededSize = normalStatBufferSize;
867 }
868 if (neededSize != statBufferSize) {
869 delete [] statBuffer;
870 statBuffer = new char [neededSize];
871 statBufferSize = neededSize;
872 }
873
874 const UChar *p = data();
875 char *q = statBuffer;
876 const UChar *limit = p + length;
877 while (p != limit) {
878 *q = static_cast<char>(p->uc);
879 ++p;
880 ++q;
881 }
882 *q = '\0';
883
884 return statBuffer;
885 }
886
887 UString &UString::operator=(const char *c)
888 {
889 if (!c) {
890 m_rep = &Rep::null;
891 return *this;
892 }
893
894 if (!c[0]) {
895 m_rep = &Rep::empty;
896 return *this;
897 }
898
899 int l = static_cast<int>(strlen(c));
900 UChar *d;
901 if (m_rep->rc == 1 && l <= m_rep->capacity && m_rep->baseIsSelf() && m_rep->offset == 0 && m_rep->preCapacity == 0) {
902 d = m_rep->buf;
903 m_rep->_hash = 0;
904 m_rep->len = l;
905 } else {
906 d = allocChars(l);
907 if (!d) {
908 m_rep = &Rep::null;
909 return *this;
910 }
911 m_rep = Rep::create(d, l);
912 }
913 for (int i = 0; i < l; i++)
914 d[i].uc = c[i];
915
916 return *this;
917 }
918
919 bool UString::is8Bit() const
920 {
921 const UChar *u = data();
922 const UChar *limit = u + size();
923 while (u < limit) {
924 if (u->uc > 0xFF)
925 return false;
926 ++u;
927 }
928
929 return true;
930 }
931
932 const UChar UString::operator[](int pos) const
933 {
934 if (pos >= size())
935 return '\0';
936 return data()[pos];
937 }
938
939 double UString::toDouble(bool tolerateTrailingJunk, bool tolerateEmptyString) const
940 {
941 double d;
942
943 // FIXME: If tolerateTrailingJunk is true, then we want to tolerate non-8-bit junk
944 // after the number, so is8Bit is too strict a check.
945 if (!is8Bit())
946 return NaN;
947
948 const char *c = ascii();
949
950 // skip leading white space
951 while (isASCIISpace(*c))
952 c++;
953
954 // empty string ?
955 if (*c == '\0')
956 return tolerateEmptyString ? 0.0 : NaN;
957
958 // hex number ?
959 if (*c == '0' && (*(c+1) == 'x' || *(c+1) == 'X')) {
960 const char* firstDigitPosition = c + 2;
961 c++;
962 d = 0.0;
963 while (*(++c)) {
964 if (*c >= '0' && *c <= '9')
965 d = d * 16.0 + *c - '0';
966 else if ((*c >= 'A' && *c <= 'F') || (*c >= 'a' && *c <= 'f'))
967 d = d * 16.0 + (*c & 0xdf) - 'A' + 10.0;
968 else
969 break;
970 }
971
972 if (d >= mantissaOverflowLowerBound)
973 d = parseIntOverflow(firstDigitPosition, c - firstDigitPosition, 16);
974 } else {
975 // regular number ?
976 char *end;
977 d = kjs_strtod(c, &end);
978 if ((d != 0.0 || end != c) && d != Inf && d != -Inf) {
979 c = end;
980 } else {
981 double sign = 1.0;
982
983 if (*c == '+')
984 c++;
985 else if (*c == '-') {
986 sign = -1.0;
987 c++;
988 }
989
990 // We used strtod() to do the conversion. However, strtod() handles
991 // infinite values slightly differently than JavaScript in that it
992 // converts the string "inf" with any capitalization to infinity,
993 // whereas the ECMA spec requires that it be converted to NaN.
994
995 if (c[0] == 'I' && c[1] == 'n' && c[2] == 'f' && c[3] == 'i' && c[4] == 'n' && c[5] == 'i' && c[6] == 't' && c[7] == 'y') {
996 d = sign * Inf;
997 c += 8;
998 } else if ((d == Inf || d == -Inf) && *c != 'I' && *c != 'i')
999 c = end;
1000 else
1001 return NaN;
1002 }
1003 }
1004
1005 // allow trailing white space
1006 while (isASCIISpace(*c))
1007 c++;
1008 // don't allow anything after - unless tolerant=true
1009 if (!tolerateTrailingJunk && *c != '\0')
1010 d = NaN;
1011
1012 return d;
1013 }
1014
1015 double UString::toDouble(bool tolerateTrailingJunk) const
1016 {
1017 return toDouble(tolerateTrailingJunk, true);
1018 }
1019
1020 double UString::toDouble() const
1021 {
1022 return toDouble(false, true);
1023 }
1024
1025 uint32_t UString::toUInt32(bool *ok) const
1026 {
1027 double d = toDouble();
1028 bool b = true;
1029
1030 if (d != static_cast<uint32_t>(d)) {
1031 b = false;
1032 d = 0;
1033 }
1034
1035 if (ok)
1036 *ok = b;
1037
1038 return static_cast<uint32_t>(d);
1039 }
1040
1041 uint32_t UString::toUInt32(bool *ok, bool tolerateEmptyString) const
1042 {
1043 double d = toDouble(false, tolerateEmptyString);
1044 bool b = true;
1045
1046 if (d != static_cast<uint32_t>(d)) {
1047 b = false;
1048 d = 0;
1049 }
1050
1051 if (ok)
1052 *ok = b;
1053
1054 return static_cast<uint32_t>(d);
1055 }
1056
1057 uint32_t UString::toStrictUInt32(bool *ok) const
1058 {
1059 if (ok)
1060 *ok = false;
1061
1062 // Empty string is not OK.
1063 int len = m_rep->len;
1064 if (len == 0)
1065 return 0;
1066 const UChar *p = m_rep->data();
1067 unsigned short c = p->unicode();
1068
1069 // If the first digit is 0, only 0 itself is OK.
1070 if (c == '0') {
1071 if (len == 1 && ok)
1072 *ok = true;
1073 return 0;
1074 }
1075
1076 // Convert to UInt32, checking for overflow.
1077 uint32_t i = 0;
1078 while (1) {
1079 // Process character, turning it into a digit.
1080 if (c < '0' || c > '9')
1081 return 0;
1082 const unsigned d = c - '0';
1083
1084 // Multiply by 10, checking for overflow out of 32 bits.
1085 if (i > 0xFFFFFFFFU / 10)
1086 return 0;
1087 i *= 10;
1088
1089 // Add in the digit, checking for overflow out of 32 bits.
1090 const unsigned max = 0xFFFFFFFFU - d;
1091 if (i > max)
1092 return 0;
1093 i += d;
1094
1095 // Handle end of string.
1096 if (--len == 0) {
1097 if (ok)
1098 *ok = true;
1099 return i;
1100 }
1101
1102 // Get next character.
1103 c = (++p)->unicode();
1104 }
1105 }
1106
1107 int UString::find(const UString &f, int pos) const
1108 {
1109 int sz = size();
1110 int fsz = f.size();
1111 if (sz < fsz)
1112 return -1;
1113 if (pos < 0)
1114 pos = 0;
1115 if (fsz == 0)
1116 return pos;
1117 const UChar *end = data() + sz - fsz;
1118 int fsizeminusone = (fsz - 1) * sizeof(UChar);
1119 const UChar *fdata = f.data();
1120 unsigned short fchar = fdata->uc;
1121 ++fdata;
1122 for (const UChar *c = data() + pos; c <= end; c++)
1123 if (c->uc == fchar && !memcmp(c + 1, fdata, fsizeminusone))
1124 return static_cast<int>(c - data());
1125
1126 return -1;
1127 }
1128
1129 int UString::find(UChar ch, int pos) const
1130 {
1131 if (pos < 0)
1132 pos = 0;
1133 const UChar *end = data() + size();
1134 for (const UChar *c = data() + pos; c < end; c++)
1135 if (*c == ch)
1136 return static_cast<int>(c - data());
1137
1138 return -1;
1139 }
1140
1141 int UString::rfind(const UString &f, int pos) const
1142 {
1143 int sz = size();
1144 int fsz = f.size();
1145 if (sz < fsz)
1146 return -1;
1147 if (pos < 0)
1148 pos = 0;
1149 if (pos > sz - fsz)
1150 pos = sz - fsz;
1151 if (fsz == 0)
1152 return pos;
1153 int fsizeminusone = (fsz - 1) * sizeof(UChar);
1154 const UChar *fdata = f.data();
1155 for (const UChar *c = data() + pos; c >= data(); c--) {
1156 if (*c == *fdata && !memcmp(c + 1, fdata + 1, fsizeminusone))
1157 return static_cast<int>(c - data());
1158 }
1159
1160 return -1;
1161 }
1162
1163 int UString::rfind(UChar ch, int pos) const
1164 {
1165 if (isEmpty())
1166 return -1;
1167 if (pos + 1 >= size())
1168 pos = size() - 1;
1169 for (const UChar *c = data() + pos; c >= data(); c--) {
1170 if (*c == ch)
1171 return static_cast<int>(c-data());
1172 }
1173
1174 return -1;
1175 }
1176
1177 UString UString::substr(int pos, int len) const
1178 {
1179 int s = size();
1180
1181 if (pos < 0)
1182 pos = 0;
1183 else if (pos >= s)
1184 pos = s;
1185 if (len < 0)
1186 len = s;
1187 if (pos + len >= s)
1188 len = s - pos;
1189
1190 if (pos == 0 && len == s)
1191 return *this;
1192
1193 return UString(Rep::create(m_rep, pos, len));
1194 }
1195
1196 bool operator==(const UString& s1, const UString& s2)
1197 {
1198 if (s1.m_rep->len != s2.m_rep->len)
1199 return false;
1200
1201 return (memcmp(s1.m_rep->data(), s2.m_rep->data(),
1202 s1.m_rep->len * sizeof(UChar)) == 0);
1203 }
1204
1205 bool operator==(const UString& s1, const char *s2)
1206 {
1207 if (s2 == 0) {
1208 return s1.isEmpty();
1209 }
1210
1211 const UChar *u = s1.data();
1212 const UChar *uend = u + s1.size();
1213 while (u != uend && *s2) {
1214 if (u->uc != (unsigned char)*s2)
1215 return false;
1216 s2++;
1217 u++;
1218 }
1219
1220 return u == uend && *s2 == 0;
1221 }
1222
1223 bool operator<(const UString& s1, const UString& s2)
1224 {
1225 const int l1 = s1.size();
1226 const int l2 = s2.size();
1227 const int lmin = l1 < l2 ? l1 : l2;
1228 const UChar *c1 = s1.data();
1229 const UChar *c2 = s2.data();
1230 int l = 0;
1231 while (l < lmin && *c1 == *c2) {
1232 c1++;
1233 c2++;
1234 l++;
1235 }
1236 if (l < lmin)
1237 return (c1->uc < c2->uc);
1238
1239 return (l1 < l2);
1240 }
1241
1242 int compare(const UString& s1, const UString& s2)
1243 {
1244 const int l1 = s1.size();
1245 const int l2 = s2.size();
1246 const int lmin = l1 < l2 ? l1 : l2;
1247 const UChar *c1 = s1.data();
1248 const UChar *c2 = s2.data();
1249 int l = 0;
1250 while (l < lmin && *c1 == *c2) {
1251 c1++;
1252 c2++;
1253 l++;
1254 }
1255
1256 if (l < lmin)
1257 return (c1->uc > c2->uc) ? 1 : -1;
1258
1259 if (l1 == l2)
1260 return 0;
1261
1262 return (l1 > l2) ? 1 : -1;
1263 }
1264
1265 CString UString::UTF8String(bool strict) const
1266 {
1267 // Allocate a buffer big enough to hold all the characters.
1268 const int length = size();
1269 Vector<char, 1024> buffer(length * 3);
1270
1271 // Convert to runs of 8-bit characters.
1272 char* p = buffer.data();
1273 const ::UChar* d = reinterpret_cast<const ::UChar*>(&data()->uc);
1274 ConversionResult result = convertUTF16ToUTF8(&d, d + length, &p, p + buffer.size(), strict);
1275 if (result != conversionOK)
1276 return CString();
1277
1278 return CString(buffer.data(), p - buffer.data());
1279 }
1280
1281 } // namespace KJS