-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(cloudflare): Introduce lock instrumentation for context.waitUntil
to prevent multiple instrumentation
#17539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ceac7eb
Introduce lock instrumentation for `context.waitUntil`
3218728
Fix typo in mock `waitUntil` implementation in tests
9d4bcf9
Simplify `FlushLock` instrumentation logic
20e6bae
Refactor tests to simplify `waitUntil` handling
7fa361c
Add test to ensure `waitUntil` is not wrapped twice
02c0238
Clone execution context to ensure method binding
4d46261
Replace `Promise.withResolvers` with `createPromiseResolver`
2249f68
Refactor and rename utilities for execution context handling
cef17b3
Enhance `copyExecutionContext` with binding prevention
0dc5c8b
Refactor `copyExecutionContext` for method binding clarity
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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,42 @@ | ||
import { type DurableObjectState, type ExecutionContext } from '@cloudflare/workers-types'; | ||
|
||
const kBound = Symbol.for('kBound'); | ||
|
||
const defaultPropertyOptions: PropertyDescriptor = { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
}; | ||
|
||
/** | ||
* Clones the given execution context by creating a shallow copy while ensuring the binding of specific methods. | ||
* | ||
* @param {ExecutionContext|DurableObjectState|void} ctx - The execution context to clone. Can be void. | ||
* @return {ExecutionContext|DurableObjectState|void} A cloned execution context with bound methods, or the original void value if no context was provided. | ||
*/ | ||
export function copyExecutionContext<T extends ExecutionContext | DurableObjectState>(ctx: T): T { | ||
if (!ctx) return ctx; | ||
return Object.create(ctx, { | ||
waitUntil: { ...defaultPropertyOptions, value: copyBound(ctx, 'waitUntil') }, | ||
...('passThroughOnException' in ctx && { | ||
passThroughOnException: { ...defaultPropertyOptions, value: copyBound(ctx, 'passThroughOnException') }, | ||
}), | ||
}); | ||
} | ||
|
||
function copyBound<T, K extends keyof T>(obj: T, method: K): T[K] { | ||
const method_impl = obj[method]; | ||
0xbad0c0d3 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
if (typeof method_impl !== 'function') return method_impl; | ||
if ((method_impl as T[K] & { [kBound]?: boolean })[kBound]) return method_impl; | ||
|
||
return new Proxy(method_impl.bind(obj), { | ||
get: (target, key, receiver) => { | ||
if ('bind' === key) { | ||
return () => receiver; | ||
} else if (kBound === key) { | ||
return true; | ||
} | ||
return Reflect.get(target, key, receiver); | ||
}, | ||
}); | ||
} |
This file contains hidden or 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,57 @@ | ||
import type { ExecutionContext } from '@cloudflare/workers-types'; | ||
import { createPromiseResolver } from './makePromiseResolver'; | ||
|
||
type FlushLock = { | ||
readonly ready: Promise<void>; | ||
readonly finalize: () => Promise<void>; | ||
}; | ||
type MaybeLockable<T extends object> = T & { [kFlushLock]?: FlushLock }; | ||
|
||
const kFlushLock = Symbol.for('kFlushLock'); | ||
|
||
function getInstrumentedLock<T extends object>(o: MaybeLockable<T>): FlushLock | undefined { | ||
return o[kFlushLock]; | ||
} | ||
|
||
function storeInstrumentedLock<T extends object>(o: MaybeLockable<T>, lock: FlushLock): void { | ||
o[kFlushLock] = lock; | ||
} | ||
|
||
/** | ||
* Enhances the given execution context by wrapping its `waitUntil` method with a proxy | ||
* to monitor pending tasks and provides a flusher function to ensure all tasks | ||
* have been completed before executing any subsequent logic. | ||
* | ||
* @param {ExecutionContext} context - The execution context to be enhanced. If no context is provided, the function returns undefined. | ||
* @return {FlushLock} Returns a flusher function if a valid context is provided, otherwise undefined. | ||
*/ | ||
export function makeFlushLock(context: ExecutionContext): FlushLock { | ||
// eslint-disable-next-line @typescript-eslint/unbound-method | ||
let lock = getInstrumentedLock(context.waitUntil); | ||
if (lock) { | ||
// It is fine to return the same lock multiple times because this means the context has already been instrumented. | ||
return lock; | ||
} | ||
let pending = 0; | ||
const originalWaitUntil = context.waitUntil.bind(context) as typeof context.waitUntil; | ||
const { promise, resolve } = createPromiseResolver(); | ||
const hijackedWaitUntil: typeof originalWaitUntil = promise => { | ||
pending++; | ||
return originalWaitUntil( | ||
promise.finally(() => { | ||
if (--pending === 0) resolve(); | ||
}), | ||
); | ||
}; | ||
lock = Object.freeze({ | ||
ready: promise, | ||
finalize: () => { | ||
if (pending === 0) resolve(); | ||
return promise; | ||
}, | ||
}) as FlushLock; | ||
storeInstrumentedLock(hijackedWaitUntil, lock); | ||
context.waitUntil = hijackedWaitUntil; | ||
|
||
return lock; | ||
} |
This file contains hidden or 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,26 @@ | ||
type PromiseWithResolvers<T, E = unknown> = { | ||
readonly promise: Promise<T>; | ||
readonly resolve: (value?: T | PromiseLike<T>) => void; | ||
readonly reject: (reason?: E) => void; | ||
}; | ||
/** | ||
* Creates an object containing a promise, along with its corresponding resolve and reject functions. | ||
* | ||
* This method provides a convenient way to create a promise and access its resolvers externally. | ||
* | ||
* @template T - The type of the resolved value of the promise. | ||
* @template E - The type of the rejected value of the promise. Defaults to `unknown`. | ||
* @return {PromiseWithResolvers<T, E>} An object containing the promise and its resolve and reject functions. | ||
*/ | ||
export function createPromiseResolver<T, E = unknown>(): PromiseWithResolvers<T, E> { | ||
if ('withResolvers' in Promise && typeof Promise.withResolvers === 'function') { | ||
return Promise.withResolvers(); | ||
} | ||
let resolve; | ||
let reject; | ||
const promise = new Promise<T>((res, rej) => { | ||
resolve = res; | ||
reject = rej; | ||
}); | ||
return { promise, resolve, reject } as unknown as PromiseWithResolvers<T, E>; | ||
} |
This file contains hidden or 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,47 @@ | ||
import { type ExecutionContext } from '@cloudflare/workers-types'; | ||
import { type Mocked, describe, expect, it, vi } from 'vitest'; | ||
import { copyExecutionContext } from '../src/utils/copyExecutionContext'; | ||
|
||
describe('Copy of the execution context', () => { | ||
describe.for<keyof ExecutionContext>(['waitUntil', 'passThroughOnException'])('%s', method => { | ||
it('Was not bound more than once', async () => { | ||
const context = makeExecutionContextMock(); | ||
const copy = copyExecutionContext(context); | ||
const copy_of_copy = copyExecutionContext(copy); | ||
|
||
expect(copy[method]).toBe(copy_of_copy[method]); | ||
}); | ||
it('Copied method is bound to the original', async () => { | ||
const context = makeExecutionContextMock(); | ||
const copy = copyExecutionContext(context); | ||
|
||
expect(copy[method]()).toBe(context); | ||
}); | ||
it('Copied method "rebind" prevention', async () => { | ||
const context = makeExecutionContextMock(); | ||
const copy = copyExecutionContext(context); | ||
expect(copy[method].bind('test')).toBe(copy[method]); | ||
}); | ||
}); | ||
|
||
it('No side effects', async () => { | ||
const context = makeExecutionContextMock(); | ||
expect(() => copyExecutionContext(Object.freeze(context))).not.toThrow( | ||
/Cannot define property \w+, object is not extensible/, | ||
); | ||
}); | ||
it('Respects symbols', async () => { | ||
const s = Symbol('test'); | ||
const context = makeExecutionContextMock<ExecutionContext & { [s]: unknown }>(); | ||
context[s] = {}; | ||
const copy = copyExecutionContext(context); | ||
expect(copy[s]).toBe(context[s]); | ||
}); | ||
}); | ||
|
||
function makeExecutionContextMock<T extends ExecutionContext>() { | ||
return { | ||
waitUntil: vi.fn().mockReturnThis(), | ||
passThroughOnException: vi.fn().mockReturnThis(), | ||
} as unknown as Mocked<T>; | ||
} |
This file contains hidden or 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 hidden or 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,28 @@ | ||
import { type ExecutionContext } from '@cloudflare/workers-types'; | ||
import { describe, expect, it, vi } from 'vitest'; | ||
import { makeFlushLock } from '../src/utils/flushLock'; | ||
import { createPromiseResolver } from '../src/utils/makePromiseResolver'; | ||
|
||
describe('Flush buffer test', () => { | ||
const mockExecutionContext: ExecutionContext = { | ||
waitUntil: vi.fn(), | ||
passThroughOnException: vi.fn(), | ||
props: null, | ||
}; | ||
it('should flush buffer immediately if no waitUntil were called', async () => { | ||
const { finalize } = makeFlushLock(mockExecutionContext); | ||
await expect(finalize()).resolves.toBeUndefined(); | ||
}); | ||
it('waitUntil should not be wrapped mose than once', () => { | ||
expect(makeFlushLock(mockExecutionContext), 'Execution context wrapped twice').toBe( | ||
makeFlushLock(mockExecutionContext), | ||
); | ||
}); | ||
it('should flush buffer only after all waitUntil were finished', async () => { | ||
const { promise, resolve } = createPromiseResolver(); | ||
const lock = makeFlushLock(mockExecutionContext); | ||
mockExecutionContext.waitUntil(promise); | ||
process.nextTick(resolve); | ||
await expect(lock.finalize()).resolves.toBeUndefined(); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.