/* * Copyright (c) 2021 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_iterator.h" #include "ecma_macros.h" #include "ecma_vm.h" #include "ecmascript/accessor_data.h" #include "ecmascript/internal_call_params.h" #include "global_env.h" #include "js_symbol.h" #include "object_factory.h" namespace panda::ecmascript { JSTaggedValue JSIterator::IteratorCloseAndReturn(JSThread *thread, const JSHandle &iter) { ASSERT(thread->HasPendingException()); ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSTaggedValue exception = thread->GetException(); JSHandle record = JSHandle(factory->NewCompletionRecord(CompletionRecordType::THROW, JSHandle(thread, exception))); JSHandle result = JSIterator::IteratorClose(thread, iter, record); if (result->IsCompletionRecord()) { return CompletionRecord::Cast(result->GetTaggedObject())->GetValue(); } return result.GetTaggedValue(); } JSHandle JSIterator::GetIterator(JSThread *thread, const JSHandle &obj) { // 1.ReturnIfAbrupt(obj). RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, obj); // 2.If method was not passed, then JSHandle env = thread->GetEcmaVM()->GetGlobalEnv(); JSHandle iteratorSymbol = env->GetIteratorSymbol(); JSHandle func = JSObject::GetMethod(thread, obj, iteratorSymbol); RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, obj); return GetIterator(thread, obj, func); } JSHandle JSIterator::GetIterator(JSThread *thread, const JSHandle &obj, const JSHandle &method) { // 1.ReturnIfAbrupt(obj). RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, obj); // 3.Let iterator be Call(method,obj). JSTaggedValue ret = JSFunction::Call(thread, method, obj, 0, nullptr); JSHandle iter(thread, ret); // 4.ReturnIfAbrupt(iterator). RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, iter); // 5.If Type(iterator) is not Object, throw a TypeError exception if (!iter->IsECMAObject()) { JSHandle undefinedHandle(thread, JSTaggedValue::Undefined()); THROW_TYPE_ERROR_AND_RETURN(thread, "", undefinedHandle); } return iter; } // namespace panda::ecmascript // 7.4.2 JSHandle JSIterator::IteratorNext(JSThread *thread, const JSHandle &iter) { // 1.If value was not passed, then Let result be Invoke(iterator, "next", «‍ »). JSHandle key(thread->GlobalConstants()->GetHandledNextString()); JSHandle next(JSObject::GetMethod(thread, iter, key)); ASSERT(next->IsCallable()); JSTaggedValue ret = JSFunction::Call(thread, next, iter, 0, nullptr); JSHandle result(thread, ret); // 3.ReturnIfAbrupt(result) RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, result); // 4.If Type(result) is not Object, throw a TypeError exception. if (!result->IsECMAObject()) { THROW_TYPE_ERROR_AND_RETURN(thread, "", result); } return result; } JSHandle JSIterator::IteratorNext(JSThread *thread, const JSHandle &iter, const JSHandle &value) { // 2.Let result be Invoke(iterator, "next", «‍value»). JSHandle key(thread->GlobalConstants()->GetHandledNextString()); JSHandle next(JSObject::GetMethod(thread, iter, key)); ASSERT(next->IsCallable()); InternalCallParams *arguments = thread->GetInternalCallParams(); arguments->MakeArgv(value); JSTaggedValue ret = JSFunction::Call(thread, next, iter, 1, arguments->GetArgv()); JSHandle result(thread, ret); // 3.ReturnIfAbrupt(result) RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, result); // 4.If Type(result) is not Object, throw a TypeError exception. if (!result->IsECMAObject()) { THROW_TYPE_ERROR_AND_RETURN(thread, "", result); } return result; } // 7.4.3 bool JSIterator::IteratorComplete(JSThread *thread, const JSHandle &iterResult) { ASSERT_PRINT(iterResult->IsECMAObject(), "iterResult must be JSObject"); // Return ToBoolean(Get(iterResult, "done")). JSHandle doneStr = thread->GlobalConstants()->GetHandledDoneString(); JSHandle done = JSTaggedValue::GetProperty(thread, iterResult, doneStr).GetValue(); return done->ToBoolean(); } // 7.4.4 JSHandle JSIterator::IteratorValue(JSThread *thread, const JSHandle &iterResult) { ASSERT_PRINT(iterResult->IsECMAObject(), "iterResult must be JSObject"); // Return Get(iterResult, "value"). JSHandle valueStr = thread->GlobalConstants()->GetHandledValueString(); JSHandle value = JSTaggedValue::GetProperty(thread, iterResult, valueStr).GetValue(); return value; } // 7.4.5 JSHandle JSIterator::IteratorStep(JSThread *thread, const JSHandle &iter) { // 1.Let result be IteratorNext(iterator). JSHandle result(IteratorNext(thread, iter)); // 2.ReturnIfAbrupt(result). RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, result); // 3.Let done be IteratorComplete(result). bool done = IteratorComplete(thread, result); // 4.ReturnIfAbrupt(done). JSHandle doneHandle(thread, JSTaggedValue(done)); RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, doneHandle); // 5.If done is true, return false. if (done) { JSHandle falseHandle(thread, JSTaggedValue::False()); return falseHandle; } return result; } // 7.4.6 JSHandle JSIterator::IteratorClose(JSThread *thread, const JSHandle &iter, const JSHandle &completion) { // 1.Assert: Type(iterator) is Object. ASSERT_PRINT(iter->IsECMAObject(), "iter must be JSObject"); const GlobalEnvConstants *globalConst = thread->GlobalConstants(); JSHandle exceptionOnThread; if (thread->HasPendingException()) { exceptionOnThread = JSHandle(thread, thread->GetException()); thread->ClearException(); } JSHandle returnStr(globalConst->GetHandledReturnString()); // 3.Let return be GetMethod(iterator, "return"). JSHandle returnFunc(JSObject::GetMethod(thread, iter, returnStr)); // 4.ReturnIfAbrupt(return). RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, returnFunc); // 5.If return is undefined, return Completion(completion). if (returnFunc->IsUndefined()) { if (!exceptionOnThread.IsEmpty()) { thread->SetException(exceptionOnThread.GetTaggedValue()); } return completion; } // 6.Let innerResult be Call(return, iterator, «‍ »). JSTaggedValue ret = JSFunction::Call(thread, returnFunc, iter, 0, nullptr); if (!exceptionOnThread.IsEmpty()) { thread->SetException(exceptionOnThread.GetTaggedValue()); } JSHandle innerResult(thread, ret); JSHandle completionRecord(thread, globalConst->GetUndefined()); if (completion->IsCompletionRecord()) { completionRecord = JSHandle::Cast(completion); } // 7.If completion.[[type]] is throw, return Completion(completion). if (!completionRecord.GetTaggedValue().IsUndefined() && completionRecord->IsThrow()) { if (!exceptionOnThread.IsEmpty()) { thread->SetException(exceptionOnThread.GetTaggedValue()); } return completion; } // 8.If innerResult.[[type]] is throw, return Completion(innerResult). if (thread->HasPendingException()) { return innerResult; } // 9.If Type(innerResult.[[value]]) is not Object, throw a TypeError exception. if (!innerResult->IsECMAObject()) { JSHandle undefinedHandle(thread, JSTaggedValue::Undefined()); THROW_TYPE_ERROR_AND_RETURN(thread, "", undefinedHandle); } if (!exceptionOnThread.IsEmpty()) { thread->SetException(exceptionOnThread.GetTaggedValue()); } return completion; } // 7.4.7 JSHandle JSIterator::CreateIterResultObject(JSThread *thread, const JSHandle &value, bool done) { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSHandle env = thread->GetEcmaVM()->GetGlobalEnv(); auto globalConst = thread->GlobalConstants(); JSHandle constructor(env->GetObjectFunction()); JSHandle valueStr = globalConst->GetHandledValueString(); JSHandle doneStr = globalConst->GetHandledDoneString(); JSHandle doneValue(thread, JSTaggedValue(done)); // 2. Let obj be OrdinaryObjectCreate(%Object.prototype%). JSHandle obj(factory->NewJSObjectByConstructor(JSHandle(constructor), constructor)); // 3. Perform ! CreateDataPropertyOrThrow(obj, "value", value). // 4. Perform ! CreateDataPropertyOrThrow(obj, "done", done). JSObject::CreateDataPropertyOrThrow(thread, obj, valueStr, value); JSObject::CreateDataPropertyOrThrow(thread, obj, doneStr, doneValue); ASSERT_NO_ABRUPT_COMPLETION(thread); // 5. Return obj. return obj; } } // namespace panda::ecmascript