Skip to content

Commit a6ddd4c

Browse files
review comments
1 parent e25c4de commit a6ddd4c

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

packages/next/src/server/stream-utils/node-web-streams-helper.ts

+16-5
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ function createHeadInsertionTransformStream(
202202
controller.enqueue(chunk)
203203
freezing = true
204204
} else {
205+
// TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.
205206
const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD)
206207
if (index !== -1) {
207208
const insertedHeadContent = new Uint8Array(
@@ -444,10 +445,22 @@ export function createRootLayoutValidatorStream(): TransformStream<
444445
> {
445446
let foundHtml = false
446447
let foundBody = false
447-
let content = new Uint8Array(0)
448+
let chunks: Uint8Array[] = []
449+
let size = 0
448450
return new TransformStream({
449451
async transform(chunk, controller) {
450-
content = concatUint8Arrays(content, chunk)
452+
chunks.push(chunk)
453+
size += chunk.length
454+
controller.enqueue(chunk)
455+
},
456+
flush(controller) {
457+
const content = new Uint8Array(size)
458+
let offset = 0
459+
for (const chunk of chunks) {
460+
content.set(chunk, offset)
461+
offset += chunk.length
462+
}
463+
451464
// Peek into the streamed chunk to see if the tags are present.
452465
if (!foundHtml || !foundBody) {
453466
if (
@@ -463,9 +476,7 @@ export function createRootLayoutValidatorStream(): TransformStream<
463476
foundBody = true
464477
}
465478
}
466-
controller.enqueue(chunk)
467-
},
468-
flush(controller) {
479+
469480
const missingTags: typeof window.__next_root_layout_missing_tags = []
470481
if (!foundHtml) missingTags.push('html')
471482
if (!foundBody) missingTags.push('body')

packages/next/src/server/stream-utils/uint8array-helpers.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
* Find the starting index of Uint8Array `b` within Uint8Array `a`.
33
*/
44
export function indexOfUint8Array(a: Uint8Array, b: Uint8Array) {
5-
if (a.length === 0 || b.length === 0 || b.length > a.length) return -1
5+
if (b.length === 0) return 0
6+
if (a.length === 0 || b.length > a.length) return -1
67

78
// start iterating through `a`
89
for (let i = 0; i <= a.length - b.length; i++) {
@@ -28,7 +29,13 @@ export function indexOfUint8Array(a: Uint8Array, b: Uint8Array) {
2829
* Check if two Uint8Arrays are strictly equivalent.
2930
*/
3031
export function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array) {
31-
return a.length === b.length && a.every((v, i) => v === b[i])
32+
if (a.length !== b.length) return false
33+
34+
for (let i = 0; i < a.length; i++) {
35+
if (a[i] !== b[i]) return false
36+
}
37+
38+
return true
3239
}
3340

3441
/**
@@ -40,6 +47,7 @@ export function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array) {
4047
*/
4148
export function removeFromUint8Array(a: Uint8Array, b: Uint8Array) {
4249
const tagIndex = indexOfUint8Array(a, b)
50+
if (tagIndex === 0) return a.subarray(b.length)
4351
if (tagIndex > -1) {
4452
const removed = new Uint8Array(a.length - b.length)
4553
removed.set(a.slice(0, tagIndex))

0 commit comments

Comments
 (0)