• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "ecmascript/js_promise.h"
17 #include "ecmascript/base/error_type.h"
18 #include "ecmascript/builtins/builtins_promise_handler.h"
19 #include "ecmascript/ecma_macros.h"
20 #include "ecmascript/global_env.h"
21 #include "ecmascript/internal_call_params.h"
22 #include "ecmascript/jobs/micro_job_queue.h"
23 #include "ecmascript/js_function.h"
24 #include "ecmascript/js_handle.h"
25 #include "ecmascript/js_tagged_value-inl.h"
26 #include "ecmascript/js_thread.h"
27 #include "ecmascript/object_factory.h"
28 
29 namespace panda::ecmascript {
30 using BuiltinsPromiseHandler = builtins::BuiltinsPromiseHandler;
31 
CreateResolvingFunctions(JSThread * thread,const JSHandle<JSPromise> & promise)32 JSHandle<ResolvingFunctionsRecord> JSPromise::CreateResolvingFunctions(JSThread *thread,
33                                                                        const JSHandle<JSPromise> &promise)
34 {
35     ObjectFactory *factory = thread->GetEcmaVM()->GetFactory();
36     // 1. Let alreadyResolved be a new Record { [[value]]: false }.
37     JSHandle<PromiseRecord> record = factory->NewPromiseRecord();
38     record->SetValue(thread, JSTaggedValue::False());
39 
40     // 2. Let resolve be a new built-in function object as defined in Promise Resolve Functions (25.4.1.3.2).
41     JSHandle<JSPromiseReactionsFunction> resolve =
42         factory->CreateJSPromiseReactionsFunction(reinterpret_cast<void *>(BuiltinsPromiseHandler::Resolve));
43     // 3. Set the [[Promise]] internal slot of resolve to promise.
44     resolve->SetPromise(thread, promise);
45     // 4. Set the [[AlreadyResolved]] internal slot of resolve to alreadyResolved.
46     resolve->SetAlreadyResolved(thread, record);
47     // 5. Let reject be a new built-in function object as defined in Promise Reject Functions (25.4.1.3.1).
48     JSHandle<JSPromiseReactionsFunction> reject =
49         factory->CreateJSPromiseReactionsFunction(reinterpret_cast<void *>(BuiltinsPromiseHandler::Reject));
50     // 6. Set the [[Promise]] internal slot of reject to promise.
51     reject->SetPromise(thread, promise);
52     // 7. Set the [[AlreadyResolved]] internal slot of reject to alreadyResolved.
53     reject->SetAlreadyResolved(thread, record);
54     // 8. Return a new Record { [[Resolve]]: resolve, [[Reject]]: reject }.
55     JSHandle<ResolvingFunctionsRecord> reactions = factory->NewResolvingFunctionsRecord();
56     reactions->SetResolveFunction(thread, resolve.GetTaggedValue());
57     reactions->SetRejectFunction(thread, reject.GetTaggedValue());
58     return reactions;
59 }
60 
FulfillPromise(JSThread * thread,const JSHandle<JSPromise> & promise,const JSHandle<JSTaggedValue> & value)61 JSTaggedValue JSPromise::FulfillPromise(JSThread *thread, const JSHandle<JSPromise> &promise,
62                                         const JSHandle<JSTaggedValue> &value)
63 {
64     const GlobalEnvConstants *globalConst = thread->GlobalConstants();
65     // 1. Assert: the value of promise's [[PromiseState]] internal slot is "pending".
66     ASSERT_PRINT(promise->GetPromiseState() == PromiseState::PENDING, "FulfillPromise: state must be pending");
67     // 2. Let reactions be the value of promise's [[PromiseFulfillReactions]] internal slot.
68     JSHandle<TaggedQueue> reactions(thread, promise->GetPromiseFulfillReactions());
69     // 3. Set the value of promise's [[PromiseResult]] internal slot to value.
70     promise->SetPromiseResult(thread, value);
71     // 4. Set the value of promise's [[PromiseFulfillReactions]] internal slot to undefined.
72     promise->SetPromiseFulfillReactions(thread, globalConst->GetHandledUndefined());
73     // 5. Set the value of promise's [[PromiseRejectReactions]] internal slot to undefined.
74     promise->SetPromiseRejectReactions(thread, globalConst->GetHandledUndefined());
75     // 6. Set the value of promise's [[PromiseState]] internal slot to "fulfilled".
76     promise->SetPromiseState(PromiseState::FULFILLED);
77     // 7. Return TriggerPromiseReactions(reactions, reason).
78     return TriggerPromiseReactions(thread, reactions, value);
79 }
80 
NewPromiseCapability(JSThread * thread,const JSHandle<JSTaggedValue> & obj)81 JSHandle<PromiseCapability> JSPromise::NewPromiseCapability(JSThread *thread, const JSHandle<JSTaggedValue> &obj)
82 {
83     ObjectFactory *factory = thread->GetEcmaVM()->GetFactory();
84     // 1. If IsConstructor(C) is false, throw a TypeError exception.
85     if (!obj->IsConstructor()) {
86         THROW_TYPE_ERROR_AND_RETURN(thread, "NewPromiseCapability: obj is not constructor!",
87                                     factory->NewPromiseCapability());
88     }
89     // 2. NOTE C is assumed to be a constructor function that supports the parameter conventions of the Promise
90     //    constructor (see 25.4.3.1).
91     // 3. Let promiseCapability be a new PromiseCapability { [[Promise]]: undefined, [[Resolve]]: undefined,
92     //    [[Reject]]: undefined }.
93     JSHandle<PromiseCapability> promiseCapability = factory->NewPromiseCapability();
94     // 4. Let executor be a new built-in function object as defined in GetCapabilitiesExecutor Functions
95     //    (25.4.1.5.1).
96     JSHandle<JSPromiseExecutorFunction> executor =
97         factory->CreateJSPromiseExecutorFunction(reinterpret_cast<void *>(BuiltinsPromiseHandler::Executor));
98     // 5. Set the [[Capability]] internal slot of executor to promiseCapability.
99     executor->SetCapability(thread, promiseCapability.GetTaggedValue());
100     // 6. Let promise be Construct(C, «executor»).
101     // 7. ReturnIfAbrupt(promise).
102     JSHandle<JSTaggedValue> newTarget(thread, JSTaggedValue::Undefined());
103     InternalCallParams *arguments = thread->GetInternalCallParams();
104     arguments->MakeArgv(executor);
105     JSTaggedValue result = JSFunction::Construct(thread, obj, 1, arguments->GetArgv(), newTarget);
106     JSHandle<JSPromise> promise(thread, result);
107     RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, factory->NewPromiseCapability());
108     // 8. If IsCallable(promiseCapability.[[Resolve]]) is false, throw a TypeError exception.
109     if (!promiseCapability->GetResolve().IsCallable()) {
110         THROW_TYPE_ERROR_AND_RETURN(thread, "NewPromiseCapability: resolve is not a callable function!",
111                                     factory->NewPromiseCapability());
112     }
113     // 9. If IsCallable(promiseCapability.[[Reject]]) is false, throw a TypeError exception.
114     if (!promiseCapability->GetReject().IsCallable()) {
115         THROW_TYPE_ERROR_AND_RETURN(thread, "NewPromiseCapability: reject is not a callable function!",
116                                     factory->NewPromiseCapability());
117     }
118     // 10. Set promiseCapability.[[Promise]] to promise.
119     promiseCapability->SetPromise(thread, promise);
120     // 11. Return promiseCapability.
121     return promiseCapability;
122 }
123 
IsPromise(const JSHandle<JSTaggedValue> & value)124 bool JSPromise::IsPromise(const JSHandle<JSTaggedValue> &value)
125 {
126     // 1. If Type(x) is not Object, return false.
127     if (!value->IsECMAObject()) {
128         return false;
129     }
130     // 2. If x does not have a [[PromiseState]] internal slot, return false.
131     if (!value->IsJSPromise()) {
132         return false;
133     }
134     // 3. Return true
135     return true;
136 }
137 
RejectPromise(JSThread * thread,const JSHandle<JSPromise> & promise,const JSHandle<JSTaggedValue> & reason)138 JSTaggedValue JSPromise::RejectPromise(JSThread *thread, const JSHandle<JSPromise> &promise,
139                                        const JSHandle<JSTaggedValue> &reason)
140 {
141     const GlobalEnvConstants *globalConst = thread->GlobalConstants();
142     // 1. Assert: the value of promise's [[PromiseState]] internal slot is "pending".
143     ASSERT_PRINT(promise->GetPromiseState() == PromiseState::PENDING, "RejectPromise: state must be pending");
144     // 2. Let reactions be the value of promise's [[PromiseRejectReactions]] internal slot.
145     JSHandle<TaggedQueue> reactions(thread, TaggedQueue::Cast(promise->GetPromiseRejectReactions().GetTaggedObject()));
146     // 3. Set the value of promise's [[PromiseResult]] internal slot to reason.
147     promise->SetPromiseResult(thread, reason);
148     // 4. Set the value of promise's [[PromiseFulfillReactions]] internal slot to undefined.
149     promise->SetPromiseFulfillReactions(thread, globalConst->GetHandledUndefined());
150     // 5. Set the value of promise's [[PromiseRejectReactions]] internal slot to undefined.
151     promise->SetPromiseRejectReactions(thread, globalConst->GetHandledUndefined());
152     // 6. Set the value of promise's [[PromiseState]] internal slot to "rejected".
153     promise->SetPromiseState(PromiseState::REJECTED);
154     // 7. When a promise is rejected without any handlers, it is called with its operation argument set to "reject".
155     if (!promise->GetPromiseIsHandled()) {
156         thread->GetEcmaVM()->PromiseRejectionTracker(promise, reason, PromiseRejectionEvent::REJECT);
157     }
158     // 8. Return TriggerPromiseReactions(reactions, reason).
159     return TriggerPromiseReactions(thread, reactions, reason);
160 }
161 
TriggerPromiseReactions(JSThread * thread,const JSHandle<TaggedQueue> & reactions,const JSHandle<JSTaggedValue> & argument)162 JSTaggedValue JSPromise::TriggerPromiseReactions(JSThread *thread, const JSHandle<TaggedQueue> &reactions,
163                                                  const JSHandle<JSTaggedValue> &argument)
164 {
165     // 1. Repeat for each reaction in reactions, in original insertion order
166     // a. Perform EnqueueJob("PromiseJobs", PromiseReactionJob, «reaction, argument»).
167     JSHandle<job::MicroJobQueue> job = thread->GetEcmaVM()->GetMicroJobQueue();
168     JSHandle<GlobalEnv> globalEnv = thread->GetEcmaVM()->GetGlobalEnv();
169     const GlobalEnvConstants *globalConst = thread->GlobalConstants();
170     ObjectFactory *factory = thread->GetEcmaVM()->GetFactory();
171     JSHandle<JSFunction> promiseReactionsJob(globalEnv->GetPromiseReactionJob());
172     JSMutableHandle<PromiseReaction> reaction(thread, JSTaggedValue::Undefined());
173     while (!reactions->Empty()) {
174         reaction.Update(reactions->Pop(thread));
175         JSHandle<TaggedArray> arguments = factory->NewTaggedArray(2);  // 2 means the length of new array
176         arguments->Set(thread, 0, reaction);
177         arguments->Set(thread, 1, argument);
178         job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, promiseReactionsJob, arguments);
179     }
180     // 2. Return undefined.
181     return globalConst->GetUndefined();
182 }
183 
IfThrowGetThrowValue(JSThread * thread)184 JSHandle<JSTaggedValue> JSPromise::IfThrowGetThrowValue(JSThread *thread)
185 {
186     return JSHandle<JSTaggedValue>(thread, thread->GetException());
187 }
188 }  // namespace panda::ecmascript
189