summaryrefslogtreecommitdiff
path: root/js/read_link.ts
diff options
context:
space:
mode:
authorMani Maghsoudlou <manidlou@gmail.com>2018-09-24 21:20:49 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-25 00:20:49 -0400
commitad5065e23ec33af1422eeffdbb877ef8fd5f6da4 (patch)
tree5b90e2c1e59ad97ef0aa3f93868f80c90b8a365b /js/read_link.ts
parentd957f8ebc24bcbdb94c0c5297c0072aa8d2ebec8 (diff)
Implement deno.readlink() (#797)
Diffstat (limited to 'js/read_link.ts')
-rw-r--r--js/read_link.ts46
1 files changed, 46 insertions, 0 deletions
diff --git a/js/read_link.ts b/js/read_link.ts
new file mode 100644
index 000000000..6bd613389
--- /dev/null
+++ b/js/read_link.ts
@@ -0,0 +1,46 @@
+// 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)));
+}
+
+function req(
+ name: string
+): [flatbuffers.Builder, fbs.Any, flatbuffers.Offset] {
+ 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!;
+}