-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
buffer: convert offset & length to int properly #9492
Closed
Closed
Changes from all commits
Commits
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 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
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,21 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
|
||
function test(size, offset, length) { | ||
const arrayBuffer = new ArrayBuffer(size); | ||
|
||
const uint8Array = new Uint8Array(arrayBuffer, offset, length); | ||
for (let i = 0; i < length; i += 1) { | ||
uint8Array[i] = 1; | ||
} | ||
|
||
const buffer = Buffer.from(arrayBuffer, offset, length); | ||
for (let i = 0; i < length; i += 1) { | ||
assert.strictEqual(buffer[i], 1); | ||
} | ||
} | ||
|
||
test(200, 50, 100); | ||
test(8589934592 /* 1 << 40 */, 4294967296 /* 1 << 39 */, 1000); |
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,32 @@ | ||
// Flags: --expose-internals | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should probably test for a wider range of values. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done! |
||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const {toInteger} = require('internal/util'); | ||
|
||
const expectZero = [ | ||
'0', '-0', NaN, {}, [], {'a': 'b'}, [1, 2], '0x', '0o', '0b', false, | ||
'', ' ', undefined, null | ||
]; | ||
expectZero.forEach(function(value) { | ||
assert.strictEqual(toInteger(value), 0); | ||
}); | ||
|
||
assert.strictEqual(toInteger(Infinity), Infinity); | ||
assert.strictEqual(toInteger(-Infinity), -Infinity); | ||
|
||
const expectSame = [ | ||
'0x100', '0o100', '0b100', 0x100, -0x100, 0o100, -0o100, 0b100, -0b100, true | ||
]; | ||
expectSame.forEach(function(value) { | ||
assert.strictEqual(toInteger(value), +value, `${value} is not an Integer`); | ||
}); | ||
|
||
const expectIntegers = new Map([ | ||
[[1], 1], [[-1], -1], [['1'], 1], [['-1'], -1], | ||
[3.14, 3], [-3.14, -3], ['3.14', 3], ['-3.14', -3], | ||
]); | ||
expectIntegers.forEach(function(expected, value) { | ||
assert.strictEqual(toInteger(value), expected); | ||
}); |
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,35 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const {toLength} = require('internal/util'); | ||
const maxValue = Number.MAX_SAFE_INTEGER; | ||
|
||
const expectZero = [ | ||
'0', '-0', NaN, {}, [], {'a': 'b'}, [1, 2], '0x', '0o', '0b', false, | ||
'', ' ', undefined, null, -1, -1.25, -1.1, -1.9, -Infinity | ||
]; | ||
expectZero.forEach(function(value) { | ||
assert.strictEqual(toLength(value), 0); | ||
}); | ||
|
||
assert.strictEqual(toLength(maxValue - 1), maxValue - 1); | ||
assert.strictEqual(maxValue, maxValue); | ||
assert.strictEqual(toLength(Infinity), maxValue); | ||
assert.strictEqual(toLength(maxValue + 1), maxValue); | ||
|
||
|
||
[ | ||
'0x100', '0o100', '0b100', 0x100, -0x100, 0o100, -0o100, 0b100, -0b100, true | ||
].forEach(function(value) { | ||
assert.strictEqual(toLength(value), +value > 0 ? +value : 0); | ||
}); | ||
|
||
const expectIntegers = new Map([ | ||
[[1], 1], [[-1], 0], [['1'], 1], [['-1'], 0], | ||
[3.14, 3], [-3.14, 0], ['3.14', 3], ['-3.14', 0], | ||
]); | ||
expectIntegers.forEach(function(expected, value) { | ||
assert.strictEqual(toLength(value), expected); | ||
}); |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious why the step
If len is +∞, return 253-1.
is in there when themin()
operation makes it seem unnecessary. I can't see any difference if that condition is left out.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. In our implementation I omitted that, as
min
itself is sufficient.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@trevnorris I raised a PR tc39/ecma262#738. Let's see what tc39 people feel.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@trevnorris And it got merged :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thefourtheye excellent!