mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
85ab4a5f12
Several changes: * Soft-Deprecate Buffer() constructors * Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()` * Add `--zero-fill-buffers` command line option * Add byteOffset and length to `new Buffer(arrayBuffer)` constructor * buffer.fill('') previously had no effect, now zero-fills * Update the docs PR-URL: https://github.com/nodejs/node/pull/4682 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const HTTPParser = process.binding('http_parser').HTTPParser;
|
|
const REQUEST = HTTPParser.REQUEST;
|
|
const kOnHeaders = HTTPParser.kOnHeaders | 0;
|
|
const kOnHeadersComplete = HTTPParser.kOnHeadersComplete | 0;
|
|
const kOnBody = HTTPParser.kOnBody | 0;
|
|
const kOnMessageComplete = HTTPParser.kOnMessageComplete | 0;
|
|
const CRLF = '\r\n';
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
fields: [4, 8, 16, 32],
|
|
n: [1e5],
|
|
});
|
|
|
|
|
|
function main(conf) {
|
|
const fields = conf.fields >>> 0;
|
|
const n = conf.n >>> 0;
|
|
var header = `GET /hello HTTP/1.1${CRLF}Content-Type: text/plain${CRLF}`;
|
|
|
|
for (var i = 0; i < fields; i++) {
|
|
header += `X-Filler${i}: ${Math.random().toString(36).substr(2)}${CRLF}`;
|
|
}
|
|
header += CRLF;
|
|
|
|
processHeader(Buffer.from(header), n);
|
|
}
|
|
|
|
|
|
function processHeader(header, n) {
|
|
const parser = newParser(REQUEST);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
parser.execute(header, 0, header.length);
|
|
parser.reinitialize(REQUEST);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|
|
|
|
function newParser(type) {
|
|
const parser = new HTTPParser(type);
|
|
|
|
parser.headers = [];
|
|
|
|
parser[kOnHeaders] = function() { };
|
|
parser[kOnHeadersComplete] = function() { };
|
|
parser[kOnBody] = function() { };
|
|
parser[kOnMessageComplete] = function() { };
|
|
|
|
return parser;
|
|
}
|