string.cc revision 967a0adf8b93a23d2a8fef82e06bd913db94ac19
1/*
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 "class-inl.h"
21#include "gc/accounting/card_table-inl.h"
22#include "intern_table.h"
23#include "object-inl.h"
24#include "runtime.h"
25#include "sirt_ref.h"
26#include "thread.h"
27#include "utf.h"
28
29namespace art {
30namespace mirror {
31
32const CharArray* String::GetCharArray() const {
33  return GetFieldObject<const CharArray*>(ValueOffset(), false);
34}
35
36void String::ComputeHashCode() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
37  SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()));
38}
39
40int32_t String::GetUtfLength() const {
41  return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength());
42}
43
44int32_t String::FastIndexOf(int32_t ch, int32_t start) const {
45  int32_t count = GetLength();
46  if (start < 0) {
47    start = 0;
48  } else if (start > count) {
49    start = count;
50  }
51  const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
52  const uint16_t* p = chars + start;
53  const uint16_t* end = chars + count;
54  while (p < end) {
55    if (*p++ == ch) {
56      return (p - 1) - chars;
57    }
58  }
59  return -1;
60}
61
62void String::SetArray(CharArray* new_array) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
63  DCHECK(new_array != NULL);
64  SetFieldObject(OFFSET_OF_OBJECT_MEMBER(String, array_), new_array, false);
65}
66
67// TODO: get global references for these
68Class* String::java_lang_String_ = NULL;
69
70void String::SetClass(Class* java_lang_String) {
71  CHECK(java_lang_String_ == NULL);
72  CHECK(java_lang_String != NULL);
73  java_lang_String_ = java_lang_String;
74}
75
76void String::ResetClass() {
77  CHECK(java_lang_String_ != NULL);
78  java_lang_String_ = NULL;
79}
80
81String* String::Intern() {
82  return Runtime::Current()->GetInternTable()->InternWeak(this);
83}
84
85int32_t String::GetHashCode() {
86  int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
87  if (result == 0) {
88    ComputeHashCode();
89  }
90  result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
91  DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
92          << ToModifiedUtf8() << " " << result;
93  return result;
94}
95
96int32_t String::GetLength() const {
97  int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), false);
98  DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
99  return result;
100}
101
102uint16_t String::CharAt(int32_t index) const {
103  // TODO: do we need this? Equals is the only caller, and could
104  // bounds check itself.
105  DCHECK_GE(count_, 0);  // ensures the unsigned comparison is safe.
106  if (UNLIKELY(static_cast<uint32_t>(index) >= static_cast<uint32_t>(count_))) {
107    Thread* self = Thread::Current();
108    ThrowLocation throw_location = self->GetCurrentLocationForThrow();
109    self->ThrowNewExceptionF(throw_location, "Ljava/lang/StringIndexOutOfBoundsException;",
110                             "length=%i; index=%i", count_, index);
111    return 0;
112  }
113  return GetCharArray()->Get(index + GetOffset());
114}
115
116String* String::AllocFromUtf16(Thread* self,
117                               int32_t utf16_length,
118                               const uint16_t* utf16_data_in,
119                               int32_t hash_code) {
120  CHECK(utf16_data_in != NULL || utf16_length == 0);
121  String* string = Alloc(self, GetJavaLangString(), utf16_length);
122  if (string == NULL) {
123    return NULL;
124  }
125  // TODO: use 16-bit wide memset variant
126  CharArray* array = const_cast<CharArray*>(string->GetCharArray());
127  if (array == NULL) {
128    return NULL;
129  }
130  for (int i = 0; i < utf16_length; i++) {
131    array->Set(i, utf16_data_in[i]);
132  }
133  if (hash_code != 0) {
134    string->SetHashCode(hash_code);
135  } else {
136    string->ComputeHashCode();
137  }
138  return string;
139}
140
141String* String::AllocFromModifiedUtf8(Thread* self, const char* utf) {
142  if (utf == NULL) {
143    return NULL;
144  }
145  size_t char_count = CountModifiedUtf8Chars(utf);
146  return AllocFromModifiedUtf8(self, char_count, utf);
147}
148
149String* String::AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
150                                      const char* utf8_data_in) {
151  String* string = Alloc(self, GetJavaLangString(), utf16_length);
152  if (string == NULL) {
153    return NULL;
154  }
155  uint16_t* utf16_data_out =
156      const_cast<uint16_t*>(string->GetCharArray()->GetData());
157  ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
158  string->ComputeHashCode();
159  return string;
160}
161
162String* String::Alloc(Thread* self, Class* java_lang_String, int32_t utf16_length) {
163  SirtRef<CharArray> array(self, CharArray::Alloc(self, utf16_length));
164  if (array.get() == NULL) {
165    return NULL;
166  }
167  return Alloc(self, java_lang_String, array.get());
168}
169
170String* String::Alloc(Thread* self, Class* java_lang_String, CharArray* array) {
171  // Hold reference in case AllocObject causes GC.
172  SirtRef<CharArray> array_ref(self, array);
173  String* string = down_cast<String*>(java_lang_String->AllocObject(self));
174  if (string == NULL) {
175    return NULL;
176  }
177  string->SetArray(array);
178  string->SetCount(array->GetLength());
179  return string;
180}
181
182bool String::Equals(const String* that) const {
183  if (this == that) {
184    // Quick reference equality test
185    return true;
186  } else if (that == NULL) {
187    // Null isn't an instanceof anything
188    return false;
189  } else if (this->GetLength() != that->GetLength()) {
190    // Quick length inequality test
191    return false;
192  } else {
193    // Note: don't short circuit on hash code as we're presumably here as the
194    // hash code was already equal
195    for (int32_t i = 0; i < that->GetLength(); ++i) {
196      if (this->CharAt(i) != that->CharAt(i)) {
197        return false;
198      }
199    }
200    return true;
201  }
202}
203
204bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) const {
205  if (this->GetLength() != that_length) {
206    return false;
207  } else {
208    for (int32_t i = 0; i < that_length; ++i) {
209      if (this->CharAt(i) != that_chars[that_offset + i]) {
210        return false;
211      }
212    }
213    return true;
214  }
215}
216
217bool String::Equals(const char* modified_utf8) const {
218  for (int32_t i = 0; i < GetLength(); ++i) {
219    uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
220    if (ch == '\0' || ch != CharAt(i)) {
221      return false;
222    }
223  }
224  return *modified_utf8 == '\0';
225}
226
227bool String::Equals(const StringPiece& modified_utf8) const {
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