2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-07-06 03:19:19 -04:00
|
|
|
#ifndef INTERNAL_H_
|
|
|
|
#define INTERNAL_H_
|
2018-06-09 23:34:03 -04:00
|
|
|
|
2018-10-18 11:44:45 -04:00
|
|
|
#include <map>
|
2018-06-09 23:34:03 -04:00
|
|
|
#include <string>
|
2018-07-06 03:19:19 -04:00
|
|
|
#include "deno.h"
|
2018-07-03 04:15:32 -04:00
|
|
|
#include "third_party/v8/include/v8.h"
|
2018-10-23 23:58:20 -04:00
|
|
|
#include "third_party/v8/src/base/logging.h"
|
|
|
|
|
|
|
|
namespace deno {
|
2018-06-09 23:34:03 -04:00
|
|
|
|
|
|
|
// deno_s = Wrapped Isolate.
|
2018-10-23 23:58:20 -04:00
|
|
|
class DenoIsolate {
|
|
|
|
public:
|
2018-12-13 16:25:42 -05:00
|
|
|
DenoIsolate(deno_config config)
|
2018-10-23 23:58:20 -04:00
|
|
|
: isolate_(nullptr),
|
2018-12-04 18:06:20 -05:00
|
|
|
shared_(config.shared),
|
2018-10-23 23:58:20 -04:00
|
|
|
current_args_(nullptr),
|
2018-10-24 01:12:13 -04:00
|
|
|
snapshot_creator_(nullptr),
|
2018-10-23 23:58:20 -04:00
|
|
|
global_import_buf_ptr_(nullptr),
|
2018-12-04 18:06:20 -05:00
|
|
|
recv_cb_(config.recv_cb),
|
2018-11-29 15:40:04 -05:00
|
|
|
resolve_cb_(config.resolve_cb),
|
2018-10-23 23:58:20 -04:00
|
|
|
next_req_id_(0),
|
|
|
|
user_data_(nullptr) {
|
2018-12-03 14:22:26 -05:00
|
|
|
array_buffer_allocator_ = v8::ArrayBuffer::Allocator::NewDefaultAllocator();
|
2018-12-13 16:25:42 -05:00
|
|
|
if (config.load_snapshot.data_ptr) {
|
|
|
|
snapshot_.data =
|
|
|
|
reinterpret_cast<const char*>(config.load_snapshot.data_ptr);
|
|
|
|
snapshot_.raw_size = static_cast<int>(config.load_snapshot.data_len);
|
2018-10-23 23:58:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-03 14:22:26 -05:00
|
|
|
~DenoIsolate() {
|
|
|
|
if (snapshot_creator_) {
|
|
|
|
delete snapshot_creator_;
|
|
|
|
} else {
|
|
|
|
isolate_->Dispose();
|
|
|
|
}
|
|
|
|
delete array_buffer_allocator_;
|
|
|
|
}
|
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
void AddIsolate(v8::Isolate* isolate);
|
2018-11-29 15:40:04 -05:00
|
|
|
void RegisterModule(const char* filename, v8::Local<v8::Module> module);
|
|
|
|
void ResolveOk(const char* filename, const char* source);
|
|
|
|
void ClearModules();
|
2018-10-23 23:58:20 -04:00
|
|
|
|
2019-01-06 16:32:21 -05:00
|
|
|
v8::Local<v8::Object> GetBuiltinModules();
|
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
v8::Isolate* isolate_;
|
2018-12-03 14:22:26 -05:00
|
|
|
v8::ArrayBuffer::Allocator* array_buffer_allocator_;
|
2018-10-24 02:17:10 -04:00
|
|
|
deno_buf shared_;
|
2018-10-23 23:58:20 -04:00
|
|
|
const v8::FunctionCallbackInfo<v8::Value>* current_args_;
|
2018-10-24 01:12:13 -04:00
|
|
|
v8::SnapshotCreator* snapshot_creator_;
|
2018-10-23 23:58:20 -04:00
|
|
|
void* global_import_buf_ptr_;
|
2018-12-04 18:06:20 -05:00
|
|
|
deno_recv_cb recv_cb_;
|
2018-11-29 15:40:04 -05:00
|
|
|
deno_resolve_cb resolve_cb_;
|
2018-10-23 23:58:20 -04:00
|
|
|
int32_t next_req_id_;
|
|
|
|
void* user_data_;
|
|
|
|
|
2019-01-07 21:18:32 -05:00
|
|
|
// identity hash -> filename, module (avoid hash collision)
|
|
|
|
std::multimap<int, std::pair<std::string, v8::Persistent<v8::Module>>>
|
|
|
|
module_info_map_;
|
2018-11-29 15:40:04 -05:00
|
|
|
// filename -> Module
|
|
|
|
std::map<std::string, v8::Persistent<v8::Module>> module_map_;
|
|
|
|
// Set by deno_resolve_ok
|
|
|
|
v8::Persistent<v8::Module> resolve_module_;
|
|
|
|
|
2019-01-06 16:32:21 -05:00
|
|
|
v8::Persistent<v8::Object> builtin_modules_;
|
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
v8::Persistent<v8::Context> context_;
|
|
|
|
std::map<int32_t, v8::Persistent<v8::Value>> async_data_map_;
|
2018-12-06 23:05:36 -05:00
|
|
|
std::map<int, v8::Persistent<v8::Value>> pending_promise_map_;
|
2018-10-23 23:58:20 -04:00
|
|
|
std::string last_exception_;
|
|
|
|
v8::Persistent<v8::Function> recv_;
|
|
|
|
v8::StartupData snapshot_;
|
|
|
|
v8::Persistent<v8::ArrayBuffer> global_import_buf_;
|
2018-10-24 02:17:10 -04:00
|
|
|
v8::Persistent<v8::ArrayBuffer> shared_ab_;
|
2018-06-09 23:34:03 -04:00
|
|
|
};
|
2018-06-10 08:18:15 -04:00
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
class UserDataScope {
|
2018-12-04 18:06:20 -05:00
|
|
|
DenoIsolate* deno_;
|
|
|
|
void* prev_data_;
|
|
|
|
void* data_; // Not necessary; only for sanity checking.
|
2018-10-23 23:58:20 -04:00
|
|
|
|
|
|
|
public:
|
2018-12-04 18:06:20 -05:00
|
|
|
UserDataScope(DenoIsolate* deno, void* data) : deno_(deno), data_(data) {
|
2018-10-23 23:58:20 -04:00
|
|
|
CHECK(deno->user_data_ == nullptr || deno->user_data_ == data_);
|
2018-12-04 18:06:20 -05:00
|
|
|
prev_data_ = deno->user_data_;
|
2018-10-23 23:58:20 -04:00
|
|
|
deno->user_data_ = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
~UserDataScope() {
|
2018-12-04 18:06:20 -05:00
|
|
|
CHECK(deno_->user_data_ == data_);
|
|
|
|
deno_->user_data_ = prev_data_;
|
2018-10-23 23:58:20 -04:00
|
|
|
}
|
|
|
|
};
|
2018-06-10 08:18:15 -04:00
|
|
|
|
2018-06-12 00:36:01 -04:00
|
|
|
struct InternalFieldData {
|
|
|
|
uint32_t data;
|
|
|
|
};
|
|
|
|
|
2019-01-01 11:22:23 -05:00
|
|
|
static inline v8::Local<v8::String> v8_str(const char* x,
|
|
|
|
bool internalize = false) {
|
|
|
|
return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x,
|
|
|
|
internalize ? v8::NewStringType::kInternalized
|
|
|
|
: v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2018-06-10 08:18:15 -04:00
|
|
|
void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
|
2018-07-01 12:07:12 -04:00
|
|
|
void Recv(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
void Send(const v8::FunctionCallbackInfo<v8::Value>& args);
|
2018-10-24 02:17:10 -04:00
|
|
|
void Shared(v8::Local<v8::Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info);
|
2019-01-06 16:32:21 -05:00
|
|
|
void BuiltinModules(v8::Local<v8::Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info);
|
2018-08-26 13:22:07 -04:00
|
|
|
static intptr_t external_references[] = {
|
2019-01-06 16:32:21 -05:00
|
|
|
reinterpret_cast<intptr_t>(Print),
|
|
|
|
reinterpret_cast<intptr_t>(Recv),
|
|
|
|
reinterpret_cast<intptr_t>(Send),
|
|
|
|
reinterpret_cast<intptr_t>(Shared),
|
|
|
|
reinterpret_cast<intptr_t>(BuiltinModules),
|
|
|
|
0};
|
2018-06-10 08:18:15 -04:00
|
|
|
|
2018-10-24 01:12:13 -04:00
|
|
|
static const deno_buf empty_buf = {nullptr, 0, nullptr, 0};
|
|
|
|
|
2018-10-08 11:49:48 -04:00
|
|
|
Deno* NewFromSnapshot(void* user_data, deno_recv_cb cb);
|
2018-06-10 08:18:15 -04:00
|
|
|
|
2018-12-13 16:25:42 -05:00
|
|
|
void InitializeContext(v8::Isolate* isolate, v8::Local<v8::Context> context);
|
2018-06-13 14:55:08 -04:00
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
void HandleException(v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::Value> exception);
|
|
|
|
|
|
|
|
void DeserializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
|
|
v8::StartupData payload, void* data);
|
|
|
|
|
2018-10-24 01:12:13 -04:00
|
|
|
v8::StartupData SerializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
|
|
void* data);
|
|
|
|
|
2018-10-23 23:58:20 -04:00
|
|
|
v8::Local<v8::Uint8Array> ImportBuf(DenoIsolate* d, deno_buf buf);
|
|
|
|
|
|
|
|
void DeleteDataRef(DenoIsolate* d, int32_t req_id);
|
|
|
|
|
|
|
|
bool Execute(v8::Local<v8::Context> context, const char* js_filename,
|
|
|
|
const char* js_source);
|
2018-11-29 15:40:04 -05:00
|
|
|
bool ExecuteMod(v8::Local<v8::Context> context, const char* js_filename,
|
2019-01-15 12:19:58 -05:00
|
|
|
const char* js_source, bool resolve_only);
|
2018-06-09 23:34:03 -04:00
|
|
|
|
|
|
|
} // namespace deno
|
2018-10-23 23:58:20 -04:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
// This is just to workaround the linker.
|
|
|
|
struct deno_s {
|
|
|
|
deno::DenoIsolate isolate;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-07-06 03:19:19 -04:00
|
|
|
#endif // INTERNAL_H_
|