0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-03-10 14:06:53 -04:00
rusty-v8/src/binding.cc

864 lines
28 KiB
C++
Raw Normal View History

2019-12-18 07:37:13 -05:00
#include <cassert>
#include <cstdint>
#include <iostream>
#include "support.h"
#include "v8/include/libplatform/libplatform.h"
#include "v8/include/v8-inspector.h"
#include "v8/include/v8-platform.h"
#include "v8/include/v8.h"
using namespace support;
static_assert(sizeof(v8::ScriptOrigin) == sizeof(size_t) * 7,
2019-12-18 07:37:13 -05:00
"ScriptOrigin size mismatch");
static_assert(sizeof(v8::HandleScope) == sizeof(size_t) * 3,
2019-12-18 07:37:13 -05:00
"HandleScope size mismatch");
2019-12-22 15:05:39 +01:00
static_assert(sizeof(v8::EscapableHandleScope) == sizeof(size_t) * 4,
"EscapableHandleScope size mismatch");
2019-12-19 14:13:33 +01:00
static_assert(sizeof(v8::PromiseRejectMessage) == sizeof(size_t) * 3,
"PromiseRejectMessage size mismatch");
static_assert(sizeof(v8::Locker) == sizeof(size_t) * 2, "Locker size mismatch");
static_assert(sizeof(v8::ScriptCompiler::Source) == sizeof(size_t) * 8,
"Source size mismatch");
2019-12-20 18:16:44 +01:00
static_assert(sizeof(v8::ReturnValue<v8::Value>) == sizeof(size_t) * 1,
"ReturnValue size mismatch");
2019-12-21 00:28:08 +01:00
static_assert(sizeof(v8::TryCatch) == sizeof(size_t) * 6,
"TryCatch size mismatch");
static_assert(sizeof(v8::Location) == sizeof(size_t) * 1,
"Location size mismatch");
static_assert(sizeof(v8::SnapshotCreator) == sizeof(size_t) * 1,
"SnapshotCreator size mismatch");
2019-12-18 07:37:13 -05:00
extern "C" {
2019-12-18 14:36:54 +01:00
void v8__V8__SetFlagsFromCommandLine(int* argc, char** argv) {
v8::V8::SetFlagsFromCommandLine(argc, argv, true);
2019-12-18 07:37:13 -05:00
}
const char* v8__V8__GetVersion() { return v8::V8::GetVersion(); }
2019-12-18 07:37:13 -05:00
void v8__V8__InitializePlatform(v8::Platform& platform) {
v8::V8::InitializePlatform(&platform);
2019-12-18 07:37:13 -05:00
}
void v8__V8__Initialize() { v8::V8::Initialize(); }
2019-12-18 07:37:13 -05:00
bool v8__V8__Dispose() { return v8::V8::Dispose(); }
2019-12-18 07:37:13 -05:00
void v8__V8__ShutdownPlatform() { v8::V8::ShutdownPlatform(); }
2019-12-18 07:37:13 -05:00
// This function consumes the Isolate::CreateParams object. The Isolate takes
// ownership of the ArrayBuffer::Allocator referenced by the params object.
v8::Isolate* v8__Isolate__New(v8::Isolate::CreateParams& params) {
auto isolate = v8::Isolate::New(params);
2019-12-18 07:37:13 -05:00
delete &params;
return isolate;
}
void v8__Isolate__Dispose(v8::Isolate* isolate) {
auto allocator = isolate->GetArrayBufferAllocator();
isolate->Dispose();
2019-12-18 07:37:13 -05:00
delete allocator;
}
void v8__Isolate__Enter(v8::Isolate* isolate) { isolate->Enter(); }
2019-12-18 07:37:13 -05:00
void v8__Isolate__Exit(v8::Isolate* isolate) { isolate->Exit(); }
2019-12-18 07:37:13 -05:00
void v8__Isolate__SetPromiseRejectCallback(v8::Isolate* isolate,
2019-12-19 14:13:33 +01:00
v8::PromiseRejectCallback callback) {
isolate->SetPromiseRejectCallback(callback);
2019-12-19 14:13:33 +01:00
}
void v8__Isolate__SetCaptureStackTraceForUncaughtExceptions(
v8::Isolate* isolate, bool capture, int frame_limit) {
// Note: StackTraceOptions are deprecated so we don't bother to bind to it.
isolate->SetCaptureStackTraceForUncaughtExceptions(capture, frame_limit);
}
bool v8__Isolate__AddMessageListener(v8::Isolate& isolate,
v8::MessageCallback callback) {
return isolate.AddMessageListener(callback);
}
2019-12-23 08:16:01 -05:00
v8::Value* v8__Isolate__ThrowException(v8::Isolate& isolate,
v8::Value* exception) {
return local_to_ptr(isolate.ThrowException(ptr_to_local(exception)));
}
v8::Isolate::CreateParams* v8__Isolate__CreateParams__NEW() {
return new v8::Isolate::CreateParams();
2019-12-18 07:37:13 -05:00
}
// This function is only called if the Isolate::CreateParams object is *not*
// consumed by Isolate::New().
void v8__Isolate__CreateParams__DELETE(v8::Isolate::CreateParams& self) {
2019-12-18 07:37:13 -05:00
delete self.array_buffer_allocator;
delete &self;
}
// This function takes ownership of the ArrayBuffer::Allocator.
void v8__Isolate__CreateParams__SET__array_buffer_allocator(
v8::Isolate::CreateParams& self, v8::ArrayBuffer::Allocator* value) {
2019-12-18 07:37:13 -05:00
delete self.array_buffer_allocator;
self.array_buffer_allocator = value;
}
// This function does not take ownership of the StartupData.
void v8__Isolate__CreateParams__SET__snapshot_blob(
v8::Isolate::CreateParams& self, v8::StartupData* snapshot_blob) {
self.snapshot_blob = snapshot_blob;
}
void v8__HandleScope__CONSTRUCT(uninit_t<v8::HandleScope>& buf,
v8::Isolate* isolate) {
construct_in_place<v8::HandleScope>(buf, isolate);
2019-12-18 07:37:13 -05:00
}
void v8__HandleScope__DESTRUCT(v8::HandleScope& self) { self.~HandleScope(); }
2019-12-18 07:37:13 -05:00
v8::Isolate* v8__HandleScope__GetIsolate(const v8::HandleScope& self) {
2019-12-18 07:37:13 -05:00
return self.GetIsolate();
}
2019-12-22 15:05:39 +01:00
void v8__EscapableHandleScope__CONSTRUCT(
uninit_t<v8::EscapableHandleScope>& buf, v8::Isolate* isolate) {
construct_in_place<v8::EscapableHandleScope>(buf, isolate);
}
void v8__EscapableHandleScope__DESTRUCT(v8::EscapableHandleScope& self) {
self.~EscapableHandleScope();
}
v8::Value* v8__EscapableHandleScope__Escape(v8::EscapableHandleScope& self,
v8::Local<v8::Value> value) {
return local_to_ptr(self.Escape(value));
}
v8::Isolate* v8__EscapableHandleScope__GetIsolate(
const v8::EscapableHandleScope& self) {
return self.GetIsolate();
}
void v8__Locker__CONSTRUCT(uninit_t<v8::Locker>& buf, v8::Isolate* isolate) {
construct_in_place<v8::Locker>(buf, isolate);
2019-12-18 07:37:13 -05:00
}
void v8__Locker__DESTRUCT(v8::Locker& self) { self.~Locker(); }
2019-12-18 07:37:13 -05:00
v8::Value* v8__Local__New(v8::Isolate* isolate, v8::Value* other) {
return local_to_ptr(v8::Local<v8::Value>::New(isolate, ptr_to_local(other)));
}
v8::Value* v8__Global__New(v8::Isolate* isolate, v8::Value* other) {
auto global = v8::Global<v8::Value>(isolate, ptr_to_local(other));
return global_to_ptr(global);
}
void v8__Global__Reset__0(v8::Value*& self) {
auto global = ptr_to_global(self);
global.Reset();
self = global_to_ptr(global);
}
void v8__Global__Reset__2(v8::Value*& self, v8::Isolate* isolate,
v8::Value* const& other) {
auto global = ptr_to_global(self);
global.Reset(isolate, ptr_to_local(other));
self = global_to_ptr(global);
}
void v8__ScriptCompiler__Source__CONSTRUCT(
uninit_t<v8::ScriptCompiler::Source>& buf, v8::String* source_string,
v8::ScriptOrigin& origin) {
construct_in_place<v8::ScriptCompiler::Source>(
buf, ptr_to_local(source_string), origin);
}
void v8__ScriptCompiler__Source__DESTRUCT(v8::ScriptCompiler::Source& self) {
self.~Source();
}
v8::Module* v8__ScriptCompiler__CompileModule(
v8::Isolate* isolate, v8::ScriptCompiler::Source* source,
v8::ScriptCompiler::CompileOptions options,
v8::ScriptCompiler::NoCacheReason no_cache_reason) {
v8::MaybeLocal<v8::Module> maybe_local = v8::ScriptCompiler::CompileModule(
isolate, source, options, no_cache_reason);
if (maybe_local.IsEmpty()) {
return nullptr;
} else {
return local_to_ptr(maybe_local.ToLocalChecked());
}
}
bool v8__Value__IsUndefined(const v8::Value& self) {
return self.IsUndefined();
}
2019-12-18 07:37:13 -05:00
bool v8__Value__IsNull(const v8::Value& self) { return self.IsNull(); }
2019-12-18 07:37:13 -05:00
bool v8__Value__IsNullOrUndefined(const v8::Value& self) {
2019-12-18 07:37:13 -05:00
return self.IsNullOrUndefined();
}
bool v8__Value__IsString(const v8::Value& self) { return self.IsString(); }
bool v8__Value__IsNumber(const v8::Value& self) { return self.IsNumber(); }
bool v8__Value__StrictEquals(const v8::Value& self, v8::Value* that) {
return self.StrictEquals(ptr_to_local(that));
}
bool v8__Value__SameValue(const v8::Value& self, v8::Value* that) {
return self.SameValue(ptr_to_local(that));
}
2019-12-18 14:36:54 +01:00
v8::Primitive* v8__Null(v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Null(isolate));
}
2019-12-18 14:36:54 +01:00
v8::Primitive* v8__Undefined(v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Undefined(isolate));
}
2019-12-18 14:36:54 +01:00
v8::Boolean* v8__True(v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::True(isolate));
}
2019-12-18 14:36:54 +01:00
v8::Boolean* v8__False(v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::False(isolate));
}
v8::PrimitiveArray* v8__PrimitiveArray__New(v8::Isolate* isolate, int length) {
return local_to_ptr(v8::PrimitiveArray::New(isolate, length));
}
int v8__PrimitiveArray__Length(v8::PrimitiveArray& self) {
return self.Length();
}
void v8__PrimitiveArray__Set(v8::PrimitiveArray& self, v8::Isolate* isolate,
int index, v8::Local<v8::Primitive> item) {
self.Set(isolate, index, item);
}
v8::Primitive* v8__PrimitiveArray__Get(v8::PrimitiveArray& self,
v8::Isolate* isolate, int index) {
return local_to_ptr(self.Get(isolate, index));
}
2019-12-21 11:05:51 -05:00
v8::BackingStore* v8__ArrayBuffer__NewBackingStore(v8::Isolate* isolate,
size_t length) {
std::unique_ptr<v8::BackingStore> u =
v8::ArrayBuffer::NewBackingStore(isolate, length);
return u.release();
}
size_t v8__BackingStore__ByteLength(v8::BackingStore& self) {
return self.ByteLength();
}
bool v8__BackingStore__IsShared(v8::BackingStore& self) {
return self.IsShared();
}
void v8__BackingStore__DELETE(v8::BackingStore& self) { delete &self; }
v8::String* v8__String__NewFromUtf8(v8::Isolate* isolate, const char* data,
v8::NewStringType type, int length) {
return maybe_local_to_ptr(
v8::String::NewFromUtf8(isolate, data, type, length));
2019-12-18 07:37:13 -05:00
}
int v8__String__Length(const v8::String& self) { return self.Length(); }
2019-12-18 07:37:13 -05:00
int v8__String__Utf8Length(const v8::String& self, v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
return self.Utf8Length(isolate);
}
int v8__String__WriteUtf8(const v8::String& self, v8::Isolate* isolate,
char* buffer, int length, int* nchars_ref,
int options) {
2019-12-18 07:37:13 -05:00
return self.WriteUtf8(isolate, buffer, length, nchars_ref, options);
}
2019-12-18 14:36:54 +01:00
v8::Object* v8__Object__New(v8::Isolate* isolate,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Value> prototype_or_null,
2019-12-18 14:36:54 +01:00
v8::Local<v8::Name>* names,
v8::Local<v8::Value>* values, size_t length) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(
v8::Object::New(isolate, prototype_or_null, names, values, length));
}
2019-12-19 14:13:33 +01:00
v8::Isolate* v8__Object__GetIsolate(v8::Object& self) {
return self.GetIsolate();
}
v8::Number* v8__Number__New(v8::Isolate* isolate, double value) {
return *v8::Number::New(isolate, value);
2019-12-18 07:37:13 -05:00
}
double v8__Number__Value(const v8::Number& self) { return self.Value(); }
2019-12-18 07:37:13 -05:00
v8::Integer* v8__Integer__New(v8::Isolate* isolate, int32_t value) {
return *v8::Integer::New(isolate, value);
2019-12-18 07:37:13 -05:00
}
v8::Integer* v8__Integer__NewFromUnsigned(v8::Isolate* isolate,
uint32_t value) {
return *v8::Integer::NewFromUnsigned(isolate, value);
2019-12-18 07:37:13 -05:00
}
int64_t v8__Integer__Value(const v8::Integer& self) { return self.Value(); }
2019-12-18 07:37:13 -05:00
2019-12-24 05:50:30 -05:00
v8::ArrayBuffer* v8__ArrayBufferView__Buffer(v8::ArrayBufferView& self) {
return local_to_ptr(self.Buffer());
}
size_t v8__ArrayBufferView__ByteLength(v8::ArrayBufferView& self) {
return self.ByteLength();
}
size_t v8__ArrayBufferView__ByteOffset(v8::ArrayBufferView& self) {
return self.ByteOffset();
}
size_t v8__ArrayBufferView__CopyContents(v8::ArrayBufferView& self, void* dest,
int byte_length) {
2019-12-24 05:50:30 -05:00
return self.CopyContents(dest, byte_length);
}
v8::ArrayBuffer::Allocator* v8__ArrayBuffer__Allocator__NewDefaultAllocator() {
return v8::ArrayBuffer::Allocator::NewDefaultAllocator();
2019-12-18 07:37:13 -05:00
}
void v8__ArrayBuffer__Allocator__DELETE(v8::ArrayBuffer::Allocator& self) {
2019-12-18 07:37:13 -05:00
delete &self;
}
v8::ArrayBuffer* v8__ArrayBuffer__New(v8::Isolate* isolate,
size_t byte_length) {
return local_to_ptr(v8::ArrayBuffer::New(isolate, byte_length));
}
size_t v8__ArrayBuffer__ByteLength(v8::ArrayBuffer& self) {
return self.ByteLength();
}
v8::Context* v8__Context__New(v8::Isolate* isolate) {
2019-12-18 07:37:13 -05:00
// TODO: optional arguments.
return *v8::Context::New(isolate);
2019-12-18 07:37:13 -05:00
}
void v8__Context__Enter(v8::Context& self) { self.Enter(); }
2019-12-18 07:37:13 -05:00
void v8__Context__Exit(v8::Context& self) { self.Exit(); }
2019-12-18 07:37:13 -05:00
v8::Isolate* v8__Context__GetIsolate(v8::Context& self) {
return self.GetIsolate();
}
2019-12-18 07:37:13 -05:00
v8::Object* v8__Context__Global(v8::Context& self) { return *self.Global(); }
2019-12-18 07:37:13 -05:00
v8::String* v8__Message__Get(const v8::Message* self) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(self->Get());
}
v8::Isolate* v8__Message__GetIsolate(const v8::Message* self) {
return self->GetIsolate();
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Exception__RangeError(v8::Local<v8::String> message) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::RangeError(message));
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Exception__ReferenceError(v8::Local<v8::String> message) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::ReferenceError(message));
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Exception__SyntaxError(v8::Local<v8::String> message) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::SyntaxError(message));
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Exception__TypeError(v8::Local<v8::String> message) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::TypeError(message));
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Exception__Error(v8::Local<v8::String> message) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::Error(message));
}
2019-12-18 14:36:54 +01:00
v8::Message* v8__Exception__CreateMessage(v8::Isolate* isolate,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Value> exception) {
return local_to_ptr(v8::Exception::CreateMessage(isolate, exception));
}
2019-12-18 14:36:54 +01:00
v8::StackTrace* v8__Exception__GetStackTrace(v8::Local<v8::Value> exception) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::Exception::GetStackTrace(exception));
}
2019-12-18 14:36:54 +01:00
v8::Function* v8__Function__New(v8::Local<v8::Context> context,
2019-12-18 07:37:13 -05:00
v8::FunctionCallback callback) {
return maybe_local_to_ptr(v8::Function::New(context, callback));
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__Function__Call(v8::Function* self,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Context> context,
v8::Local<v8::Value> recv, int argc,
v8::Local<v8::Value> argv[]) {
return maybe_local_to_ptr(self->Call(context, recv, argc, argv));
}
2019-12-18 14:36:54 +01:00
v8::FunctionTemplate* v8__FunctionTemplate__New(
v8::Isolate* isolate, v8::FunctionCallback callback = nullptr) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(v8::FunctionTemplate::New(isolate, callback));
}
2019-12-18 14:36:54 +01:00
v8::Function* v8__FunctionTemplate__GetFunction(
v8::Local<v8::FunctionTemplate> self, v8::Local<v8::Context> context) {
2019-12-18 07:37:13 -05:00
return maybe_local_to_ptr(self->GetFunction(context));
}
int v8__FunctionCallbackInfo__Length(
const v8::FunctionCallbackInfo<v8::Value>& self) {
return self.Length();
2019-12-18 07:37:13 -05:00
}
2019-12-18 14:36:54 +01:00
v8::Isolate* v8__FunctionCallbackInfo__GetIsolate(
const v8::FunctionCallbackInfo<v8::Value>& self) {
return self.GetIsolate();
2019-12-18 07:37:13 -05:00
}
2019-12-20 18:16:44 +01:00
void v8__FunctionCallbackInfo__GetReturnValue(
const v8::FunctionCallbackInfo<v8::Value>& self,
2019-12-20 18:16:44 +01:00
v8::ReturnValue<v8::Value>* out) {
*out = self.GetReturnValue();
2019-12-18 07:37:13 -05:00
}
void v8__ReturnValue__Set(v8::ReturnValue<v8::Value>& self,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Value> value) {
self.Set(value);
2019-12-18 07:37:13 -05:00
}
v8::Value* v8__ReturnValue__Get(const v8::ReturnValue<v8::Value>& self) {
return local_to_ptr(self.Get());
2019-12-18 07:37:13 -05:00
}
v8::Isolate* v8__ReturnValue__GetIsolate(v8::ReturnValue<v8::Value>& self) {
return self.GetIsolate();
2019-12-18 07:37:13 -05:00
}
2019-12-18 14:36:54 +01:00
int v8__StackTrace__GetFrameCount(v8::StackTrace* self) {
2019-12-18 07:37:13 -05:00
return self->GetFrameCount();
}
2019-12-21 00:28:08 +01:00
void v8__TryCatch__CONSTRUCT(uninit_t<v8::TryCatch>& buf,
v8::Isolate* isolate) {
construct_in_place<v8::TryCatch>(buf, isolate);
}
void v8__TryCatch__DESTRUCT(v8::TryCatch& self) { self.~TryCatch(); }
bool v8__TryCatch__HasCaught(const v8::TryCatch& self) {
return self.HasCaught();
}
bool v8__TryCatch__CanContinue(const v8::TryCatch& self) {
return self.CanContinue();
}
bool v8__TryCatch__HasTerminated(const v8::TryCatch& self) {
return self.HasTerminated();
}
v8::Value* v8__TryCatch__Exception(const v8::TryCatch& self) {
return local_to_ptr(self.Exception());
}
v8::Value* v8__TryCatch__StackTrace(const v8::TryCatch& self,
v8::Local<v8::Context> context) {
return maybe_local_to_ptr(self.StackTrace(context));
}
v8::Message* v8__TryCatch__Message(const v8::TryCatch& self) {
return local_to_ptr(self.Message());
}
void v8__TryCatch__Reset(v8::TryCatch& self) { self.Reset(); }
v8::Value* v8__TryCatch__ReThrow(v8::TryCatch& self) {
return local_to_ptr(self.ReThrow());
}
bool v8__TryCatch__IsVerbose(const v8::TryCatch& self) {
return self.IsVerbose();
}
void v8__TryCatch__SetVerbose(v8::TryCatch& self, bool value) {
self.SetVerbose(value);
}
void v8__TryCatch__SetCaptureMessage(v8::TryCatch& self, bool value) {
self.SetCaptureMessage(value);
}
v8::Script* v8__Script__Compile(v8::Context* context, v8::String* source,
v8::ScriptOrigin* origin) {
2019-12-18 07:37:13 -05:00
return maybe_local_to_ptr(
v8::Script::Compile(ptr_to_local(context), ptr_to_local(source), origin));
2019-12-18 07:37:13 -05:00
}
v8::Value* v8__Script__Run(v8::Script& script, v8::Context* context) {
2019-12-18 07:37:13 -05:00
return maybe_local_to_ptr(script.Run(ptr_to_local(context)));
}
void v8__ScriptOrigin__CONSTRUCT(
uninit_t<v8::ScriptOrigin>& buf, v8::Value* resource_name,
v8::Integer* resource_line_offset, v8::Integer* resource_column_offset,
v8::Boolean* resource_is_shared_cross_origin, v8::Integer* script_id,
v8::Value* source_map_url, v8::Boolean* resource_is_opaque,
v8::Boolean* is_wasm, v8::Boolean* is_module) {
construct_in_place<v8::ScriptOrigin>(
2019-12-18 07:37:13 -05:00
buf, ptr_to_local(resource_name), ptr_to_local(resource_line_offset),
ptr_to_local(resource_column_offset),
ptr_to_local(resource_is_shared_cross_origin), ptr_to_local(script_id),
ptr_to_local(source_map_url), ptr_to_local(resource_is_opaque),
ptr_to_local(is_wasm), ptr_to_local(is_module));
}
v8::Value* v8__ScriptOrModule__GetResourceName(v8::ScriptOrModule& self) {
return local_to_ptr(self.GetResourceName());
}
v8::PrimitiveArray* v8__ScriptOrModule__GetHostDefinedOptions(
v8::ScriptOrModule& self) {
return local_to_ptr(self.GetHostDefinedOptions());
}
2019-12-18 14:36:54 +01:00
v8::Value* v8__JSON__Parse(v8::Local<v8::Context> context,
2019-12-18 07:37:13 -05:00
v8::Local<v8::String> json_string) {
return maybe_local_to_ptr(v8::JSON::Parse(context, json_string));
}
2019-12-18 14:36:54 +01:00
v8::String* v8__JSON__Stringify(v8::Local<v8::Context> context,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Value> json_object) {
return maybe_local_to_ptr(v8::JSON::Stringify(context, json_object));
}
2019-12-18 14:36:54 +01:00
v8::Promise::Resolver* v8__Promise__Resolver__New(
v8::Local<v8::Context> context) {
2019-12-18 07:37:13 -05:00
return maybe_local_to_ptr(v8::Promise::Resolver::New(context));
}
2019-12-18 14:36:54 +01:00
v8::Promise* v8__Promise__Resolver__GetPromise(v8::Promise::Resolver* self) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(self->GetPromise());
}
MaybeBool v8__Promise__Resolver__Resolve(v8::Promise::Resolver* self,
v8::Local<v8::Context> context,
v8::Local<v8::Value> value) {
return maybe_to_maybe_bool(self->Resolve(context, value));
2019-12-18 07:37:13 -05:00
}
MaybeBool v8__Promise__Resolver__Reject(v8::Promise::Resolver* self,
v8::Local<v8::Context> context,
v8::Local<v8::Value> value) {
return maybe_to_maybe_bool(self->Reject(context, value));
2019-12-18 07:37:13 -05:00
}
2019-12-18 14:36:54 +01:00
v8::Promise::PromiseState v8__Promise__State(v8::Promise* self) {
2019-12-18 07:37:13 -05:00
return self->State();
}
2019-12-18 14:36:54 +01:00
bool v8__Promise__HasHandler(v8::Promise* self) { return self->HasHandler(); }
2019-12-18 07:37:13 -05:00
2019-12-18 14:36:54 +01:00
v8::Value* v8__Promise__Result(v8::Promise* self) {
2019-12-18 07:37:13 -05:00
return local_to_ptr(self->Result());
}
2019-12-18 14:36:54 +01:00
v8::Promise* v8__Promise__Catch(v8::Promise* self,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Context> context,
v8::Local<v8::Function> handler) {
return maybe_local_to_ptr(self->Catch(context, handler));
}
2019-12-18 14:36:54 +01:00
v8::Promise* v8__Promise__Then(v8::Promise* self,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Context> context,
v8::Local<v8::Function> handler) {
return maybe_local_to_ptr(self->Then(context, handler));
}
2019-12-18 14:36:54 +01:00
v8::Promise* v8__Promise__Then2(v8::Promise* self,
2019-12-18 07:37:13 -05:00
v8::Local<v8::Context> context,
v8::Local<v8::Function> on_fulfilled,
v8::Local<v8::Function> on_rejected) {
return maybe_local_to_ptr(self->Then(context, on_fulfilled, on_rejected));
}
v8::PromiseRejectEvent v8__PromiseRejectMessage__GetEvent(
const v8::PromiseRejectMessage& self) {
2019-12-19 14:13:33 +01:00
return self.GetEvent();
}
v8::Promise* v8__PromiseRejectMessage__GetPromise(
const v8::PromiseRejectMessage& self) {
2019-12-19 14:13:33 +01:00
return local_to_ptr(self.GetPromise());
}
v8::Value* v8__PromiseRejectMessage__GetValue(
const v8::PromiseRejectMessage& self) {
2019-12-19 14:13:33 +01:00
return local_to_ptr(self.GetValue());
}
2019-12-20 18:16:44 +01:00
v8::Isolate* v8__PropertyCallbackInfo__GetIsolate(
const v8::PropertyCallbackInfo<v8::Value>& self) {
return self.GetIsolate();
2019-12-20 18:16:44 +01:00
}
v8::Object* v8__PropertyCallbackInfo__This(
const v8::PropertyCallbackInfo<v8::Value>& self) {
return local_to_ptr(self.This());
2019-12-20 18:16:44 +01:00
}
void v8__PropertyCallbackInfo__GetReturnValue(
const v8::PropertyCallbackInfo<v8::Value>& self,
2019-12-20 18:16:44 +01:00
v8::ReturnValue<v8::Value>* out) {
*out = self.GetReturnValue();
2019-12-20 18:16:44 +01:00
}
void v8__SnapshotCreator__CONSTRUCT(uninit_t<v8::SnapshotCreator>& buf) {
construct_in_place<v8::SnapshotCreator>(buf);
}
void v8__SnapshotCreator__DESTRUCT(v8::SnapshotCreator& self) {
self.~SnapshotCreator();
}
v8::Isolate* v8__SnapshotCreator__GetIsolate(v8::SnapshotCreator& self) {
return self.GetIsolate();
}
void v8__SnapshotCreator__SetDefaultContext(v8::SnapshotCreator& self,
v8::Local<v8::Context> context) {
self.SetDefaultContext(context);
}
v8::StartupData v8__SnapshotCreator__CreateBlob(
v8::SnapshotCreator* self,
v8::SnapshotCreator::FunctionCodeHandling function_code_handling) {
return self->CreateBlob(function_code_handling);
}
2019-12-18 14:36:54 +01:00
v8::Platform* v8__platform__NewDefaultPlatform() {
2019-12-18 07:37:13 -05:00
// TODO: support optional arguments.
return v8::platform::NewDefaultPlatform().release();
}
2019-12-18 14:36:54 +01:00
void v8__Platform__DELETE(v8::Platform& self) { delete &self; }
void v8__Task__BASE__DELETE(v8::Task& self);
void v8__Task__BASE__Run(v8::Task& self);
2019-12-18 07:37:13 -05:00
struct v8__Task__BASE : public v8::Task {
2019-12-18 07:37:13 -05:00
using Task::Task;
2019-12-18 14:36:54 +01:00
void operator delete(void* ptr) noexcept {
v8__Task__BASE__DELETE(*reinterpret_cast<v8::Task*>(ptr));
2019-12-18 07:37:13 -05:00
}
void Run() override { v8__Task__BASE__Run(*this); }
};
2019-12-18 14:36:54 +01:00
void v8__Task__BASE__CONSTRUCT(uninit_t<v8__Task__BASE>& buf) {
2019-12-18 07:37:13 -05:00
construct_in_place<v8__Task__BASE>(buf);
}
void v8__Task__DELETE(v8::Task& self) { delete &self; }
void v8__Task__Run(v8::Task& self) { self.Run(); }
2019-12-18 07:37:13 -05:00
void v8_inspector__V8Inspector__Channel__BASE__sendResponse(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self, int callId,
v8_inspector::StringBuffer* message);
2019-12-18 07:37:13 -05:00
void v8_inspector__V8Inspector__Channel__BASE__sendNotification(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self,
v8_inspector::StringBuffer* message);
2019-12-18 07:37:13 -05:00
void v8_inspector__V8Inspector__Channel__BASE__flushProtocolNotifications(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self);
} // extern "C"
2019-12-18 07:37:13 -05:00
struct v8_inspector__V8Inspector__Channel__BASE
: public v8_inspector::V8Inspector::Channel {
using v8_inspector::V8Inspector::Channel::Channel;
2019-12-18 14:36:54 +01:00
void sendResponse(
int callId,
std::unique_ptr<v8_inspector::StringBuffer> message) override {
2019-12-18 07:37:13 -05:00
v8_inspector__V8Inspector__Channel__BASE__sendResponse(*this, callId,
message.release());
}
void sendNotification(
std::unique_ptr<v8_inspector::StringBuffer> message) override {
v8_inspector__V8Inspector__Channel__BASE__sendNotification(
*this, message.release());
}
void flushProtocolNotifications() override {
v8_inspector__V8Inspector__Channel__BASE__flushProtocolNotifications(*this);
}
};
extern "C" {
void v8_inspector__V8Inspector__Channel__BASE__CONSTRUCT(
2019-12-18 14:36:54 +01:00
uninit_t<v8_inspector__V8Inspector__Channel__BASE>& buf) {
2019-12-18 07:37:13 -05:00
construct_in_place<v8_inspector__V8Inspector__Channel__BASE>(buf);
}
void v8_inspector__V8Inspector__Channel__sendResponse(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self, int callId,
v8_inspector::StringBuffer* message) {
2019-12-18 07:37:13 -05:00
self.sendResponse(
callId,
static_cast<std::unique_ptr<v8_inspector::StringBuffer>>(message));
}
void v8_inspector__V8Inspector__Channel__sendNotification(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self,
v8_inspector::StringBuffer* message) {
2019-12-18 07:37:13 -05:00
self.sendNotification(
static_cast<std::unique_ptr<v8_inspector::StringBuffer>>(message));
}
void v8_inspector__V8Inspector__Channel__flushProtocolNotifications(
2019-12-18 14:36:54 +01:00
v8_inspector::V8Inspector::Channel& self) {
2019-12-18 07:37:13 -05:00
self.flushProtocolNotifications();
}
void v8_inspector__V8InspectorClient__BASE__runMessageLoopOnPause(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self, int contextGroupId);
2019-12-18 07:37:13 -05:00
void v8_inspector__V8InspectorClient__BASE__quitMessageLoopOnPause(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self);
2019-12-18 07:37:13 -05:00
void v8_inspector__V8InspectorClient__BASE__runIfWaitingForDebugger(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self, int contextGroupId);
} // extern "C"
2019-12-18 07:37:13 -05:00
struct v8_inspector__V8InspectorClient__BASE
: public v8_inspector::V8InspectorClient {
using v8_inspector::V8InspectorClient::V8InspectorClient;
void runMessageLoopOnPause(int contextGroupId) override {
v8_inspector__V8InspectorClient__BASE__runMessageLoopOnPause(
*this, contextGroupId);
}
void quitMessageLoopOnPause() override {
v8_inspector__V8InspectorClient__BASE__quitMessageLoopOnPause(*this);
}
void runIfWaitingForDebugger(int contextGroupId) override {
v8_inspector__V8InspectorClient__BASE__runIfWaitingForDebugger(
*this, contextGroupId);
}
};
extern "C" {
void v8_inspector__V8InspectorClient__BASE__CONSTRUCT(
2019-12-18 14:36:54 +01:00
uninit_t<v8_inspector__V8InspectorClient__BASE>& buf) {
2019-12-18 07:37:13 -05:00
construct_in_place<v8_inspector__V8InspectorClient__BASE>(buf);
}
void v8_inspector__V8InspectorClient__runMessageLoopOnPause(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self, int contextGroupId) {
2019-12-18 07:37:13 -05:00
self.runMessageLoopOnPause(contextGroupId);
}
void v8_inspector__V8InspectorClient__quitMessageLoopOnPause(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self) {
2019-12-18 07:37:13 -05:00
self.quitMessageLoopOnPause();
}
void v8_inspector__V8InspectorClient__runIfWaitingForDebugger(
2019-12-18 14:36:54 +01:00
v8_inspector::V8InspectorClient& self, int contextGroupId) {
2019-12-18 07:37:13 -05:00
self.runIfWaitingForDebugger(contextGroupId);
}
2019-12-18 14:36:54 +01:00
void v8_inspector__StringBuffer__DELETE(v8_inspector::StringBuffer& self) {
2019-12-18 07:37:13 -05:00
delete &self;
}
2019-12-18 14:36:54 +01:00
const v8_inspector::StringView* v8_inspector__StringBuffer__string(
v8_inspector::StringBuffer& self) {
2019-12-18 07:37:13 -05:00
return &self.string();
}
2019-12-18 14:36:54 +01:00
v8_inspector::StringBuffer* v8_inspector__StringBuffer__create(
const v8_inspector::StringView& source) {
2019-12-18 07:37:13 -05:00
return v8_inspector::StringBuffer::create(source).release();
}
int v8__Location__GetLineNumber(v8::Location& self) {
return self.GetLineNumber();
}
int v8__Location__GetColumnNumber(v8::Location& self) {
return self.GetColumnNumber();
}
v8::Module::Status v8__Module__GetStatus(const v8::Module& self) {
return self.GetStatus();
}
v8::Value* v8__Module__GetException(const v8::Module& self) {
return local_to_ptr(self.GetException());
}
int v8__Module__GetModuleRequestsLength(const v8::Module& self) {
return self.GetModuleRequestsLength();
}
v8::String* v8__Module__GetModuleRequest(const v8::Module& self, int i) {
return local_to_ptr(self.GetModuleRequest(i));
}
void v8__Module__GetModuleRequestLocation(const v8::Module& self, int i,
v8::Location* out) {
*out = self.GetModuleRequestLocation(i);
}
int v8__Module__GetIdentityHash(const v8::Module& self) {
return self.GetIdentityHash();
}
2019-12-23 18:09:03 -05:00
// This is an extern C calling convention compatible version of
// v8::Module::ResolveCallback.
typedef v8::Module* (*v8__Module__ResolveCallback)(
v8::Local<v8::Context> context, v8::Local<v8::String> specifier,
v8::Local<v8::Module> referrer);
MaybeBool v8__Module__InstantiateModule(v8::Module& self,
v8::Local<v8::Context> context,
2019-12-23 18:09:03 -05:00
v8__Module__ResolveCallback c_cb) {
static v8__Module__ResolveCallback static_cb = nullptr;
assert(static_cb == nullptr);
static_cb = c_cb;
auto cxx_cb = [](v8::Local<v8::Context> context,
v8::Local<v8::String> specifier,
v8::Local<v8::Module> referrer) {
v8::Module* m = static_cb(context, specifier, referrer);
if (m == nullptr) {
return v8::MaybeLocal<v8::Module>();
} else {
return v8::MaybeLocal<v8::Module>(ptr_to_local(m));
}
};
auto r = maybe_to_maybe_bool(self.InstantiateModule(context, cxx_cb));
static_cb = nullptr;
return r;
}
v8::Value* v8__Module__Evaluate(v8::Module& self,
v8::Local<v8::Context> context) {
return maybe_local_to_ptr(self.Evaluate(context));
}
2019-12-18 14:36:54 +01:00
} // extern "C"