-
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.
fs: improve error performance of readvSync
PR-URL: #50100 Refs: nodejs/performance#106 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
- Loading branch information
1 parent
4957994
commit 27b2ce5
Showing
3 changed files
with
67 additions
and
11 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,58 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const fs = require('fs'); | ||
const assert = require('assert'); | ||
const tmpdir = require('../../test/common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
const exptectedBuff = Buffer.from('Benchmark Data'); | ||
const expectedLength = exptectedBuff.length; | ||
|
||
const bufferArr = [Buffer.alloc(expectedLength)]; | ||
|
||
const filename = tmpdir.resolve('readv_sync.txt'); | ||
fs.writeFileSync(filename, exptectedBuff); | ||
|
||
const bench = common.createBenchmark(main, { | ||
type: ['valid', 'invalid'], | ||
n: [1e5], | ||
}); | ||
|
||
function main({ n, type }) { | ||
let fd; | ||
let result; | ||
|
||
switch (type) { | ||
case 'valid': | ||
fd = fs.openSync(filename, 'r'); | ||
|
||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
result = fs.readvSync(fd, bufferArr, 0); | ||
} | ||
|
||
bench.end(n); | ||
assert.strictEqual(result, expectedLength); | ||
fs.closeSync(fd); | ||
break; | ||
case 'invalid': { | ||
fd = 1 << 30; | ||
let hasError = false; | ||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
try { | ||
result = fs.readvSync(fd, bufferArr, 0); | ||
} catch { | ||
hasError = true; | ||
} | ||
} | ||
|
||
bench.end(n); | ||
assert(hasError); | ||
break; | ||
} | ||
default: | ||
throw new Error('Invalid type'); | ||
} | ||
} |
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
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