deno/js/stat.ts

73 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-09-11 19:38:53 +00:00
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
2018-10-04 01:18:23 +00:00
import * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
2018-09-11 19:38:53 +00:00
import * as dispatch from "./dispatch";
import { assert } from "./util";
2018-10-04 01:41:59 +00:00
import { FileInfo, FileInfoImpl } from "./file_info";
2018-09-11 19:38:53 +00:00
2018-10-14 20:29:50 +00:00
/** Queries the file system for information on the path provided. If the given
* path is a symlink information about the symlink will be returned.
2018-09-11 19:38:53 +00:00
*
2018-10-14 20:29:50 +00:00
* import { lstat } from "deno";
* const fileInfo = await lstat("hello.txt");
* assert(fileInfo.isFile());
2018-09-11 19:38:53 +00:00
*/
export async function lstat(filename: string): Promise<FileInfo> {
return res(await dispatch.sendAsync(...req(filename, true)));
}
2018-10-14 20:29:50 +00:00
/** Queries the file system for information on the path provided synchronously.
* If the given path is a symlink information about the symlink will be
* returned.
2018-09-11 19:38:53 +00:00
*
2018-10-14 20:29:50 +00:00
* import { lstatSync } from "deno";
* const fileInfo = lstatSync("hello.txt");
* assert(fileInfo.isFile());
2018-09-11 19:38:53 +00:00
*/
export function lstatSync(filename: string): FileInfo {
return res(dispatch.sendSync(...req(filename, true)));
}
2018-10-14 20:29:50 +00:00
/** Queries the file system for information on the path provided. `stat` Will
* always follow symlinks.
2018-09-11 19:38:53 +00:00
*
2018-10-14 20:29:50 +00:00
* import { stat } from "deno";
* const fileInfo = await stat("hello.txt");
* assert(fileInfo.isFile());
2018-09-11 19:38:53 +00:00
*/
export async function stat(filename: string): Promise<FileInfo> {
return res(await dispatch.sendAsync(...req(filename, false)));
}
2018-10-14 20:29:50 +00:00
/** Queries the file system for information on the path provided synchronously.
2018-09-11 19:38:53 +00:00
* `statSync` Will always follow symlinks.
*
2018-10-14 20:29:50 +00:00
* import { statSync } from "deno";
* const fileInfo = statSync("hello.txt");
* assert(fileInfo.isFile());
2018-09-11 19:38:53 +00:00
*/
export function statSync(filename: string): FileInfo {
return res(dispatch.sendSync(...req(filename, false)));
}
function req(
filename: string,
lstat: boolean
2018-10-04 01:18:23 +00:00
): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
const builder = flatbuffers.createBuilder();
2018-09-11 19:38:53 +00:00
const filename_ = builder.createString(filename);
2018-10-04 01:18:23 +00:00
msg.Stat.startStat(builder);
msg.Stat.addFilename(builder, filename_);
msg.Stat.addLstat(builder, lstat);
const inner = msg.Stat.endStat(builder);
return [builder, msg.Any.Stat, inner];
2018-09-11 19:38:53 +00:00
}
2018-10-04 01:18:23 +00:00
function res(baseRes: null | msg.Base): FileInfo {
2018-09-11 19:38:53 +00:00
assert(baseRes != null);
2018-10-04 01:18:23 +00:00
assert(msg.Any.StatRes === baseRes!.innerType());
const res = new msg.StatRes();
assert(baseRes!.inner(res) != null);
2018-09-17 19:00:57 +00:00
return new FileInfoImpl(res);
2018-09-11 19:38:53 +00:00
}