1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/js/read_link.ts

45 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-09-25 00:20:49 -04:00
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import * as fbs from "gen/msg_generated";
import { 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)));
}
2018-09-22 01:03:39 -04:00
function req(name: string): [flatbuffers.Builder, fbs.Any, flatbuffers.Offset] {
2018-09-25 00:20:49 -04:00
const builder = new flatbuffers.Builder();
const name_ = builder.createString(name);
fbs.Readlink.startReadlink(builder);
fbs.Readlink.addName(builder, name_);
const msg = fbs.Readlink.endReadlink(builder);
return [builder, fbs.Any.Readlink, msg];
}
function res(baseRes: null | fbs.Base): string {
assert(baseRes !== null);
assert(fbs.Any.ReadlinkRes === baseRes!.msgType());
const res = new fbs.ReadlinkRes();
assert(baseRes!.msg(res) !== null);
const path = res.path();
assert(path !== null);
return path!;
}