2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-10-03 21:18:23 -04:00
|
|
|
import * as msg from "gen/msg_generated";
|
2018-10-17 13:04:28 -04:00
|
|
|
import * as flatbuffers from "./flatbuffers";
|
2018-09-11 15:38:53 -04:00
|
|
|
import * as dispatch from "./dispatch";
|
|
|
|
import { assert } from "./util";
|
2018-10-03 21:41:59 -04:00
|
|
|
import { FileInfo, FileInfoImpl } from "./file_info";
|
2018-09-11 15:38:53 -04:00
|
|
|
|
2018-10-14 16:29:50 -04: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 15:38:53 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* const fileInfo = await Deno.lstat("hello.txt");
|
2018-10-14 16:29:50 -04:00
|
|
|
* assert(fileInfo.isFile());
|
2018-09-11 15:38:53 -04:00
|
|
|
*/
|
|
|
|
export async function lstat(filename: string): Promise<FileInfo> {
|
|
|
|
return res(await dispatch.sendAsync(...req(filename, true)));
|
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04: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 15:38:53 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* const fileInfo = Deno.lstatSync("hello.txt");
|
2018-10-14 16:29:50 -04:00
|
|
|
* assert(fileInfo.isFile());
|
2018-09-11 15:38:53 -04:00
|
|
|
*/
|
|
|
|
export function lstatSync(filename: string): FileInfo {
|
|
|
|
return res(dispatch.sendSync(...req(filename, true)));
|
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Queries the file system for information on the path provided. `stat` Will
|
|
|
|
* always follow symlinks.
|
2018-09-11 15:38:53 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* const fileInfo = await Deno.stat("hello.txt");
|
2018-10-14 16:29:50 -04:00
|
|
|
* assert(fileInfo.isFile());
|
2018-09-11 15:38:53 -04:00
|
|
|
*/
|
|
|
|
export async function stat(filename: string): Promise<FileInfo> {
|
|
|
|
return res(await dispatch.sendAsync(...req(filename, false)));
|
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Queries the file system for information on the path provided synchronously.
|
2018-09-11 15:38:53 -04:00
|
|
|
* `statSync` Will always follow symlinks.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* const fileInfo = Deno.statSync("hello.txt");
|
2018-10-14 16:29:50 -04:00
|
|
|
* assert(fileInfo.isFile());
|
2018-09-11 15:38:53 -04:00
|
|
|
*/
|
|
|
|
export function statSync(filename: string): FileInfo {
|
|
|
|
return res(dispatch.sendSync(...req(filename, false)));
|
|
|
|
}
|
|
|
|
|
|
|
|
function req(
|
|
|
|
filename: string,
|
|
|
|
lstat: boolean
|
2018-10-03 21:18:23 -04:00
|
|
|
): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
|
2018-10-17 13:04:28 -04:00
|
|
|
const builder = flatbuffers.createBuilder();
|
2018-09-11 15:38:53 -04:00
|
|
|
const filename_ = builder.createString(filename);
|
2018-10-03 21:18:23 -04: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 15:38:53 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 21:18:23 -04:00
|
|
|
function res(baseRes: null | msg.Base): FileInfo {
|
2018-09-11 15:38:53 -04:00
|
|
|
assert(baseRes != null);
|
2018-10-03 21:18:23 -04:00
|
|
|
assert(msg.Any.StatRes === baseRes!.innerType());
|
|
|
|
const res = new msg.StatRes();
|
2018-10-03 21:12:23 -04:00
|
|
|
assert(baseRes!.inner(res) != null);
|
2018-09-17 15:00:57 -04:00
|
|
|
return new FileInfoImpl(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|