2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-06-12 00:36:01 -04:00
|
|
|
// Hint: --trace_serializer is a useful debugging flag.
|
2018-07-13 01:21:28 -04:00
|
|
|
#include <fstream>
|
2018-07-06 03:19:19 -04:00
|
|
|
#include "deno.h"
|
2018-07-06 15:00:45 -04:00
|
|
|
#include "file_util.h"
|
|
|
|
#include "internal.h"
|
2018-07-03 04:15:32 -04:00
|
|
|
#include "third_party/v8/include/v8.h"
|
|
|
|
#include "third_party/v8/src/base/logging.h"
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
namespace deno {
|
|
|
|
|
|
|
|
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};
|
|
|
|
}
|
|
|
|
|
2018-08-02 13:13:32 -04:00
|
|
|
v8::StartupData MakeSnapshot(const char* js_filename,
|
|
|
|
const std::string& js_source,
|
|
|
|
const std::string* source_map) {
|
2018-06-18 10:02:08 -04:00
|
|
|
auto* creator = new v8::SnapshotCreator(external_references);
|
|
|
|
auto* isolate = creator->GetIsolate();
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
{
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
auto context = v8::Context::New(isolate);
|
2018-08-02 13:13:32 -04:00
|
|
|
InitializeContext(isolate, context, js_filename, js_source, source_map);
|
2018-06-18 10:02:08 -04:00
|
|
|
creator->SetDefaultContext(context, v8::SerializeInternalFieldsCallback(
|
|
|
|
SerializeInternalFields, nullptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto snapshot_blob =
|
2018-07-04 14:50:28 -04:00
|
|
|
creator->CreateBlob(v8::SnapshotCreator::FunctionCodeHandling::kClear);
|
2018-06-18 10:02:08 -04:00
|
|
|
|
|
|
|
return snapshot_blob;
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
} // namespace deno
|
|
|
|
|
2018-06-09 18:32:04 -04:00
|
|
|
int main(int argc, char** argv) {
|
2018-07-26 23:21:10 -04:00
|
|
|
const char* snapshot_out_bin = argv[1];
|
2018-07-26 14:41:36 -04:00
|
|
|
const char* js_fn = argv[2];
|
2018-08-02 13:13:32 -04:00
|
|
|
const char* source_map_fn = argv[3]; // Optional.
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
|
|
|
|
2018-06-14 05:50:35 -04:00
|
|
|
CHECK_NE(js_fn, nullptr);
|
2018-07-26 23:21:10 -04:00
|
|
|
CHECK_NE(snapshot_out_bin, nullptr);
|
2018-06-14 05:50:35 -04:00
|
|
|
|
|
|
|
std::string js_source;
|
|
|
|
CHECK(deno::ReadFileToString(js_fn, &js_source));
|
|
|
|
|
2018-08-02 13:13:32 -04:00
|
|
|
std::string source_map;
|
|
|
|
if (source_map_fn != nullptr) {
|
|
|
|
CHECK_EQ(argc, 4);
|
|
|
|
CHECK(deno::ReadFileToString(source_map_fn, &source_map));
|
|
|
|
}
|
|
|
|
|
2018-06-10 08:18:15 -04:00
|
|
|
deno_init();
|
2018-08-02 13:13:32 -04:00
|
|
|
auto snapshot_blob = deno::MakeSnapshot(
|
|
|
|
js_fn, js_source, source_map_fn != nullptr ? &source_map : nullptr);
|
2018-06-14 05:50:35 -04:00
|
|
|
std::string snapshot_str(snapshot_blob.data, snapshot_blob.raw_size);
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-07-26 23:21:10 -04:00
|
|
|
std::ofstream file_(snapshot_out_bin, std::ios::binary);
|
|
|
|
file_ << snapshot_str;
|
|
|
|
file_.close();
|
|
|
|
return file_.bad();
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|