File size: 14,263 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
import type { RouteMetadata } from '../../../export/routes/types'
import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from '.'
import type { CacheFs } from '../../../shared/lib/utils'
import {
CachedRouteKind,
IncrementalCacheKind,
type CachedFetchValue,
type IncrementalCacheValue,
type SetIncrementalFetchCacheContext,
type SetIncrementalResponseCacheContext,
} from '../../response-cache'
import type { LRUCache } from '../lru-cache'
import path from '../../../shared/lib/isomorphic/path'
import {
NEXT_CACHE_TAGS_HEADER,
NEXT_DATA_SUFFIX,
NEXT_META_SUFFIX,
RSC_PREFETCH_SUFFIX,
RSC_SEGMENT_SUFFIX,
RSC_SEGMENTS_DIR_SUFFIX,
RSC_SUFFIX,
} from '../../../lib/constants'
import { isStale, tagsManifest } from './tags-manifest.external'
import { MultiFileWriter } from '../../../lib/multi-file-writer'
import { getMemoryCache } from './memory-cache.external'
type FileSystemCacheContext = Omit<
CacheHandlerContext,
'fs' | 'serverDistDir'
> & {
fs: CacheFs
serverDistDir: string
}
export default class FileSystemCache implements CacheHandler {
private fs: FileSystemCacheContext['fs']
private flushToDisk?: FileSystemCacheContext['flushToDisk']
private serverDistDir: FileSystemCacheContext['serverDistDir']
private revalidatedTags: string[]
private static debug: boolean = !!process.env.NEXT_PRIVATE_DEBUG_CACHE
private static memoryCache: LRUCache<CacheHandlerValue> | undefined
constructor(ctx: FileSystemCacheContext) {
this.fs = ctx.fs
this.flushToDisk = ctx.flushToDisk
this.serverDistDir = ctx.serverDistDir
this.revalidatedTags = ctx.revalidatedTags
if (ctx.maxMemoryCacheSize) {
if (!FileSystemCache.memoryCache) {
if (FileSystemCache.debug) {
console.log('using memory store for fetch cache')
}
FileSystemCache.memoryCache = getMemoryCache(ctx.maxMemoryCacheSize)
} else if (FileSystemCache.debug) {
console.log('memory store already initialized')
}
} else if (FileSystemCache.debug) {
console.log('not using memory store for fetch cache')
}
}
public resetRequestCache(): void {}
public async revalidateTag(
...args: Parameters<CacheHandler['revalidateTag']>
) {
let [tags] = args
tags = typeof tags === 'string' ? [tags] : tags
if (FileSystemCache.debug) {
console.log('revalidateTag', tags)
}
if (tags.length === 0) {
return
}
for (const tag of tags) {
if (!tagsManifest.has(tag)) {
tagsManifest.set(tag, Date.now())
}
}
}
public async get(...args: Parameters<CacheHandler['get']>) {
const [key, ctx] = args
const { kind } = ctx
let data = FileSystemCache.memoryCache?.get(key)
if (FileSystemCache.debug) {
if (kind === IncrementalCacheKind.FETCH) {
console.log('get', key, ctx.tags, kind, !!data)
} else {
console.log('get', key, kind, !!data)
}
}
// let's check the disk for seed data
if (!data && process.env.NEXT_RUNTIME !== 'edge') {
try {
if (kind === IncrementalCacheKind.APP_ROUTE) {
const filePath = this.getFilePath(
`${key}.body`,
IncrementalCacheKind.APP_ROUTE
)
const fileData = await this.fs.readFile(filePath)
const { mtime } = await this.fs.stat(filePath)
const meta = JSON.parse(
await this.fs.readFile(
filePath.replace(/\.body$/, NEXT_META_SUFFIX),
'utf8'
)
)
data = {
lastModified: mtime.getTime(),
value: {
kind: CachedRouteKind.APP_ROUTE,
body: fileData,
headers: meta.headers,
status: meta.status,
},
}
} else {
const filePath = this.getFilePath(
kind === IncrementalCacheKind.FETCH ? key : `${key}.html`,
kind
)
const fileData = await this.fs.readFile(filePath, 'utf8')
const { mtime } = await this.fs.stat(filePath)
if (kind === IncrementalCacheKind.FETCH) {
const { tags, fetchIdx, fetchUrl } = ctx
if (!this.flushToDisk) return null
const lastModified = mtime.getTime()
const parsedData: CachedFetchValue = JSON.parse(fileData)
data = {
lastModified,
value: parsedData,
}
if (data.value?.kind === CachedRouteKind.FETCH) {
const storedTags = data.value?.tags
// update stored tags if a new one is being added
// TODO: remove this when we can send the tags
// via header on GET same as SET
if (!tags?.every((tag) => storedTags?.includes(tag))) {
if (FileSystemCache.debug) {
console.log('tags vs storedTags mismatch', tags, storedTags)
}
await this.set(key, data.value, {
fetchCache: true,
tags,
fetchIdx,
fetchUrl,
})
}
}
} else if (kind === IncrementalCacheKind.APP_PAGE) {
// We try to load the metadata file, but if it fails, we don't
// error. We also don't load it if this is a fallback.
let meta: RouteMetadata | undefined
try {
meta = JSON.parse(
await this.fs.readFile(
filePath.replace(/\.html$/, NEXT_META_SUFFIX),
'utf8'
)
)
} catch {}
let maybeSegmentData: Map<string, Buffer> | undefined
if (meta?.segmentPaths) {
// Collect all the segment data for this page.
// TODO: To optimize file system reads, we should consider creating
// separate cache entries for each segment, rather than storing them
// all on the page's entry. Though the behavior is
// identical regardless.
const segmentData: Map<string, Buffer> = new Map()
maybeSegmentData = segmentData
const segmentsDir = key + RSC_SEGMENTS_DIR_SUFFIX
await Promise.all(
meta.segmentPaths.map(async (segmentPath: string) => {
const segmentDataFilePath = this.getFilePath(
segmentsDir + segmentPath + RSC_SEGMENT_SUFFIX,
IncrementalCacheKind.APP_PAGE
)
try {
segmentData.set(
segmentPath,
await this.fs.readFile(segmentDataFilePath)
)
} catch {
// This shouldn't happen, but if for some reason we fail to
// load a segment from the filesystem, treat it the same as if
// the segment is dynamic and does not have a prefetch.
}
})
)
}
let rscData: Buffer | undefined
if (!ctx.isFallback) {
rscData = await this.fs.readFile(
this.getFilePath(
`${key}${ctx.isRoutePPREnabled ? RSC_PREFETCH_SUFFIX : RSC_SUFFIX}`,
IncrementalCacheKind.APP_PAGE
)
)
}
data = {
lastModified: mtime.getTime(),
value: {
kind: CachedRouteKind.APP_PAGE,
html: fileData,
rscData,
postponed: meta?.postponed,
headers: meta?.headers,
status: meta?.status,
segmentData: maybeSegmentData,
},
}
} else if (kind === IncrementalCacheKind.PAGES) {
let meta: RouteMetadata | undefined
let pageData: string | object = {}
if (!ctx.isFallback) {
pageData = JSON.parse(
await this.fs.readFile(
this.getFilePath(
`${key}${NEXT_DATA_SUFFIX}`,
IncrementalCacheKind.PAGES
),
'utf8'
)
)
}
data = {
lastModified: mtime.getTime(),
value: {
kind: CachedRouteKind.PAGES,
html: fileData,
pageData,
headers: meta?.headers,
status: meta?.status,
},
}
} else {
throw new Error(
`Invariant: Unexpected route kind ${kind} in file system cache.`
)
}
}
if (data) {
FileSystemCache.memoryCache?.set(key, data)
}
} catch {
return null
}
}
if (
data?.value?.kind === CachedRouteKind.APP_PAGE ||
data?.value?.kind === CachedRouteKind.APP_ROUTE ||
data?.value?.kind === CachedRouteKind.PAGES
) {
let cacheTags: undefined | string[]
const tagsHeader = data.value.headers?.[NEXT_CACHE_TAGS_HEADER]
if (typeof tagsHeader === 'string') {
cacheTags = tagsHeader.split(',')
}
if (cacheTags?.length) {
// we trigger a blocking validation if an ISR page
// had a tag revalidated, if we want to be a background
// revalidation instead we return data.lastModified = -1
if (isStale(cacheTags, data?.lastModified || Date.now())) {
return null
}
}
} else if (data?.value?.kind === CachedRouteKind.FETCH) {
const combinedTags =
ctx.kind === IncrementalCacheKind.FETCH
? [...(ctx.tags || []), ...(ctx.softTags || [])]
: []
const wasRevalidated = combinedTags.some((tag) => {
if (this.revalidatedTags.includes(tag)) {
return true
}
return isStale([tag], data?.lastModified || Date.now())
})
// When revalidate tag is called we don't return
// stale data so it's updated right away
if (wasRevalidated) {
data = undefined
}
}
return data ?? null
}
public async set(
key: string,
data: IncrementalCacheValue | null,
ctx: SetIncrementalFetchCacheContext | SetIncrementalResponseCacheContext
) {
FileSystemCache.memoryCache?.set(key, {
value: data,
lastModified: Date.now(),
})
if (FileSystemCache.debug) {
console.log('set', key)
}
if (!this.flushToDisk || !data) return
// Create a new writer that will prepare to write all the files to disk
// after their containing directory is created.
const writer = new MultiFileWriter(this.fs)
if (data.kind === CachedRouteKind.APP_ROUTE) {
const filePath = this.getFilePath(
`${key}.body`,
IncrementalCacheKind.APP_ROUTE
)
writer.append(filePath, data.body)
const meta: RouteMetadata = {
headers: data.headers,
status: data.status,
postponed: undefined,
segmentPaths: undefined,
}
writer.append(
filePath.replace(/\.body$/, NEXT_META_SUFFIX),
JSON.stringify(meta, null, 2)
)
} else if (
data.kind === CachedRouteKind.PAGES ||
data.kind === CachedRouteKind.APP_PAGE
) {
const isAppPath = data.kind === CachedRouteKind.APP_PAGE
const htmlPath = this.getFilePath(
`${key}.html`,
isAppPath ? IncrementalCacheKind.APP_PAGE : IncrementalCacheKind.PAGES
)
writer.append(htmlPath, data.html)
// Fallbacks don't generate a data file.
if (!ctx.fetchCache && !ctx.isFallback) {
writer.append(
this.getFilePath(
`${key}${
isAppPath
? ctx.isRoutePPREnabled
? RSC_PREFETCH_SUFFIX
: RSC_SUFFIX
: NEXT_DATA_SUFFIX
}`,
isAppPath
? IncrementalCacheKind.APP_PAGE
: IncrementalCacheKind.PAGES
),
isAppPath ? data.rscData! : JSON.stringify(data.pageData)
)
}
if (data?.kind === CachedRouteKind.APP_PAGE) {
let segmentPaths: string[] | undefined
if (data.segmentData) {
segmentPaths = []
const segmentsDir = htmlPath.replace(
/\.html$/,
RSC_SEGMENTS_DIR_SUFFIX
)
for (const [segmentPath, buffer] of data.segmentData) {
segmentPaths.push(segmentPath)
const segmentDataFilePath =
segmentsDir + segmentPath + RSC_SEGMENT_SUFFIX
writer.append(segmentDataFilePath, buffer)
}
}
const meta: RouteMetadata = {
headers: data.headers,
status: data.status,
postponed: data.postponed,
segmentPaths,
}
writer.append(
htmlPath.replace(/\.html$/, NEXT_META_SUFFIX),
JSON.stringify(meta)
)
}
} else if (data.kind === CachedRouteKind.FETCH) {
const filePath = this.getFilePath(key, IncrementalCacheKind.FETCH)
writer.append(
filePath,
JSON.stringify({
...data,
tags: ctx.fetchCache ? ctx.tags : [],
})
)
}
// Wait for all FS operations to complete.
await writer.wait()
}
private getFilePath(pathname: string, kind: IncrementalCacheKind): string {
switch (kind) {
case IncrementalCacheKind.FETCH:
// we store in .next/cache/fetch-cache so it can be persisted
// across deploys
return path.join(
this.serverDistDir,
'..',
'cache',
'fetch-cache',
pathname
)
case IncrementalCacheKind.PAGES:
return path.join(this.serverDistDir, 'pages', pathname)
case IncrementalCacheKind.IMAGE:
case IncrementalCacheKind.APP_PAGE:
case IncrementalCacheKind.APP_ROUTE:
return path.join(this.serverDistDir, 'app', pathname)
default:
throw new Error(`Unexpected file path kind: ${kind}`)
}
}
}
|