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
|
# all non-exported / unused internal (utility) functions
# R 3.5.0 made isTRUE longer but more efficient :
# `is.logical(x) && length(x)==1L && !is.na(x) && x`
# Before R 3.5.0, isTRUE was defined as simply:
# identical(TRUE,x)
# See PR#3421 for timings.
# It was changed in R so that isTRUE(c(a=TRUE)) returned TRUE: https://github.com/wch/r-source/commit/828997ac6ecfb73aaa0aae9d1d0584a4ffc50881#diff-b41e3f9f1d389bb6f7a842cd5a3308b8
if (base::getRversion() < "3.5.0") {
isTRUE = function(x) is.logical(x) && length(x)==1L && !is.na(x) && x # backport R's new implementation of isTRUE
isFALSE = function(x) is.logical(x) && length(x)==1L && !is.na(x) && !x # backport isFALSE that was added in R 3.5.0
}
isTRUEorNA = function(x) is.logical(x) && length(x)==1L && (is.na(x) || x)
isTRUEorFALSE = function(x) is.logical(x) && length(x)==1L && !is.na(x)
allNA = function(x) .Call(C_allNAR, x)
# helper for nan argument (e.g. nafill): TRUE -> treat NaN as NA
nan_is_na = function(x) {
if (length(x) != 1L) stop("Argument 'nan' must be length 1")
if (identical(x, NA) || identical(x, NA_real_)) return(TRUE)
if (identical(x, NaN)) return(FALSE)
stop("Argument 'nan' must be NA or NaN")
}
if (base::getRversion() < "3.2.0") { # Apr 2015
isNamespaceLoaded = function(x) x %chin% loadedNamespaces()
}
# which.first
which.first = function(x)
{
if (!is.logical(x)) {
stop("x not boolean")
}
match(TRUE, x)
}
# which.last
which.last = function(x)
{
if (!is.logical(x)) {
stop("x not boolean")
}
length(x) - match(TRUE, rev(x)) + 1L
}
require_bit64_if_needed = function(DT) {
# called in fread and print.data.table
if (!isNamespaceLoaded("bit64") && any(sapply(DT,inherits,"integer64"))) {
# nocov start
# a test was attempted to cover the requireNamespace() by using unloadNamespace() first, but that fails when nanotime is loaded because nanotime also uses bit64
if (!requireNamespace("bit64",quietly=TRUE)) {
warning("Some columns are type 'integer64' but package bit64 is not installed. Those columns will print as strange looking floating point data. There is no need to reload the data. Simply install.packages('bit64') to obtain the integer64 print method and print the data again.")
}
# nocov end
}
}
# vapply for return value character(1)
vapply_1c = function (x, fun, ..., use.names = TRUE) {
vapply(X = x, FUN = fun, ..., FUN.VALUE = NA_character_, USE.NAMES = use.names)
}
# vapply for return value logical(1)
vapply_1b = function (x, fun, ..., use.names = TRUE) {
vapply(X = x, FUN = fun, ..., FUN.VALUE = NA, USE.NAMES = use.names)
}
# vapply for return value integer(1)
vapply_1i = function (x, fun, ..., use.names = TRUE) {
vapply(X = x, FUN = fun, ..., FUN.VALUE = NA_integer_, USE.NAMES = use.names)
}
more = function(f) system(paste("more",f)) # nocov (just a dev helper)
# helper used to auto-name columns in data.table(x,y) as c("x","y"), CJ(x,y) and similar
# naming of unnested matrices still handled by data.table()
name_dots = function(...) {
dot_sub = as.list(substitute(list(...)))[-1L]
vnames = names(dot_sub)
if (is.null(vnames)) {
vnames = character(length(dot_sub))
} else {
vnames[is.na(vnames)] = ""
}
notnamed = vnames==""
if (any(notnamed)) {
syms = sapply(dot_sub, is.symbol) # save the deparse() in most cases of plain symbol
for (i in which(notnamed)) {
tmp = if (syms[i]) as.character(dot_sub[[i]]) else deparse(dot_sub[[i]])[1L]
if (tmp == make.names(tmp)) vnames[i]=tmp
}
}
list(vnames=vnames, .named=!notnamed)
}
# convert a vector like c(1, 4, 3, 2) into a string like [1, 4, 3, 2]
# (common aggregation method for error messages)
brackify = function(x, quote=FALSE) {
# arbitrary
CUTOFF = 10L
# keep one more than needed to trigger dots if needed
if (quote && is.character(x)) x = paste0("'",head(x,CUTOFF+1L),"'")
if (length(x) > CUTOFF) x = c(x[1:CUTOFF], '...')
sprintf('[%s]', paste(x, collapse = ', '))
}
# patterns done via NSE in melt.data.table and .SDcols in `[.data.table`
do_patterns = function(pat_sub, all_cols) {
# received as substitute(patterns(...))
pat_sub = as.list(pat_sub)[-1L]
# identify cols = argument if present
idx = which(names(pat_sub) == "cols")
if (length(idx)) {
cols = eval(pat_sub[["cols"]], parent.frame(2L))
pat_sub = pat_sub[-idx]
} else cols = all_cols
pats = lapply(pat_sub, eval, parent.frame(2L))
matched = patterns(pats, cols=cols)
# replace with lengths when R 3.2.0 dependency arrives
if (length(idx <- which(sapply(matched, length) == 0L)))
stop('Pattern', if (length(idx) > 1L) 's', ' not found: [',
paste(pats[idx], collapse = ', '), ']')
return(matched)
}
# check UTC status
is_utc = function(tz) {
# via grep('UTC|GMT', OlsonNames(), value = TRUE); ordered by "prior" frequency
utc_tz = c("UTC", "GMT", "Etc/UTC", "Etc/GMT", "GMT-0", "GMT+0", "GMT0")
if (is.null(tz)) tz = Sys.timezone()
return(tz %chin% utc_tz)
}
# very nice idea from Michael to avoid expression repetition (risk) in internal code, #4226
"%iscall%" = function(e, f) { is.call(e) && e[[1L]] %chin% f }
# nocov start #593 always return a data.table
edit.data.table = function(name, ...) {
setDT(NextMethod('edit', name))[]
}
# nocov end
rss = function() { #5515 #5517
# nocov start
cmd = paste0("ps -o rss --no-headers ", Sys.getpid()) # ps returns KB
ans = tryCatch(as.numeric(system(cmd, intern=TRUE)), warning=function(w) NA_real_, error=function(e) NA_real_)
if (length(ans)!=1L || !is.numeric(ans)) ans=NA_real_ # just in case
round(ans / 1024, 1L) # return MB
# nocov end
}
|