Skip to content

Commit af6a061

Browse files
anonrigtargos
authored andcommitted
fs: improve error performance of readlinkSync
PR-URL: #49962 Refs: nodejs/performance#106 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Vinícius Lourenço Claro Cardoso <[email protected]>
1 parent 12cda31 commit af6a061

File tree

4 files changed

+69
-19
lines changed

4 files changed

+69
-19
lines changed

benchmark/fs/bench-readlinkSync.js

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const fs = require('fs');
5+
const assert = require('assert');
6+
const tmpdir = require('../../test/common/tmpdir');
7+
8+
if (process.platform === 'win32') {
9+
console.log('Skipping: Windows does not play well with `symlinkSync`');
10+
process.exit(0);
11+
}
12+
13+
const bench = common.createBenchmark(main, {
14+
type: ['valid', 'invalid'],
15+
n: [1e3],
16+
});
17+
18+
function main({ n, type }) {
19+
switch (type) {
20+
case 'valid': {
21+
tmpdir.refresh();
22+
const tmpfile = tmpdir.resolve(`.readlink-file-${process.pid}`);
23+
fs.writeFileSync(tmpfile, 'data', 'utf8');
24+
let returnValue;
25+
for (let i = 0; i < n; i++) {
26+
fs.symlinkSync(tmpfile, tmpdir.resolve(`.readlink-sync-${i}`), 'file');
27+
}
28+
bench.start();
29+
for (let i = 0; i < n; i++) {
30+
returnValue = fs.readlinkSync(tmpdir.resolve(`.readlink-sync-${i}`), { encoding: 'utf8' });
31+
}
32+
bench.end(n);
33+
assert(returnValue);
34+
break;
35+
}
36+
37+
case 'invalid': {
38+
let hasError = false;
39+
bench.start();
40+
for (let i = 0; i < n; i++) {
41+
try {
42+
fs.readlinkSync(tmpdir.resolve('.non-existing-file-for-readlinkSync'));
43+
} catch {
44+
hasError = true;
45+
}
46+
}
47+
bench.end(n);
48+
assert(hasError);
49+
break;
50+
}
51+
default:
52+
new Error('Invalid type');
53+
}
54+
}

lib/fs.js

+5-8
Original file line numberDiff line numberDiff line change
@@ -1726,11 +1726,10 @@ function readlink(path, options, callback) {
17261726
function readlinkSync(path, options) {
17271727
options = getOptions(options);
17281728
path = getValidatedPath(path, 'oldPath');
1729-
const ctx = { path };
1730-
const result = binding.readlink(pathModule.toNamespacedPath(path),
1731-
options.encoding, undefined, ctx);
1732-
handleErrorFromBinding(ctx);
1733-
return result;
1729+
return binding.readlink(
1730+
pathModule.toNamespacedPath(path),
1731+
options.encoding,
1732+
);
17341733
}
17351734

17361735
/**
@@ -2712,10 +2711,8 @@ function realpathSync(p, options) {
27122711
}
27132712
}
27142713
if (linkTarget === null) {
2715-
const ctx = { path: base };
27162714
binding.stat(baseLong, false, undefined, true);
2717-
linkTarget = binding.readlink(baseLong, undefined, undefined, ctx);
2718-
handleErrorFromBinding(ctx);
2715+
linkTarget = binding.readlink(baseLong, undefined);
27192716
}
27202717
resolvedLink = pathModule.resolve(previous, linkTarget);
27212718

src/node_file.cc

+9-11
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ static void ReadLink(const FunctionCallbackInfo<Value>& args) {
14181418
Isolate* isolate = env->isolate();
14191419

14201420
const int argc = args.Length();
1421-
CHECK_GE(argc, 3);
1421+
CHECK_GE(argc, 2);
14221422

14231423
BufferValue path(isolate, args[0]);
14241424
CHECK_NOT_NULL(*path);
@@ -1427,21 +1427,20 @@ static void ReadLink(const FunctionCallbackInfo<Value>& args) {
14271427

14281428
const enum encoding encoding = ParseEncoding(isolate, args[1], UTF8);
14291429

1430-
FSReqBase* req_wrap_async = GetReqWrap(args, 2);
1431-
if (req_wrap_async != nullptr) { // readlink(path, encoding, req)
1430+
if (argc > 2) { // readlink(path, encoding, req)
1431+
FSReqBase* req_wrap_async = GetReqWrap(args, 2);
14321432
FS_ASYNC_TRACE_BEGIN1(
14331433
UV_FS_READLINK, req_wrap_async, "path", TRACE_STR_COPY(*path))
14341434
AsyncCall(env, req_wrap_async, args, "readlink", encoding, AfterStringPtr,
14351435
uv_fs_readlink, *path);
1436-
} else {
1437-
CHECK_EQ(argc, 4);
1438-
FSReqWrapSync req_wrap_sync;
1436+
} else { // readlink(path, encoding)
1437+
FSReqWrapSync req_wrap_sync("readlink", *path);
14391438
FS_SYNC_TRACE_BEGIN(readlink);
1440-
int err = SyncCall(env, args[3], &req_wrap_sync, "readlink",
1441-
uv_fs_readlink, *path);
1439+
int err =
1440+
SyncCallAndThrowOnError(env, &req_wrap_sync, uv_fs_readlink, *path);
14421441
FS_SYNC_TRACE_END(readlink);
14431442
if (err < 0) {
1444-
return; // syscall failed, no need to continue, error info is in ctx
1443+
return;
14451444
}
14461445
const char* link_path = static_cast<const char*>(req_wrap_sync.req.ptr);
14471446

@@ -1451,8 +1450,7 @@ static void ReadLink(const FunctionCallbackInfo<Value>& args) {
14511450
encoding,
14521451
&error);
14531452
if (rc.IsEmpty()) {
1454-
Local<Object> ctx = args[3].As<Object>();
1455-
ctx->Set(env->context(), env->error_string(), error).Check();
1453+
env->isolate()->ThrowException(error);
14561454
return;
14571455
}
14581456

typings/internalBinding/fs.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ declare namespace InternalFSBinding {
178178
function readlink(path: StringOrBuffer, encoding: unknown, req: FSReqCallback<string | Buffer>): void;
179179
function readlink(path: StringOrBuffer, encoding: unknown, req: undefined, ctx: FSSyncContext): string | Buffer;
180180
function readlink(path: StringOrBuffer, encoding: unknown, usePromises: typeof kUsePromises): Promise<string | Buffer>;
181+
function readlink(path: StringOrBuffer, encoding: unknown): StringOrBuffer;
181182

182183
function realpath(path: StringOrBuffer, encoding: unknown, req: FSReqCallback<string | Buffer>): void;
183184
function realpath(path: StringOrBuffer, encoding: unknown, req: undefined, ctx: FSSyncContext): string | Buffer;

0 commit comments

Comments
 (0)