0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/libdeno/snapshot_creator.cc

45 lines
1.3 KiB
C++
Raw Normal View History

// 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.
#include <fstream>
#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-10-24 01:12:13 -04:00
namespace deno {} // namespace deno
int main(int argc, char** argv) {
const char* snapshot_out_bin = argv[1];
const char* js_fn = argv[2];
const char* source_map_fn = argv[3]; // Optional.
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
CHECK_NE(js_fn, nullptr);
CHECK_NE(snapshot_out_bin, nullptr);
std::string js_source;
CHECK(deno::ReadFileToString(js_fn, &js_source));
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-10-24 01:12:13 -04:00
Deno* d = deno_new_snapshotter(
deno::empty_buf, nullptr, js_fn, js_source.c_str(),
2018-10-24 01:12:13 -04:00
source_map_fn != nullptr ? source_map.c_str() : nullptr);
auto snapshot = deno_get_snapshot(d);
std::string snapshot_str(reinterpret_cast<char*>(snapshot.data_ptr),
snapshot.data_len);
std::ofstream file_(snapshot_out_bin, std::ios::binary);
file_ << snapshot_str;
file_.close();
return file_.bad();
}