2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-26 08:22:07 -04:00
|
|
|
import { core } from "./core";
|
2019-08-23 01:30:14 -04:00
|
|
|
import * as dispatch from "./dispatch";
|
2019-08-24 08:13:50 -04:00
|
|
|
import { sendSync } from "./dispatch_json";
|
2018-07-13 03:24:07 -04:00
|
|
|
import { assert } from "./util";
|
|
|
|
import * as util from "./util";
|
2019-04-19 20:39:54 -04:00
|
|
|
import { window } from "./window";
|
2018-07-06 11:20:35 -04:00
|
|
|
|
2019-02-12 10:08:56 -05:00
|
|
|
/** The current process id of the runtime. */
|
2019-01-06 14:16:42 -05:00
|
|
|
export let pid: number;
|
|
|
|
|
2019-02-12 10:08:56 -05:00
|
|
|
/** Reflects the NO_COLOR environment variable: https://no-color.org/ */
|
2019-02-08 22:13:04 -05:00
|
|
|
export let noColor: boolean;
|
|
|
|
|
2019-08-06 17:05:47 -04:00
|
|
|
function setGlobals(pid_: number, noColor_: boolean): void {
|
2019-01-06 14:16:42 -05:00
|
|
|
assert(!pid);
|
|
|
|
pid = pid_;
|
2019-02-08 22:13:04 -05:00
|
|
|
noColor = noColor_;
|
2019-01-06 14:16:42 -05:00
|
|
|
}
|
|
|
|
|
2019-02-02 22:05:30 -05:00
|
|
|
/** Check if running in terminal.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* console.log(Deno.isTTY().stdout);
|
2019-02-02 22:05:30 -05:00
|
|
|
*/
|
|
|
|
export function isTTY(): { stdin: boolean; stdout: boolean; stderr: boolean } {
|
2019-08-24 08:13:50 -04:00
|
|
|
return sendSync(dispatch.OP_IS_TTY);
|
2019-02-02 22:05:30 -05:00
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Exit the Deno process with optional exit code. */
|
2019-08-23 01:30:14 -04:00
|
|
|
export function exit(code = 0): never {
|
2019-08-24 08:13:50 -04:00
|
|
|
sendSync(dispatch.OP_EXIT, { code });
|
2018-08-19 15:04:27 -04:00
|
|
|
return util.unreachable();
|
2018-07-06 11:20:35 -04:00
|
|
|
}
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
function setEnv(key: string, value: string): void {
|
2019-08-24 08:13:50 -04:00
|
|
|
sendSync(dispatch.OP_SET_ENV, { key, value });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a snapshot of the environment variables at invocation. Mutating a
|
2018-08-31 07:51:12 -04:00
|
|
|
* property in the object will set that variable in the environment for
|
2019-01-23 20:29:18 -05:00
|
|
|
* the process. The environment object will only accept `string`s
|
2018-08-31 07:51:12 -04:00
|
|
|
* as values.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* const myEnv = Deno.env();
|
2018-10-14 16:29:50 -04:00
|
|
|
* console.log(myEnv.SHELL);
|
|
|
|
* myEnv.TEST_VAR = "HELLO";
|
2019-02-12 10:08:56 -05:00
|
|
|
* const newEnv = Deno.env();
|
2018-10-14 16:29:50 -04:00
|
|
|
* console.log(myEnv.TEST_VAR == newEnv.TEST_VAR);
|
2018-08-31 07:51:12 -04:00
|
|
|
*/
|
2018-09-01 10:45:26 -04:00
|
|
|
export function env(): { [index: string]: string } {
|
2019-08-24 08:13:50 -04:00
|
|
|
const env = sendSync(dispatch.OP_ENV);
|
2019-08-23 01:30:14 -04:00
|
|
|
return new Proxy(env, {
|
|
|
|
set(obj, prop: string, value: string): boolean {
|
|
|
|
setEnv(prop, value);
|
|
|
|
return Reflect.set(obj, prop, value);
|
|
|
|
}
|
2018-08-31 07:51:12 -04:00
|
|
|
});
|
|
|
|
}
|
2019-01-28 20:41:28 -05:00
|
|
|
|
2019-08-24 08:13:50 -04:00
|
|
|
interface Start {
|
|
|
|
cwd: string;
|
|
|
|
pid: number;
|
|
|
|
argv: string[];
|
|
|
|
mainModule: string; // Absolute URL.
|
|
|
|
debugFlag: boolean;
|
|
|
|
depsFlag: boolean;
|
|
|
|
typesFlag: boolean;
|
|
|
|
versionFlag: boolean;
|
|
|
|
denoVersion: string;
|
|
|
|
v8Version: string;
|
|
|
|
noColor: boolean;
|
|
|
|
xevalDelim: string;
|
2019-01-28 20:41:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// This function bootstraps an environment within Deno, it is shared both by
|
|
|
|
// the runtime and the compiler environments.
|
|
|
|
// @internal
|
2019-08-24 08:13:50 -04:00
|
|
|
export function start(preserveDenoNamespace = true, source?: string): Start {
|
2019-08-23 01:30:14 -04:00
|
|
|
core.setAsyncHandler(dispatch.asyncMsgFromRust);
|
2019-01-28 20:41:28 -05:00
|
|
|
|
|
|
|
// First we send an empty `Start` message to let the privileged side know we
|
|
|
|
// are ready. The response should be a `StartRes` message containing the CLI
|
|
|
|
// args and other info.
|
2019-08-24 08:13:50 -04:00
|
|
|
const s = sendSync(dispatch.OP_START);
|
2019-01-28 20:41:28 -05:00
|
|
|
|
2019-08-24 08:13:50 -04:00
|
|
|
util.setLogDebug(s.debugFlag, source);
|
2019-01-28 20:41:28 -05:00
|
|
|
|
2019-08-24 08:13:50 -04:00
|
|
|
setGlobals(s.pid, s.noColor);
|
2019-02-10 20:07:02 -05:00
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
if (preserveDenoNamespace) {
|
|
|
|
util.immutableDefine(window, "Deno", window.Deno);
|
|
|
|
// Deno.core could ONLY be safely frozen here (not in globals.ts)
|
|
|
|
// since shared_queue.js will modify core properties.
|
|
|
|
Object.freeze(window.Deno.core);
|
|
|
|
// core.sharedQueue is an object so we should also freeze it.
|
|
|
|
Object.freeze(window.Deno.core.sharedQueue);
|
|
|
|
} else {
|
|
|
|
// Remove window.Deno
|
|
|
|
delete window.Deno;
|
|
|
|
assert(window.Deno === undefined);
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
|
2019-08-24 08:13:50 -04:00
|
|
|
return s;
|
2019-01-28 20:41:28 -05:00
|
|
|
}
|
2019-06-25 12:05:41 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current user's home directory.
|
2019-08-06 01:45:36 -04:00
|
|
|
* Requires the `--allow-env` flag.
|
2019-06-25 12:05:41 -04:00
|
|
|
*/
|
|
|
|
export function homeDir(): string {
|
2019-08-24 08:13:50 -04:00
|
|
|
const path = sendSync(dispatch.OP_HOME_DIR);
|
2019-06-25 12:05:41 -04:00
|
|
|
if (!path) {
|
|
|
|
throw new Error("Could not get home directory.");
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
2019-08-06 17:05:47 -04:00
|
|
|
|
2019-08-06 20:32:25 -04:00
|
|
|
/**
|
|
|
|
* Returns the path to the current deno executable.
|
|
|
|
* Requires the `--allow-env` flag.
|
|
|
|
*/
|
2019-08-06 17:05:47 -04:00
|
|
|
export function execPath(): string {
|
2019-08-24 08:13:50 -04:00
|
|
|
return sendSync(dispatch.OP_EXEC_PATH);
|
2019-08-06 17:05:47 -04:00
|
|
|
}
|