真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Node.jsBuffer用法解讀

Buffer是什么?

創(chuàng)新互聯(lián)制作網(wǎng)站網(wǎng)頁找三站合一網(wǎng)站制作公司,專注于網(wǎng)頁設(shè)計,成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè),網(wǎng)站設(shè)計,企業(yè)網(wǎng)站搭建,網(wǎng)站開發(fā),建網(wǎng)站業(yè)務,680元做網(wǎng)站,已為上千家服務,創(chuàng)新互聯(lián)網(wǎng)站建設(shè)將一如既往的為我們的客戶提供最優(yōu)質(zhì)的網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷推廣服務!

Buffer作為存在于全局對象上,無需引入模塊即可使用,你絕對不可以忽略它。

可以理解Buffer是在內(nèi)存中開辟的一片區(qū)域,用于存放二進制數(shù)據(jù)。Buffer所開辟的是堆外內(nèi)存。

Buffer的應用場景有哪些?

怎么理解流呢?流是數(shù)據(jù)的集合(與數(shù)據(jù)、字符串類似),但是流的數(shù)據(jù)不能一次性獲取到,數(shù)據(jù)也不會全部load到內(nèi)存中,因此流非常適合大數(shù)據(jù)處理以及斷斷續(xù)續(xù)返回chunk的外部源。流的生產(chǎn)者與消費者之間的速度通常是不一致的,因此需要buffer來暫存一些數(shù)據(jù)。buffer大小通過highWaterMark參數(shù)指定,默認情況下是16Kb。

存儲需要占用大量內(nèi)存的數(shù)據(jù)

Buffer 對象占用的內(nèi)存空間是不計算在 Node.js 進程內(nèi)存空間限制上的,所以可以用來存儲大對象,但是對象的大小還是有限制的。一般情況下32位系統(tǒng)大約是1G,64位系統(tǒng)大約是2G。

如何創(chuàng)建Buffer

除了流自動隱式創(chuàng)建Buffer之外,也可以手動創(chuàng)建Buffer,方式如下:

Buffer中存儲的數(shù)據(jù)已確定

Buffer.from(obj)  // obj支持的類型string, buffer, arrayBuffer, array, or array-like object

注意:Buffer.from不支持傳入數(shù)字,如下所示:

Buffer.from(1234);

buffer.js:208
  throw new errors.TypeError(
  ^

TypeError [ERR_INVALID_ARG_TYPE]: The "value" argument must not be of type number. Received type number
  at Function.from (buffer.js:208:11)
  ...

若要傳入數(shù)字可以采用傳入數(shù)組的方式:

const buf = Buffer.from([1, 2, 3, 4]);
console.log(buf); // 

但是這種方式存在一個問題,當存入不同的數(shù)值的時候buffer中記錄的二進制數(shù)據(jù)會相同,如下所示:

const buf2 = Buffer.from([127, -1]);
console.log(buf2);   // 

const buf3 = Buffer.from([127, 255]);
console.log(buf3);  // 

console.log(buf3.equals(buf2)); // true

當要記錄的一組數(shù)全部落在0到255(readUInt8來讀取)這個范圍, 或者全部落在-128到127(readInt8來讀?。┻@個范圍那么就沒有問題,否則的話就強烈不推薦使用Buffer.from來保存一組數(shù)。因為不同的數(shù)字讀取時應該調(diào)用不同的方法。

Buffer存儲數(shù)據(jù)未確定

Buffer.alloc、Buffer.allocUnsafe、Buffer.allocUnsafeSlow

Buffer.alloc會用0值填充已分配的內(nèi)存,所以相比后兩者速度上要慢,但是也較為安全。當然也可以通過--zero-fill-buffers flag使allocUnsafe、allocUnsafeSlow在分配完內(nèi)存后也進行0值填充。

node --zero-fill-buffers index.js

當分配的空間小于4KB的時候,allocUnsafe會直接從之前預分配的Buffer里面slice空間,因此速度比allocUnsafeSlow要快,當大于等于4KB的時候二者速度相差無異。

// 分配空間等于4KB
function createBuffer(fn, size) {
 console.time('buf-' + fn);
 for (var i = 0; i < 100000; i++) {
  Buffer[fn](size);
 }
 console.timeEnd('buf-' + fn);
}
createBuffer('alloc', 4096);
createBuffer('allocUnsafe', 4096);
createBuffer('allocUnsafeSlow', 4096);

// 輸出
buf-alloc:      294.002ms
buf-allocUnsafe:   224.072ms
buf-allocUnsafeSlow: 209.22ms

function createBuffer(fn, size) {
 console.time('buf-' + fn);
 for (var i = 0; i < 100000; i++) {
  Buffer[fn](size);
 }
 console.timeEnd('buf-' + fn);
}
createBuffer('alloc', 4095);
createBuffer('allocUnsafe', 4095);
createBuffer('allocUnsafeSlow', 4095);
// 輸出
buf-alloc:      296.965ms
buf-allocUnsafe:   135.877ms
buf-allocUnsafeSlow: 205.225ms

需要謹記一點:new Buffer(xxxx) 方式已經(jīng)不推薦使用了

Buffer使用

buffer轉(zhuǎn)字符串

const buf = Buffer.from('test');
console.log(buf.toString('utf8'));         // test
console.log(buf.toString('utf8', 0, 2));      // te

buffer轉(zhuǎn)json

const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
console.log(buf.toJSON());  // { type: 'Buffer', data: [ 1, 2, 3, 4, 5 ] }

buffer裁剪,裁剪后返回的新的buffer與原buffer指向同一塊內(nèi)存

buf.slice([start[, end]])
  1. start 起始位置
  2. end 結(jié)束位置(不包含)

示例:

var buf1 = Buffer.from('test');
var buf2 = buf1.slice(1, 3).fill('xx');
console.log("buf2 content: " + buf2.toString()); // xx
console.log("buf1 content: " + buf1.toString()); // txxt

buffer拷貝,buffer與數(shù)組不同,buffer的長度一旦確定就不再變化,因此當拷貝的源buffer比目標buffer大時只會復制部分的值

buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])

示例:

var buf1 = Buffer.from('abcdefghijkl');
var buf2 = Buffer.from('ABCDEF');

buf1.copy(buf2, 1);
console.log(buf2.toString()); //Abcdef

buffer相等判斷,比較的是二進制值

buf.equals(otherBuffer)

示例:

const buf1 = Buffer.from('ABC');
const buf2 = Buffer.from('414243', 'hex'); 
console.log(buf1.equals(buf2));  // true

除了equals之外,compare其實也可以用于判斷是否相等(當結(jié)果為0則相等),不過compare更主要的作用是用于對數(shù)組內(nèi)的buffer實例排序。

buffer是否包含特定值

buf.includes(value[, byteOffset][, encoding])
buf.indexOf(value[, byteOffset][, encoding])

示例:

const buf = Buffer.from('this is a buffer');
console.log(buf.includes('this')); // true
console.log(buf.indexOf('this')); // 0

寫入讀取數(shù)值

寫入方法:

位數(shù)固定且超過1個字節(jié)的: write{Double| Float | Int16 | Int32|  UInt16 | UInt32 }{BE|LE}(value, offset)

位數(shù)不固定的: write{Int | UInt}{BE | LE}(value, offset, bytelength) //此方法提供了更靈活的位數(shù)表示數(shù)據(jù)(比如3位、5位)

位數(shù)固定是1個字節(jié)的:     write{Int8 | Unit8}(value, offset)

讀取方法:

位數(shù)固定且超過1個字節(jié)的: read{Double| Float | Int16 | Int32 | UInt16 | UInt32 }{BE|LE}(offset)

位數(shù)不固定的:  read{Int | UInt}{BE | LE}(offset, byteLength)

位數(shù)固定是1個字節(jié)的: read{Int8 | Unit8}(offset)

Double、Float、Int16、Int32、UInt16、UInt32既確定了表征數(shù)字的位數(shù),也確定了是否包含負數(shù),因此定義了不同的數(shù)據(jù)范圍。同時由于表征數(shù)字的位數(shù)都超過8位,無法用一個字節(jié)來表示,因此就涉及到了計算機的字節(jié)序區(qū)分(大端字節(jié)序與小端字節(jié)序)

關(guān)于大端小端的區(qū)別可以這么理解:數(shù)值的高位在buffer的起始位置的是大端,數(shù)值的低位buffer的起始位置則是小端

const buf = Buffer.allocUnsafe(2);
buf.writeInt16BE(256, 0) 
console.log(buf);      //  
buf.writeInt16LE(256, 0)
console.log(buf);      // 

http://tools.jb51.net/transcoding/hexconvert這里可以查看數(shù)值的不同進制之間的轉(zhuǎn)換,如果是大端的話,則直接按順序(0100)拼接16進制即可,如果是小端則需要調(diào)換一下順序才是正確的表示方式。

buffer合并

Buffer.concat(list[, totalLength]) //totalLength不是必須的,如果不提供的話會為了計算totalLength會多一次遍歷

const buf1 = Buffer.from('this is');
const buf2 = Buffer.from(' funny');
console.log(Buffer.concat([buf1, buf2], buf1.length + buf2.length));
// 

清空buffer

清空buffer數(shù)據(jù)最快的辦法是buffer.fill(0)

buffer模塊與Buffer的關(guān)系

Buffer是全局global上的一個引用,指向的其實是buffer.Buffer

 const buffer = require('buffer');
 console.log(buffer.Buffer === Buffer); //true

buffer模塊上還有其他一些屬性和方法

const buffer = require('buffer');
console.log(buffer);
{ Buffer:
  { [Function: Buffer]
   poolSize: 8192,
   from: [Function: from],
   alloc: [Function: alloc],
   allocUnsafe: [Function: allocUnsafe],
   allocUnsafeSlow: [Function: allocUnsafeSlow],
   isBuffer: [Function: isBuffer],
   compare: [Function: compare],
   isEncoding: [Function: isEncoding],
   concat: [Function: concat],
   byteLength: [Function: byteLength],
   [Symbol(node.isEncoding)]: [Function: isEncoding] },
 SlowBuffer: [Function: SlowBuffer],
 transcode: [Function: transcode],
 INSPECT_MAX_BYTES: 50,
 kMaxLength: 2147483647,
 kStringMaxLength: 1073741799,
 constants: { MAX_LENGTH: 2147483647, MAX_STRING_LENGTH: 1073741799 } }

上面的kMaxLength與MAX_LENGTH代表了新建buffer時內(nèi)存大小的最大值,當超過限制值后就會報錯

32為機器上是(2^30)-1(~1GB)

64位機器上是(2^31)-1(~2GB)

Buffer釋放

我們無法手動對buffer實例進行GC,只能依靠V8來進行,我們唯一能做的就是解除對buffer實例的引用

參考資料

http://cenalulu.github.io/linux/character-encoding/
https://www.jb51.net/article/31045.htm
http://edu.jb51.net/nodejs/nodejs-buffer.html

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


本文標題:Node.jsBuffer用法解讀
網(wǎng)頁鏈接:http://weahome.cn/article/ijidpc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部