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
|
deparse_trunc <- function(x, width = getOption("width")) {
text <- deparse(x, width.cutoff = width)
if (length(text) == 1 && nchar(text) < width) return(text)
paste0(substr(text[1], 1, width - 3), "...")
}
is.wholenumber <- function(x) {
trunc(x) == x
}
deparse_all <- function(x) {
x <- purrr::map_if(x, is_formula, f_rhs)
purrr::map_chr(x, expr_text, width = 500L)
}
#' Provides comma-separated string out of the parameters
#' @export
#' @keywords internal
#' @param ... Arguments to be constructed into the string
named_commas <- function(...) {
x <- unlist(purrr::map(list2(...), as.character))
if (is_null(names(x))) {
paste0(x, collapse = ", ")
} else {
paste0(names(x), " = ", x, collapse = ", ")
}
}
commas <- function(...) paste0(..., collapse = ", ")
in_travis <- function() identical(Sys.getenv("TRAVIS"), "true")
unique_table_name <- function() {
# Needs to use option to unique names across reloads while testing
i <- getOption("dbplyr_table_name", 0) + 1
options(dbplyr_table_name = i)
sprintf("dbplyr_%03i", i)
}
unique_subquery_name <- function() {
# Needs to use option so can reset at the start of each query
i <- getOption("dbplyr_subquery_name", 0) + 1
options(dbplyr_subquery_name = i)
sprintf("q%02i", i)
}
unique_subquery_name_reset <- function() {
options(dbplyr_subquery_name = 0)
}
succeeds <- function(x, quiet = FALSE) {
tryCatch(
{
x
TRUE
},
error = function(e) {
if (!quiet)
message("Error: ", e$message) # nocov
FALSE
}
)
}
c_character <- function(...) {
x <- c(...)
if (length(x) == 0) {
return(character())
}
if (!is.character(x)) {
cli_abort("Character input expected")
}
x
}
cat_line <- function(...) cat(paste0(..., "\n"), sep = "")
# nocov start
res_warn_incomplete <- function(res, hint = "n = -1") {
if (dbHasCompleted(res)) return()
rows <- big_mark(dbGetRowCount(res))
cli::cli_warn("Only first {rows} results retrieved. Use {hint} to retrieve all.")
}
hash_temp <- function(name) {
name <- ident(paste0("#", name))
cli::cli_inform(
paste0("Created a temporary table named ", name),
class = c("dbplyr_message_temp_table", "dbplyr_message")
)
name
}
# nocov end
# Helper for testing
local_methods <- function(..., .frame = caller_env()) {
local_bindings(..., .env = global_env(), .frame = .frame)
}
assert_flag <- function(x, arg, call = caller_env()) {
vctrs::vec_assert(x, logical(), size = 1L)
if (is.na(x)) {
cli_abort("{.arg {arg}} must not be NA.", call = call)
}
}
check_not_supplied <- function(arg, call = caller_env()) {
if (!is_null(arg)) {
arg <- caller_arg(arg)
cli_abort("{.arg {arg}} is not supported in SQL translations.", call = call)
}
}
|