admin管理员组文章数量:1342504
Say I have a simple Buffer in Node.js like so:
const bytes = Buffer.from('abcdefg');
this buffer instance has slice
and concat
as methods, but I am really not sure how to use these to basically create the functionality of pop/shift/splice of an array.
here are the Buffer docs: .html
What I am basically looking to do is read/remove the first X number of bytes, like so:
function read(x){
// return the first x number of bytes from buffer
// and remove those bytes from the buffer
// side-effects be damned for the moment
}
here's what I have but it seems pretty "wrong" to me even though it also seems to work:
let items = Buffer.from('abcdefg');
function read(x){
const b = items.slice(0,x);
items = items.slice(x,items.length);
return b;
}
console.log(String(read(4)));
console.log(String(items));
Is there a better way to do this?
also, I am not sure if read is the right word, but pop would connote an array...what's the right word to use the describe what this function does?
Say I have a simple Buffer in Node.js like so:
const bytes = Buffer.from('abcdefg');
this buffer instance has slice
and concat
as methods, but I am really not sure how to use these to basically create the functionality of pop/shift/splice of an array.
here are the Buffer docs: https://nodejs/api/buffer.html
What I am basically looking to do is read/remove the first X number of bytes, like so:
function read(x){
// return the first x number of bytes from buffer
// and remove those bytes from the buffer
// side-effects be damned for the moment
}
here's what I have but it seems pretty "wrong" to me even though it also seems to work:
let items = Buffer.from('abcdefg');
function read(x){
const b = items.slice(0,x);
items = items.slice(x,items.length);
return b;
}
console.log(String(read(4)));
console.log(String(items));
Is there a better way to do this?
also, I am not sure if read is the right word, but pop would connote an array...what's the right word to use the describe what this function does?
Share Improve this question edited Jan 16, 2017 at 3:21 Alexander Mills asked Jan 16, 2017 at 1:58 Alexander MillsAlexander Mills 100k166 gold badges537 silver badges916 bronze badges1 Answer
Reset to default 14 +50From the Node.js v10.x API docs (bolded by me):
Instances of the Buffer class are similar to arrays of integers but correspond to fixed-sized, raw memory allocations outside the V8 heap. The size of the Buffer is established when it is created and cannot be resized.
Which is why there is no .pop()
method for Buffer
because it isn't an operation for something that is fixed-size in nature unlike an array. Same goes for shift
and splice
. You can't extend the already allocated Buffer
but you can create new ones.
Using .slice()
won't give you a new Buffer
, instead, returns a subset of the memory occupied by the original Buffer
. While that approach works, there could be a possibility that some other variable still references the original Buffer
in which case, modifications made to the subset you got from .slice()
could carry over to the original Buffer
as well.
Given the nature of Buffer
and the kind of operations you seem to want, it's best to first convert items
into a string. You can then perform all the operations you mentioned by splitting using .split('')
. Once you're done, you can join the split string and create a new Buffer
using Buffer.from(string)
and assign it back to items
. This way, your code will be much more clear.
本文标签: javascriptCanonical way to remove multiple bytes from bufferStack Overflow
版权声明:本文标题:javascript - Canonical way to remove multiple bytes from buffer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701814a2524451.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论