0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/js/read_link.ts

43 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.
2018-10-03 21:18:23 -04:00
import * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
2018-09-25 00:20:49 -04:00
import { assert } from "./util";
import * as dispatch from "./dispatch";
2018-10-14 16:29:50 -04:00
/** Returns the destination of the named symbolic link synchronously.
2018-09-25 00:20:49 -04:00
*
2018-10-14 16:29:50 -04:00
* import { readlinkSync } from "deno";
* const targetPath = readlinkSync("symlink/path");
2018-09-25 00:20:49 -04:00
*/
export function readlinkSync(name: string): string {
return res(dispatch.sendSync(...req(name)));
}
2018-10-14 16:29:50 -04:00
/** Returns the destination of the named symbolic link.
2018-09-25 00:20:49 -04:00
*
2018-10-14 16:29:50 -04:00
* import { readlink } from "deno";
* const targetPath = await readlink("symlink/path");
2018-09-25 00:20:49 -04:00
*/
export async function readlink(name: string): Promise<string> {
return res(await dispatch.sendAsync(...req(name)));
}
2018-10-03 21:18:23 -04:00
function req(name: string): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
const builder = flatbuffers.createBuilder();
2018-09-25 00:20:49 -04:00
const name_ = builder.createString(name);
2018-10-03 21:18:23 -04:00
msg.Readlink.startReadlink(builder);
msg.Readlink.addName(builder, name_);
const inner = msg.Readlink.endReadlink(builder);
return [builder, msg.Any.Readlink, inner];
2018-09-25 00:20:49 -04:00
}
2018-10-03 21:18:23 -04:00
function res(baseRes: null | msg.Base): string {
2018-09-25 00:20:49 -04:00
assert(baseRes !== null);
2018-10-03 21:18:23 -04:00
assert(msg.Any.ReadlinkRes === baseRes!.innerType());
const res = new msg.ReadlinkRes();
assert(baseRes!.inner(res) !== null);
2018-09-25 00:20:49 -04:00
const path = res.path();
assert(path !== null);
return path!;
}