Skip to content

Commit 1227128

Browse files
committedJul 5, 2023
fs: add a fast-path for readFileSync utf-8
1 parent 6fda81d commit 1227128

File tree

6 files changed

+101
-5
lines changed

6 files changed

+101
-5
lines changed
 

‎benchmark/fs/readFileSync.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@ const common = require('../common.js');
44
const fs = require('fs');
55

66
const bench = common.createBenchmark(main, {
7-
n: [60e4],
7+
encoding: ['undefined', 'utf8'],
8+
path: ['existing', 'non-existing'],
9+
n: [60e1],
810
});
911

10-
function main({ n }) {
12+
function main({ n, encoding, path }) {
13+
const enc = encoding === 'undefined' ? undefined : encoding;
14+
const file = path === 'existing' ? __filename : '/tmp/not-found';
1115
bench.start();
12-
for (let i = 0; i < n; ++i)
13-
fs.readFileSync(__filename);
16+
for (let i = 0; i < n; ++i) {
17+
try {
18+
fs.readFileSync(file, enc);
19+
} catch {
20+
// do nothing
21+
}
22+
}
1423
bench.end(n);
1524
}

‎lib/fs.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ const {
142142
validateObject,
143143
validateString,
144144
} = require('internal/validators');
145+
const { readFileSyncUtf8 } = require('internal/fs/read-file/utf8');
145146

146147
let truncateWarn = true;
147148
let fs;
@@ -380,7 +381,7 @@ function checkAborted(signal, callback) {
380381
function readFile(path, options, callback) {
381382
callback = maybeCallback(callback || options);
382383
options = getOptions(options, { flag: 'r' });
383-
const ReadFileContext = require('internal/fs/read_file_context');
384+
const ReadFileContext = require('internal/fs/read-file/context');
384385
const context = new ReadFileContext(callback, options.encoding);
385386
context.isUserFd = isFd(path); // File descriptor ownership
386387

@@ -457,7 +458,14 @@ function tryReadSync(fd, isUserFd, buffer, pos, len) {
457458
*/
458459
function readFileSync(path, options) {
459460
options = getOptions(options, { flag: 'r' });
461+
460462
const isUserFd = isFd(path); // File descriptor ownership
463+
464+
// TODO: Do not handle file descriptor ownership for now.
465+
if (!isUserFd && options.encoding === 'utf8') {
466+
return readFileSyncUtf8(path);
467+
}
468+
461469
const fd = isUserFd ? path : fs.openSync(path, options.flag, 0o666);
462470

463471
const stats = tryStatSync(fd, isUserFd);
File renamed without changes.

‎lib/internal/fs/read-file/utf8.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
'use strict';
2+
3+
const { handleErrorFromBinding } = require('internal/fs/utils');
4+
const { toPathIfFileURL } = require('internal/url');
5+
6+
const binding = internalBinding('fs');
7+
8+
/**
9+
* @param {string | URL} path
10+
* @return {string}
11+
*/
12+
function readFileSyncUtf8(path) {
13+
const response = binding.readFileSync(toPathIfFileURL(path));
14+
15+
if (typeof response === 'string') {
16+
return response;
17+
}
18+
19+
handleErrorFromBinding({ errno: response });
20+
}
21+
22+
module.exports = {
23+
readFileSyncUtf8,
24+
};

‎src/node_file.cc

+54
Original file line numberDiff line numberDiff line change
@@ -1963,6 +1963,58 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {
19631963
}
19641964
}
19651965

1966+
static void ReadFileSync(const FunctionCallbackInfo<Value>& args) {
1967+
Environment* env = Environment::GetCurrent(args);
1968+
1969+
CHECK_GE(args.Length(), 1);
1970+
1971+
BufferValue path(env->isolate(), args[0]);
1972+
CHECK_NOT_NULL(*path);
1973+
1974+
uv_fs_t req;
1975+
auto defer_req_cleanup = OnScopeLeave([&req]() { uv_fs_req_cleanup(&req); });
1976+
1977+
uv_file file = uv_fs_open(nullptr, &req, *path, O_RDONLY, 0, nullptr);
1978+
if (req.result < 0) {
1979+
// req will be cleaned up by scope leave.
1980+
return args.GetReturnValue().Set(
1981+
v8::Integer::New(env->isolate(), req.result));
1982+
}
1983+
uv_fs_req_cleanup(&req);
1984+
1985+
auto defer_close = OnScopeLeave([file]() {
1986+
uv_fs_t close_req;
1987+
CHECK_EQ(0, uv_fs_close(nullptr, &close_req, file, nullptr));
1988+
uv_fs_req_cleanup(&close_req);
1989+
});
1990+
1991+
std::string result{};
1992+
char buffer[4096];
1993+
uv_buf_t buf = uv_buf_init(buffer, sizeof(buffer));
1994+
size_t read_characters;
1995+
1996+
while (true) {
1997+
read_characters =
1998+
uv_fs_read(nullptr, &req, file, &buf, 1, result.size(), nullptr);
1999+
if (req.result < 0) {
2000+
// req will be cleaned up by scope leave.
2001+
return args.GetReturnValue().Set(
2002+
v8::Integer::New(env->isolate(), req.result));
2003+
}
2004+
uv_fs_req_cleanup(&req);
2005+
if (read_characters <= 0) {
2006+
break;
2007+
}
2008+
result.append(buf.base, read_characters);
2009+
}
2010+
2011+
args.GetReturnValue().Set(String::NewFromUtf8(env->isolate(),
2012+
result.data(),
2013+
v8::NewStringType::kNormal,
2014+
result.size())
2015+
.ToLocalChecked());
2016+
}
2017+
19662018
static inline Maybe<void> CheckOpenPermissions(Environment* env,
19672019
const BufferValue& path,
19682020
int flags) {
@@ -3149,6 +3201,7 @@ static void CreatePerIsolateProperties(IsolateData* isolate_data,
31493201
SetMethod(isolate, target, "stat", Stat);
31503202
SetMethod(isolate, target, "lstat", LStat);
31513203
SetMethod(isolate, target, "fstat", FStat);
3204+
SetMethodNoSideEffect(isolate, target, "readFileSync", ReadFileSync);
31523205
SetMethod(isolate, target, "statfs", StatFs);
31533206
SetMethod(isolate, target, "link", Link);
31543207
SetMethod(isolate, target, "symlink", Symlink);
@@ -3266,6 +3319,7 @@ void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
32663319
registry->Register(Stat);
32673320
registry->Register(LStat);
32683321
registry->Register(FStat);
3322+
registry->Register(ReadFileSync);
32693323
registry->Register(StatFs);
32703324
registry->Register(Link);
32713325
registry->Register(Symlink);

‎test/parallel/test-bootstrap-modules.js

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ const expectedModules = new Set([
7474
'NativeModule internal/webstreams/queuingstrategies',
7575
'NativeModule internal/blob',
7676
'NativeModule internal/fs/utils',
77+
'NativeModule internal/fs/read-file/utf8',
7778
'NativeModule fs',
7879
'Internal Binding options',
7980
'NativeModule internal/options',

0 commit comments

Comments
 (0)