summaryrefslogtreecommitdiff
path: root/main.ts
blob: 75f5780ce5ddab021f4b9c3bcd3925f863e427a3 (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
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
// This allows us to have async/await in our code. It must be loaded first.
import "babel-polyfill";

import * as dispatch from "./dispatch";
import { main as pb } from "./msg.pb";

import * as runtime from "./runtime";
import * as util from "./util";

import { initTimers } from "./timers";
import { initFetch } from "./fetch";

// To control internal logging output
// Set with the -debug command-line flag.
export let debug = false;
let startCalled = false;

dispatch.sub("start", (payload: Uint8Array) => {
  if (startCalled) {
    throw Error("start message received more than once!");
  }
  startCalled = true;

  const msg = pb.Msg.decode(payload);
  const cwd = msg.startCwd;
  const argv = msg.startArgv;
  const debugFlag = msg.startDebugFlag;
  const mainJs = msg.startMainJs;
  const mainMap = msg.startMainMap;

  debug = debugFlag;
  util.log("start", { cwd, argv, debugFlag });

  initTimers();
  initFetch();
  runtime.setup(mainJs, mainMap);

  const inputFn = argv[0];
  const mod = runtime.resolveModule(inputFn, `${cwd}/`);
  mod.compileAndRun();
});