summaryrefslogtreecommitdiff
path: root/js/dir.ts
blob: cf93451101ebd8da9299c0e784665a26b86a02e7 (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
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as msg from "gen/cli/msg_generated";
import { assert } from "./util";
import * as flatbuffers from "./flatbuffers";
import { sendSync } from "./dispatch";

/**
 * `cwd()` Return a string representing the current working directory.
 * If the current directory can be reached via multiple paths
 * (due to symbolic links), `cwd()` may return
 * any one of them.
 * throws `NotFound` exception if directory not available
 */
export function cwd(): string {
  const builder = flatbuffers.createBuilder();
  msg.Cwd.startCwd(builder);
  const inner = msg.Cwd.endCwd(builder);
  const baseRes = sendSync(builder, msg.Any.Cwd, inner);
  assert(baseRes != null);
  assert(msg.Any.CwdRes === baseRes!.innerType());
  const res = new msg.CwdRes();
  assert(baseRes!.inner(res) != null);
  return res.cwd()!;
}

/**
 * `chdir()` Change the current working directory to path.
 * throws `NotFound` exception if directory not available
 */
export function chdir(directory: string): void {
  const builder = flatbuffers.createBuilder();
  const directory_ = builder.createString(directory);
  const inner = msg.Chdir.createChdir(builder, directory_);
  sendSync(builder, msg.Any.Chdir, inner);
}