Skip to content

Commit 4242cb7

Browse files
anonrigtargos
authored andcommitted
fs: improve error performance of lchownSync
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 89e7878 commit 4242cb7

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

lib/fs.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -2010,9 +2010,11 @@ function lchownSync(path, uid, gid) {
20102010
path = getValidatedPath(path);
20112011
validateInteger(uid, 'uid', -1, kMaxUserId);
20122012
validateInteger(gid, 'gid', -1, kMaxUserId);
2013-
const ctx = { path };
2014-
binding.lchown(pathModule.toNamespacedPath(path), uid, gid, undefined, ctx);
2015-
handleErrorFromBinding(ctx);
2013+
binding.lchown(
2014+
pathModule.toNamespacedPath(path),
2015+
uid,
2016+
gid,
2017+
);
20162018
}
20172019

20182020
/**

src/node_file.cc

+5-7
Original file line numberDiff line numberDiff line change
@@ -2668,18 +2668,16 @@ static void LChown(const FunctionCallbackInfo<Value>& args) {
26682668
CHECK(IsSafeJsInt(args[2]));
26692669
const uv_gid_t gid = static_cast<uv_gid_t>(args[2].As<Integer>()->Value());
26702670

2671-
FSReqBase* req_wrap_async = GetReqWrap(args, 3);
2672-
if (req_wrap_async != nullptr) { // lchown(path, uid, gid, req)
2671+
if (argc > 3) { // lchown(path, uid, gid, req)
2672+
FSReqBase* req_wrap_async = GetReqWrap(args, 3);
26732673
FS_ASYNC_TRACE_BEGIN1(
26742674
UV_FS_LCHOWN, req_wrap_async, "path", TRACE_STR_COPY(*path))
26752675
AsyncCall(env, req_wrap_async, args, "lchown", UTF8, AfterNoArgs,
26762676
uv_fs_lchown, *path, uid, gid);
2677-
} else { // lchown(path, uid, gid, undefined, ctx)
2678-
CHECK_EQ(argc, 5);
2679-
FSReqWrapSync req_wrap_sync;
2677+
} else { // lchown(path, uid, gid)
2678+
FSReqWrapSync req_wrap_sync("lchown", *path);
26802679
FS_SYNC_TRACE_BEGIN(lchown);
2681-
SyncCall(env, args[4], &req_wrap_sync, "lchown",
2682-
uv_fs_lchown, *path, uid, gid);
2680+
SyncCallAndThrowOnError(env, &req_wrap_sync, uv_fs_lchown, *path, uid, gid);
26832681
FS_SYNC_TRACE_END(lchown);
26842682
}
26852683
}

typings/internalBinding/fs.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ declare namespace InternalFSBinding {
117117
function lchown(path: string, uid: number, gid: number, req: FSReqCallback): void;
118118
function lchown(path: string, uid: number, gid: number, req: undefined, ctx: FSSyncContext): void;
119119
function lchown(path: string, uid: number, gid: number, usePromises: typeof kUsePromises): Promise<void>;
120+
function lchown(path: string, uid: number, gid: number): void;
120121

121122
function link(existingPath: string, newPath: string, req: FSReqCallback): void;
122123
function link(existingPath: string, newPath: string, req: undefined, ctx: FSSyncContext): void;

0 commit comments

Comments
 (0)