fs: throw readSync errors in JS
PR-URL: https://github.com/nodejs/node/pull/19041 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
7cadb57e0c
commit
c6acfdb3ac
@ -577,7 +577,11 @@ fs.readSync = function(fd, buffer, offset, length, position) {
|
|||||||
if (!isUint32(position))
|
if (!isUint32(position))
|
||||||
position = -1;
|
position = -1;
|
||||||
|
|
||||||
return binding.read(fd, buffer, offset, length, position);
|
const ctx = {};
|
||||||
|
const result = binding.read(fd, buffer, offset, length, position,
|
||||||
|
undefined, ctx);
|
||||||
|
handleErrorFromBinding(ctx);
|
||||||
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
// usage:
|
// usage:
|
||||||
|
@ -110,7 +110,7 @@ using v8::Value;
|
|||||||
# define MIN(a, b) ((a) < (b) ? (a) : (b))
|
# define MIN(a, b) ((a) < (b) ? (a) : (b))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define GET_OFFSET(a) ((a)->IsNumber() ? (a)->IntegerValue() : -1)
|
#define GET_OFFSET(a) ((a)->IsNumber() ? (a).As<Integer>()->Value() : -1)
|
||||||
|
|
||||||
// The FileHandle object wraps a file descriptor and will close it on garbage
|
// The FileHandle object wraps a file descriptor and will close it on garbage
|
||||||
// collection if necessary. If that happens, a process warning will be
|
// collection if necessary. If that happens, a process warning will be
|
||||||
@ -1411,51 +1411,50 @@ static void WriteString(const FunctionCallbackInfo<Value>& args) {
|
|||||||
*
|
*
|
||||||
* bytesRead = fs.read(fd, buffer, offset, length, position)
|
* bytesRead = fs.read(fd, buffer, offset, length, position)
|
||||||
*
|
*
|
||||||
* 0 fd integer. file descriptor
|
* 0 fd int32. file descriptor
|
||||||
* 1 buffer instance of Buffer
|
* 1 buffer instance of Buffer
|
||||||
* 2 offset integer. offset to start reading into inside buffer
|
* 2 offset int32. offset to start reading into inside buffer
|
||||||
* 3 length integer. length to read
|
* 3 length int32. length to read
|
||||||
* 4 position file position - null for current position
|
* 4 position int64. file position - -1 for current position
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
static void Read(const FunctionCallbackInfo<Value>& args) {
|
static void Read(const FunctionCallbackInfo<Value>& args) {
|
||||||
Environment* env = Environment::GetCurrent(args);
|
Environment* env = Environment::GetCurrent(args);
|
||||||
|
|
||||||
|
const int argc = args.Length();
|
||||||
|
CHECK_GE(argc, 5);
|
||||||
|
|
||||||
CHECK(args[0]->IsInt32());
|
CHECK(args[0]->IsInt32());
|
||||||
|
const int fd = args[0].As<Int32>()->Value();
|
||||||
|
|
||||||
CHECK(Buffer::HasInstance(args[1]));
|
CHECK(Buffer::HasInstance(args[1]));
|
||||||
|
|
||||||
int fd = args[0]->Int32Value();
|
|
||||||
|
|
||||||
Local<Value> req;
|
|
||||||
|
|
||||||
size_t len;
|
|
||||||
int64_t pos;
|
|
||||||
|
|
||||||
char * buf = nullptr;
|
|
||||||
|
|
||||||
Local<Object> buffer_obj = args[1].As<Object>();
|
Local<Object> buffer_obj = args[1].As<Object>();
|
||||||
char *buffer_data = Buffer::Data(buffer_obj);
|
char* buffer_data = Buffer::Data(buffer_obj);
|
||||||
size_t buffer_length = Buffer::Length(buffer_obj);
|
size_t buffer_length = Buffer::Length(buffer_obj);
|
||||||
|
|
||||||
size_t off = args[2]->Int32Value();
|
CHECK(args[2]->IsInt32());
|
||||||
|
const size_t off = static_cast<size_t>(args[2].As<Int32>()->Value());
|
||||||
CHECK_LT(off, buffer_length);
|
CHECK_LT(off, buffer_length);
|
||||||
|
|
||||||
len = args[3]->Int32Value();
|
CHECK(args[3]->IsInt32());
|
||||||
|
const size_t len = static_cast<size_t>(args[3].As<Int32>()->Value());
|
||||||
CHECK(Buffer::IsWithinBounds(off, len, buffer_length));
|
CHECK(Buffer::IsWithinBounds(off, len, buffer_length));
|
||||||
|
|
||||||
pos = GET_OFFSET(args[4]);
|
CHECK(args[4]->IsNumber());
|
||||||
|
const int64_t pos = args[4].As<Integer>()->Value();
|
||||||
buf = buffer_data + off;
|
|
||||||
|
|
||||||
|
char* buf = buffer_data + off;
|
||||||
uv_buf_t uvbuf = uv_buf_init(const_cast<char*>(buf), len);
|
uv_buf_t uvbuf = uv_buf_init(const_cast<char*>(buf), len);
|
||||||
|
|
||||||
FSReqBase* req_wrap = GetReqWrap(env, args[5]);
|
FSReqBase* req_wrap = GetReqWrap(env, args[5]);
|
||||||
if (req_wrap != nullptr) {
|
if (req_wrap != nullptr) { // read(fd, buffer, offset, len, pos, req)
|
||||||
AsyncCall(env, req_wrap, args, "read", UTF8, AfterInteger,
|
AsyncCall(env, req_wrap, args, "read", UTF8, AfterInteger,
|
||||||
uv_fs_read, fd, &uvbuf, 1, pos);
|
uv_fs_read, fd, &uvbuf, 1, pos);
|
||||||
} else {
|
} else { // read(fd, buffer, offset, len, pos, undefined, ctx)
|
||||||
SYNC_CALL(read, 0, fd, &uvbuf, 1, pos)
|
CHECK_EQ(argc, 7);
|
||||||
args.GetReturnValue().Set(SYNC_RESULT);
|
fs_req_wrap req_wrap;
|
||||||
|
const int bytesRead = SyncCall(env, args[6], &req_wrap, "read",
|
||||||
|
uv_fs_read, fd, &uvbuf, 1, pos);
|
||||||
|
args.GetReturnValue().Set(bytesRead);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -708,3 +708,24 @@ if (!common.isAIX) {
|
|||||||
validateError
|
validateError
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// read
|
||||||
|
{
|
||||||
|
const validateError = (err) => {
|
||||||
|
assert.strictEqual(err.message, 'EBADF: bad file descriptor, read');
|
||||||
|
assert.strictEqual(err.errno, uv.UV_EBADF);
|
||||||
|
assert.strictEqual(err.code, 'EBADF');
|
||||||
|
assert.strictEqual(err.syscall, 'read');
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
common.runWithInvalidFD((fd) => {
|
||||||
|
const buf = Buffer.alloc(5);
|
||||||
|
fs.read(fd, buf, 0, 1, 1, common.mustCall(validateError));
|
||||||
|
|
||||||
|
assert.throws(
|
||||||
|
() => fs.readSync(fd, buf, 0, 1, 1),
|
||||||
|
validateError
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user