2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 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-12-13 16:25:42 -05:00
|
|
|
#include <iostream>
|
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-10-24 01:12:13 -04:00
|
|
|
namespace deno {} // namespace deno
|
2018-06-18 10:02:08 -04:00
|
|
|
|
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-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-06-10 08:18:15 -04:00
|
|
|
deno_init();
|
2018-11-29 15:40:04 -05:00
|
|
|
deno_config config = {1, deno::empty_buf, deno::empty_buf, nullptr, nullptr};
|
2018-12-13 16:25:42 -05:00
|
|
|
Deno* d = deno_new(config);
|
|
|
|
|
|
|
|
int r = deno_execute(d, nullptr, js_fn, js_source.c_str());
|
|
|
|
if (!r) {
|
|
|
|
std::cerr << "Snapshot Exception " << std::endl;
|
|
|
|
std::cerr << deno_last_exception(d) << std::endl;
|
|
|
|
deno_delete(d);
|
|
|
|
return 1;
|
|
|
|
}
|
2018-10-24 01:12:13 -04:00
|
|
|
|
|
|
|
auto snapshot = deno_get_snapshot(d);
|
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);
|
2018-12-03 19:57:34 -05:00
|
|
|
file_.write(reinterpret_cast<char*>(snapshot.data_ptr), snapshot.data_len);
|
2018-07-26 23:21:10 -04:00
|
|
|
file_.close();
|
2018-12-03 19:57:34 -05:00
|
|
|
|
|
|
|
delete[] snapshot.data_ptr;
|
|
|
|
deno_delete(d);
|
|
|
|
|
2018-07-26 23:21:10 -04:00
|
|
|
return file_.bad();
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|