import { createAsyncLocalStorage } from '../app-render/async-local-storage' export function getBuiltinRequestContext(): | BuiltinRequestContextValue | undefined { const _globalThis = globalThis as GlobalThisWithRequestContext const ctx = _globalThis[NEXT_REQUEST_CONTEXT_SYMBOL] return ctx?.get() } const NEXT_REQUEST_CONTEXT_SYMBOL = Symbol.for('@next/request-context') type GlobalThisWithRequestContext = typeof globalThis & { [NEXT_REQUEST_CONTEXT_SYMBOL]?: BuiltinRequestContext } /** A request context provided by the platform. */ export type BuiltinRequestContext = { get(): BuiltinRequestContextValue | undefined } export type RunnableBuiltinRequestContext = BuiltinRequestContext & { run(value: BuiltinRequestContextValue, callback: () => T): T } export type BuiltinRequestContextValue = { waitUntil?: WaitUntil } export type WaitUntil = (promise: Promise) => void /** "@next/request-context" has a different signature from AsyncLocalStorage, * matching [AsyncContext.Variable](https://github.com/tc39/proposal-async-context). * We don't need a full AsyncContext adapter here, just having `.get()` is enough */ export function createLocalRequestContext(): RunnableBuiltinRequestContext { const storage = createAsyncLocalStorage() return { get: () => storage.getStore(), run: (value, callback) => storage.run(value, callback), } }