-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: improve
buffer.transcode
performance
PR-URL: #54153 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
2 changed files
with
79 additions
and
63 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
'use strict'; | ||
const common = require('../common.js'); | ||
const assert = require('node:assert'); | ||
const buffer = require('node:buffer'); | ||
|
||
const hasIntl = !!process.config.variables.v8_enable_i18n_support; | ||
const encodings = ['latin1', 'ascii', 'ucs2', 'utf8']; | ||
|
||
if (!hasIntl) { | ||
console.log('Skipping: `transcode` is only available on platforms that support i18n`'); | ||
process.exit(0); | ||
} | ||
|
||
const bench = common.createBenchmark(main, { | ||
fromEncoding: encodings, | ||
toEncoding: encodings, | ||
length: [1, 10, 1000], | ||
n: [1e5], | ||
}, { | ||
combinationFilter(p) { | ||
return !(p.fromEncoding === 'ucs2' && p.toEncoding === 'utf8'); | ||
}, | ||
}); | ||
|
||
function main({ n, fromEncoding, toEncoding, length }) { | ||
const input = Buffer.from('a'.repeat(length)); | ||
let out = 0; | ||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
const dest = buffer.transcode(input, fromEncoding, toEncoding); | ||
out += dest.buffer.byteLength; | ||
} | ||
bench.end(n); | ||
assert.ok(out >= 0); | ||
} |
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