blob: f571fb828afcf62592825429e4daf5c85ab28116 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "string.h"
18
19#include "array.h"
20#include "gc/card_table-inl.h"
21#include "intern_table.h"
22#include "object-inl.h"
23#include "runtime.h"
24#include "sirt_ref.h"
25#include "thread.h"
26#include "utf.h"
27
28namespace art {
29namespace mirror {
30
31const CharArray* String::GetCharArray() const {
32 return GetFieldObject<const CharArray*>(ValueOffset(), false);
33}
34
35void String::ComputeHashCode() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
36 SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()));
37}
38
39int32_t String::GetUtfLength() const {
40 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength());
41}
42
43int32_t String::FastIndexOf(int32_t ch, int32_t start) const {
44 int32_t count = GetLength();
45 if (start < 0) {
46 start = 0;
47 } else if (start > count) {
48 start = count;
49 }
50 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
51 const uint16_t* p = chars + start;
52 const uint16_t* end = chars + count;
53 while (p < end) {
54 if (*p++ == ch) {
55 return (p - 1) - chars;
56 }
57 }
58 return -1;
59}
60
61void String::SetArray(CharArray* new_array) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
62 DCHECK(new_array != NULL);
63 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(String, array_), new_array, false);
64}
65
66// TODO: get global references for these
67Class* String::java_lang_String_ = NULL;
68
69void String::SetClass(Class* java_lang_String) {
70 CHECK(java_lang_String_ == NULL);
71 CHECK(java_lang_String != NULL);
72 java_lang_String_ = java_lang_String;
73}
74
75void String::ResetClass() {
76 CHECK(java_lang_String_ != NULL);
77 java_lang_String_ = NULL;
78}
79
80String* String::Intern() {
81 return Runtime::Current()->GetInternTable()->InternWeak(this);
82}
83
84int32_t String::GetHashCode() {
85 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
86 if (result == 0) {
87 ComputeHashCode();
88 }
89 result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
90 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
91 << ToModifiedUtf8() << " " << result;
92 return result;
93}
94
95int32_t String::GetLength() const {
96 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), false);
97 DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
98 return result;
99}
100
101uint16_t String::CharAt(int32_t index) const {
102 // TODO: do we need this? Equals is the only caller, and could
103 // bounds check itself.
104 if (index < 0 || index >= count_) {
105 Thread* self = Thread::Current();
106 self->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
107 "length=%i; index=%i", count_, index);
108 return 0;
109 }
110 return GetCharArray()->Get(index + GetOffset());
111}
112
113String* String::AllocFromUtf16(Thread* self,
114 int32_t utf16_length,
115 const uint16_t* utf16_data_in,
116 int32_t hash_code) {
117 CHECK(utf16_data_in != NULL || utf16_length == 0);
118 String* string = Alloc(self, GetJavaLangString(), utf16_length);
119 if (string == NULL) {
120 return NULL;
121 }
122 // TODO: use 16-bit wide memset variant
123 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
124 if (array == NULL) {
125 return NULL;
126 }
127 for (int i = 0; i < utf16_length; i++) {
128 array->Set(i, utf16_data_in[i]);
129 }
130 if (hash_code != 0) {
131 string->SetHashCode(hash_code);
132 } else {
133 string->ComputeHashCode();
134 }
135 return string;
136}
137
138 String* String::AllocFromModifiedUtf8(Thread* self, const char* utf) {
139 if (utf == NULL) {
140 return NULL;
141 }
142 size_t char_count = CountModifiedUtf8Chars(utf);
143 return AllocFromModifiedUtf8(self, char_count, utf);
144}
145
146String* String::AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
147 const char* utf8_data_in) {
148 String* string = Alloc(self, GetJavaLangString(), utf16_length);
149 if (string == NULL) {
150 return NULL;
151 }
152 uint16_t* utf16_data_out =
153 const_cast<uint16_t*>(string->GetCharArray()->GetData());
154 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
155 string->ComputeHashCode();
156 return string;
157}
158
159String* String::Alloc(Thread* self, Class* java_lang_String, int32_t utf16_length) {
160 SirtRef<CharArray> array(self, CharArray::Alloc(self, utf16_length));
161 if (array.get() == NULL) {
162 return NULL;
163 }
164 return Alloc(self, java_lang_String, array.get());
165}
166
167String* String::Alloc(Thread* self, Class* java_lang_String, CharArray* array) {
168 // Hold reference in case AllocObject causes GC.
169 SirtRef<CharArray> array_ref(self, array);
170 String* string = down_cast<String*>(java_lang_String->AllocObject(self));
171 if (string == NULL) {
172 return NULL;
173 }
174 string->SetArray(array);
175 string->SetCount(array->GetLength());
176 return string;
177}
178
179bool String::Equals(const String* that) const {
180 if (this == that) {
181 // Quick reference equality test
182 return true;
183 } else if (that == NULL) {
184 // Null isn't an instanceof anything
185 return false;
186 } else if (this->GetLength() != that->GetLength()) {
187 // Quick length inequality test
188 return false;
189 } else {
190 // Note: don't short circuit on hash code as we're presumably here as the
191 // hash code was already equal
192 for (int32_t i = 0; i < that->GetLength(); ++i) {
193 if (this->CharAt(i) != that->CharAt(i)) {
194 return false;
195 }
196 }
197 return true;
198 }
199}
200
201bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) const {
202 if (this->GetLength() != that_length) {
203 return false;
204 } else {
205 for (int32_t i = 0; i < that_length; ++i) {
206 if (this->CharAt(i) != that_chars[that_offset + i]) {
207 return false;
208 }
209 }
210 return true;
211 }
212}
213
214bool String::Equals(const char* modified_utf8) const {
215 for (int32_t i = 0; i < GetLength(); ++i) {
216 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
217 if (ch == '\0' || ch != CharAt(i)) {
218 return false;
219 }
220 }
221 return *modified_utf8 == '\0';
222}
223
224bool String::Equals(const StringPiece& modified_utf8) const {
225 if (modified_utf8.size() != GetLength()) {
226 return false;
227 }
228 const char* p = modified_utf8.data();
229 for (int32_t i = 0; i < GetLength(); ++i) {
230 uint16_t ch = GetUtf16FromUtf8(&p);
231 if (ch != CharAt(i)) {
232 return false;
233 }
234 }
235 return true;
236}
237
238// Create a modified UTF-8 encoded std::string from a java/lang/String object.
239std::string String::ToModifiedUtf8() const {
240 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
241 size_t byte_count = GetUtfLength();
242 std::string result(byte_count, static_cast<char>(0));
243 ConvertUtf16ToModifiedUtf8(&result[0], chars, GetLength());
244 return result;
245}
246
247#ifdef HAVE__MEMCMP16
248// "count" is in 16-bit units.
249extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
250#define MemCmp16 __memcmp16
251#else
252static uint32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) {
253 for (size_t i = 0; i < count; i++) {
254 if (s0[i] != s1[i]) {
255 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
256 }
257 }
258 return 0;
259}
260#endif
261
262int32_t String::CompareTo(String* rhs) const {
263 // Quick test for comparison of a string with itself.
264 const String* lhs = this;
265 if (lhs == rhs) {
266 return 0;
267 }
268 // TODO: is this still true?
269 // The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
270 // because the interpreter converts the characters to 32-bit integers
271 // *without* sign extension before it subtracts them (which makes some
272 // sense since "char" is unsigned). So what we get is the result of
273 // 0x000000e9 - 0x0000ffff, which is 0xffff00ea.
274 int lhsCount = lhs->GetLength();
275 int rhsCount = rhs->GetLength();
276 int countDiff = lhsCount - rhsCount;
277 int minCount = (countDiff < 0) ? lhsCount : rhsCount;
278 const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset();
279 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset();
280 int otherRes = MemCmp16(lhsChars, rhsChars, minCount);
281 if (otherRes != 0) {
282 return otherRes;
283 }
284 return countDiff;
285}
286
287} // namespace mirror
288} // namespace art
289