2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-09 19:22:15 -04:00
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
2020-04-16 01:40:30 -04:00
|
|
|
import { build } from "../../build.ts";
|
|
|
|
|
|
|
|
export interface FileInfo {
|
|
|
|
size: number;
|
2020-04-27 14:09:56 -04:00
|
|
|
mtime: Date | null;
|
|
|
|
atime: Date | null;
|
|
|
|
birthtime: Date | null;
|
2020-04-16 01:40:30 -04:00
|
|
|
dev: number | null;
|
|
|
|
ino: number | null;
|
|
|
|
mode: number | null;
|
|
|
|
nlink: number | null;
|
|
|
|
uid: number | null;
|
|
|
|
gid: number | null;
|
|
|
|
rdev: number | null;
|
|
|
|
blksize: number | null;
|
|
|
|
blocks: number | null;
|
|
|
|
isFile: boolean;
|
|
|
|
isDirectory: boolean;
|
|
|
|
isSymlink: boolean;
|
|
|
|
}
|
2018-09-11 15:38:53 -04:00
|
|
|
|
2019-08-26 10:18:42 -04:00
|
|
|
export interface StatResponse {
|
|
|
|
isFile: boolean;
|
2020-03-31 13:46:25 -04:00
|
|
|
isDirectory: boolean;
|
2019-08-26 10:18:42 -04:00
|
|
|
isSymlink: boolean;
|
2020-03-14 22:57:42 -04:00
|
|
|
size: number;
|
2020-04-27 14:09:56 -04:00
|
|
|
mtime: number | null;
|
|
|
|
atime: number | null;
|
|
|
|
birthtime: number | null;
|
2020-04-16 01:40:30 -04:00
|
|
|
// Null for stat(), but exists for readdir().
|
2019-08-26 10:18:42 -04:00
|
|
|
name: string | null;
|
2020-01-16 09:46:32 -05:00
|
|
|
// Unix only members
|
|
|
|
dev: number;
|
|
|
|
ino: number;
|
|
|
|
mode: number;
|
|
|
|
nlink: number;
|
|
|
|
uid: number;
|
|
|
|
gid: number;
|
|
|
|
rdev: number;
|
|
|
|
blksize: number;
|
|
|
|
blocks: number;
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
2020-04-16 01:40:30 -04:00
|
|
|
// @internal
|
|
|
|
export function parseFileInfo(response: StatResponse): FileInfo {
|
|
|
|
const isUnix = build.os === "mac" || build.os === "linux";
|
|
|
|
return {
|
|
|
|
isFile: response.isFile,
|
|
|
|
isDirectory: response.isDirectory,
|
|
|
|
isSymlink: response.isSymlink,
|
|
|
|
size: response.size,
|
2020-04-27 14:09:56 -04:00
|
|
|
mtime: response.mtime != null ? new Date(response.mtime) : null,
|
|
|
|
atime: response.atime != null ? new Date(response.atime) : null,
|
|
|
|
birthtime: response.birthtime != null ? new Date(response.birthtime) : null,
|
2020-04-16 01:40:30 -04:00
|
|
|
// Only non-null if on Unix
|
|
|
|
dev: isUnix ? response.dev : null,
|
|
|
|
ino: isUnix ? response.ino : null,
|
|
|
|
mode: isUnix ? response.mode : null,
|
|
|
|
nlink: isUnix ? response.nlink : null,
|
|
|
|
uid: isUnix ? response.uid : null,
|
|
|
|
gid: isUnix ? response.gid : null,
|
|
|
|
rdev: isUnix ? response.rdev : null,
|
|
|
|
blksize: isUnix ? response.blksize : null,
|
|
|
|
blocks: isUnix ? response.blocks : null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-03-06 11:29:23 -05:00
|
|
|
export async function lstat(path: string): Promise<FileInfo> {
|
2020-02-25 09:14:27 -05:00
|
|
|
const res = (await sendAsync("op_stat", {
|
2020-03-06 11:29:23 -05:00
|
|
|
path,
|
2020-03-28 13:03:49 -04:00
|
|
|
lstat: true,
|
2019-08-26 10:18:42 -04:00
|
|
|
})) as StatResponse;
|
2020-04-16 01:40:30 -04:00
|
|
|
return parseFileInfo(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|
|
|
|
|
2020-03-06 11:29:23 -05:00
|
|
|
export function lstatSync(path: string): FileInfo {
|
2020-02-25 09:14:27 -05:00
|
|
|
const res = sendSync("op_stat", {
|
2020-03-06 11:29:23 -05:00
|
|
|
path,
|
2020-03-28 13:03:49 -04:00
|
|
|
lstat: true,
|
2019-08-26 10:18:42 -04:00
|
|
|
}) as StatResponse;
|
2020-04-16 01:40:30 -04:00
|
|
|
return parseFileInfo(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|
|
|
|
|
2020-03-06 11:29:23 -05:00
|
|
|
export async function stat(path: string): Promise<FileInfo> {
|
2020-02-25 09:14:27 -05:00
|
|
|
const res = (await sendAsync("op_stat", {
|
2020-03-06 11:29:23 -05:00
|
|
|
path,
|
2020-03-28 13:03:49 -04:00
|
|
|
lstat: false,
|
2019-08-26 10:18:42 -04:00
|
|
|
})) as StatResponse;
|
2020-04-16 01:40:30 -04:00
|
|
|
return parseFileInfo(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|
|
|
|
|
2020-03-06 11:29:23 -05:00
|
|
|
export function statSync(path: string): FileInfo {
|
2020-02-25 09:14:27 -05:00
|
|
|
const res = sendSync("op_stat", {
|
2020-03-06 11:29:23 -05:00
|
|
|
path,
|
2020-03-28 13:03:49 -04:00
|
|
|
lstat: false,
|
2019-08-26 10:18:42 -04:00
|
|
|
}) as StatResponse;
|
2020-04-16 01:40:30 -04:00
|
|
|
return parseFileInfo(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|