-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Expand file tree
/
Copy pathcp_sync.ts
More file actions
429 lines (395 loc) · 11.4 KB
/
cp_sync.ts
File metadata and controls
429 lines (395 loc) · 11.4 KB
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// Copyright 2018-2026 the Deno authors. MIT license.
// Adapted from Node.js. Copyright Joyent, Inc. and other Node contributors.
import { dirname, isAbsolute, join, parse, resolve } from "node:path";
import { copyFileSync } from "ext:deno_node/_fs/_fs_copy.ts";
import { existsSync } from "ext:deno_node/_fs/_fs_exists.ts";
import { mkdirSync, opendirSync } from "node:fs";
import { readlinkSync } from "node:fs";
import { symlinkSync, utimesSync } from "node:fs";
import {
ERR_FS_CP_DIR_TO_NON_DIR,
ERR_FS_CP_EEXIST,
ERR_FS_CP_EINVAL,
ERR_FS_CP_FIFO_PIPE,
ERR_FS_CP_NON_DIR_TO_DIR,
ERR_FS_CP_SOCKET,
ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY,
ERR_FS_CP_UNKNOWN,
ERR_FS_EISDIR,
ERR_INVALID_RETURN_VALUE,
} from "ext:deno_node/internal/errors.ts";
import { core, primordials } from "ext:core/mod.js";
import { os } from "ext:deno_node/internal_binding/constants.ts";
import type { CopySyncOptions } from "ext:deno_node/_fs/cp/cp.d.ts";
import {
areIdentical,
type CheckPathsResult,
isSrcSubdir,
} from "ext:deno_node/_fs/cp/cp.ts";
const {
isPromise,
} = core;
const {
ObjectPrototypeIsPrototypeOf,
} = primordials;
const {
errno: {
EEXIST,
EISDIR,
EINVAL,
ENOTDIR,
},
} = os;
// Deno.statSync and Deno.lstatSync are preferred over node:fs versions because
// they are more performant, as the node:fs versions use the Deno implementation
// under the hood, and adds overhead by converting the result to a node fs.Stats object.
function safeStatSyncFn<T extends typeof Deno.statSync>(
statFn: T,
path: string | URL,
): Deno.FileInfo | undefined {
try {
return statFn(path);
} catch (error) {
if (ObjectPrototypeIsPrototypeOf(Deno.errors.NotFound.prototype, error)) {
return;
}
throw error;
}
}
export function cpSyncFn(
src: string,
dest: string,
opts: CopySyncOptions,
): void {
if (opts.filter) {
// `filter` is a option property from `cpSync`
// deno-lint-ignore prefer-primordials
const shouldCopy = opts.filter(src, dest);
if (isPromise(shouldCopy)) {
throw new ERR_INVALID_RETURN_VALUE("boolean", "filter", shouldCopy);
}
if (!shouldCopy) return;
}
const { srcStat, destStat, skipped } = checkPathsSync(src, dest, opts);
if (skipped) return;
checkParentPathsSync(src, srcStat, dest);
return checkParentDir(destStat, src, dest, opts);
}
function checkPathsSync(
src: string,
dest: string,
opts: CopySyncOptions,
): CheckPathsResult {
if (opts.filter) {
// `filter` is a option property from `cpSync`
// deno-lint-ignore prefer-primordials
const shouldCopy = opts.filter(src, dest);
if (isPromise(shouldCopy)) {
throw new ERR_INVALID_RETURN_VALUE("boolean", "filter", shouldCopy);
}
if (!shouldCopy) return { __proto__: null, skipped: true };
}
const { srcStat, destStat } = getStatsSync(src, dest, opts);
if (destStat) {
if (areIdentical(srcStat, destStat)) {
throw new ERR_FS_CP_EINVAL({
message: "src and dest cannot be the same",
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
if (srcStat.isDirectory && !destStat.isDirectory) {
throw new ERR_FS_CP_DIR_TO_NON_DIR({
message: `cannot overwrite non-directory ${dest} ` +
`with directory ${src}`,
path: dest,
syscall: "cp",
errno: EISDIR,
code: "EISDIR",
});
}
if (!srcStat.isDirectory && destStat.isDirectory) {
throw new ERR_FS_CP_NON_DIR_TO_DIR({
message: `cannot overwrite directory ${dest} ` +
`with non-directory ${src}`,
path: dest,
syscall: "cp",
errno: ENOTDIR,
code: "ENOTDIR",
});
}
}
if (srcStat.isDirectory && isSrcSubdir(src, dest)) {
throw new ERR_FS_CP_EINVAL({
message: `cannot copy ${src} to a subdirectory of self ${dest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
return { __proto__: null, srcStat, destStat, skipped: false };
}
type GetStatsSyncResult = {
srcStat: Deno.FileInfo;
destStat: Deno.FileInfo | undefined;
};
function getStatsSync(
src: string,
dest: string,
opts: CopySyncOptions,
): GetStatsSyncResult {
const statFunc = opts.dereference ? Deno.statSync : Deno.lstatSync;
const srcStat = statFunc(src);
const destStat = safeStatSyncFn(statFunc, dest);
return { srcStat, destStat };
}
function checkParentPathsSync(
src: string,
srcStat: Deno.FileInfo,
dest: string,
): void {
const srcParent = resolve(dirname(src));
const destParent = resolve(dirname(dest));
if (destParent === srcParent || destParent === parse(destParent).root) return;
const destStat = safeStatSyncFn(Deno.statSync, destParent);
if (destStat === undefined) {
return;
}
if (areIdentical(srcStat, destStat)) {
throw new ERR_FS_CP_EINVAL({
message: `cannot copy ${src} to a subdirectory of self ${dest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
return checkParentPathsSync(src, srcStat, destParent);
}
function checkParentDir(
destStat: Deno.FileInfo | undefined,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
const destParent = dirname(dest);
if (!existsSync(destParent)) mkdirSync(destParent, { recursive: true });
return getStats(destStat, src, dest, opts);
}
function getStats(
destStat: Deno.FileInfo | undefined,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
const statSyncFn = opts.dereference ? Deno.statSync : Deno.lstatSync;
const srcStat = statSyncFn(src);
if (srcStat.isDirectory && opts.recursive) {
return onDir(srcStat, destStat, src, dest, opts);
} else if (srcStat.isDirectory) {
throw new ERR_FS_EISDIR({
message: `${src} is a directory (not copied)`,
path: src,
syscall: "cp",
errno: EISDIR,
code: "EISDIR",
});
} else if (
srcStat.isFile ||
srcStat.isCharDevice ||
srcStat.isBlockDevice
) {
return onFile(srcStat, destStat, src, dest, opts);
} else if (srcStat.isSymlink) {
return onLink(destStat, src, dest, opts);
} else if (srcStat.isSocket) {
throw new ERR_FS_CP_SOCKET({
message: `cannot copy a socket file: ${dest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
} else if (srcStat.isFifo) {
throw new ERR_FS_CP_FIFO_PIPE({
message: `cannot copy a FIFO pipe: ${dest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
throw new ERR_FS_CP_UNKNOWN({
message: `cannot copy an unknown file type: ${dest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
function onFile(
srcStat: Deno.FileInfo,
destStat: Deno.FileInfo | undefined,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
if (!destStat) return copyFile(srcStat, src, dest, opts);
return mayCopyFile(srcStat, src, dest, opts);
}
function mayCopyFile(
srcStat: Deno.FileInfo,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
if (opts.force) {
Deno.removeSync(dest);
return copyFile(srcStat, src, dest, opts);
} else if (opts.errorOnExist) {
throw new ERR_FS_CP_EEXIST({
message: `${dest} already exists`,
path: dest,
syscall: "cp",
errno: EEXIST,
code: "EEXIST",
});
}
}
function copyFile(
srcStat: Deno.FileInfo,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
copyFileSync(src, dest, opts.mode);
if (opts.preserveTimestamps) handleTimestamps(srcStat.mode, src, dest);
return setDestMode(dest, srcStat.mode);
}
function handleTimestamps(
srcMode: number | null,
src: string,
dest: string,
): void {
// Make sure the file is writable before setting the timestamp
// otherwise open fails with EPERM when invoked with 'r+'
// (through utimes call)
if (fileIsNotWritable(srcMode)) makeFileWritable(dest, srcMode);
return setDestTimestamps(src, dest);
}
function fileIsNotWritable(srcMode: number | null): boolean {
return (srcMode! & 0o200) === 0;
}
function makeFileWritable(dest: string, srcMode: number | null): void {
return setDestMode(dest, srcMode! | 0o200);
}
function setDestMode(dest: string, srcMode: number | null): void {
Deno.chmodSync(dest, srcMode!);
}
function setDestTimestamps(src: string, dest: string): void {
// The initial srcStat.atime cannot be trusted
// because it is modified by the read(2) system call
// (See https://nodejs.org/api/fs.html#fs_stat_time_values)
const updatedSrcStat = Deno.statSync(src);
if (!updatedSrcStat.atime || !updatedSrcStat.mtime) return;
return utimesSync(dest, updatedSrcStat.atime, updatedSrcStat.mtime);
}
function onDir(
srcStat: Deno.FileInfo,
destStat: Deno.FileInfo | undefined,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
if (!destStat) return mkDirAndCopy(srcStat.mode, src, dest, opts);
return copyDir(src, dest, opts);
}
function mkDirAndCopy(
srcMode: number | null,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
mkdirSync(dest);
copyDir(src, dest, opts);
return setDestMode(dest, srcMode);
}
function copyDir(src: string, dest: string, opts: CopySyncOptions): void {
const dir = opendirSync(src);
try {
let dirent;
while ((dirent = dir.readSync()) !== null) {
const { name } = dirent;
const srcItem = join(src, name);
const destItem = join(dest, name);
const { destStat, skipped } = checkPathsSync(srcItem, destItem, opts);
if (!skipped) getStats(destStat, srcItem, destItem, opts);
}
} finally {
dir.closeSync();
}
}
function onLink(
destStat: Deno.FileInfo | undefined,
src: string,
dest: string,
opts: CopySyncOptions,
): void {
let resolvedSrc = readlinkSync(src) as string;
if (!opts.verbatimSymlinks && !isAbsolute(resolvedSrc)) {
resolvedSrc = resolve(dirname(src), resolvedSrc);
}
if (!destStat) {
return symlinkSync(resolvedSrc, dest);
}
let resolvedDest;
try {
resolvedDest = readlinkSync(dest) as string;
} catch (err) {
// Dest exists and is a regular file or directory,
// Windows may throw UNKNOWN error. If dest already exists,
// fs throws error anyway, so no need to guard against it here.
//@ts-expect-error `err.code` always exists
if (err.code === "EINVAL" || err.code === "UNKNOWN") {
return symlinkSync(resolvedSrc, dest);
}
throw err;
}
if (!isAbsolute(resolvedDest)) {
resolvedDest = resolve(dirname(dest), resolvedDest);
}
if (
Deno.statSync(src).isDirectory && isSrcSubdir(resolvedSrc, resolvedDest)
) {
throw new ERR_FS_CP_EINVAL({
message: `cannot copy ${resolvedSrc} to a subdirectory of self ` +
`${resolvedDest}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
// Prevent copy if src is a subdir of dest since unlinking
// dest in this case would result in removing src contents
// and therefore a broken symlink would be created.
if (
Deno.statSync(dest).isDirectory && isSrcSubdir(resolvedDest, resolvedSrc)
) {
throw new ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY({
message: `cannot overwrite ${resolvedDest} with ${resolvedSrc}`,
path: dest,
syscall: "cp",
errno: EINVAL,
code: "EINVAL",
});
}
return copyLink(resolvedSrc, dest);
}
function copyLink(resolvedSrc: string, dest: string): void {
Deno.removeSync(dest);
return symlinkSync(resolvedSrc, dest);
}