summaryrefslogtreecommitdiff
path: root/core/libdeno/snapshot_creator.cc
blob: 081bd115699005092be032cc9f09b8f31a89549a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#include <iostream>
#include "deno.h"
#include "file_util.h"
#include "internal.h"
#include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h"

int main(int argc, char** argv) {
  const char* snapshot_out_bin = argv[1];
  const char* js_fn = argv[2];

  deno_set_v8_flags(&argc, argv);

  CHECK_NOT_NULL(js_fn);
  CHECK_NOT_NULL(snapshot_out_bin);

  std::string js_source;
  CHECK(deno::ReadFileToString(js_fn, &js_source));

  deno_init();
  deno_config config = {1, deno::empty_snapshot, deno::empty_buf, nullptr};
  Deno* d = deno_new(config);

  deno_execute(d, nullptr, js_fn, js_source.c_str());
  if (deno_last_exception(d) != nullptr) {
    std::cerr << "Snapshot Exception " << std::endl;
    std::cerr << deno_last_exception(d) << std::endl;
    deno_delete(d);
    return 1;
  }

  auto snapshot = deno_snapshot_new(d);

  std::ofstream file_(snapshot_out_bin, std::ios::binary);
  file_.write(reinterpret_cast<char*>(snapshot.data_ptr), snapshot.data_len);
  file_.close();

  deno_snapshot_delete(snapshot);
  deno_delete(d);

  return file_.bad();
}