2018-06-09 23:34:03 -04:00
|
|
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
// All rights reserved. MIT License.
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "v8/include/v8.h"
|
|
|
|
|
|
|
|
#include "./deno_internal.h"
|
|
|
|
#include "include/deno.h"
|
|
|
|
|
|
|
|
namespace deno {
|
|
|
|
|
2018-06-11 11:01:35 -04:00
|
|
|
#ifdef DENO_MOCK_RUNTIME
|
|
|
|
#include "natives_mock_runtime.cc"
|
|
|
|
#include "snapshot_mock_runtime.cc"
|
|
|
|
#else
|
2018-06-09 23:34:03 -04:00
|
|
|
#include "natives_deno.cc"
|
|
|
|
#include "snapshot_deno.cc"
|
2018-06-11 11:01:35 -04:00
|
|
|
#endif
|
2018-06-09 23:34:03 -04:00
|
|
|
|
2018-06-12 00:36:01 -04:00
|
|
|
std::vector<InternalFieldData*> deserialized_data;
|
|
|
|
|
|
|
|
void DeserializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
|
|
v8::StartupData payload, void* data) {
|
|
|
|
assert(data == nullptr); // TODO(ry) pass Deno* object here.
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-06-11 13:18:53 -04:00
|
|
|
Deno* NewFromSnapshot(void* data, deno_sub_cb cb) {
|
2018-06-09 23:34:03 -04:00
|
|
|
auto natives_blob = *StartupBlob_natives();
|
|
|
|
auto snapshot_blob = *StartupBlob_snapshot();
|
|
|
|
|
|
|
|
v8::V8::SetNativesDataBlob(&natives_blob);
|
|
|
|
v8::V8::SetSnapshotDataBlob(&snapshot_blob);
|
2018-06-12 00:36:01 -04:00
|
|
|
v8::DeserializeInternalFieldsCallback(DeserializeInternalFields, nullptr);
|
2018-06-09 23:34:03 -04:00
|
|
|
|
|
|
|
Deno* d = new Deno;
|
|
|
|
d->cb = cb;
|
|
|
|
d->data = data;
|
|
|
|
v8::Isolate::CreateParams params;
|
|
|
|
params.array_buffer_allocator =
|
|
|
|
v8::ArrayBuffer::Allocator::NewDefaultAllocator();
|
|
|
|
params.external_references = external_references;
|
|
|
|
v8::Isolate* isolate = v8::Isolate::New(params);
|
2018-06-10 08:18:15 -04:00
|
|
|
AddIsolate(d, isolate);
|
2018-06-09 23:34:03 -04:00
|
|
|
|
2018-06-11 11:01:35 -04:00
|
|
|
v8::Locker locker(isolate);
|
2018-06-09 23:34:03 -04:00
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
{
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2018-06-12 00:36:01 -04:00
|
|
|
auto context =
|
|
|
|
v8::Context::New(isolate, nullptr, v8::MaybeLocal<v8::ObjectTemplate>(),
|
|
|
|
v8::MaybeLocal<v8::Value>(),
|
|
|
|
v8::DeserializeInternalFieldsCallback(
|
|
|
|
DeserializeInternalFields, nullptr));
|
2018-06-09 23:34:03 -04:00
|
|
|
d->context.Reset(d->isolate, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace deno
|
2018-06-10 08:18:15 -04:00
|
|
|
|
|
|
|
extern "C" {
|
2018-06-11 13:18:53 -04:00
|
|
|
Deno* deno_new(void* data, deno_sub_cb cb) {
|
2018-06-10 08:18:15 -04:00
|
|
|
return deno::NewFromSnapshot(data, cb);
|
|
|
|
}
|
|
|
|
}
|