2020-01-02 15:13:47 -05:00
|
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
|
import { sendSync } from "./dispatch_json.ts";
|
2020-03-08 08:09:22 -04:00
|
|
|
|
import { errors } from "../errors.ts";
|
|
|
|
|
import * as util from "../util.ts";
|
2018-07-06 11:20:35 -04:00
|
|
|
|
|
2020-02-22 18:46:52 -05:00
|
|
|
|
/** Get the loadavg.
|
|
|
|
|
* Requires the `--allow-env` flag.
|
|
|
|
|
*
|
|
|
|
|
* console.log(Deno.loadavg());
|
|
|
|
|
*/
|
|
|
|
|
export function loadavg(): number[] {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_loadavg");
|
2020-02-22 18:46:52 -05:00
|
|
|
|
}
|
2019-02-02 22:05:30 -05:00
|
|
|
|
|
2019-09-27 19:09:42 -04:00
|
|
|
|
/** Get the hostname.
|
|
|
|
|
* Requires the `--allow-env` flag.
|
|
|
|
|
*
|
|
|
|
|
* console.log(Deno.hostname());
|
|
|
|
|
*/
|
|
|
|
|
export function hostname(): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_hostname");
|
2019-09-27 19:09:42 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 08:35:45 -05:00
|
|
|
|
/** Get OS release.
|
|
|
|
|
* Requires the `--allow-env` flag.
|
|
|
|
|
*
|
|
|
|
|
* console.log(Deno.osRelease());
|
|
|
|
|
*/
|
|
|
|
|
export function osRelease(): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_os_release");
|
2020-02-24 08:35:45 -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 {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
sendSync("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 {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
sendSync("op_set_env", { key, value });
|
2019-03-09 12:30:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-02 11:55:28 -04:00
|
|
|
|
function getEnv(key: string): string | undefined {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_get_env", { key })[0];
|
2019-10-02 11:55:28 -04: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-10-02 11:55:28 -04:00
|
|
|
|
* console.log(Deno.env("SHELL"));
|
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
|
|
|
|
*/
|
2019-10-02 11:55:28 -04:00
|
|
|
|
export function env(): { [index: string]: string };
|
|
|
|
|
export function env(key: string): string | undefined;
|
|
|
|
|
export function env(
|
|
|
|
|
key?: string
|
|
|
|
|
): { [index: string]: string } | string | undefined {
|
|
|
|
|
if (key) {
|
|
|
|
|
return getEnv(key);
|
|
|
|
|
}
|
2020-02-25 09:14:27 -05:00
|
|
|
|
const env = sendSync("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-12-18 09:29:00 -05:00
|
|
|
|
type DirKind =
|
|
|
|
|
| "home"
|
|
|
|
|
| "cache"
|
|
|
|
|
| "config"
|
2019-12-21 06:30:13 -05:00
|
|
|
|
| "executable"
|
2019-12-18 09:29:00 -05:00
|
|
|
|
| "data"
|
|
|
|
|
| "data_local"
|
|
|
|
|
| "audio"
|
|
|
|
|
| "desktop"
|
|
|
|
|
| "document"
|
|
|
|
|
| "download"
|
|
|
|
|
| "font"
|
|
|
|
|
| "picture"
|
|
|
|
|
| "public"
|
|
|
|
|
| "template"
|
2020-03-01 19:05:04 -05:00
|
|
|
|
| "tmp"
|
2019-12-18 09:29:00 -05:00
|
|
|
|
| "video";
|
2019-12-15 00:14:20 -05:00
|
|
|
|
|
|
|
|
|
/**
|
2019-12-18 09:29:00 -05:00
|
|
|
|
* Returns the user and platform specific directories.
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* Requires the `--allow-env` flag.
|
2019-12-20 19:06:07 -05:00
|
|
|
|
* Returns null if there is no applicable directory or if any other error
|
|
|
|
|
* occurs.
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
2019-12-21 06:30:13 -05:00
|
|
|
|
* Argument values: "home", "cache", "config", "executable", "data",
|
|
|
|
|
* "data_local", "audio", "desktop", "document", "download", "font", "picture",
|
|
|
|
|
* "public", "template", "video"
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "cache"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ----------------------------------- | ---------------------------- |
|
|
|
|
|
* | Linux | `$XDG_CACHE_HOME` or `$HOME`/.cache | /home/alice/.cache |
|
|
|
|
|
* | macOS | `$HOME`/Library/Caches | /Users/Alice/Library/Caches |
|
|
|
|
|
* | Windows | `{FOLDERID_LocalAppData}` | C:\Users\Alice\AppData\Local |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "config"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ------------------------------------- | -------------------------------- |
|
|
|
|
|
* | Linux | `$XDG_CONFIG_HOME` or `$HOME`/.config | /home/alice/.config |
|
|
|
|
|
* | macOS | `$HOME`/Library/Preferences | /Users/Alice/Library/Preferences |
|
|
|
|
|
* | Windows | `{FOLDERID_RoamingAppData}` | C:\Users\Alice\AppData\Roaming |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
2019-12-21 06:30:13 -05:00
|
|
|
|
* "executable"
|
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | --------------------------------------------------------------- | -----------------------|
|
|
|
|
|
* | Linux | `XDG_BIN_HOME` or `$XDG_DATA_HOME`/../bin or `$HOME`/.local/bin | /home/alice/.local/bin |
|
|
|
|
|
* | macOS | - | - |
|
|
|
|
|
* | Windows | - | - |
|
|
|
|
|
*
|
2019-12-18 09:29:00 -05:00
|
|
|
|
* "data"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------------------------- | ---------------------------------------- |
|
|
|
|
|
* | Linux | `$XDG_DATA_HOME` or `$HOME`/.local/share | /home/alice/.local/share |
|
|
|
|
|
* | macOS | `$HOME`/Library/Application Support | /Users/Alice/Library/Application Support |
|
|
|
|
|
* | Windows | `{FOLDERID_RoamingAppData}` | C:\Users\Alice\AppData\Roaming |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "data_local"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------------------------- | ---------------------------------------- |
|
|
|
|
|
* | Linux | `$XDG_DATA_HOME` or `$HOME`/.local/share | /home/alice/.local/share |
|
|
|
|
|
* | macOS | `$HOME`/Library/Application Support | /Users/Alice/Library/Application Support |
|
|
|
|
|
* | Windows | `{FOLDERID_LocalAppData}` | C:\Users\Alice\AppData\Local |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "audio"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ------------------ | -------------------- |
|
|
|
|
|
* | Linux | `XDG_MUSIC_DIR` | /home/alice/Music |
|
|
|
|
|
* | macOS | `$HOME`/Music | /Users/Alice/Music |
|
|
|
|
|
* | Windows | `{FOLDERID_Music}` | C:\Users\Alice\Music |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "desktop"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | -------------------- | ---------------------- |
|
|
|
|
|
* | Linux | `XDG_DESKTOP_DIR` | /home/alice/Desktop |
|
|
|
|
|
* | macOS | `$HOME`/Desktop | /Users/Alice/Desktop |
|
|
|
|
|
* | Windows | `{FOLDERID_Desktop}` | C:\Users\Alice\Desktop |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "document"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------- | ------------------------ |
|
|
|
|
|
* | Linux | `XDG_DOCUMENTS_DIR` | /home/alice/Documents |
|
|
|
|
|
* | macOS | `$HOME`/Documents | /Users/Alice/Documents |
|
|
|
|
|
* | Windows | `{FOLDERID_Documents}` | C:\Users\Alice\Documents |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "download"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------- | ------------------------ |
|
|
|
|
|
* | Linux | `XDG_DOWNLOAD_DIR` | /home/alice/Downloads |
|
|
|
|
|
* | macOS | `$HOME`/Downloads | /Users/Alice/Downloads |
|
|
|
|
|
* | Windows | `{FOLDERID_Downloads}` | C:\Users\Alice\Downloads |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "font"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------------------------------------- | ------------------------------ |
|
|
|
|
|
* | Linux | `$XDG_DATA_HOME`/fonts or `$HOME`/.local/share/fonts | /home/alice/.local/share/fonts |
|
|
|
|
|
* | macOS | `$HOME/Library/Fonts` | /Users/Alice/Library/Fonts |
|
|
|
|
|
* | Windows | – | – |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "picture"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | --------------------- | ----------------------- |
|
|
|
|
|
* | Linux | `XDG_PICTURES_DIR` | /home/alice/Pictures |
|
|
|
|
|
* | macOS | `$HOME`/Pictures | /Users/Alice/Pictures |
|
|
|
|
|
* | Windows | `{FOLDERID_Pictures}` | C:\Users\Alice\Pictures |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "public"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | --------------------- | ------------------- |
|
|
|
|
|
* | Linux | `XDG_PUBLICSHARE_DIR` | /home/alice/Public |
|
|
|
|
|
* | macOS | `$HOME`/Public | /Users/Alice/Public |
|
|
|
|
|
* | Windows | `{FOLDERID_Public}` | C:\Users\Public |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
|
|
|
|
* "template"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------- | ---------------------------------------------------------- |
|
|
|
|
|
* | Linux | `XDG_TEMPLATES_DIR` | /home/alice/Templates |
|
|
|
|
|
* | macOS | – | – |
|
|
|
|
|
* | Windows | `{FOLDERID_Templates}` | C:\Users\Alice\AppData\Roaming\Microsoft\Windows\Templates |
|
2019-12-18 09:29:00 -05:00
|
|
|
|
*
|
2020-03-01 19:05:04 -05:00
|
|
|
|
* "tmp"
|
|
|
|
|
*
|
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ---------------------- | ---------------------------------------------------------- |
|
|
|
|
|
* | Linux | `TMPDIR` | /tmp |
|
|
|
|
|
* | macOS | `TMPDIR` | /tmp |
|
|
|
|
|
* | Windows | `{TMP}` | C:\Users\Alice\AppData\Local\Temp |
|
|
|
|
|
*
|
2019-12-18 09:29:00 -05:00
|
|
|
|
* "video"
|
2019-12-15 00:14:20 -05:00
|
|
|
|
* |Platform | Value | Example |
|
|
|
|
|
* | ------- | ------------------- | --------------------- |
|
|
|
|
|
* | Linux | `XDG_VIDEOS_DIR` | /home/alice/Videos |
|
|
|
|
|
* | macOS | `$HOME`/Movies | /Users/Alice/Movies |
|
|
|
|
|
* | Windows | `{FOLDERID_Videos}` | C:\Users\Alice\Videos |
|
|
|
|
|
*/
|
2019-12-20 19:06:07 -05:00
|
|
|
|
export function dir(kind: DirKind): string | null {
|
|
|
|
|
try {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_get_dir", { kind });
|
2019-12-20 19:06:07 -05:00
|
|
|
|
} catch (error) {
|
2020-02-24 15:48:35 -05:00
|
|
|
|
if (error instanceof errors.PermissionDenied) {
|
2019-12-20 19:06:07 -05:00
|
|
|
|
throw error;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2019-06-25 12:05:41 -04:00
|
|
|
|
}
|
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 {
|
2020-02-25 09:14:27 -05:00
|
|
|
|
return sendSync("op_exec_path");
|
2019-08-06 17:05:47 -04:00
|
|
|
|
}
|