mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
d70b04c6d7
In preperation for adding other callbacks to libdeno.
569 lines
20 KiB
C++
569 lines
20 KiB
C++
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "third_party/v8/include/v8.h"
|
|
#include "third_party/v8/src/base/logging.h"
|
|
|
|
#include "deno.h"
|
|
#include "internal.h"
|
|
|
|
#define GLOBAL_IMPORT_BUF_SIZE 1024
|
|
|
|
namespace deno {
|
|
|
|
std::vector<InternalFieldData*> deserialized_data;
|
|
|
|
void DeserializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
v8::StartupData payload, void* data) {
|
|
DCHECK_EQ(data, nullptr);
|
|
if (payload.raw_size == 0) {
|
|
holder->SetAlignedPointerInInternalField(index, nullptr);
|
|
return;
|
|
}
|
|
InternalFieldData* embedder_field = new InternalFieldData{0};
|
|
memcpy(embedder_field, payload.data, payload.raw_size);
|
|
holder->SetAlignedPointerInInternalField(index, embedder_field);
|
|
deserialized_data.push_back(embedder_field);
|
|
}
|
|
|
|
v8::StartupData SerializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
void* data) {
|
|
DCHECK_EQ(data, nullptr);
|
|
InternalFieldData* embedder_field = static_cast<InternalFieldData*>(
|
|
holder->GetAlignedPointerFromInternalField(index));
|
|
if (embedder_field == nullptr) return {nullptr, 0};
|
|
int size = sizeof(*embedder_field);
|
|
char* payload = new char[size];
|
|
// We simply use memcpy to serialize the content.
|
|
memcpy(payload, embedder_field, size);
|
|
return {payload, size};
|
|
}
|
|
|
|
DenoIsolate* FromIsolate(v8::Isolate* isolate) {
|
|
return static_cast<DenoIsolate*>(isolate->GetData(0));
|
|
}
|
|
|
|
void AddDataRef(DenoIsolate* d, int32_t req_id, v8::Local<v8::Value> data_v) {
|
|
d->async_data_map_.emplace(std::piecewise_construct, std::make_tuple(req_id),
|
|
std::make_tuple(d->isolate_, data_v));
|
|
}
|
|
|
|
void DeleteDataRef(DenoIsolate* d, int32_t req_id) {
|
|
// Delete persistent reference to data ArrayBuffer.
|
|
auto it = d->async_data_map_.find(req_id);
|
|
if (it != d->async_data_map_.end()) {
|
|
it->second.Reset();
|
|
d->async_data_map_.erase(it);
|
|
}
|
|
}
|
|
|
|
// Extracts a C string from a v8::V8 Utf8Value.
|
|
const char* ToCString(const v8::String::Utf8Value& value) {
|
|
return *value ? *value : "<string conversion failed>";
|
|
}
|
|
|
|
static inline v8::Local<v8::String> v8_str(const char* x) {
|
|
return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x,
|
|
v8::NewStringType::kNormal)
|
|
.ToLocalChecked();
|
|
}
|
|
|
|
void HandleExceptionStr(v8::Local<v8::Context> context,
|
|
v8::Local<v8::Value> exception,
|
|
std::string* exception_str) {
|
|
auto* isolate = context->GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
auto message = v8::Exception::CreateMessage(isolate, exception);
|
|
auto stack_trace = message->GetStackTrace();
|
|
auto line =
|
|
v8::Integer::New(isolate, message->GetLineNumber(context).FromJust());
|
|
auto column =
|
|
v8::Integer::New(isolate, message->GetStartColumn(context).FromJust());
|
|
|
|
auto global_error_handler_ = d->global_error_handler_.Get(isolate);
|
|
|
|
if (!global_error_handler_.IsEmpty()) {
|
|
// global_error_handler_ is set so we try to handle the exception in
|
|
// javascript.
|
|
v8::Local<v8::Value> args[5];
|
|
args[0] = exception->ToString(context).ToLocalChecked();
|
|
args[1] = message->GetScriptResourceName();
|
|
args[2] = line;
|
|
args[3] = column;
|
|
args[4] = exception;
|
|
global_error_handler_->Call(context->Global(), 5, args);
|
|
/* message, source, lineno, colno, error */
|
|
|
|
return;
|
|
}
|
|
|
|
char buf[12 * 1024];
|
|
if (!stack_trace.IsEmpty()) {
|
|
// No javascript error handler, but we do have a stack trace. Format it
|
|
// into a string and add to last_exception_.
|
|
std::string msg;
|
|
v8::String::Utf8Value exceptionStr(isolate, exception);
|
|
msg += ToCString(exceptionStr);
|
|
msg += "\n";
|
|
|
|
for (int i = 0; i < stack_trace->GetFrameCount(); ++i) {
|
|
auto frame = stack_trace->GetFrame(isolate, i);
|
|
v8::String::Utf8Value script_name(isolate, frame->GetScriptName());
|
|
int l = frame->GetLineNumber();
|
|
int c = frame->GetColumn();
|
|
snprintf(buf, sizeof(buf), "%s %d:%d\n", ToCString(script_name), l, c);
|
|
msg += buf;
|
|
}
|
|
*exception_str += msg;
|
|
} else {
|
|
// No javascript error handler, no stack trace. Format the little info we
|
|
// have into a string and add to last_exception_.
|
|
v8::String::Utf8Value exceptionStr(isolate, exception);
|
|
v8::String::Utf8Value script_name(isolate,
|
|
message->GetScriptResourceName());
|
|
v8::String::Utf8Value line_str(isolate, line);
|
|
v8::String::Utf8Value col_str(isolate, column);
|
|
snprintf(buf, sizeof(buf), "%s\n%s %s:%s\n", ToCString(exceptionStr),
|
|
ToCString(script_name), ToCString(line_str), ToCString(col_str));
|
|
*exception_str += buf;
|
|
}
|
|
}
|
|
|
|
void HandleException(v8::Local<v8::Context> context,
|
|
v8::Local<v8::Value> exception) {
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
std::string exception_str;
|
|
HandleExceptionStr(context, exception, &exception_str);
|
|
if (d != nullptr) {
|
|
d->last_exception_ = exception_str;
|
|
} else {
|
|
std::cerr << "Pre-Deno Exception " << exception_str << std::endl;
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
const char* PromiseRejectStr(enum v8::PromiseRejectEvent e) {
|
|
switch (e) {
|
|
case v8::PromiseRejectEvent::kPromiseRejectWithNoHandler:
|
|
return "RejectWithNoHandler";
|
|
case v8::PromiseRejectEvent::kPromiseHandlerAddedAfterReject:
|
|
return "HandlerAddedAfterReject";
|
|
case v8::PromiseRejectEvent::kPromiseResolveAfterResolved:
|
|
return "ResolveAfterResolved";
|
|
case v8::PromiseRejectEvent::kPromiseRejectAfterResolved:
|
|
return "RejectAfterResolved";
|
|
}
|
|
}
|
|
|
|
void PromiseRejectCallback(v8::PromiseRejectMessage promise_reject_message) {
|
|
auto* isolate = v8::Isolate::GetCurrent();
|
|
DenoIsolate* d = static_cast<DenoIsolate*>(isolate->GetData(0));
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
v8::HandleScope handle_scope(d->isolate_);
|
|
auto exception = promise_reject_message.GetValue();
|
|
auto context = d->context_.Get(d->isolate_);
|
|
auto promise = promise_reject_message.GetPromise();
|
|
auto event = promise_reject_message.GetEvent();
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
auto promise_reject_handler = d->promise_reject_handler_.Get(isolate);
|
|
|
|
if (!promise_reject_handler.IsEmpty()) {
|
|
v8::Local<v8::Value> args[3];
|
|
args[1] = v8_str(PromiseRejectStr(event));
|
|
args[2] = promise;
|
|
/* error, event, promise */
|
|
if (event == v8::PromiseRejectEvent::kPromiseRejectWithNoHandler) {
|
|
d->pending_promise_events_++;
|
|
// exception only valid for kPromiseRejectWithNoHandler
|
|
args[0] = exception;
|
|
} else if (event ==
|
|
v8::PromiseRejectEvent::kPromiseHandlerAddedAfterReject) {
|
|
d->pending_promise_events_--; // unhandled event cancelled
|
|
if (d->pending_promise_events_ < 0) {
|
|
d->pending_promise_events_ = 0;
|
|
}
|
|
// Placeholder, not actually used
|
|
args[0] = v8_str("Promise handler added");
|
|
} else if (event == v8::PromiseRejectEvent::kPromiseResolveAfterResolved) {
|
|
d->pending_promise_events_++;
|
|
args[0] = v8_str("Promise resolved after resolved");
|
|
} else if (event == v8::PromiseRejectEvent::kPromiseRejectAfterResolved) {
|
|
d->pending_promise_events_++;
|
|
args[0] = v8_str("Promise rejected after resolved");
|
|
}
|
|
promise_reject_handler->Call(context->Global(), 3, args);
|
|
return;
|
|
}
|
|
}
|
|
|
|
void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
CHECK_GE(args.Length(), 1);
|
|
CHECK_LE(args.Length(), 2);
|
|
auto* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
auto context = d->context_.Get(d->isolate_);
|
|
v8::HandleScope handle_scope(isolate);
|
|
v8::String::Utf8Value str(isolate, args[0]);
|
|
bool is_err =
|
|
args.Length() >= 2 ? args[1]->BooleanValue(context).ToChecked() : false;
|
|
const char* cstr = ToCString(str);
|
|
auto& stream = is_err ? std::cerr : std::cout;
|
|
stream << cstr << std::endl;
|
|
}
|
|
|
|
v8::Local<v8::Uint8Array> ImportBuf(DenoIsolate* d, deno_buf buf) {
|
|
if (buf.alloc_ptr == nullptr) {
|
|
// If alloc_ptr isn't set, we memcpy.
|
|
// This is currently used for flatbuffers created in Rust.
|
|
|
|
// To avoid excessively allocating new ArrayBuffers, we try to reuse a
|
|
// single global ArrayBuffer. The caveat is that users must extract data
|
|
// from it before the next tick. We only do this for ArrayBuffers less than
|
|
// 1024 bytes.
|
|
v8::Local<v8::ArrayBuffer> ab;
|
|
void* data;
|
|
if (buf.data_len > GLOBAL_IMPORT_BUF_SIZE) {
|
|
// Simple case. We allocate a new ArrayBuffer for this.
|
|
ab = v8::ArrayBuffer::New(d->isolate_, buf.data_len);
|
|
data = ab->GetContents().Data();
|
|
} else {
|
|
// Fast case. We reuse the global ArrayBuffer.
|
|
if (d->global_import_buf_.IsEmpty()) {
|
|
// Lazily initialize it.
|
|
DCHECK_EQ(d->global_import_buf_ptr_, nullptr);
|
|
ab = v8::ArrayBuffer::New(d->isolate_, GLOBAL_IMPORT_BUF_SIZE);
|
|
d->global_import_buf_.Reset(d->isolate_, ab);
|
|
d->global_import_buf_ptr_ = ab->GetContents().Data();
|
|
} else {
|
|
DCHECK(d->global_import_buf_ptr_);
|
|
ab = d->global_import_buf_.Get(d->isolate_);
|
|
}
|
|
data = d->global_import_buf_ptr_;
|
|
}
|
|
memcpy(data, buf.data_ptr, buf.data_len);
|
|
auto view = v8::Uint8Array::New(ab, 0, buf.data_len);
|
|
return view;
|
|
} else {
|
|
auto ab = v8::ArrayBuffer::New(
|
|
d->isolate_, reinterpret_cast<void*>(buf.alloc_ptr), buf.alloc_len,
|
|
v8::ArrayBufferCreationMode::kInternalized);
|
|
auto view =
|
|
v8::Uint8Array::New(ab, buf.data_ptr - buf.alloc_ptr, buf.data_len);
|
|
return view;
|
|
}
|
|
}
|
|
|
|
static deno_buf GetContents(v8::Isolate* isolate,
|
|
v8::Local<v8::ArrayBufferView> view) {
|
|
auto ab = view->Buffer();
|
|
auto contents = ab->GetContents();
|
|
deno_buf buf;
|
|
buf.alloc_ptr = reinterpret_cast<uint8_t*>(contents.Data());
|
|
buf.alloc_len = contents.ByteLength();
|
|
buf.data_ptr = buf.alloc_ptr + view->ByteOffset();
|
|
buf.data_len = view->ByteLength();
|
|
return buf;
|
|
}
|
|
|
|
// Sets the recv_ callback.
|
|
void Recv(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
if (!d->recv_.IsEmpty()) {
|
|
isolate->ThrowException(v8_str("libdeno.recv_ already called."));
|
|
return;
|
|
}
|
|
|
|
v8::Local<v8::Value> v = args[0];
|
|
CHECK(v->IsFunction());
|
|
v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(v);
|
|
|
|
d->recv_.Reset(isolate, func);
|
|
}
|
|
|
|
void Send(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
|
|
v8::Locker locker(d->isolate_);
|
|
v8::EscapableHandleScope handle_scope(isolate);
|
|
|
|
CHECK_EQ(d->current_args_, nullptr); // libdeno.send re-entry forbidden.
|
|
int32_t req_id = d->next_req_id_++;
|
|
|
|
v8::Local<v8::Value> control_v = args[0];
|
|
CHECK(control_v->IsArrayBufferView());
|
|
deno_buf control =
|
|
GetContents(isolate, v8::Local<v8::ArrayBufferView>::Cast(control_v));
|
|
deno_buf data = {nullptr, 0u, nullptr, 0u};
|
|
v8::Local<v8::Value> data_v;
|
|
if (args.Length() == 2) {
|
|
if (args[1]->IsArrayBufferView()) {
|
|
data_v = args[1];
|
|
data = GetContents(isolate, v8::Local<v8::ArrayBufferView>::Cast(data_v));
|
|
}
|
|
} else {
|
|
CHECK_EQ(args.Length(), 1);
|
|
}
|
|
|
|
DCHECK_EQ(d->current_args_, nullptr);
|
|
d->current_args_ = &args;
|
|
|
|
d->recv_cb_(d->user_data_, req_id, control, data);
|
|
|
|
if (d->current_args_ == nullptr) {
|
|
// This indicates that deno_repond() was called already.
|
|
} else {
|
|
// Asynchronous.
|
|
d->current_args_ = nullptr;
|
|
// If the data ArrayBuffer was given, we must maintain a strong reference
|
|
// to it until deno_respond is called.
|
|
if (!data_v.IsEmpty()) {
|
|
AddDataRef(d, req_id, data_v);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Shared(v8::Local<v8::Name> property,
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
v8::Isolate* isolate = info.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
v8::Locker locker(d->isolate_);
|
|
v8::EscapableHandleScope handle_scope(isolate);
|
|
if (d->shared_.data_ptr == nullptr) {
|
|
return;
|
|
}
|
|
v8::Local<v8::ArrayBuffer> ab;
|
|
if (d->shared_ab_.IsEmpty()) {
|
|
// Lazily initialize the persistent external ArrayBuffer.
|
|
ab = v8::ArrayBuffer::New(isolate, d->shared_.data_ptr, d->shared_.data_len,
|
|
v8::ArrayBufferCreationMode::kExternalized);
|
|
d->shared_ab_.Reset(isolate, ab);
|
|
}
|
|
info.GetReturnValue().Set(ab);
|
|
}
|
|
|
|
// Sets the global error handler.
|
|
void SetGlobalErrorHandler(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
if (!d->global_error_handler_.IsEmpty()) {
|
|
isolate->ThrowException(
|
|
v8_str("libdeno.setGlobalErrorHandler already called."));
|
|
return;
|
|
}
|
|
|
|
v8::Local<v8::Value> v = args[0];
|
|
CHECK(v->IsFunction());
|
|
v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(v);
|
|
|
|
d->global_error_handler_.Reset(isolate, func);
|
|
}
|
|
|
|
// Sets the promise uncaught reject handler
|
|
void SetPromiseRejectHandler(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
if (!d->promise_reject_handler_.IsEmpty()) {
|
|
isolate->ThrowException(
|
|
v8_str("libdeno.setPromiseRejectHandler already called."));
|
|
return;
|
|
}
|
|
|
|
v8::Local<v8::Value> v = args[0];
|
|
CHECK(v->IsFunction());
|
|
v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(v);
|
|
|
|
d->promise_reject_handler_.Reset(isolate, func);
|
|
}
|
|
|
|
// Sets the promise uncaught reject handler
|
|
void SetPromiseErrorExaminer(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
DenoIsolate* d = FromIsolate(isolate);
|
|
DCHECK_EQ(d->isolate_, isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
if (!d->promise_error_examiner_.IsEmpty()) {
|
|
isolate->ThrowException(
|
|
v8_str("libdeno.setPromiseErrorExaminer already called."));
|
|
return;
|
|
}
|
|
|
|
v8::Local<v8::Value> v = args[0];
|
|
CHECK(v->IsFunction());
|
|
v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(v);
|
|
|
|
d->promise_error_examiner_.Reset(isolate, func);
|
|
}
|
|
|
|
bool ExecuteV8StringSource(v8::Local<v8::Context> context,
|
|
const char* js_filename,
|
|
v8::Local<v8::String> source) {
|
|
auto* isolate = context->GetIsolate();
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
auto name = v8_str(js_filename);
|
|
|
|
v8::ScriptOrigin origin(name);
|
|
|
|
auto script = v8::Script::Compile(context, source, &origin);
|
|
|
|
if (script.IsEmpty()) {
|
|
DCHECK(try_catch.HasCaught());
|
|
HandleException(context, try_catch.Exception());
|
|
return false;
|
|
}
|
|
|
|
auto result = script.ToLocalChecked()->Run(context);
|
|
|
|
if (result.IsEmpty()) {
|
|
DCHECK(try_catch.HasCaught());
|
|
HandleException(context, try_catch.Exception());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Execute(v8::Local<v8::Context> context, const char* js_filename,
|
|
const char* js_source) {
|
|
auto* isolate = context->GetIsolate();
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
v8::HandleScope handle_scope(isolate);
|
|
auto source = v8_str(js_source);
|
|
return ExecuteV8StringSource(context, js_filename, source);
|
|
}
|
|
|
|
void InitializeContext(v8::Isolate* isolate, v8::Local<v8::Context> context,
|
|
const char* js_filename, const char* js_source,
|
|
const char* source_map) {
|
|
CHECK_NE(js_source, nullptr);
|
|
CHECK_NE(js_filename, nullptr);
|
|
v8::HandleScope handle_scope(isolate);
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
auto global = context->Global();
|
|
|
|
auto deno_val = v8::Object::New(isolate);
|
|
CHECK(global->Set(context, deno::v8_str("libdeno"), deno_val).FromJust());
|
|
|
|
auto print_tmpl = v8::FunctionTemplate::New(isolate, Print);
|
|
auto print_val = print_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val->Set(context, deno::v8_str("print"), print_val).FromJust());
|
|
|
|
auto recv_tmpl = v8::FunctionTemplate::New(isolate, Recv);
|
|
auto recv_val = recv_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val->Set(context, deno::v8_str("recv"), recv_val).FromJust());
|
|
|
|
auto send_tmpl = v8::FunctionTemplate::New(isolate, Send);
|
|
auto send_val = send_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val->Set(context, deno::v8_str("send"), send_val).FromJust());
|
|
|
|
CHECK(deno_val->SetAccessor(context, deno::v8_str("shared"), Shared)
|
|
.FromJust());
|
|
|
|
auto set_global_error_handler_tmpl =
|
|
v8::FunctionTemplate::New(isolate, SetGlobalErrorHandler);
|
|
auto set_global_error_handler_val =
|
|
set_global_error_handler_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val
|
|
->Set(context, deno::v8_str("setGlobalErrorHandler"),
|
|
set_global_error_handler_val)
|
|
.FromJust());
|
|
|
|
auto set_promise_reject_handler_tmpl =
|
|
v8::FunctionTemplate::New(isolate, SetPromiseRejectHandler);
|
|
auto set_promise_reject_handler_val =
|
|
set_promise_reject_handler_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val
|
|
->Set(context, deno::v8_str("setPromiseRejectHandler"),
|
|
set_promise_reject_handler_val)
|
|
.FromJust());
|
|
|
|
auto set_promise_error_examiner_tmpl =
|
|
v8::FunctionTemplate::New(isolate, SetPromiseErrorExaminer);
|
|
auto set_promise_error_examiner_val =
|
|
set_promise_error_examiner_tmpl->GetFunction(context).ToLocalChecked();
|
|
CHECK(deno_val
|
|
->Set(context, deno::v8_str("setPromiseErrorExaminer"),
|
|
set_promise_error_examiner_val)
|
|
.FromJust());
|
|
|
|
{
|
|
if (source_map != nullptr) {
|
|
v8::TryCatch try_catch(isolate);
|
|
v8::ScriptOrigin origin(v8_str("set_source_map.js"));
|
|
std::string source_map_parens =
|
|
std::string("(") + std::string(source_map) + std::string(")");
|
|
auto source_map_v8_str = deno::v8_str(source_map_parens.c_str());
|
|
auto script = v8::Script::Compile(context, source_map_v8_str, &origin);
|
|
if (script.IsEmpty()) {
|
|
DCHECK(try_catch.HasCaught());
|
|
HandleException(context, try_catch.Exception());
|
|
return;
|
|
}
|
|
auto source_map_obj = script.ToLocalChecked()->Run(context);
|
|
if (source_map_obj.IsEmpty()) {
|
|
DCHECK(try_catch.HasCaught());
|
|
HandleException(context, try_catch.Exception());
|
|
return;
|
|
}
|
|
CHECK(deno_val
|
|
->Set(context, deno::v8_str("mainSourceMap"),
|
|
source_map_obj.ToLocalChecked())
|
|
.FromJust());
|
|
}
|
|
|
|
auto source = deno::v8_str(js_source);
|
|
CHECK(
|
|
deno_val->Set(context, deno::v8_str("mainSource"), source).FromJust());
|
|
|
|
bool r = deno::ExecuteV8StringSource(context, js_filename, source);
|
|
CHECK(r);
|
|
}
|
|
}
|
|
|
|
void DenoIsolate::AddIsolate(v8::Isolate* isolate) {
|
|
isolate_ = isolate;
|
|
// Leaving this code here because it will probably be useful later on, but
|
|
// disabling it now as I haven't got tests for the desired behavior.
|
|
// d->isolate->SetCaptureStackTraceForUncaughtExceptions(true);
|
|
// d->isolate->SetAbortOnUncaughtExceptionCallback(AbortOnUncaughtExceptionCallback);
|
|
// d->isolate->AddMessageListener(MessageCallback2);
|
|
// d->isolate->SetFatalErrorHandler(FatalErrorCallback2);
|
|
isolate_->SetPromiseRejectCallback(deno::PromiseRejectCallback);
|
|
isolate_->SetData(0, this);
|
|
}
|
|
|
|
} // namespace deno
|