2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-10-17 13:04:28 -04:00
|
|
|
import * as flatbuffers from "./flatbuffers";
|
2018-10-03 21:18:23 -04:00
|
|
|
import * as msg from "gen/msg_generated";
|
2018-08-30 15:35:51 -04:00
|
|
|
import { assert, log, setLogDebug } from "./util";
|
2018-08-17 16:34:30 -04:00
|
|
|
import * as os from "./os";
|
2018-08-22 17:17:26 -04:00
|
|
|
import { DenoCompiler } from "./compiler";
|
2018-08-25 15:42:49 -04:00
|
|
|
import { libdeno } from "./libdeno";
|
2018-09-22 08:47:44 -04:00
|
|
|
import { args } from "./deno";
|
2018-09-09 18:54:42 -04:00
|
|
|
import { sendSync, handleAsyncMsgFromRust } from "./dispatch";
|
2018-10-12 14:22:52 -04:00
|
|
|
import { promiseErrorExaminer, promiseRejectHandler } from "./promise_util";
|
2018-10-15 20:52:33 -04:00
|
|
|
import { version } from "typescript";
|
2018-06-11 21:54:55 -04:00
|
|
|
|
2018-10-03 21:18:23 -04:00
|
|
|
function sendStart(): msg.StartRes {
|
2018-10-17 13:04:28 -04:00
|
|
|
const builder = flatbuffers.createBuilder();
|
2018-10-03 21:18:23 -04:00
|
|
|
msg.Start.startStart(builder);
|
|
|
|
const startOffset = msg.Start.endStart(builder);
|
|
|
|
const baseRes = sendSync(builder, msg.Any.Start, startOffset);
|
2018-08-30 15:35:51 -04:00
|
|
|
assert(baseRes != null);
|
2018-10-03 21:18:23 -04:00
|
|
|
assert(msg.Any.StartRes === baseRes!.innerType());
|
|
|
|
const startRes = new msg.StartRes();
|
2018-10-03 21:12:23 -04:00
|
|
|
assert(baseRes!.inner(startRes) != null);
|
2018-08-30 15:35:51 -04:00
|
|
|
return startRes;
|
2018-07-06 11:27:36 -04:00
|
|
|
}
|
|
|
|
|
2018-08-26 03:57:16 -04:00
|
|
|
function onGlobalError(
|
|
|
|
message: string,
|
|
|
|
source: string,
|
|
|
|
lineno: number,
|
|
|
|
colno: number,
|
2018-10-08 11:36:09 -04:00
|
|
|
error: any // tslint:disable-line:no-any
|
2018-08-26 03:57:16 -04:00
|
|
|
) {
|
2018-10-08 11:36:09 -04:00
|
|
|
if (error instanceof Error) {
|
|
|
|
console.log(error.stack);
|
|
|
|
} else {
|
|
|
|
console.log(`Thrown: ${String(error)}`);
|
|
|
|
}
|
2018-08-26 03:57:16 -04:00
|
|
|
os.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-07-21 21:14:52 -04:00
|
|
|
/* tslint:disable-next-line:no-default-export */
|
|
|
|
export default function denoMain() {
|
2018-09-05 22:13:36 -04:00
|
|
|
libdeno.recv(handleAsyncMsgFromRust);
|
2018-08-26 03:57:16 -04:00
|
|
|
libdeno.setGlobalErrorHandler(onGlobalError);
|
2018-10-12 14:22:52 -04:00
|
|
|
libdeno.setPromiseRejectHandler(promiseRejectHandler);
|
|
|
|
libdeno.setPromiseErrorExaminer(promiseErrorExaminer);
|
2018-08-22 17:17:26 -04:00
|
|
|
const compiler = DenoCompiler.instance();
|
2018-08-02 13:13:32 -04:00
|
|
|
|
2018-09-24 15:33:50 -04:00
|
|
|
// First we send an empty "Start" message to let the privileged side know we
|
2018-07-06 11:27:36 -04:00
|
|
|
// are ready. The response should be a "StartRes" message containing the CLI
|
2018-09-22 08:47:44 -04:00
|
|
|
// args and other info.
|
2018-08-30 15:35:51 -04:00
|
|
|
const startResMsg = sendStart();
|
2018-07-06 11:27:36 -04:00
|
|
|
|
2018-08-22 17:17:26 -04:00
|
|
|
setLogDebug(startResMsg.debugFlag());
|
2018-08-17 16:34:30 -04:00
|
|
|
|
2018-10-11 17:23:22 -04:00
|
|
|
// handle `--types`
|
|
|
|
if (startResMsg.typesFlag()) {
|
|
|
|
const defaultLibFileName = compiler.getDefaultLibFileName();
|
|
|
|
const defaultLibModule = compiler.resolveModule(defaultLibFileName, "");
|
|
|
|
console.log(defaultLibModule.sourceCode);
|
|
|
|
os.exit(0);
|
|
|
|
}
|
|
|
|
|
2018-10-15 20:52:33 -04:00
|
|
|
// handle `--version`
|
|
|
|
if (startResMsg.versionFlag()) {
|
|
|
|
console.log("deno:", startResMsg.denoVersion());
|
|
|
|
console.log("v8:", startResMsg.v8Version());
|
|
|
|
console.log("typescript:", version);
|
|
|
|
os.exit(0);
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:27:36 -04:00
|
|
|
const cwd = startResMsg.cwd();
|
2018-07-13 03:24:07 -04:00
|
|
|
log("cwd", cwd);
|
2018-06-13 19:40:35 -04:00
|
|
|
|
2018-08-23 19:46:21 -04:00
|
|
|
// TODO handle shebang.
|
|
|
|
for (let i = 1; i < startResMsg.argvLength(); i++) {
|
2018-09-22 08:47:44 -04:00
|
|
|
args.push(startResMsg.argv(i));
|
2018-06-13 19:40:35 -04:00
|
|
|
}
|
2018-09-22 08:47:44 -04:00
|
|
|
log("args", args);
|
|
|
|
Object.freeze(args);
|
2018-07-06 11:27:36 -04:00
|
|
|
|
2018-09-22 08:47:44 -04:00
|
|
|
const inputFn = args[0];
|
2018-08-17 16:34:30 -04:00
|
|
|
if (!inputFn) {
|
|
|
|
console.log("No input script specified.");
|
|
|
|
os.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-09-24 15:33:50 -04:00
|
|
|
compiler.recompile = startResMsg.recompileFlag();
|
2018-08-22 17:17:26 -04:00
|
|
|
compiler.run(inputFn, `${cwd}/`);
|
2018-07-21 21:14:52 -04:00
|
|
|
}
|