diff --git a/benchmark/fs/bench-writevSync.js b/benchmark/fs/bench-writevSync.js new file mode 100644 index 00000000000000..596359c6750011 --- /dev/null +++ b/benchmark/fs/bench-writevSync.js @@ -0,0 +1,55 @@ +'use strict'; + +const common = require('../common'); +const fs = require('fs'); +const assert = require('assert'); +const tmpdir = require('../../test/common/tmpdir'); +tmpdir.refresh(); + +const path = tmpdir.resolve(`new-file-${process.pid}`); +fs.writeFileSync(path, 'Some content.'); + +const bench = common.createBenchmark(main, { + type: ['valid', 'invalid'], + n: [1e5], +}); + +const buffer = Buffer.from('Benchmark data.'); + +function main({ n, type }) { + let fd; + let result; + + switch (type) { + case 'valid': + fd = fs.openSync(path, 'r+'); + + bench.start(); + for (let i = 0; i < n; i++) { + result = fs.writevSync(fd, [buffer]); + } + + bench.end(n); + assert(result); + fs.closeSync(fd); + break; + case 'invalid': { + fd = 1 << 30; + let hasError = false; + bench.start(); + for (let i = 0; i < n; i++) { + try { + result = fs.writevSync(fd, [buffer]); + } catch { + hasError = true; + } + } + + bench.end(n); + assert(hasError); + break; + } + default: + throw new Error('Invalid type'); + } +} diff --git a/lib/fs.js b/lib/fs.js index 5495da5f8f3c00..de1fd1f50929f5 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -996,15 +996,10 @@ function writevSync(fd, buffers, position) { return 0; } - const ctx = {}; - if (typeof position !== 'number') position = null; - const result = binding.writeBuffers(fd, buffers, position, undefined, ctx); - - handleErrorFromBinding(ctx); - return result; + return binding.writeBuffers(fd, buffers, position); } /** diff --git a/src/node_file.cc b/src/node_file.cc index 4dd18528671582..c79d3cc9da1b22 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -2238,18 +2238,29 @@ static void WriteBuffers(const FunctionCallbackInfo& args) { iovs[i] = uv_buf_init(Buffer::Data(chunk), Buffer::Length(chunk)); } - FSReqBase* req_wrap_async = GetReqWrap(args, 3); - if (req_wrap_async != nullptr) { // writeBuffers(fd, chunks, pos, req) + if (argc > 3) { // writeBuffers(fd, chunks, pos, req) + FSReqBase* req_wrap_async = GetReqWrap(args, 3); FS_ASYNC_TRACE_BEGIN0(UV_FS_WRITE, req_wrap_async) - AsyncCall(env, req_wrap_async, args, "write", UTF8, AfterInteger, - uv_fs_write, fd, *iovs, iovs.length(), pos); - } else { // writeBuffers(fd, chunks, pos, undefined, ctx) - CHECK_EQ(argc, 5); - FSReqWrapSync req_wrap_sync; + AsyncCall(env, + req_wrap_async, + args, + "write", + UTF8, + AfterInteger, + uv_fs_write, + fd, + *iovs, + iovs.length(), + pos); + } else { // writeBuffers(fd, chunks, pos) + FSReqWrapSync req_wrap_sync("write"); FS_SYNC_TRACE_BEGIN(write); - int bytesWritten = SyncCall(env, args[4], &req_wrap_sync, "write", - uv_fs_write, fd, *iovs, iovs.length(), pos); + int bytesWritten = SyncCallAndThrowOnError( + env, &req_wrap_sync, uv_fs_write, fd, *iovs, iovs.length(), pos); FS_SYNC_TRACE_END(write, "bytesWritten", bytesWritten); + if (is_uv_error(bytesWritten)) { + return; + } args.GetReturnValue().Set(bytesWritten); } }