generated from legendecas/tc39-proposal
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2664c5
commit c4f6a36
Showing
2 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Requirements of `AsyncContext.Snapshot` | ||
|
||
`AsyncContext.Snapshot` presents two unique requirements: | ||
|
||
- It does not expose the value associated with a `Variable` instance. | ||
- It captures _all_ `Variable`s' current value and restores those values | ||
at a later time. | ||
|
||
The above requirements are essential to decouples a queueing implementation | ||
from the consumers of `Variable` instances. For example, a scheduler can queue | ||
an async task and taking a snapshot of the current context: | ||
|
||
```typescript | ||
// The scheduler doesn't access to any AsyncContext.Variable. | ||
const scheduler = { | ||
queue: [], | ||
postTask(task) { | ||
// Each callback is stored with the context at which it was enqueued. | ||
const snapshot = new AsyncContext.Snapshot(); | ||
queue.push(() => snapshot.run(task)); | ||
}, | ||
runWhenIdle() { | ||
// All callbacks in the queue would be run with the current context if they | ||
// hadn't been wrapped. | ||
for (const cb of this.queue) { | ||
cb(); | ||
} | ||
this.queue = []; | ||
} | ||
}; | ||
``` | ||
|
||
In this example, the scheduler can propagate values of `Variable`s but doesn't | ||
have access to any `Variable` instance. They are not coupled with a specific | ||
consumer of `Variable`. A consumer of `Variable` will not be coupled with a | ||
specific scheduler as well. | ||
|
||
A consumer like a tracer can use `Variable` without knowing how the scheduler | ||
and how many schedulers are used: | ||
|
||
```typescript | ||
// tracer.js | ||
const asyncVar = new AsyncContext.Variable(); | ||
export function run(cb) { | ||
// Create a new span and run the callback with it. | ||
const span = { | ||
startTime: Date.now(), | ||
traceId: randomUUID(), | ||
spanId: randomUUID(), | ||
}; | ||
asyncVar.run(span, cb); | ||
} | ||
|
||
export function end() { | ||
// Get the current span from the AsyncContext.Variable and end it. | ||
const span = asyncVar.get(); | ||
span?.endTime = Date.now(); | ||
} | ||
``` | ||
|
||
The `Snapshot` API enables user-land queueing implementations to be cooperate | ||
with any consumers of `Variable`. For instances, a queueing implementation can | ||
be: | ||
|
||
- A user-land Promise-like implementation, | ||
- A user multiplexer that multiplexes an IO operation with a batch of async | ||
tasks. | ||
|
||
Without an API like `Snapshot`, a queueing implementation would have to be built | ||
on top of the built-in `Promise`, as it is the only way to capture the current | ||
`Variable` values and restore them later. This would limit the implementation | ||
of a user-land queueing. | ||
|
||
```typescript | ||
const scheduler = { | ||
queue: [], | ||
postTask(task) { | ||
const { promise, resolve } = Promise.withResolvers(); | ||
// Captures the current context by `Promise.prototype.then`. | ||
promise.then(() => { | ||
task(); | ||
}); | ||
// Defers the task execution by resolving the promise. | ||
queue.push(resolve); | ||
}, | ||
runWhenIdle() { | ||
// LIMITATION: the tasks are not run synchronously. | ||
for (const cb of this.queue) { | ||
cb(); | ||
} | ||
this.queue = []; | ||
} | ||
}; | ||
``` |