mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
src: stop using deprecated fields of v8::FastApiCallbackOptions
Two fields on the `v8::FastApiCallbackOptions` struct were deprecated recently: `fallback` and `wasm_memory`. This PR removes uses of these two fields in node.js. PR-URL: https://github.com/nodejs/node/pull/54077 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
This commit is contained in:
parent
64e8646618
commit
f0134fa6c3
@ -13,6 +13,7 @@ namespace node {
|
||||
using v8::FastApiCallbackOptions;
|
||||
using v8::FastApiTypedArray;
|
||||
using v8::FunctionCallbackInfo;
|
||||
using v8::HandleScope;
|
||||
using v8::Local;
|
||||
using v8::Object;
|
||||
using v8::Value;
|
||||
@ -59,7 +60,8 @@ bool FastTimingSafeEqual(Local<Value> receiver,
|
||||
if (a.length() != b.length() || !a.getStorageIfAligned(&data_a) ||
|
||||
!b.getStorageIfAligned(&data_b)) {
|
||||
TRACK_V8_FAST_API_CALL("crypto.timingSafeEqual.error");
|
||||
options.fallback = true;
|
||||
HandleScope scope(options.isolate);
|
||||
THROW_ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH(options.isolate);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -14,6 +14,7 @@ using v8::Context;
|
||||
using v8::FastApiCallbackOptions;
|
||||
using v8::FunctionCallbackInfo;
|
||||
using v8::FunctionTemplate;
|
||||
using v8::HandleScope;
|
||||
using v8::Integer;
|
||||
using v8::Isolate;
|
||||
using v8::Local;
|
||||
@ -193,7 +194,8 @@ void HistogramBase::FastRecord(Local<Value> receiver,
|
||||
const int64_t value,
|
||||
FastApiCallbackOptions& options) {
|
||||
if (value < 1) {
|
||||
options.fallback = true;
|
||||
HandleScope scope(options.isolate);
|
||||
THROW_ERR_OUT_OF_RANGE(options.isolate, "value is out of range");
|
||||
return;
|
||||
}
|
||||
HistogramBase* histogram;
|
||||
|
@ -1057,14 +1057,12 @@ static int32_t FastInternalModuleStat(
|
||||
const FastOneByteString& input,
|
||||
// NOLINTNEXTLINE(runtime/references) This is V8 api.
|
||||
FastApiCallbackOptions& options) {
|
||||
Environment* env = Environment::GetCurrent(recv->GetCreationContextChecked());
|
||||
Environment* env = Environment::GetCurrent(options.isolate);
|
||||
HandleScope scope(env->isolate());
|
||||
|
||||
auto path = std::filesystem::path(input.data, input.data + input.length);
|
||||
if (UNLIKELY(!env->permission()->is_granted(
|
||||
env, permission::PermissionScope::kFileSystemRead, path.string()))) {
|
||||
options.fallback = true;
|
||||
return -1;
|
||||
}
|
||||
THROW_IF_INSUFFICIENT_PERMISSIONS(
|
||||
env, permission::PermissionScope::kFileSystemRead, path.string(), -1);
|
||||
|
||||
switch (std::filesystem::status(path).type()) {
|
||||
case std::filesystem::file_type::directory:
|
||||
|
@ -35,6 +35,7 @@ using v8::Exception;
|
||||
using v8::FastApiCallbackOptions;
|
||||
using v8::FunctionCallbackInfo;
|
||||
using v8::FunctionTemplate;
|
||||
using v8::HandleScope;
|
||||
using v8::Integer;
|
||||
using v8::Isolate;
|
||||
using v8::Local;
|
||||
@ -248,17 +249,18 @@ R WASI::WasiFunction<FT, F, R, Args...>::FastCallback(
|
||||
WASI* wasi = reinterpret_cast<WASI*>(BaseObject::FromJSObject(receiver));
|
||||
if (UNLIKELY(wasi == nullptr)) return EinvalError<R>();
|
||||
|
||||
if (UNLIKELY(options.wasm_memory == nullptr || wasi->memory_.IsEmpty())) {
|
||||
// fallback to slow path which to throw an error about missing memory.
|
||||
options.fallback = true;
|
||||
Isolate* isolate = receiver->GetIsolate();
|
||||
HandleScope scope(isolate);
|
||||
if (wasi->memory_.IsEmpty()) {
|
||||
THROW_ERR_WASI_NOT_STARTED(isolate);
|
||||
return EinvalError<R>();
|
||||
}
|
||||
uint8_t* memory = nullptr;
|
||||
CHECK(LIKELY(options.wasm_memory->getStorageIfAligned(&memory)));
|
||||
Local<ArrayBuffer> ab = wasi->memory_.Get(isolate)->Buffer();
|
||||
size_t mem_size = ab->ByteLength();
|
||||
char* mem_data = static_cast<char*>(ab->Data());
|
||||
CHECK_NOT_NULL(mem_data);
|
||||
|
||||
return F(*wasi,
|
||||
{reinterpret_cast<char*>(memory), options.wasm_memory->length()},
|
||||
args...);
|
||||
return F(*wasi, {mem_data, mem_size}, args...);
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
Loading…
Reference in New Issue
Block a user