]>
Commit | Line | Data |
---|---|---|
b37bf2e1 A |
1 | /* |
2 | * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | |
3 | * | |
4 | * Redistribution and use in source and binary forms, with or without | |
5 | * modification, are permitted provided that the following conditions | |
6 | * are met: | |
7 | * 1. Redistributions of source code must retain the above copyright | |
8 | * notice, this list of conditions and the following disclaimer. | |
9 | * 2. Redistributions in binary form must reproduce the above copyright | |
10 | * notice, this list of conditions and the following disclaimer in the | |
11 | * documentation and/or other materials provided with the distribution. | |
12 | * | |
81345200 | 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
b37bf2e1 A |
14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
81345200 | 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
b37bf2e1 A |
17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 | */ | |
25 | ||
26 | #include "config.h" | |
27 | #include "JSStringRef.h" | |
93a37866 | 28 | #include "JSStringRefPrivate.h" |
b37bf2e1 | 29 | |
9dae56ea A |
30 | #include "InitializeThreading.h" |
31 | #include "OpaqueJSString.h" | |
b37bf2e1 A |
32 | #include <wtf/unicode/UTF8.h> |
33 | ||
9dae56ea | 34 | using namespace JSC; |
b37bf2e1 A |
35 | using namespace WTF::Unicode; |
36 | ||
37 | JSStringRef JSStringCreateWithCharacters(const JSChar* chars, size_t numChars) | |
38 | { | |
9dae56ea | 39 | initializeThreading(); |
14957cd0 | 40 | return OpaqueJSString::create(chars, numChars).leakRef(); |
b37bf2e1 A |
41 | } |
42 | ||
43 | JSStringRef JSStringCreateWithUTF8CString(const char* string) | |
44 | { | |
9dae56ea A |
45 | initializeThreading(); |
46 | if (string) { | |
47 | size_t length = strlen(string); | |
48 | Vector<UChar, 1024> buffer(length); | |
49 | UChar* p = buffer.data(); | |
93a37866 A |
50 | bool sourceIsAllASCII; |
51 | const LChar* stringStart = reinterpret_cast<const LChar*>(string); | |
52 | if (conversionOK == convertUTF8ToUTF16(&string, string + length, &p, p + length, &sourceIsAllASCII)) { | |
53 | if (sourceIsAllASCII) | |
54 | return OpaqueJSString::create(stringStart, length).leakRef(); | |
14957cd0 | 55 | return OpaqueJSString::create(buffer.data(), p - buffer.data()).leakRef(); |
93a37866 | 56 | } |
9dae56ea A |
57 | } |
58 | ||
14957cd0 | 59 | return OpaqueJSString::create().leakRef(); |
b37bf2e1 A |
60 | } |
61 | ||
93a37866 A |
62 | JSStringRef JSStringCreateWithCharactersNoCopy(const JSChar* chars, size_t numChars) |
63 | { | |
64 | initializeThreading(); | |
81345200 | 65 | return OpaqueJSString::create(StringImpl::createWithoutCopying(chars, numChars)).leakRef(); |
93a37866 A |
66 | } |
67 | ||
b37bf2e1 A |
68 | JSStringRef JSStringRetain(JSStringRef string) |
69 | { | |
9dae56ea A |
70 | string->ref(); |
71 | return string; | |
b37bf2e1 A |
72 | } |
73 | ||
74 | void JSStringRelease(JSStringRef string) | |
75 | { | |
9dae56ea | 76 | string->deref(); |
b37bf2e1 A |
77 | } |
78 | ||
79 | size_t JSStringGetLength(JSStringRef string) | |
80 | { | |
9dae56ea | 81 | return string->length(); |
b37bf2e1 A |
82 | } |
83 | ||
84 | const JSChar* JSStringGetCharactersPtr(JSStringRef string) | |
85 | { | |
9dae56ea | 86 | return string->characters(); |
b37bf2e1 A |
87 | } |
88 | ||
89 | size_t JSStringGetMaximumUTF8CStringSize(JSStringRef string) | |
90 | { | |
b37bf2e1 | 91 | // Any UTF8 character > 3 bytes encodes as a UTF16 surrogate pair. |
9dae56ea | 92 | return string->length() * 3 + 1; // + 1 for terminating '\0' |
b37bf2e1 A |
93 | } |
94 | ||
95 | size_t JSStringGetUTF8CString(JSStringRef string, char* buffer, size_t bufferSize) | |
96 | { | |
9dae56ea A |
97 | if (!bufferSize) |
98 | return 0; | |
99 | ||
81345200 A |
100 | char* destination = buffer; |
101 | ConversionResult result; | |
102 | if (string->is8Bit()) { | |
103 | const LChar* source = string->characters8(); | |
104 | result = convertLatin1ToUTF8(&source, source + string->length(), &destination, destination + bufferSize - 1); | |
105 | } else { | |
106 | const UChar* source = string->characters16(); | |
107 | result = convertUTF16ToUTF8(&source, source + string->length(), &destination, destination + bufferSize - 1, true); | |
108 | } | |
109 | ||
110 | *destination++ = '\0'; | |
9dae56ea A |
111 | if (result != conversionOK && result != targetExhausted) |
112 | return 0; | |
b37bf2e1 | 113 | |
81345200 | 114 | return destination - buffer; |
b37bf2e1 A |
115 | } |
116 | ||
117 | bool JSStringIsEqual(JSStringRef a, JSStringRef b) | |
118 | { | |
81345200 | 119 | return OpaqueJSString::equal(a, b); |
b37bf2e1 A |
120 | } |
121 | ||
122 | bool JSStringIsEqualToUTF8CString(JSStringRef a, const char* b) | |
123 | { | |
124 | JSStringRef bBuf = JSStringCreateWithUTF8CString(b); | |
125 | bool result = JSStringIsEqual(a, bBuf); | |
126 | JSStringRelease(bBuf); | |
127 | ||
128 | return result; | |
129 | } |