Skip to content

Commit c3a96ba

Browse files
ofrobotsMylesBorins
authored andcommitted
async_hooks: rename PromiseWrap.parentId
Rename the `parentId` property on the PromiseWrap object to a `isChainedPromise` property. The former wasn't quite useful as it was always defined to be the same value as the trigger id available in the init hook. Instead rename the property to be closer to the information it communicates: whether the promise is a chained promise or not. PR-URL: #18633 Fixes: #18470 Reviewed-By: Andreas Madsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]>
1 parent c1c6253 commit c3a96ba

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed

doc/api/async_hooks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,10 @@ and document their own resource objects. For example, such a resource object
301301
could contain the SQL query being executed.
302302

303303
In the case of Promises, the `resource` object will have `promise` property
304-
that refers to the Promise that is being initialized, and a `parentId` property
305-
set to the `asyncId` of a parent Promise, if there is one, and `undefined`
304+
that refers to the Promise that is being initialized, and a `isChainedPromise`
305+
property, set to `true` if the promise has a parent promise, and `false`
306306
otherwise. For example, in the case of `b = a.then(handler)`, `a` is considered
307-
a parent Promise of `b`.
307+
a parent Promise of `b`. Here, `b` is considered a chained promise.
308308

309309
*Note*: In some cases the resource object is reused for performance reasons,
310310
it is thus not safe to use it as a key in a `WeakMap` or add properties to it.

src/async_wrap.cc

+12-13
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ class PromiseWrap : public AsyncWrap {
261261
size_t self_size() const override { return sizeof(*this); }
262262

263263
static constexpr int kPromiseField = 1;
264-
static constexpr int kParentAsyncIdField = 2;
264+
static constexpr int kIsChainedPromiseField = 2;
265265
static constexpr int kInternalFieldCount = 3;
266266

267267
static PromiseWrap* New(Environment* env,
@@ -270,8 +270,8 @@ class PromiseWrap : public AsyncWrap {
270270
bool silent);
271271
static void GetPromise(Local<String> property,
272272
const PropertyCallbackInfo<Value>& info);
273-
static void getParentAsyncId(Local<String> property,
274-
const PropertyCallbackInfo<Value>& info);
273+
static void getIsChainedPromise(Local<String> property,
274+
const PropertyCallbackInfo<Value>& info);
275275
};
276276

277277
PromiseWrap* PromiseWrap::New(Environment* env,
@@ -281,11 +281,10 @@ PromiseWrap* PromiseWrap::New(Environment* env,
281281
Local<Object> object = env->promise_wrap_template()
282282
->NewInstance(env->context()).ToLocalChecked();
283283
object->SetInternalField(PromiseWrap::kPromiseField, promise);
284-
if (parent_wrap != nullptr) {
285-
object->SetInternalField(PromiseWrap::kParentAsyncIdField,
286-
Number::New(env->isolate(),
287-
parent_wrap->get_async_id()));
288-
}
284+
object->SetInternalField(PromiseWrap::kIsChainedPromiseField,
285+
parent_wrap != nullptr ?
286+
v8::True(env->isolate()) :
287+
v8::False(env->isolate()));
289288
CHECK_EQ(promise->GetAlignedPointerFromInternalField(0), nullptr);
290289
promise->SetInternalField(0, object);
291290
return new PromiseWrap(env, object, silent);
@@ -296,10 +295,10 @@ void PromiseWrap::GetPromise(Local<String> property,
296295
info.GetReturnValue().Set(info.Holder()->GetInternalField(kPromiseField));
297296
}
298297

299-
void PromiseWrap::getParentAsyncId(Local<String> property,
300-
const PropertyCallbackInfo<Value>& info) {
298+
void PromiseWrap::getIsChainedPromise(Local<String> property,
299+
const PropertyCallbackInfo<Value>& info) {
301300
info.GetReturnValue().Set(
302-
info.Holder()->GetInternalField(kParentAsyncIdField));
301+
info.Holder()->GetInternalField(kIsChainedPromiseField));
303302
}
304303

305304
static void PromiseHook(PromiseHookType type, Local<Promise> promise,
@@ -398,8 +397,8 @@ static void SetupHooks(const FunctionCallbackInfo<Value>& args) {
398397
FIXED_ONE_BYTE_STRING(env->isolate(), "promise"),
399398
PromiseWrap::GetPromise);
400399
promise_wrap_template->SetAccessor(
401-
FIXED_ONE_BYTE_STRING(env->isolate(), "parentId"),
402-
PromiseWrap::getParentAsyncId);
400+
FIXED_ONE_BYTE_STRING(env->isolate(), "isChainedPromise"),
401+
PromiseWrap::getIsChainedPromise);
403402
env->set_promise_wrap_template(promise_wrap_template);
404403
}
405404
}

test/parallel/test-async-hooks-promise.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const a = Promise.resolve(42);
2121
const b = a.then(common.mustCall());
2222

2323
assert.strictEqual(initCalls[0].triggerId, 1);
24-
assert.strictEqual(initCalls[0].resource.parentId, undefined);
24+
assert.strictEqual(initCalls[0].resource.isChainedPromise, false);
2525
assert.strictEqual(initCalls[0].resource.promise, a);
2626
assert.strictEqual(initCalls[1].triggerId, initCalls[0].id);
27-
assert.strictEqual(initCalls[1].resource.parentId, initCalls[0].id);
27+
assert.strictEqual(initCalls[1].resource.isChainedPromise, true);
2828
assert.strictEqual(initCalls[1].resource.promise, b);

0 commit comments

Comments
 (0)