summaryrefslogtreecommitdiff
path: root/libdeno/snapshot_creator.cc
blob: adad025dbccebd29cf13803b27954e9b27bea652 (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
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#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"

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));
  }

  deno_init();
  Deno* d = deno_new_snapshotter(
      deno::empty_buf, nullptr, js_fn, js_source.c_str(),
      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();
}