-
-
Notifications
You must be signed in to change notification settings - Fork 33.2k
buffer: introduce Blob #36811
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
buffer: introduce Blob #36811
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,238 @@ | ||
'use strict'; | ||
|
||
const { | ||
ArrayFrom, | ||
ObjectSetPrototypeOf, | ||
Promise, | ||
PromiseResolve, | ||
RegExpPrototypeTest, | ||
StringPrototypeToLowerCase, | ||
Symbol, | ||
SymbolIterator, | ||
Uint8Array, | ||
} = primordials; | ||
|
||
const { | ||
createBlob, | ||
FixedSizeBlobCopyJob, | ||
} = internalBinding('buffer'); | ||
|
||
const { | ||
JSTransferable, | ||
kClone, | ||
kDeserialize, | ||
} = require('internal/worker/js_transferable'); | ||
|
||
const { | ||
isAnyArrayBuffer, | ||
isArrayBufferView, | ||
} = require('internal/util/types'); | ||
|
||
const { | ||
customInspectSymbol: kInspect, | ||
emitExperimentalWarning, | ||
} = require('internal/util'); | ||
const { inspect } = require('internal/util/inspect'); | ||
|
||
const { | ||
AbortError, | ||
codes: { | ||
ERR_INVALID_ARG_TYPE, | ||
ERR_BUFFER_TOO_LARGE, | ||
ERR_OUT_OF_RANGE, | ||
} | ||
} = require('internal/errors'); | ||
|
||
const { | ||
validateObject, | ||
validateString, | ||
validateUint32, | ||
isUint32, | ||
} = require('internal/validators'); | ||
|
||
const kHandle = Symbol('kHandle'); | ||
const kType = Symbol('kType'); | ||
const kLength = Symbol('kLength'); | ||
|
||
let Buffer; | ||
|
||
function deferred() { | ||
let res, rej; | ||
const promise = new Promise((resolve, reject) => { | ||
res = resolve; | ||
rej = reject; | ||
}); | ||
return { promise, resolve: res, reject: rej }; | ||
} | ||
|
||
function lazyBuffer() { | ||
if (Buffer === undefined) | ||
Buffer = require('buffer').Buffer; | ||
return Buffer; | ||
} | ||
|
||
function isBlob(object) { | ||
return object?.[kHandle] !== undefined; | ||
} | ||
|
||
function getSource(source, encoding) { | ||
if (isBlob(source)) | ||
return [source.size, source[kHandle]]; | ||
|
||
if (typeof source === 'string') { | ||
source = lazyBuffer().from(source, encoding); | ||
} else if (isAnyArrayBuffer(source)) { | ||
source = new Uint8Array(source); | ||
} else if (!isArrayBufferView(source)) { | ||
throw new ERR_INVALID_ARG_TYPE( | ||
'source', | ||
[ | ||
'string', | ||
'ArrayBuffer', | ||
'SharedArrayBuffer', | ||
'Buffer', | ||
'TypedArray', | ||
'DataView' | ||
], | ||
source); | ||
} | ||
|
||
// We copy into a new Uint8Array because the underlying | ||
// BackingStores are going to be detached and owned by | ||
// the Blob. We also don't want to have to worry about | ||
// byte offsets. | ||
source = new Uint8Array(source); | ||
return [source.byteLength, source]; | ||
} | ||
|
||
class InternalBlob extends JSTransferable { | ||
constructor(handle, length, type = '') { | ||
super(); | ||
this[kHandle] = handle; | ||
this[kType] = type; | ||
this[kLength] = length; | ||
} | ||
} | ||
|
||
class Blob extends JSTransferable { | ||
constructor(sources = [], options) { | ||
emitExperimentalWarning('buffer.Blob'); | ||
if (sources === null || | ||
typeof sources[SymbolIterator] !== 'function' || | ||
typeof sources === 'string') { | ||
throw new ERR_INVALID_ARG_TYPE('sources', 'Iterable', sources); | ||
} | ||
if (options !== undefined) | ||
validateObject(options, 'options'); | ||
const { | ||
encoding = 'utf8', | ||
type = '', | ||
} = { ...options }; | ||
|
||
let length = 0; | ||
const sources_ = ArrayFrom(sources, (source) => { | ||
const { 0: len, 1: src } = getSource(source, encoding); | ||
length += len; | ||
return src; | ||
}); | ||
|
||
// This is a MIME media type but we're not actively checking the syntax. | ||
// But, to be fair, neither does Chrome. | ||
validateString(type, 'options.type'); | ||
jasnell marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if (!isUint32(length)) | ||
throw new ERR_BUFFER_TOO_LARGE(0xFFFFFFFF); | ||
|
||
super(); | ||
this[kHandle] = createBlob(sources_, length); | ||
this[kLength] = length; | ||
this[kType] = RegExpPrototypeTest(/[^\u{0020}-\u{007E}]/u, type) ? | ||
'' : StringPrototypeToLowerCase(type); | ||
} | ||
|
||
[kInspect](depth, options) { | ||
if (depth < 0) | ||
return this; | ||
|
||
const opts = { | ||
...options, | ||
depth: options.depth == null ? null : options.depth - 1 | ||
}; | ||
|
||
return `Blob ${inspect({ | ||
size: this.size, | ||
type: this.type, | ||
}, opts)}`; | ||
} | ||
|
||
[kClone]() { | ||
const handle = this[kHandle]; | ||
const type = this[kType]; | ||
const length = this[kLength]; | ||
return { | ||
data: { handle, type, length }, | ||
deserializeInfo: 'internal/blob:InternalBlob' | ||
}; | ||
} | ||
|
||
[kDeserialize]({ handle, type, length }) { | ||
this[kHandle] = handle; | ||
this[kType] = type; | ||
this[kLength] = length; | ||
} | ||
|
||
get type() { return this[kType]; } | ||
|
||
get size() { return this[kLength]; } | ||
|
||
slice(start = 0, end = (this[kLength]), type = this[kType]) { | ||
validateUint32(start, 'start'); | ||
if (end < 0) end = this[kLength] + end; | ||
validateUint32(end, 'end'); | ||
validateString(type, 'type'); | ||
if (end < start) | ||
throw new ERR_OUT_OF_RANGE('end', 'greater than start', end); | ||
if (end > this[kLength]) | ||
throw new ERR_OUT_OF_RANGE('end', 'less than or equal to length', end); | ||
return new InternalBlob( | ||
this[kHandle].slice(start, end), | ||
end - start, type); | ||
} | ||
|
||
async arrayBuffer() { | ||
const job = new FixedSizeBlobCopyJob(this[kHandle]); | ||
|
||
const ret = job.run(); | ||
if (ret !== undefined) | ||
return PromiseResolve(ret); | ||
|
||
const { | ||
promise, | ||
resolve, | ||
reject | ||
} = deferred(); | ||
job.ondone = (err, ab) => { | ||
if (err !== undefined) | ||
return reject(new AbortError()); | ||
resolve(ab); | ||
}; | ||
|
||
return promise; | ||
} | ||
|
||
async text() { | ||
const dec = new TextDecoder(); | ||
return dec.decode(await this.arrayBuffer()); | ||
} | ||
} | ||
|
||
InternalBlob.prototype.constructor = Blob; | ||
ObjectSetPrototypeOf( | ||
InternalBlob.prototype, | ||
Blob.prototype); | ||
|
||
module.exports = { | ||
Blob, | ||
InternalBlob, | ||
isBlob, | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.