/* * Copyright (c) 2022 Huawei Device Co., Ltd. * 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. */ #include "js_api_arraylist.h" #include "js_api_arraylist_iterator.h" #include "js_iterator.h" #include "ecmascript/js_function.h" #include "ecmascript/interpreter/interpreter.h" #include "ecmascript/js_tagged_value.h" #include "ecmascript/object_factory.h" namespace panda::ecmascript { bool JSAPIArrayList::Add(JSThread *thread, const JSHandle &arrayList, const JSHandle &value) { uint32_t length = arrayList->GetLength().GetArrayLength(); JSHandle elements = GrowCapacity(thread, arrayList, length + 1); ASSERT(!elements->IsDictionaryMode()); elements->Set(thread, length, value); arrayList->SetLength(thread, JSTaggedValue(++length)); return true; } void JSAPIArrayList::Insert(JSThread *thread, const JSHandle &arrayList, const JSHandle &value, const int &index) { int length = arrayList->GetLength().GetInt(); if (index < 0 || index >= length) { THROW_ERROR(thread, ErrorType::RANGE_ERROR, "ArrayList: set out-of-bounds"); } JSHandle elements = GrowCapacity(thread, arrayList, length + 1); ASSERT(!elements->IsDictionaryMode()); for (int i = length; i >= index; --i) { elements->Set(thread, i, elements->Get(i - 1)); } elements->Set(thread, index, value); arrayList->SetLength(thread, JSTaggedValue(++length)); } void JSAPIArrayList::Clear(JSThread *thread, const JSHandle &arrayList) { if (!arrayList.IsEmpty()) { arrayList->SetLength(thread, JSTaggedValue(0)); } } JSHandle JSAPIArrayList::Clone(JSThread *thread, const JSHandle &obj) { int32_t length = obj->GetSize(); JSHandle elements(thread, obj->GetElements()); ASSERT(!elements->IsDictionaryMode()); uint32_t capacity = elements->GetLength(); JSHandle newArrayList = thread->GetEcmaVM()->GetFactory()->NewJSAPIArrayList(capacity); newArrayList->SetLength(thread, JSTaggedValue(length)); for (int32_t i = 0; i < length; i ++) { newArrayList->Set(thread, i, elements->Get(i)); } return newArrayList; } uint32_t JSAPIArrayList::GetCapacity(JSThread *thread, const JSHandle &obj) { JSHandle elements(thread, obj->GetElements()); ASSERT(!elements->IsDictionaryMode()); uint32_t capacity = elements->GetLength(); return capacity; } void JSAPIArrayList::IncreaseCapacityTo(JSThread *thread, const JSHandle &arrayList, int capacity) { JSHandle elementData(thread, arrayList->GetElements()); ASSERT(!elementData->IsDictionaryMode()); int length = arrayList->GetLength().GetInt(); if (length < capacity) { JSHandle newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, length, capacity); arrayList->SetElements(thread, newElements); } } void JSAPIArrayList::TrimToCurrentLength(JSThread *thread, const JSHandle &arrayList) { uint32_t length = arrayList->GetLength().GetArrayLength(); JSHandle oldElements(thread, arrayList->GetElements()); ASSERT(!oldElements->IsDictionaryMode()); JSHandle newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, length, length); arrayList->SetElements(thread, newElements); } JSTaggedValue JSAPIArrayList::Get(JSThread *thread, const uint32_t index) { if (index >= GetLength().GetArrayLength()) { THROW_RANGE_ERROR_AND_RETURN(thread, "Get property index out-of-bounds", JSTaggedValue::Exception()); } TaggedArray *elements = TaggedArray::Cast(GetElements().GetTaggedObject()); return elements->Get(index); } bool JSAPIArrayList::IsEmpty(const JSHandle &arrayList) { return arrayList->GetSize() == 0; } int JSAPIArrayList::GetIndexOf(JSThread *thread, const JSHandle &arrayList, const JSHandle &value) { JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); uint32_t length = arrayList->GetLength().GetArrayLength(); for (uint32_t i = 0; i < length; ++i) { JSHandle element(thread, elements->Get(i)); if (JSTaggedValue::StrictEqual(thread, value, element)) { return i; } } return -1; } int JSAPIArrayList::GetLastIndexOf(JSThread *thread, const JSHandle &arrayList, const JSHandle &value) { JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); JSMutableHandle element(thread, JSTaggedValue::Undefined()); int length = arrayList->GetLength().GetInt(); for (int i = length - 1; i >= 0; --i) { element.Update(elements->Get(i)); if (JSTaggedValue::StrictEqual(thread, value, element)) { return i; } } return -1; } bool JSAPIArrayList::RemoveByIndex(JSThread *thread, const JSHandle &arrayList, int index) { int length = arrayList->GetLength().GetInt(); if (index < 0 || index >= length) { THROW_RANGE_ERROR_AND_RETURN(thread, "removeByIndex is out-of-bounds", false); } JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); for (int i = index; i <= length - 2; i++) { // 2 : 2 get index of (lastElementIndex - 1) elements->Set(thread, i, elements->Get(i + 1)); } arrayList->SetLength(thread, JSTaggedValue(--length)); return true; } bool JSAPIArrayList::Remove(JSThread *thread, const JSHandle &arrayList, const JSHandle &value) { int index = GetIndexOf(thread, arrayList, value); int length = arrayList->GetSize(); int curLength = length; if (index >= 0) { if (index >= curLength) { THROW_RANGE_ERROR_AND_RETURN(thread, "index-out-of-bounds", false); } JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); for (int i = index; i < length - 1; i++) { elements->Set(thread, i, elements->Get(i + 1)); } length--; arrayList->SetLength(thread, JSTaggedValue(length)); return true; } return false; } JSTaggedValue JSAPIArrayList::RemoveByRange(JSThread *thread, const JSHandle &arrayList, const JSHandle &value1, const JSHandle &value2) { int32_t startIndex = JSTaggedValue::ToInt32(thread, value1); int32_t endIndex = JSTaggedValue::ToInt32(thread, value2); int32_t length = arrayList->GetLength().GetInt(); if (endIndex <= startIndex) { THROW_RANGE_ERROR_AND_RETURN(thread, "fromIndex cannot be less than or equal to toIndex", JSTaggedValue::Exception()); } if (startIndex < 0 || startIndex >= length || endIndex < 0) { THROW_RANGE_ERROR_AND_RETURN(thread, "ArrayList: set out-of-bounds", JSTaggedValue::Exception()); } int32_t toIndex; if (endIndex > length) { toIndex = length; } else if (endIndex == length) { toIndex = length - 1; } else { toIndex = endIndex; } JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); int32_t numMoved = length - toIndex; for (int32_t i = 0; i <= numMoved; i++) { elements->Set(thread, startIndex + i, elements->Get(static_cast(toIndex + i))); } int32_t newLength = length - (toIndex - startIndex); arrayList->SetLength(thread, JSTaggedValue(newLength)); return JSTaggedValue::True(); } JSTaggedValue JSAPIArrayList::ReplaceAllElements(JSThread *thread, const JSHandle &thisHandle, const JSHandle &callbackFn, const JSHandle &thisArg) { JSHandle arrayList = JSHandle::Cast(thisHandle); uint32_t length = static_cast(arrayList->GetSize()); JSMutableHandle key(thread, JSTaggedValue::Undefined()); JSMutableHandle kValue(thread, JSTaggedValue::Undefined()); const size_t argsLength = 3; JSHandle undefined = thread->GlobalConstants()->GetHandledUndefined(); for (uint32_t k = 0; k < length; k++) { kValue.Update(arrayList->Get(thread, k)); key.Update(JSTaggedValue(k)); EcmaRuntimeCallInfo info = EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFn, thisArg, undefined, argsLength); info.SetCallArg(kValue.GetTaggedValue(), key.GetTaggedValue(), thisHandle.GetTaggedValue()); JSTaggedValue funcResult = JSFunction::Call(&info); RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, funcResult); arrayList->Set(thread, k, funcResult); } return JSTaggedValue::Undefined(); } JSTaggedValue JSAPIArrayList::Set(JSThread *thread, const uint32_t index, JSTaggedValue value) { if (index >= GetLength().GetArrayLength()) { THROW_RANGE_ERROR_AND_RETURN(thread, "Set property index out-of-bounds", JSTaggedValue::Exception()); } TaggedArray *elements = TaggedArray::Cast(GetElements().GetTaggedObject()); elements->Set(thread, index, value); return JSTaggedValue::Undefined(); } JSHandle JSAPIArrayList::SubArrayList(JSThread *thread, const JSHandle &arrayList, const JSHandle &value1, const JSHandle &value2) { int length = arrayList->GetLength().GetInt(); int fromIndex = JSTaggedValue::ToInt32(thread, value1); int toIndex = JSTaggedValue::ToInt32(thread, value2); if (toIndex <= fromIndex) { JSHandle newArrayList = thread->GetEcmaVM()->GetFactory()->NewJSAPIArrayList(0); THROW_RANGE_ERROR_AND_RETURN(thread, "fromIndex cannot be less than or equal to toIndex", newArrayList); } if (fromIndex < 0 || fromIndex >= length || toIndex < 0) { JSHandle newArrayList = thread->GetEcmaVM()->GetFactory()->NewJSAPIArrayList(0); THROW_RANGE_ERROR_AND_RETURN(thread, "fromIndex or toIndex is out-of-bounds", newArrayList); } int endIndex = toIndex >= length - 1 ? length - 1 : toIndex; if (fromIndex > endIndex) { int tmp = fromIndex; fromIndex = endIndex; endIndex = tmp; } int newLength = endIndex - fromIndex; JSHandle subArrayList = thread->GetEcmaVM()->GetFactory()->NewJSAPIArrayList(newLength); JSHandle elements(thread, arrayList->GetElements()); ASSERT(!elements->IsDictionaryMode()); subArrayList->SetLength(thread, JSTaggedValue(newLength)); for (int i = 0; i < newLength; i++) { subArrayList->Set(thread, i, elements->Get(fromIndex + i)); } return subArrayList; } JSTaggedValue JSAPIArrayList::ForEach(JSThread *thread, const JSHandle &thisHandle, const JSHandle &callbackFn, const JSHandle &thisArg) { JSHandle arrayList = JSHandle::Cast(thisHandle); uint32_t length = static_cast(arrayList->GetSize()); JSMutableHandle key(thread, JSTaggedValue::Undefined()); JSMutableHandle kValue(thread, JSTaggedValue::Undefined()); const size_t argsLength = 3; JSHandle undefined = thread->GlobalConstants()->GetHandledUndefined(); for (uint32_t k = 0; k < length; k++) { kValue.Update(arrayList->Get(thread, k)); key.Update(JSTaggedValue(k)); EcmaRuntimeCallInfo info = EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFn, thisArg, undefined, argsLength); info.SetCallArg(kValue.GetTaggedValue(), key.GetTaggedValue(), thisHandle.GetTaggedValue()); JSTaggedValue funcResult = JSFunction::Call(&info); RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, funcResult); if (static_cast(length) != arrayList->GetSize()) { length = static_cast(arrayList->GetSize()); } } return JSTaggedValue::Undefined(); } JSHandle JSAPIArrayList::GrowCapacity(const JSThread *thread, const JSHandle &obj, uint32_t capacity) { JSHandle oldElements(thread, obj->GetElements()); ASSERT(!oldElements->IsDictionaryMode()); uint32_t oldCapacity = oldElements->GetLength(); if (capacity < oldCapacity) { return oldElements; } uint32_t newCapacity = ComputeCapacity(capacity); JSHandle newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldCapacity, newCapacity); obj->SetElements(thread, newElements); return newElements; } bool JSAPIArrayList::Has(const JSTaggedValue value) const { TaggedArray *elements = TaggedArray::Cast(GetElements().GetTaggedObject()); int32_t length = GetSize(); if (length == 0) { return false; } for (int32_t i = 0; i < length; i++) { if (JSTaggedValue::SameValue(elements->Get(i), value)) { return true; } } return false; } JSHandle JSAPIArrayList::OwnKeys(JSThread *thread, const JSHandle &obj) { uint32_t length = obj->GetLength().GetArrayLength(); ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSHandle keys = factory->NewTaggedArray(length); for (uint32_t i = 0; i < length; i++) { keys->Set(thread, i, JSTaggedValue(i)); } return keys; } bool JSAPIArrayList::GetOwnProperty(JSThread *thread, const JSHandle &obj, const JSHandle &key) { uint32_t index = 0; if (UNLIKELY(!JSTaggedValue::ToElementIndex(key.GetTaggedValue(), &index))) { THROW_TYPE_ERROR_AND_RETURN(thread, "Can not obtain attributes of no-number type", false); } uint32_t length = obj->GetLength().GetArrayLength(); if (index >= length) { THROW_RANGE_ERROR_AND_RETURN(thread, "GetOwnProperty index out-of-bounds", false); } obj->Get(thread, index); RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, false); return true; } JSTaggedValue JSAPIArrayList::GetIteratorObj(JSThread *thread, const JSHandle &obj) { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSHandle iter(factory->NewJSAPIArrayListIterator(obj)); return iter.GetTaggedValue(); } OperationResult JSAPIArrayList::GetProperty(JSThread *thread, const JSHandle &obj, const JSHandle &key) { int length = obj->GetLength().GetInt(); int index = key->GetInt(); if (index < 0 || index >= length) { THROW_RANGE_ERROR_AND_RETURN(thread, "GetProperty index out-of-bounds", OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); } return OperationResult(thread, obj->Get(thread, index), PropertyMetaData(false)); } } // namespace panda::ecmascript