-
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 for
readSync
PR-URL: #50033 Refs: nodejs/performance#106 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
- Loading branch information
Showing
4 changed files
with
71 additions
and
13 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,57 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const fs = require('fs'); | ||
const tmpdir = require('../../test/common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
const bufferSize = 1024; | ||
const sectorSize = 512; | ||
|
||
const bench = common.createBenchmark(main, { | ||
type: ['existing', 'non-existing'], | ||
n: [1e4], | ||
}); | ||
|
||
function main({ n, type }) { | ||
let fd; | ||
|
||
const tmpfile = { name: tmpdir.resolve(`.existing-file-${process.pid}`), | ||
len: bufferSize * n }; | ||
|
||
|
||
tmpfile.contents = Buffer.allocUnsafe(tmpfile.len); | ||
|
||
for (let offset = 0; offset < tmpfile.len; offset += sectorSize) { | ||
const fillByte = 256 * Math.random(); | ||
const nBytesToFill = Math.min(sectorSize, tmpfile.len - offset); | ||
tmpfile.contents.fill(fillByte, offset, offset + nBytesToFill); | ||
} | ||
|
||
fs.writeFileSync(tmpfile.name, tmpfile.contents); | ||
|
||
switch (type) { | ||
case 'existing': | ||
fd = fs.openSync(tmpfile.name, 'r', 0o666); | ||
break; | ||
case 'non-existing': | ||
fd = 1 << 30; | ||
break; | ||
default: | ||
new Error('Invalid type'); | ||
} | ||
|
||
const buffer = Buffer.alloc(bufferSize); | ||
|
||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
try { | ||
fs.readSync(fd, buffer); | ||
} catch { | ||
// Continue regardless of error. | ||
} | ||
} | ||
bench.end(n); | ||
|
||
if (type === 'existing') fs.closeSync(fd); | ||
} |
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
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