From 97de32773e20297125d4e35e5d7dcb3b6732e063 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 29 Nov 2022 10:30:42 +0000 Subject: Change well known method `String.charAt()` to `ArtMethod*`. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: Idb34c5de408b98db746d385ae6e012a8997fcc96 --- runtime/native/string_array_utils.h | 81 +++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 runtime/native/string_array_utils.h (limited to 'runtime/native/string_array_utils.h') diff --git a/runtime/native/string_array_utils.h b/runtime/native/string_array_utils.h new file mode 100644 index 0000000000..41d50933f9 --- /dev/null +++ b/runtime/native/string_array_utils.h @@ -0,0 +1,81 @@ +/* + * Copyright (C) 2022 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef ART_RUNTIME_NATIVE_STRING_ARRAY_UTILS_H_ +#define ART_RUNTIME_NATIVE_STRING_ARRAY_UTILS_H_ + +#include "base/locks.h" +#include "class_root-inl.h" +#include "handle_scope-inl.h" +#include "mirror/object_array-alloc-inl.h" +#include "mirror/string.h" + +namespace art { + +namespace detail { + +inline const char* GetStringCStr(const char* str) { return str; } +inline const char* GetStringCStr(const std::string& str) { return str.c_str(); } + +} // namespace detail + +template +ObjPtr> CreateStringArray( + Thread* self, size_t size, const Container& entries) REQUIRES_SHARED(Locks::mutator_lock_) { + StackHandleScope<1u> hs(self); + Handle> array = hs.NewHandle( + mirror::ObjectArray::Alloc( + self, GetClassRoot>(), size)); + if (array == nullptr) { + DCHECK(self->IsExceptionPending()); + return nullptr; + } + // Note: If the container's iterator returns a `std::string` by value, the `auto&&` + // binds as a const reference and extends the lifetime of the temporary object. + size_t pos = 0u; + for (auto&& entry : entries) { + ObjPtr oentry = + mirror::String::AllocFromModifiedUtf8(self, detail::GetStringCStr(entry)); + if (oentry == nullptr) { + DCHECK(self->IsExceptionPending()); + return nullptr; + } + // We're initializing a newly allocated array object, so we do not need to record that under + // a transaction. If the transaction is aborted, the whole object shall be unreachable. + DCHECK_LT(pos, size); + array->SetWithoutChecks( + pos, oentry); + ++pos; + } + DCHECK_EQ(pos, size); + return array.Get(); +} + +template +ObjPtr> CreateStringArray( + Thread* self, const Container& entries) REQUIRES_SHARED(Locks::mutator_lock_) { + return CreateStringArray(self, entries.size(), entries); +} + +inline ObjPtr> CreateStringArray( + Thread* self, std::initializer_list entries) + REQUIRES_SHARED(Locks::mutator_lock_) { + return CreateStringArray>(self, entries); +} + +} // namespace art + +#endif // ART_RUNTIME_NATIVE_STRING_ARRAY_UTILS_H_ -- cgit v1.2.3-59-g8ed1b