deno.land / std@0.166.0 / node / _fs / _fs_writeFile.ts

_fs_writeFile.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { Encodings } from "../_utils.ts";import { fromFileUrl } from "../path.ts";import { Buffer } from "../buffer.ts";import { writeAllSync } from "../../streams/conversion.ts";import { CallbackWithError, checkEncoding, getEncoding, getOpenOptions, isFileOptions, WriteFileOptions,} from "./_fs_common.ts";import { isWindows } from "../../_util/os.ts";import { AbortError, denoErrorToNodeError } from "../internal/errors.ts";import { showStringCoercionDeprecation, validateStringAfterArrayBufferView,} from "../internal/fs/utils.mjs";import { promisify } from "../internal/util.mjs";
export function writeFile( pathOrRid: string | number | URL, // deno-lint-ignore ban-types data: string | Uint8Array | Object, optOrCallback: Encodings | CallbackWithError | WriteFileOptions | undefined, callback?: CallbackWithError,) { const callbackFn: CallbackWithError | undefined = optOrCallback instanceof Function ? optOrCallback : callback; const options: Encodings | WriteFileOptions | undefined = optOrCallback instanceof Function ? undefined : optOrCallback;
if (!callbackFn) { throw new TypeError("Callback must be a function."); }
pathOrRid = pathOrRid instanceof URL ? fromFileUrl(pathOrRid) : pathOrRid;
const flag: string | undefined = isFileOptions(options) ? options.flag : undefined;
const mode: number | undefined = isFileOptions(options) ? options.mode : undefined;
const encoding = checkEncoding(getEncoding(options)) || "utf8"; const openOptions = getOpenOptions(flag || "w");
if (!ArrayBuffer.isView(data)) { validateStringAfterArrayBufferView(data, "data"); if (typeof data !== "string") { showStringCoercionDeprecation(); } data = Buffer.from(String(data), encoding); }
const isRid = typeof pathOrRid === "number"; let file;
let error: Error | null = null; (async () => { try { file = isRid ? new Deno.FsFile(pathOrRid as number) : await Deno.open(pathOrRid as string, openOptions);
// ignore mode because it's not supported on windows // TODO: remove `!isWindows` when `Deno.chmod` is supported if (!isRid && mode && !isWindows) { await Deno.chmod(pathOrRid as string, mode); }
const signal: AbortSignal | undefined = isFileOptions(options) ? options.signal : undefined; await writeAll(file, data as Uint8Array, { signal }); } catch (e) { error = e instanceof Error ? denoErrorToNodeError(e, { syscall: "write" }) : new Error("[non-error thrown]"); } finally { // Make sure to close resource if (!isRid && file) file.close(); callbackFn(error); } })();}
export const writeFilePromise = promisify(writeFile) as ( pathOrRid: string | number | URL, // deno-lint-ignore ban-types data: string | Uint8Array | Object, options?: Encodings | WriteFileOptions,) => Promise<void>;
export function writeFileSync( pathOrRid: string | number | URL, // deno-lint-ignore ban-types data: string | Uint8Array | Object, options?: Encodings | WriteFileOptions,) { pathOrRid = pathOrRid instanceof URL ? fromFileUrl(pathOrRid) : pathOrRid;
const flag: string | undefined = isFileOptions(options) ? options.flag : undefined;
const mode: number | undefined = isFileOptions(options) ? options.mode : undefined;
const encoding = checkEncoding(getEncoding(options)) || "utf8"; const openOptions = getOpenOptions(flag || "w");
if (!ArrayBuffer.isView(data)) { validateStringAfterArrayBufferView(data, "data"); if (typeof data !== "string") { showStringCoercionDeprecation(); } data = Buffer.from(String(data), encoding); }
const isRid = typeof pathOrRid === "number"; let file;
let error: Error | null = null; try { file = isRid ? new Deno.FsFile(pathOrRid as number) : Deno.openSync(pathOrRid as string, openOptions);
// ignore mode because it's not supported on windows // TODO: remove `!isWindows` when `Deno.chmod` is supported if (!isRid && mode && !isWindows) { Deno.chmodSync(pathOrRid as string, mode); }
writeAllSync(file, data as Uint8Array); } catch (e) { error = e instanceof Error ? denoErrorToNodeError(e, { syscall: "write" }) : new Error("[non-error thrown]"); } finally { // Make sure to close resource if (!isRid && file) file.close(); }
if (error) throw error;}
interface WriteAllOptions { offset?: number; length?: number; signal?: AbortSignal;}async function writeAll( w: Deno.Writer, arr: Uint8Array, options: WriteAllOptions = {},) { const { offset = 0, length = arr.byteLength, signal } = options; checkAborted(signal);
const written = await w.write(arr.subarray(offset, offset + length));
if (written === length) { return; }
await writeAll(w, arr, { offset: offset + written, length: length - written, signal, });}
function checkAborted(signal?: AbortSignal) { if (signal?.aborted) { throw new AbortError(); }}
std

Version Info

Tagged at
a year ago