-
Notifications
You must be signed in to change notification settings - Fork 7.3k
process.stdout does not use Buffer length property #8913
Comments
I wouldn't expect setting |
From the docs, for example:
http://nodejs.org/api/buffer.html#buffer_buf_tostring_encoding_start_end The statement for fill should be updated as well:
In fact, that language is even more confusing since it uses "entire buffer" to refer to the segment starting at index 0 and ending at index |
That's the documentation for the |
Both toString and fill clearly say they default to the buffer.length property. The fill documentation clearly refers to the "entire buffer" as the segment starting at 0 and ending at buffer.length. It's entirely possible that the length in |
Looking things over, unless I've missed something I think I'd have to agree with @SheetJSDev ... it appears that process.stdout is behaving incorrectly. |
It's undefined behavior because nowhere in the documentation does it say that modifying/changing the I'm guessing that on the C++ side your length change isn't being considered, which is not a bug IMO since it's undefined behavior. To do it right, instead, use |
@jasnell @TooTallNate the UB here stems from ambiguity in the streams documentation. For example: http://nodejs.org/api/stream.html#stream_writable_write_chunk_encoding_callback
The phrase "some data" is not well-defined here. A version of this method that only wrote the second character of a string or third byte of a Buffer would be consistent with the documentation. |
Changing Implementation information: |
As far as the documentation goes, ambiguity could be removed. I'll accept a PR that better explains those. |
@trevnorris if that's the intention, then why not just make it immutable like the string length? For example: |
Making a property read-only drastically increases the instantiation time of the object. One of the pitfalls of user-land V8 API. |
@trevnorris maybe set |
Per nodejs#8913 (comment) ... Indicate that changing the buffer.length property results in undefined/inconsistent behavior and should be avoided. Show an example of using buffer.slice to achieve achieve the goal properly.
Better wording for start and end parameters, also document .length should be considered readonly. RE: nodejs#8857, nodejs#8859, nodejs#8913 PR: nodejs#8910 PR-URL: nodejs#8910 Signed-off-by: Timothy J Fontaine <[email protected]>
Better wording for start and end parameters, also document .length should be considered readonly. RE: nodejs#8857, nodejs#8859, nodejs#8913 PR: nodejs#8910 PR-URL: nodejs#8910 Signed-off-by: Timothy J Fontaine <[email protected]>
Name anonymous arrow function in vm module to improve readability PR-URL: nodejs/node#9388 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Ref: nodejs#8913
PR-URL: nodejs/node#9389 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
As an example: start with a Buffer of length 6, fill it with 'A', shrink it to 3, then fill with 'B'.
If we then run
process.stdout.write(x);
, the output isBBBAAA
(which means that it is not using the buffer length property).This is inconsistent with other functions that use Buffers:
console.log(x)
shows<Buffer 42 42 42>
)console.log(x.toString())
showsBBB
)BBBBBB
)The text was updated successfully, but these errors were encountered: