-
Notifications
You must be signed in to change notification settings - Fork 80
/
path.R
504 lines (444 loc) · 14.4 KB
/
path.R
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#' Path computations
#'
#' All functions apart from `path_real()` are purely path computations, so the
#' files in question do not need to exist on the filesystem.
#' @template fs
#' @name path_math
#' @return The new path(s) in an `fs_path` object, which is a character vector
#' that also has class `fs_path`. Except `path_split()`, which returns a list
#' of character vectors of path components.
#' @seealso [path_expand()] for expansion of user's home directory.
#' @examples
#' \dontshow{.old_wd <- setwd(tempdir())}
#' dir_create("a")
#' file_create("a/b")
#' link_create(path_abs("a"), "c")
#'
#' # Realize the path
#' path_real("c/b")
#'
#' # Split a path
#' parts <- path_split("a/b")
#' parts
#'
#' # Join it together
#' path_join(parts)
#'
#' # Find the absolute path
#' path_abs("..")
#'
#' # Normalize a path
#' path_norm("a/../b\\c/.")
#'
#' # Compute a relative path
#' path_rel("/foo/abc", "/foo/bar/baz")
#'
#' # Find the common path between multiple paths
#' path_common(c("/foo/bar/baz", "/foo/bar/abc", "/foo/xyz/123"))
#'
#' # Cleanup
#' dir_delete("a")
#' link_delete("c")
#' \dontshow{setwd(.old_wd)}
NULL
#' Construct path to a file or directory
#'
#' `path()` constructs a relative path, `path_wd()` constructs an absolute path
#' from the current working directory.
#'
#' @param ... character vectors, if any values are NA, the result will also be
#' NA. The paths follow the recycling rules used in the tibble package,
#' namely that only length 1 arguments are recycled.
#' @param ext An optional extension to append to the generated path.
#' @export
#' @seealso [path_home()], [path_package()] for functions to construct paths
#' relative to the home and package directories respectively.
#' @examples
#' path("foo", "bar", "baz", ext = "zip")
#'
#' path("foo", letters[1:3], ext = "txt")
path <- function(..., ext = "") {
args <- list(...)
assert_recyclable(args)
path_tidy(.Call(fs_path_, lapply(args, function(x) enc2utf8(as.character(x))), ext))
}
assert_recyclable <- function(x) {
if (length(x) == 0) {
return()
}
len <- vapply(x, length, integer(1))
max_len <- max(len)
different <- which(len != 0 & len != max_len)
assert(
"Arguments must have consistent lengths, only values of length one are recycled.",
all(len[different] == 1)
)
}
#' @rdname path
#' @export
path_wd <- function(..., ext = "") {
path(getwd(), ..., ext = ext)
}
#' @describeIn path_math returns the canonical path, eliminating any symbolic
#' links and the special references `~`, `~user`, `.`, and `..`, , i.e. it
#' calls `path_expand()` (literally) and `path_norm()` (effectively).
#' @export
path_real <- function(path) {
path <- enc2utf8(as.character(path))
old <- path_expand(path)
is_missing <- is.na(path)
old[!is_missing] <- .Call(fs_realize_, old[!is_missing])
path_tidy(old)
}
#' Tidy paths
#'
#' Untidy paths are all different, tidy paths are all the same.
#' Tidy paths always use `/` to delimit directories, never have
#' multiple `/` or trailing `/` and have colourised output based on the file
#' type.
#'
#' @return An `fs_path` object, which is a character vector that also has class
#' `fs_path`
#' @template fs
#' @export
path_tidy <- function(path) {
path <- enc2utf8(as.character(path))
new_fs_path(.Call(fs_tidy_, path))
}
#' @describeIn path_math splits paths into parts.
#' @export
# TODO: examples
path_split <- function(path) {
path <- path_tidy(path)
# Split drive / UNC parts
# split keep unc paths together, but keep root paths as first part.
# //foo => '//foo' 'bar'
# /foo/bar => '/' 'foo' 'bar'
strsplit(path, "^(?=/)(?!//)|(?<!^)(?<!^/)/", perl = TRUE)
}
#' @describeIn path_math joins parts together. The inverse of [path_split()].
#' See [path()] to concatenate vectorized strings into a path.
#' @param parts A character vector or a list of character vectors, corresponding
#' to split paths.
#' @export
path_join <- function(parts) {
if (length(parts) == 0) {
return(path_tidy(""))
}
if (!is.list(parts)) {
return(path_tidy(.Call(fs_path_, as.list(enc2utf8(as.character(parts))), "")))
}
path_tidy(vapply(parts, path_join, character(1)))
}
#' @describeIn path_math returns a normalized, absolute version of a path.
#' @export
path_abs <- function(path, start = ".") {
if (!is_absolute_path(start)) {
start <- path_norm(path(getwd(), start))
}
is_abs <- is_absolute_path(path)
path[is_abs] <- path_norm(path[is_abs])
path[!is_abs] <- path_norm(path(start, path[!is_abs]))
path_tidy(path)
}
#' @describeIn path_math eliminates `.` references and rationalizes up-level
#' `..` references, so `A/./B` and `A/foo/../B` both become `A/B`, but `../B`
#' is not changed. If one of the paths is a symbolic link, this may change the
#' meaning of the path, so consider using `path_real()` instead.
#' @export
path_norm <- function(path) {
non_missing <- !is.na(path)
parts <- path_split(path)
path_norm_one <- function(p) {
p <- p[p != "."]
double_dots <- p == ".."
if (any(double_dots)) {
res <- character(length(p))
size <- 0
is_abs <- is_absolute_path(p[[1]])
for (i in seq_along(p)) {
if (p[[i]] != ".." || (! is_abs && size == 0) || (size > 0 && res[[size]] == "..")) {
res[[size <- size + 1]] <- p[[i]]
} else if (size > 0) {
size <- size - 1
}
}
res <- res[seq(1, size)]
if (is_abs && res[[1]] != p[[1]]) {
res <- c(p[[1]], res)
}
p <- res
}
if (length(p) == 0) {
return(path_tidy("."))
}
path_join(p)
}
parts[non_missing] <- vapply(parts[non_missing], path_norm_one, character(1))
path_tidy(parts)
}
#' @describeIn path_math computes the path relative to the `start` path,
#' which can be either an absolute or relative path.
#' @export
#' @param start A starting directory to compute the path relative to.
# This implementation is partially derived from
# https://github.com/python/cpython/blob/9c99fd163d5ca9bcc0b7ddd0d1e3b8717a63237c/Lib/posixpath.py#L446
path_rel <- function(path, start = ".") {
if (length(start) > 1L) {
stop("`start` must be a single path to a starting directory.", call. = FALSE)
}
start <- path_abs(path_expand(start))
path <- path_abs(path_expand(path))
path_rel_one <- function(p) {
common <- path_common(c(start, p))
starts <- path_split(start)[[1]]
paths <- path_split(p)[[1]]
i <- length(path_split(common)[[1]])
double_dot_part <- rep("..", (length(starts) - i))
if (i + 1 <= length(paths)) {
path_part <- paths[seq(i + 1, length(paths))]
} else {
path_part <- character()
}
rels <- c(double_dot_part, path_part)
if (length(rels) == 0) {
return(path_tidy("."))
}
path_join(rels)
}
if (is.na(start)) {
return(path_tidy(NA_character_))
}
is_missing <- is.na(path)
path[!is_missing] <- vapply(path[!is_missing], path_rel_one, character(1))
path_tidy(path)
}
#' Finding the User Home Directory
#'
#' * `path_expand()` performs tilde expansion on a path, replacing instances of
#' `~` or `~user` with the user's home directory.
#' * `path_home()` constructs a path within the expanded users home directory,
#' calling it with _no_ arguments can be useful to verify what fs considers the
#' home directory.
#' * `path_expand_r()` and `path_home_r()` are equivalents which always use R's
#' definition of the home directory.
#' @details
#' `path_expand()` differs from [base::path.expand()] in the interpretation of
#' the home directory of Windows. In particular `path_expand()` uses the path
#' set in the `USERPROFILE` environment variable and, if unset, then uses
#' `HOMEDRIVE`/`HOMEPATH`.
#'
#' In contrast [base::path.expand()] first checks for `R_USER` then `HOME`,
#' which in the default configuration of R on Windows are both set to the user's
#' document directory, e.g. `C:\\Users\\username\\Documents`.
#' [base::path.expand()] also does not support `~otheruser` syntax on Windows,
#' whereas `path_expand()` does support this syntax on all systems.
#'
#' This definition makes fs more consistent with the definition of home
#' directory used on Windows in other languages, such as
#' [python](https://docs.python.org/3/library/os.path.html#os.path.expanduser)
#' and [rust](https://doc.rust-lang.org/std/env/fn.home_dir.html#windows). This
#' is also more compatible with external tools such as git and ssh, both of
#' which put user-level files in `USERPROFILE` by default. It also allows you to
#' write portable paths, such as `~/Desktop` that points to the Desktop location
#' on Windows, macOS and (most) Linux systems.
#'
#' Users can set the `R_FS_HOME` environment variable to override the
#' definitions on any platform.
#' @seealso [R for Windows FAQ - 2.14](https://cran.r-project.org/bin/windows/base/rw-FAQ.html#What-are-HOME-and-working-directories_003f)
#' for behavior of [base::path.expand()].
#' @param ... Additional paths appended to the home directory by [path()].
#' @inheritParams path_math
#' @export
#' @examples
#' # Expand a path
#' path_expand("~/bin")
#'
#' # You can use `path_home()` without arguments to see what is being used as
#' # the home diretory.
#' path_home()
#' path_home("R")
#'
#' # This will likely differ from the above on Windows
#' path_home_r()
path_expand <- function(path) {
path <- enc2utf8(path)
# We use the windows implementation if R_FS_HOME is set or if on windows
path_tidy(.Call(fs_expand_, path, Sys.getenv("R_FS_HOME") != "" || is_windows()))
}
#' @rdname path_expand
#' @export
path_expand_r <- function(path) {
path <- enc2utf8(path)
# Unconditionally use R_ExpandFileName
path_tidy(.Call(fs_expand_, path, FALSE))
}
#' @rdname path_expand
#' @export
path_home <- function(...) {
path(path_expand("~/"), ...)
}
#' @rdname path_expand
#' @export
path_home_r <- function(...) {
path(path_expand_r("~/"), ...)
}
#' Manipulate file paths
#'
#' `path_file()` returns the filename portion of the path, `path_dir()` returns
#' the directory portion. `path_ext()` returns the last extension (if any) for a
#' path. `path_ext_remove()` removes the last extension and returns the rest of
#' the path. `path_ext_set()` replaces the extension with a new extension. If
#' there is no existing extension the new extension is appended.
#'
#' Note because these are not full file paths they return regular character
#' vectors, not `fs_path()` objects.
#' @template fs
#' @param ext,value The new file extension.
#' @seealso [base::basename()], [base::dirname()]
#' @export
#' @examples
#' path_file("dir/file.zip")
#'
#' path_dir("dir/file.zip")
#'
#' path_ext("dir/file.zip")
#'
#' path_ext("file.tar.gz")
#'
#' path_ext_remove("file.tar.gz")
#'
#' # Only one level of extension is removed
#' path_ext_set(path_ext_remove("file.tar.gz"), "zip")
#' @export
path_file <- function(path) {
is_missing <- is.na(path)
path[!is_missing] <- basename(path[!is_missing])
as.character(path)
}
#' @rdname path_file
#' @export
path_dir <- function(path) {
is_missing <- is.na(path)
path[!is_missing] <- dirname(path[!is_missing])
as.character(path_tidy(path))
}
#' @rdname path_file
#' @export
path_ext <- function(path) {
if (length(path) == 0) {
return(character())
}
res <- captures(path_file(path), regexpr("(?<!^|[.]|/)[.]+([^.]+)$", path_file(path), perl = TRUE))[[1]]
res[!is.na(path) & is.na(res)] <- ""
res
}
#' @rdname path_file
#' @export
path_ext_remove <- function(path) {
dir <- path_dir(path)
file <- sub("(?<!^|[.])\\.+([^.]+)$", "", path_file(path), perl = TRUE)
na <- is.na(path)
no_dir <- dir == "." | dir == ""
path[!na & no_dir] <- path_tidy(file[!na & no_dir])
path[!na & !no_dir] <- path(dir[!na & !no_dir], file[!na & !no_dir])
path
}
#' @rdname path_file
#' @export
path_ext_set <- function(path, ext) {
if (!(length(ext) == length(path) || length(ext) == 1)) {
assert_recyclable(list(path, ext))
}
# Remove a leading . if present
ext <- sub("^[.]", "", ext)
has_ext <- nzchar(ext)
to_set <- !is.na(path) & has_ext
if (length(ext) == 1) {
ext <- rep(ext, sum(to_set))
}
path[to_set] <- paste0(
path_ext_remove(path[to_set]), ".", ext
)
path_tidy(path)
}
#' @rdname path_file
#' @export
`path_ext<-` <- function(path, value) {
path_ext_set(path, value)
}
#' @describeIn path_math finds the common parts of two (or more) paths.
#' @export
path_common <- function(path) {
is_missing <- is.na(path)
if (any(is_missing)) {
return(path_tidy(NA))
}
is_abs <- is_absolute_path(path)
# We must either have all absolute paths, or all relative paths.
if (!(all(is_abs) || all(!is_abs))) {
stop(fs_error("Can't mix absolute and relative paths"))
}
path <- path_norm(path)
path <- sort(path)
# remove . entries from the split paths
parts <- lapply(path_split(path), function(x) x[x != "."])
s1 <- parts[[1]]
s2 <- parts[[length(parts)]]
common <- s1
for (i in seq_along(s1)) {
if (s1[[i]] != s2[[i]]) {
if (i == 1) {
common <- ""
} else {
common <- s1[seq(1, i - 1)]
}
break;
}
}
path_join(common)
}
#' Filter paths
#'
#' @template fs
#' @param glob A wildcard aka globbing pattern (e.g. `*.csv`) passed on to [grep()] to filter paths.
#' @param regexp A regular expression (e.g. `[.]csv$`) passed on to [grep()] to filter paths.
#' @param invert If `TRUE` return files which do _not_ match
#' @param ... Additional arguments passed to [grep].
#' @export
#' @examples
#' path_filter(c("foo", "boo", "bar"), glob = "*oo")
#' path_filter(c("foo", "boo", "bar"), glob = "*oo", invert = TRUE)
#'
#' path_filter(c("foo", "boo", "bar"), regexp = "b.r")
path_filter <- function(path, glob = NULL, regexp = NULL, invert = FALSE, ...) {
if (!is.null(glob)) {
if (!is.null(regexp)) {
stop(fs_error("`glob` and `regexp` cannot both be set."))
}
regexp <- utils::glob2rx(glob)
}
if (!is.null(regexp)) {
path <- grep(x = path, pattern = regexp, value = TRUE, invert = isTRUE(invert), ...)
}
setNames(path_tidy(path), path)
}
#' @describeIn path_math determine if a path has a given parent.
#' @param parent The parent path.
#' @export
path_has_parent <- function(path, parent) {
path <- path_abs(path)
parent <- path_abs(parent)
res <- logical(length(path))
assert_recyclable(list(path, parent))
if (length(path) == 1) {
path <- rep(path, length(parent))
}
if (length(parent) == 1) {
parent <- rep(parent, length(path))
}
for (i in seq_along(path)) {
res[[i]] <- identical(as.character(path_common(c(path[[i]], parent[[i]]))), as.character(parent[[i]]))
}
res
}