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

/** Returns the destination of the named symbolic link synchronously.
 *
 *       import { readlinkSync } from "deno";
 *       const targetPath = readlinkSync("symlink/path");
 */
export function readlinkSync(name: string): string {
  return res(dispatch.sendSync(...req(name)));
}

/** Returns the destination of the named symbolic link.
 *
 *       import { readlink } from "deno";
 *       const targetPath = await readlink("symlink/path");
 */
export async function readlink(name: string): Promise<string> {
  return res(await dispatch.sendAsync(...req(name)));
}

function req(name: string): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
  const builder = flatbuffers.createBuilder();
  const name_ = builder.createString(name);
  msg.Readlink.startReadlink(builder);
  msg.Readlink.addName(builder, name_);
  const inner = msg.Readlink.endReadlink(builder);
  return [builder, msg.Any.Readlink, inner];
}

function res(baseRes: null | msg.Base): string {
  assert(baseRes !== null);
  assert(msg.Any.ReadlinkRes === baseRes!.innerType());
  const res = new msg.ReadlinkRes();
  assert(baseRes!.inner(res) !== null);
  const path = res.path();
  assert(path !== null);
  return path!;
}