Skip to content

Commit 57eb06e

Browse files
andremralvestargos
authored andcommitted
fs: improve error performance for ftruncateSync
PR-URL: #50032 Refs: nodejs/performance#106 Reviewed-By: Yagiz Nizipli <[email protected]>
1 parent 545aa74 commit 57eb06e

File tree

3 files changed

+46
-10
lines changed

3 files changed

+46
-10
lines changed

benchmark/fs/bench-ftruncateSync.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const fs = require('fs');
5+
const tmpdir = require('../../test/common/tmpdir');
6+
tmpdir.refresh();
7+
8+
const path = tmpdir.resolve(`new-file-${process.pid}`);
9+
fs.appendFileSync(path, 'Some content.');
10+
11+
const bench = common.createBenchmark(main, {
12+
type: ['invalid', 'valid'],
13+
n: [1e4],
14+
});
15+
16+
function main({ n, type }) {
17+
let fd;
18+
19+
switch (type) {
20+
case 'invalid':
21+
fd = 1 << 30;
22+
break;
23+
case 'valid':
24+
fd = fs.openSync(path, 'r+');
25+
break;
26+
default:
27+
throw new Error('Invalid type');
28+
}
29+
30+
bench.start();
31+
for (let i = 0; i < n; i++) {
32+
try {
33+
fs.ftruncateSync(fd, 4);
34+
} catch {
35+
// do nothing
36+
}
37+
}
38+
bench.end(n);
39+
if (type === 'valid') fs.closeSync(fd);
40+
}

lib/fs.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1136,9 +1136,7 @@ function ftruncateSync(fd, len = 0) {
11361136
fd = getValidatedFd(fd);
11371137
validateInteger(len, 'len');
11381138
len = MathMax(0, len);
1139-
const ctx = {};
1140-
binding.ftruncate(fd, len, undefined, ctx);
1141-
handleErrorFromBinding(ctx);
1139+
binding.ftruncate(fd, len);
11421140
}
11431141

11441142
function lazyLoadCp() {

src/node_file.cc

+5-7
Original file line numberDiff line numberDiff line change
@@ -1509,25 +1509,23 @@ static void FTruncate(const FunctionCallbackInfo<Value>& args) {
15091509
Environment* env = Environment::GetCurrent(args);
15101510

15111511
const int argc = args.Length();
1512-
CHECK_GE(argc, 3);
1512+
CHECK_GE(argc, 2);
15131513

15141514
CHECK(args[0]->IsInt32());
15151515
const int fd = args[0].As<Int32>()->Value();
15161516

15171517
CHECK(IsSafeJsInt(args[1]));
15181518
const int64_t len = args[1].As<Integer>()->Value();
15191519

1520-
FSReqBase* req_wrap_async = GetReqWrap(args, 2);
1521-
if (req_wrap_async != nullptr) {
1520+
if (argc > 2) {
1521+
FSReqBase* req_wrap_async = GetReqWrap(args, 2);
15221522
FS_ASYNC_TRACE_BEGIN0(UV_FS_FTRUNCATE, req_wrap_async)
15231523
AsyncCall(env, req_wrap_async, args, "ftruncate", UTF8, AfterNoArgs,
15241524
uv_fs_ftruncate, fd, len);
15251525
} else {
1526-
CHECK_EQ(argc, 4);
1527-
FSReqWrapSync req_wrap_sync;
1526+
FSReqWrapSync req_wrap_sync("ftruncate");
15281527
FS_SYNC_TRACE_BEGIN(ftruncate);
1529-
SyncCall(env, args[3], &req_wrap_sync, "ftruncate", uv_fs_ftruncate, fd,
1530-
len);
1528+
SyncCallAndThrowOnError(env, &req_wrap_sync, uv_fs_ftruncate, fd, len);
15311529
FS_SYNC_TRACE_END(ftruncate);
15321530
}
15331531
}

0 commit comments

Comments
 (0)