File size: 14,505 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
import type { IncrementalCache } from '../../lib/incremental-cache'
import { CACHE_ONE_YEAR } from '../../../lib/constants'
import { validateRevalidate, validateTags } from '../../lib/patch-fetch'
import {
workAsyncStorage,
type WorkStore,
} from '../../app-render/work-async-storage.external'
import {
getCacheSignal,
getDraftModeProviderForCacheScope,
workUnitAsyncStorage,
} from '../../app-render/work-unit-async-storage.external'
import {
CachedRouteKind,
IncrementalCacheKind,
type CachedFetchData,
} from '../../response-cache'
import type {
UnstableCacheStore,
WorkUnitStore,
} from '../../app-render/work-unit-async-storage.external'
type Callback = (...args: any[]) => Promise<any>
let noStoreFetchIdx = 0
async function cacheNewResult<T>(
result: T,
incrementalCache: IncrementalCache,
cacheKey: string,
tags: string[],
revalidate: number | false | undefined,
fetchIdx: number,
fetchUrl: string
): Promise<unknown> {
await incrementalCache.set(
cacheKey,
{
kind: CachedRouteKind.FETCH,
data: {
headers: {},
// TODO: handle non-JSON values?
body: JSON.stringify(result),
status: 200,
url: '',
} satisfies CachedFetchData,
revalidate: typeof revalidate !== 'number' ? CACHE_ONE_YEAR : revalidate,
},
{ fetchCache: true, tags, fetchIdx, fetchUrl }
)
return
}
/**
* This function allows you to cache the results of expensive operations, like database queries, and reuse them across multiple requests.
*
* Read more: [Next.js Docs: `unstable_cache`](https://nextjs.org/docs/app/api-reference/functions/unstable_cache)
*/
export function unstable_cache<T extends Callback>(
cb: T,
keyParts?: string[],
options: {
/**
* The revalidation interval in seconds.
*/
revalidate?: number | false
tags?: string[]
} = {}
): T {
if (options.revalidate === 0) {
throw new Error(
`Invariant revalidate: 0 can not be passed to unstable_cache(), must be "false" or "> 0" ${cb.toString()}`
)
}
// Validate the tags provided are valid
const tags = options.tags
? validateTags(options.tags, `unstable_cache ${cb.toString()}`)
: []
// Validate the revalidate options
validateRevalidate(
options.revalidate,
`unstable_cache ${cb.name || cb.toString()}`
)
// Stash the fixed part of the key at construction time. The invocation key will combine
// the fixed key with the arguments when actually called
// @TODO if cb.toString() is long we should hash it
// @TODO come up with a collision-free way to combine keyParts
// @TODO consider validating the keyParts are all strings. TS can't provide runtime guarantees
// and the error produced by accidentally using something that cannot be safely coerced is likely
// hard to debug
const fixedKey = `${cb.toString()}-${
Array.isArray(keyParts) && keyParts.join(',')
}`
const cachedCb = async (...args: any[]) => {
const workStore = workAsyncStorage.getStore()
const workUnitStore = workUnitAsyncStorage.getStore()
// We must be able to find the incremental cache otherwise we throw
const maybeIncrementalCache:
| import('../../lib/incremental-cache').IncrementalCache
| undefined =
workStore?.incrementalCache || (globalThis as any).__incrementalCache
if (!maybeIncrementalCache) {
throw new Error(
`Invariant: incrementalCache missing in unstable_cache ${cb.toString()}`
)
}
const incrementalCache = maybeIncrementalCache
const cacheSignal = workUnitStore ? getCacheSignal(workUnitStore) : null
if (cacheSignal) {
cacheSignal.beginRead()
}
try {
// If there's no request store, we aren't in a request (or we're not in
// app router) and if there's no static generation store, we aren't in app
// router. Default to an empty pathname and search params when there's no
// request store or static generation store available.
const fetchUrlPrefix =
workStore && workUnitStore
? getFetchUrlPrefix(workStore, workUnitStore)
: ''
// Construct the complete cache key for this function invocation
// @TODO stringify is likely not safe here. We will coerce undefined to null which will make
// the keyspace smaller than the execution space
const invocationKey = `${fixedKey}-${JSON.stringify(args)}`
const cacheKey = await incrementalCache.generateCacheKey(invocationKey)
// $urlWithPath,$sortedQueryStringKeys,$hashOfEveryThingElse
const fetchUrl = `unstable_cache ${fetchUrlPrefix} ${cb.name ? ` ${cb.name}` : cacheKey}`
const fetchIdx =
(workStore ? workStore.nextFetchId : noStoreFetchIdx) ?? 1
const implicitTags = workUnitStore?.implicitTags
const innerCacheStore: UnstableCacheStore = {
type: 'unstable-cache',
phase: 'render',
implicitTags,
draftMode:
workUnitStore &&
workStore &&
getDraftModeProviderForCacheScope(workStore, workUnitStore),
}
if (workStore) {
workStore.nextFetchId = fetchIdx + 1
// We are in an App Router context. We try to return the cached entry if it exists and is valid
// If the entry is fresh we return it. If the entry is stale we return it but revalidate the entry in
// the background. If the entry is missing or invalid we generate a new entry and return it.
let isNestedUnstableCache = false
if (workUnitStore) {
switch (workUnitStore.type) {
case 'cache':
case 'private-cache':
case 'prerender':
case 'prerender-ppr':
case 'prerender-legacy':
// We update the store's revalidate property if the option.revalidate is a higher precedence
// options.revalidate === undefined doesn't affect timing.
// options.revalidate === false doesn't shrink timing. it stays at the maximum.
if (typeof options.revalidate === 'number') {
if (workUnitStore.revalidate < options.revalidate) {
// The store is already revalidating on a shorter time interval, leave it alone
} else {
workUnitStore.revalidate = options.revalidate
}
}
// We need to accumulate the tags for this invocation within the store
const collectedTags = workUnitStore.tags
if (collectedTags === null) {
workUnitStore.tags = tags.slice()
} else {
for (const tag of tags) {
// @TODO refactor tags to be a set to avoid this O(n) lookup
if (!collectedTags.includes(tag)) {
collectedTags.push(tag)
}
}
}
break
case 'unstable-cache':
isNestedUnstableCache = true
break
case 'prerender-client':
case 'request':
break
default:
workUnitStore satisfies never
}
}
if (
// when we are nested inside of other unstable_cache's
// we should bypass cache similar to fetches
!isNestedUnstableCache &&
workStore.fetchCache !== 'force-no-store' &&
!workStore.isOnDemandRevalidate &&
!incrementalCache.isOnDemandRevalidate &&
!workStore.isDraftMode
) {
// We attempt to get the current cache entry from the incremental cache.
const cacheEntry = await incrementalCache.get(cacheKey, {
kind: IncrementalCacheKind.FETCH,
revalidate: options.revalidate,
tags,
softTags: implicitTags?.tags,
fetchIdx,
fetchUrl,
})
if (cacheEntry && cacheEntry.value) {
// The entry exists and has a value
if (cacheEntry.value.kind !== CachedRouteKind.FETCH) {
// The entry is invalid and we need a special warning
// @TODO why do we warn this way? Should this just be an error? How are these errors surfaced
// so bugs can be reported
// @TODO the invocation key can have sensitive data in it. we should not log this entire object
console.error(
`Invariant invalid cacheEntry returned for ${invocationKey}`
)
// will fall through to generating a new cache entry below
} else {
// We have a valid cache entry so we will be returning it. We also check to see if we need
// to background revalidate it by checking if it is stale.
const cachedResponse =
cacheEntry.value.data.body !== undefined
? JSON.parse(cacheEntry.value.data.body)
: undefined
if (cacheEntry.isStale) {
// In App Router we return the stale result and revalidate in the background
if (!workStore.pendingRevalidates) {
workStore.pendingRevalidates = {}
}
// We run the cache function asynchronously and save the result when it completes
workStore.pendingRevalidates[invocationKey] =
workUnitAsyncStorage
.run(innerCacheStore, cb, ...args)
.then((result) => {
return cacheNewResult(
result,
incrementalCache,
cacheKey,
tags,
options.revalidate,
fetchIdx,
fetchUrl
)
})
// @TODO This error handling seems wrong. We swallow the error?
.catch((err) =>
console.error(
`revalidating cache with key: ${invocationKey}`,
err
)
)
}
// We had a valid cache entry so we return it here
return cachedResponse
}
}
}
// If we got this far then we had an invalid cache entry and need to generate a new one
const result = await workUnitAsyncStorage.run(
innerCacheStore,
cb,
...args
)
if (!workStore.isDraftMode) {
if (!workStore.pendingRevalidates) {
workStore.pendingRevalidates = {}
}
// We need to push the cache result promise to pending
// revalidates otherwise it won't be awaited and is just
// dangling
workStore.pendingRevalidates[invocationKey] = cacheNewResult(
result,
incrementalCache,
cacheKey,
tags,
options.revalidate,
fetchIdx,
fetchUrl
)
}
return result
} else {
noStoreFetchIdx += 1
// We are in Pages Router or were called outside of a render. We don't have a store
// so we just call the callback directly when it needs to run.
// If the entry is fresh we return it. If the entry is stale we return it but revalidate the entry in
// the background. If the entry is missing or invalid we generate a new entry and return it.
if (!incrementalCache.isOnDemandRevalidate) {
// We aren't doing an on demand revalidation so we check use the cache if valid
const cacheEntry = await incrementalCache.get(cacheKey, {
kind: IncrementalCacheKind.FETCH,
revalidate: options.revalidate,
tags,
fetchIdx,
fetchUrl,
softTags: implicitTags?.tags,
})
if (cacheEntry && cacheEntry.value) {
// The entry exists and has a value
if (cacheEntry.value.kind !== CachedRouteKind.FETCH) {
// The entry is invalid and we need a special warning
// @TODO why do we warn this way? Should this just be an error? How are these errors surfaced
// so bugs can be reported
console.error(
`Invariant invalid cacheEntry returned for ${invocationKey}`
)
// will fall through to generating a new cache entry below
} else if (!cacheEntry.isStale) {
// We have a valid cache entry and it is fresh so we return it
return cacheEntry.value.data.body !== undefined
? JSON.parse(cacheEntry.value.data.body)
: undefined
}
}
}
// If we got this far then we had an invalid cache entry and need to generate a new one
const result = await workUnitAsyncStorage.run(
innerCacheStore,
cb,
...args
)
// we need to wait setting the new cache result here as
// we don't have pending revalidates on workStore to
// push to and we can't have a dangling promise
await cacheNewResult(
result,
incrementalCache,
cacheKey,
tags,
options.revalidate,
fetchIdx,
fetchUrl
)
return result
}
} finally {
if (cacheSignal) {
cacheSignal.endRead()
}
}
}
// TODO: once AsyncLocalStorage.run() returns the correct types this override will no longer be necessary
return cachedCb as unknown as T
}
function getFetchUrlPrefix(
workStore: WorkStore,
workUnitStore: WorkUnitStore
): string {
switch (workUnitStore.type) {
case 'request':
const pathname = workUnitStore.url.pathname
const searchParams = new URLSearchParams(workUnitStore.url.search)
const sortedSearch = [...searchParams.keys()]
.sort((a, b) => a.localeCompare(b))
.map((key) => `${key}=${searchParams.get(key)}`)
.join('&')
return `${pathname}${sortedSearch.length ? '?' : ''}${sortedSearch}`
case 'prerender':
case 'prerender-client':
case 'prerender-ppr':
case 'prerender-legacy':
case 'cache':
case 'private-cache':
case 'unstable-cache':
return workStore.route
default:
return workUnitStore satisfies never
}
}
|