forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: move WebAssembly Web API into separate file
Refs: nodejs#42960 (comment)
- Loading branch information
Showing
3 changed files
with
69 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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 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,66 @@ | ||
'use strict'; | ||
|
||
const { | ||
PromiseResolve | ||
} = primordials; | ||
const { | ||
ERR_INVALID_ARG_TYPE, | ||
ERR_WEBASSEMBLY_RESPONSE, | ||
} = require('internal/errors').codes; | ||
|
||
let undici; | ||
function lazyUndici() { | ||
return undici || (undici = require('internal/deps/undici/undici')); | ||
} | ||
|
||
// This is essentially an implementation of a v8::WasmStreamingCallback, except | ||
// that it is implemented in JavaScript because the fetch() implementation is | ||
// difficult to use from C++. See lib/internal/bootstrap/pre_execution.js and | ||
// src/node_wasm_web_api.cc that interact with this function. | ||
function wasmStreamingCallback(streamState, source) { | ||
(async () => { | ||
const response = await PromiseResolve(source); | ||
if (!(response instanceof lazyUndici().Response)) { | ||
throw new ERR_INVALID_ARG_TYPE( | ||
'source', ['Response', 'Promise resolving to Response'], response); | ||
} | ||
|
||
const contentType = response.headers.get('Content-Type'); | ||
if (contentType !== 'application/wasm') { | ||
throw new ERR_WEBASSEMBLY_RESPONSE( | ||
`has unsupported MIME type '${contentType}'`); | ||
} | ||
|
||
if (!response.ok) { | ||
throw new ERR_WEBASSEMBLY_RESPONSE( | ||
`has status code ${response.status}`); | ||
} | ||
|
||
if (response.bodyUsed !== false) { | ||
throw new ERR_WEBASSEMBLY_RESPONSE('body has already been used'); | ||
} | ||
|
||
if (response.url) { | ||
streamState.setURL(response.url); | ||
} | ||
|
||
// Pass all data from the response body to the WebAssembly compiler. | ||
const { body } = response; | ||
if (body != null) { | ||
for await (const chunk of body) { | ||
streamState.push(chunk); | ||
} | ||
} | ||
})().then(() => { | ||
// No error occurred. Tell the implementation that the stream has ended. | ||
streamState.finish(); | ||
}, (err) => { | ||
// An error occurred, either because the given object was not a valid | ||
// and usable Response or because a network error occurred. | ||
streamState.abort(err); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
wasmStreamingCallback | ||
}; |
This file contains 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