2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-30 14:45:36 -04:00
|
|
|
import * as msg from "gen/cli/msg_generated";
|
2018-10-17 13:04:28 -04:00
|
|
|
import * as flatbuffers from "./flatbuffers";
|
2018-09-12 22:04:45 -04:00
|
|
|
import * as dispatch from "./dispatch";
|
|
|
|
import { assert } from "./util";
|
|
|
|
|
|
|
|
export interface MakeTempDirOptions {
|
|
|
|
dir?: string;
|
|
|
|
prefix?: string;
|
|
|
|
suffix?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
function req({
|
|
|
|
dir,
|
|
|
|
prefix,
|
|
|
|
suffix
|
2018-10-03 21:18:23 -04:00
|
|
|
}: MakeTempDirOptions): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
|
2018-10-17 13:04:28 -04:00
|
|
|
const builder = flatbuffers.createBuilder();
|
2019-04-07 20:51:43 -04:00
|
|
|
const fbDir = dir == null ? 0 : builder.createString(dir);
|
|
|
|
const fbPrefix = prefix == null ? 0 : builder.createString(prefix);
|
|
|
|
const fbSuffix = suffix == null ? 0 : builder.createString(suffix);
|
|
|
|
const inner = msg.MakeTempDir.createMakeTempDir(
|
|
|
|
builder,
|
|
|
|
fbDir,
|
|
|
|
fbPrefix,
|
|
|
|
fbSuffix
|
|
|
|
);
|
2018-10-03 21:18:23 -04:00
|
|
|
return [builder, msg.Any.MakeTempDir, inner];
|
2018-09-12 22:04:45 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 21:18:23 -04:00
|
|
|
function res(baseRes: null | msg.Base): string {
|
2018-09-12 22:04:45 -04:00
|
|
|
assert(baseRes != null);
|
2018-10-03 21:18:23 -04:00
|
|
|
assert(msg.Any.MakeTempDirRes === baseRes!.innerType());
|
|
|
|
const res = new msg.MakeTempDirRes();
|
2018-10-03 21:12:23 -04:00
|
|
|
assert(baseRes!.inner(res) != null);
|
2018-09-12 22:04:45 -04:00
|
|
|
const path = res.path();
|
|
|
|
assert(path != null);
|
|
|
|
return path!;
|
|
|
|
}
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
/** makeTempDirSync is the synchronous version of `makeTempDir`.
|
|
|
|
*
|
|
|
|
* const tempDirName0 = Deno.makeTempDirSync();
|
|
|
|
* const tempDirName1 = Deno.makeTempDirSync({ prefix: 'my_temp' });
|
|
|
|
*/
|
|
|
|
export function makeTempDirSync(options: MakeTempDirOptions = {}): string {
|
|
|
|
return res(dispatch.sendSync(...req(options)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** makeTempDir creates a new temporary directory in the directory `dir`, its
|
|
|
|
* name beginning with `prefix` and ending with `suffix`.
|
|
|
|
* It returns the full path to the newly created directory.
|
|
|
|
* If `dir` is unspecified, tempDir uses the default directory for temporary
|
|
|
|
* files. Multiple programs calling tempDir simultaneously will not choose the
|
|
|
|
* same directory. It is the caller's responsibility to remove the directory
|
|
|
|
* when no longer needed.
|
|
|
|
*
|
|
|
|
* const tempDirName0 = await Deno.makeTempDir();
|
|
|
|
* const tempDirName1 = await Deno.makeTempDir({ prefix: 'my_temp' });
|
|
|
|
*/
|
|
|
|
export async function makeTempDir(
|
|
|
|
options: MakeTempDirOptions = {}
|
|
|
|
): Promise<string> {
|
|
|
|
return res(await dispatch.sendAsync(...req(options)));
|
|
|
|
}
|