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
|
.splitIndices <- function (nx, tasks)
{
## derived from parallel
i <- seq_len(nx)
if (nx == 0L)
list()
else if (tasks <= 1L || nx == 1L) # allow nx, nc == 0
list(i)
else {
fuzz <- min((nx - 1L)/1000, 0.4 * nx / tasks)
breaks <- seq(1 - fuzz, nx + fuzz, length.out = tasks + 1L)
si <- structure(split(i, cut(i, breaks)), names = NULL)
si[sapply(si, length) != 0]
}
}
.ntask <-
function(X, workers, tasks)
{
if (is.na(tasks)) {
length(X)
} else if (tasks == 0L) {
workers
} else {
min(length(X), tasks)
}
}
.splitX <-
function(X, workers, tasks)
{
tasks <- .ntask(X, workers, tasks)
idx <- .splitIndices(length(X), tasks)
relist(X, idx)
}
.redo_index <-
function(X, BPREDO)
{
if (length(BPREDO)) {
if (length(BPREDO) != length(X))
stop("'length(BPREDO)' must equal 'length(X)'")
idx <- which(!bpok(BPREDO))
if (!length(idx))
stop("no previous error in 'BPREDO'")
idx
} else {
seq_along(X)
}
}
## re-apply names on X of lapply(X, FUN) to the return value
.rename <-
function(results, X)
{
names(results) <- names(X)
results
}
.simplify <-
function(results, SIMPLIFY=FALSE)
{
if (SIMPLIFY && length(results))
results <- simplify2array(results)
results
}
.prettyPath <- function(tag, filepath)
{
wd <- options('width')[[1]] - nchar(tag) - 6
if (length(filepath) == 0 || is.na(filepath))
return(sprintf("%s: %s", tag, NA_character_))
if (0L == length(filepath) || nchar(filepath) < wd)
return(sprintf("%s: %s", tag, filepath))
bname <- basename(filepath)
wd1 <- wd - nchar(bname)
dname <- substr(dirname(filepath), 1, wd1)
sprintf("%s: %s...%s%s",
tag, dname, .Platform$file.sep, bname)
}
.getDotsForMapply <-
function(...)
{
ddd <- list(...)
if (!length(ddd))
return(list(list()))
len <- vapply(ddd, length, integer(1L))
if (!all(len == len[1L])) {
max.len <- max(len)
if (max.len && any(len == 0L))
stop("zero-length and non-zero length inputs cannot be mixed")
if (any(max.len %% len))
warning("longer argument not a multiple of length of vector")
ddd <- lapply(ddd, rep_len, length.out=max.len)
}
ddd
}
.dir_valid_rw <-
function(x)
{
all(file.access(x, 6L) == 0L)
}
.warning <- function(...) {
msg <- paste(
strwrap(paste0("\n", ...), indent = 2, exdent = 2), collapse="\n"
)
warning(msg, call. = FALSE)
}
.stop <- function(...) {
msg <- paste(
strwrap(paste0("\n", ...), indent = 2, exdent = 2), collapse="\n"
)
stop(msg, call. = FALSE)
}
## batchtools signals no timeout with 'Inf', rather than NA; do not
## implement as bptimeout() method because NA is appropriate in other
## contexts, e.g., when 'show()'ing param.
.batch_bptimeout <-
function(BPPARAM)
{
timeout <- bptimeout(BPPARAM)
if (identical(timeout, NA_integer_))
timeout <- Inf
timeout
}
|