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
|
# Copyright (C) 2021 Brodie Gaslam
#
# This file is part of "diffobj - Diffs for R Objects"
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# Go to <https://www.r-project.org/Licenses/GPL-2> for a copy of the license.
#' Objects for Specifying Pager Settings
#'
#' Initializers for pager configuration objects that modify pager behavior.
#' These objects can be used as the \code{pager} argument to the
#' \code{\link[=diffPrint]{diff*}} methods, or as the \code{pager} slot for
#' \code{\link{Style}} objects. In this documentation we use the \dQuote{pager}
#' term loosely and intend it to refer to any device other than the terminal
#' that can be used to render output.
#'
#' @section Default Output Behavior:
#'
#' \code{\link[=diffPrint]{diff*}} methods use \dQuote{pagers} to help
#' manage large outputs and also to provide an alternative colored diff when the
#' terminal does not support them directly.
#'
#' For OS X and *nix systems where \code{less} is the pager and the
#' terminal supports ANSI escape sequences, output is colored with ANSI escape
#' sequences. If the output exceeds one screen height in size (as estimated by
#' \code{\link{console_lines}}) it is sent to the pager.
#'
#' If the terminal does not support ANSI escape sequences, or if the system
#' pager is not \code{less} as detected by \code{\link{pager_is_less}}, then the
#' output is rendered in HTML and sent to the IDE viewer
#' (\code{getOption("viewer")}) if defined, or to the browser with
#' \code{\link{browseURL}} if not. This behavior may seem sub-optimal for
#' systems that have ANSI aware terminals and ANSI aware pagers other than
#' \code{less}, but these should be rare and it is possible to configure
#' \code{diffobj} to produce the correct output for them (see examples).
#'
#' @section Pagers and Styles:
#'
#' There is a close relationship between pagers and \code{\link{Style}}. The
#' \code{Style} objects control whether the output is raw text, formatted
#' with ANSI escape sequences, or marked up with HTML. In order for these
#' different types of outputs to render properly, they need to be sent to the
#' right device. For this reason \code{\link{Style}} objects come with a
#' \code{Pager} configuration object pre-assigned so the output can render
#' correctly. The exact \code{Pager} configuration object depends on the
#' \code{\link{Style}} as well as the system configuration.
#'
#' In any call to the \code{\link[=diffPrint]{diff*}} methods you can always
#' specify both the \code{\link{Style}} and \code{Pager} configuration object
#' directly for full control of output formatting and rendering. We have tried
#' to set-up sensible defaults for most likely use cases, but given the complex
#' interactions involved it is possible you may need to configure things
#' explicitly. Should you need to define explicit configurations you can save
#' them as option values with
#' \code{options(diffobj.pager=..., diffobj.style=...)} so that you do not need
#' to specify them each time you use \code{diffobj}.
#'
#' @section Pager Configuration Objects:
#'
#' The \code{Pager} configuration objects allow you to specify what device to
#' use as the pager and under what circumstances the pager should be used.
#' Several pre-defined pager configuration objects are available via
#' constructor functions:
#' \itemize{
#' \item \code{Pager}: Generic pager just outputs directly to terminal; not
#' useful unless the default parameters are modified.
#' \item \code{PagerOff}: Turn off pager
#' \item \code{PagerSystem}: Use the system pager as invoked by
#' \code{\link{file.show}}
#' \item \code{PagerSystemLess}: Like \code{PagerSystem}, but provides
#' additional configuration options if the system pager is \code{less}.
#' Note this object does not change the system pager; it only allows you to
#' configure it via the \code{$LESS} environment variable which will have
#' no effect unless the system pager is set to be \code{less}.
#' \item \code{PagerBrowser}: Use \code{getOption("viewer")} if defined, or
#' \code{\link{browseURL}} if not
#' }
#' The default configuration for \code{PagerSystem} and \code{PagerSystemLess}
#' leads to output being sent to the pager if it exceeds the estimated window
#' size, whereas \code{PagerBrowser} always sends output to the pager. This
#' behavior can be configured via the \code{threshold} parameter.
#'
#' \code{PagerSystemLess}'s primary role is to correctly configure the
#' \code{$LESS} system variable so that \code{less} renders the ANSI escape
#' sequences as intended. On OS X \code{more} is a faux-alias to \code{less},
#' except it does not appear to read the \code{$LESS} system variable.
#' Should you configure your system pager to be the \code{more} version of
#' \code{less}, \code{\link{pager_is_less}} will be tricked into thinking you
#' are using a \dQuote{normal} version of \code{less} and you will likely end up
#' seeing gibberish in the pager. If this is your use case you will need to
#' set-up a custom pager configuration object that sets the correct system
#' variables.
#'
#' @section Custom Pager Configurations:
#'
#' In most cases the simplest way to generate new pager configurations is to use
#' a list specification in the \code{\link[=diffPrint]{diff*}} call.
#' Alternatively you can start with an existing \code{Pager} object and change
#' the defaults. Both these cases are covered in the examples.
#'
#' You can change what system pager is used by \code{PagerSystem} by changing it
#' with \code{options(pager=...)} or by changing the \code{$PAGER} environment
#' variable. You can also explicitly set a function to act as the pager when
#' you instantiate the \code{Pager} configuration object (see examples).
#'
#' If you wish to define your own pager object you should do so by extending the
#' any of the \code{Pager} classes. If the function you use to handle the
#' actual paging is non-blocking (i.e. allows R code evaluation to continue
#' after it is spawned, you should set the \code{make.blocking} parameter to
#' TRUE to pause execution prior to deleting the temporary file that contains
#' the diff.
#'
#' @param pager a function that accepts at least one parameter and does not
#' require a parameter other than the first parameter. This function will be
#' called with a file path passed as the first argument. The referenced file
#' will contain the text of the diff. By default this is a temporary file that
#' will be deleted as soon as the pager function completes evaluation.
#' \code{PagerSystem} and \code{PagerSystemLess} use \code{\link{file.show}}
#' by default, and \code{PagerBrowser} uses
#' \code{\link{view_or_browse}} for HTML output. For asynchronous pagers such
#' as \code{view_or_browse} it is important to make the pager function
#' blocking by setting the \code{make.blocking} parameter to TRUE, or to
#' specify a pager file path explicitly with \code{file.path}.
#' @param file.ext character(1L) an extension to append to file path passed to
#' \code{pager}, \emph{without} the period. For example, \code{PagerBrowser}
#' uses \dQuote{html} to cause \code{\link{browseURL}} to launch the web
#' browser. This parameter will be overridden if \code{file.path} is used.
#' @param threshold integer(1L) number of lines of output that triggers the use
#' of the pager; negative values lead to using
#' \code{\link{console_lines} + 1}, and zero leads to always using the pager
#' irrespective of how many lines the output has.
#' @param ansi TRUE or FALSE, whether the pager supports ANSI CSI SGR sequences.
#' @param flags character(1L), only for \code{PagerSystemLess}, what flags to
#' set with the \code{LESS} system environment variable. By default the
#' \dQuote{R} flag is set to ensure ANSI escape sequences are interpreted if
#' it appears your terminal supports ANSI escape sequences. If you want to
#' leave the output on the screen after you exit the pager you can use
#' \dQuote{RX}. You should only provide the flag letters (e.g. \dQuote{"RX"},
#' not \code{"-RX"}). The system variable is only modified for the duration
#' of the evaluation and is reset / unset afterwards. \emph{Note:} you must
#' specify this slot via the constructor as in the example. If you set the
#' slot directly it will not have any effect.
#' @param file.path character(1L), if not NA the diff will be written to this
#' location, ignoring the value of \code{file.ext}. If NA_character_
#' (default), a temporary file is used and removed after the pager function
#' completes evaluation. If not NA, the file is preserved. Beware that the
#' file will be overwritten if it already exists.
#' @param make.blocking TRUE, FALSE, or NA. Whether to wrap \code{pager} with
#' \code{\link{make_blocking}} prior to calling it. This suspends R code
#' execution until there is user input so that temporary diff files are not
#' deleted before the pager has a chance to read them. This typically
#' defaults to FALSE, except for \code{PagerBrowser} where it defaults to NA,
#' which resolves to \code{is.na(file.path)} (i.e. it is TRUE if the diff is
#' being written to a temporary file, and FALSE otherwise).
#' @param ... additional arguments to pass on to \code{new} that are passed on
#' to parent classes.
#'
#' @aliases PagerOff, PagerSystem, PagerSystemLess, PagerBrowser
#' @importFrom utils browseURL
#' @include options.R
#' @rdname Pager
#' @name Pager
#' @seealso \code{\link{Style}}, \code{\link{pager_is_less}}
#' @examples
#' ## We `dontrun` these examples as they involve pagers that should only be run
#' ## in interactive mode
#' \dontrun{
#' ## Specify Pager parameters via list; this lets the `diff*` functions pick
#' ## their preferred pager based on format and other output parameters, but
#' ## allows you to modify the pager behavior.
#'
#' f <- tempfile()
#' diffChr(1:200, 180:300, format='html', pager=list(file.path=f))
#' head(readLines(f)) # html output
#' unlink(f)
#'
#' ## Assuming system pager is `less` and terminal supports ANSI ESC sequences
#' ## Equivalent to running `less -RFX`
#'
#' diffChr(1:200, 180:300, pager=PagerSystemLess(flags="RFX"))
#'
#' ## If the auto-selected pager would be the system pager, we could
#' ## equivalently use:
#'
#' diffChr(1:200, 180:300, pager=list(flags="RFX"))
#'
#' ## System pager is not less, but it supports ANSI escape sequences
#'
#' diffChr(1:200, 180:300, pager=PagerSystem(ansi=TRUE))
#'
#' ## Use a custom pager, in this case we make up a trivial one and configure it
#' ## always page (`threshold=0L`)
#'
#' page.fun <- function(x) cat(paste0("| ", readLines(x)), sep="\n")
#' page.conf <- PagerSystem(pager=page.fun, threshold=0L)
#' diffChr(1:200, 180:300, pager=page.conf, disp.width=getOption("width") - 2)
#'
#' ## Set-up the custom pager as the default pager
#'
#' options(diffobj.pager=page.conf)
#' diffChr(1:200, 180:300)
#'
#' ## A blocking pager (this is effectively very similar to what `PagerBrowser`
#' ## does); need to block b/c otherwise temp file with diff could be deleted
#' ## before the device has a chance to read it since `browseURL` is not
#' ## blocking itself. On OS X we need to specify the extension so the correct
#' ## program opens it (in this case `TextEdit`):
#'
#' page.conf <- Pager(pager=browseURL, file.ext="txt", make.blocking=TRUE)
#' diffChr(1:200, 180:300, pager=page.conf, format='raw')
#'
#' ## An alternative to a blocking pager is to disable the
#' ## auto-file deletion; here we also specify a file location
#' ## explicitly so we can recover the diff text.
#'
#' f <- paste0(tempfile(), ".html") # must specify .html
#' diffChr(1:5, 2:6, format='html', pager=list(file.path=f))
#' tail(readLines(f))
#' unlink(f)
#' }
setClass(
"Pager",
slots=c(
pager="function", file.ext="character", threshold="numeric",
ansi="logical", file.path="character", make.blocking="logical"
),
prototype=list(
pager=function(x) writeLines(readLines(x)), file.ext="", threshold=0L,
ansi=FALSE, file.path=NA_character_, make.blocking=FALSE
),
validity=function(object) {
if(!is.chr.1L(object@file.ext)) return("Invalid `file.ext` slot")
if(!is.int.1L(object@threshold)) return("Invalid `threshold` slot")
if(!is.TF(object@ansi)) return("Invalid `ansi` slot")
if(!is.logical(object@make.blocking) || length(object@make.blocking) != 1L)
return("Invalid `make.blocking` slot")
if(!is.character(object@file.path) || length(object@file.path) != 1L)
return("Invalid `file.path` slot")
TRUE
}
)
setMethod("initialize", "Pager",
function(.Object, ...) {
dots <- list(...)
if("file.path" %in% names(dots)) {
file.path <- dots[['file.path']]
if(length(file.path) != 1L)
stop("Argument `file.path` must be length 1.")
if(is.na(file.path)) file.path <- NA_character_
if(!is.character(file.path))
stop("Argument `file.path` must be character.")
dots[['file.path']] <- file.path
}
do.call(callNextMethod, c(list(.Object), dots))
}
)
#' @export
#' @rdname Pager
Pager <- function(
pager=function(x) writeLines(readLines(x)), file.ext="", threshold=0L,
ansi=FALSE, file.path=NA_character_, make.blocking=FALSE
) {
new(
'Pager', pager=pager, file.ext=file.ext, threshold=threshold,
file.path=file.path, make.blocking=make.blocking
) }
#' @export
#' @rdname Pager
setClass("PagerOff", contains="Pager")
#' @export
#' @rdname Pager
PagerOff <- function(...) new("PagerOff", ...)
#' @export
#' @rdname Pager
setClass(
"PagerSystem", contains="Pager",
prototype=list(pager=file.show, threshold=-1L, file.ext="")
)
#' @export
#' @rdname Pager
PagerSystem <- function(pager=file.show, threshold=-1L, file.ext="", ...)
new("PagerSystem", pager=pager, threshold=threshold, ...)
#' @export
#' @rdname Pager
setClass(
"PagerSystemLess", contains="PagerSystem", slots=c("flags"),
prototype=list(flags="R")
)
#' @export
#' @rdname Pager
PagerSystemLess <- function(
pager=file.show, threshold=-1L, flags="R", file.ext="", ansi=TRUE, ...
)
new(
"PagerSystemLess", pager=pager, threshold=threshold, flags=flags,
ansi=ansi, file.ext=file.ext, ...
)
# Must use initialize so that the pager function can access the flags slot
setMethod("initialize", "PagerSystemLess",
function(.Object, ...) {
dots <- list(...)
flags <- if("flags" %in% names(dots)) {
if(!is.chr.1L(dots[['flags']]))
stop("Argument `flags` must be character(1L) and not NA")
dots[['flags']]
} else ""
pager.old <- dots[['pager']]
pager <- function(x) {
old.less <- set_less_var(flags)
on.exit(reset_less_var(old.less), add=TRUE)
pager.old(x)
}
dots[['flags']] <- flags
dots[['pager']] <- pager
do.call(callNextMethod, c(list(.Object), dots))
} )
#' Create a Blocking Version of a Function
#'
#' Wraps \code{fun} in a function that runs \code{fun} and then issues a
#' \code{readline} prompt to prevent further R code evaluation until user
#' presses a key.
#'
#' @export
#' @param fun a function
#' @param msg character(1L) a message to use as the \code{readline} prompt
#' @param invisible.res whether to return the result of \code{fun} invisibly
#' @return \code{fun}, wrapped in a function that does the blocking.
#' @examples
#' make_blocking(sum, invisible.res=FALSE)(1:10)
make_blocking <- function(
fun, msg="Press ENTER to continue...", invisible.res=TRUE
) {
if(!is.function(fun)) stop("Argument `fun` must be a function")
if(!is.chr.1L(msg)) stop("Argument `msg` must be character(1L) and not NA")
if(!is.TF(invisible.res))
stop("Argument `invisible.res` must be TRUE or FALSE")
res <- function(...) {
res <- fun(...)
readline(msg)
if(invisible.res) invisible(res) else res
}
res
}
#' Invoke IDE Viewer If Available, browseURL If Not
#'
#' Use \code{getOption("viewer")} to view HTML output if it is available as
#' per \href{https://support.rstudio.com/hc/en-us/articles/202133558-Extending-RStudio-with-the-Viewer-Pane}{RStudio}. Fallback to \code{\link{browseURL}}
#' if not available.
#'
#' @export
#' @param url character(1L) a location containing a file to display
#' @return the return vaue of \code{getOption("viewer")} if it is a function, or
#' of \code{\link{browseURL}} if the viewer is not available
view_or_browse <- function(url) {
viewer <- getOption("viewer")
view.success <- FALSE
if(is.function(viewer)) {
view.try <- try(res <- viewer(url), silent=TRUE)
if(inherits(view.try, "try-error")) {
warning(
"IDE viewer failed with error ",
conditionMessage(attr(view.try, "condition")),
"; falling back to `browseURL`"
)
} else view.success <- TRUE
}
if(!view.success) {
res <- utils::browseURL(url)
}
res
}
setClass(
"PagerBrowser", contains="Pager",
prototype=list(threshold=0L, file.ext='html', make.blocking=NA)
)
#' @export
#' @rdname Pager
PagerBrowser <- function(
pager=view_or_browse, threshold=0L, file.ext="html", make.blocking=NA, ...
)
new(
"PagerBrowser", pager=pager, threshold=threshold, file.ext=file.ext,
make.blocking=make.blocking, ...
)
# Helper function to determine whether pager will be used or not
use_pager <- function(pager, len) {
if(!is(pager, "Pager"))
stop("Logic Error: expecting `Pager` arg; contact maintainer.") # nocov
if(!is(pager, "PagerOff")) {
threshold <- if(pager@threshold < 0L) {
console_lines()
} else pager@threshold
!threshold || len > threshold
} else FALSE
}
#' Check Whether System Has less as Pager
#'
#' If \code{getOption(pager)} is set to the default value, checks whether
#' \code{Sys.getenv("PAGER")} appears to be \code{less} by trying to run the
#' pager with the \dQuote{version} and parsing the output. If
#' \code{getOption(pager)} is not the default value, then checks whether it
#' points to the \code{less} program by the same mechanism.
#'
#' Some systems may have \code{less} pagers installed that do not respond to the
#' \code{$LESS} environment variable. For example, \code{more} on at least some
#' versions of OS X is \code{less}, but does not actually respond to
#' \code{$LESS}. If such as pager is the system pager you will likely end up
#' seeing gibberish in the pager. If this is your use case you will need to
#' set-up a custom pager configuration object that sets the correct system
#' variables (see \code{\link{Pager}}).
#'
#' @seealso \code{\link{Pager}}
#' @return TRUE or FALSE
#' @export
#' @examples
#' pager_is_less()
pager_is_less <- function() {
pager.opt <- getOption("pager")
if(pager_opt_default(pager.opt)) {
file_is_less(Sys.getenv("PAGER"))
} else if (is.character(pager.opt)) {
file_is_less(head(pager.opt, 1L))
} else FALSE
}
pager_opt_default <- function(x=getOption("pager")) {
is.character(x) && !is.na(x[1L]) &&
normalizePath(x[1L], mustWork=FALSE) ==
normalizePath(file.path(R.home(), "bin", "pager"), mustWork=FALSE)
}
## Helper Function to Check if a File is Likely to be less Pager
file_is_less <- function(x) {
if(is.chr.1L(x) && file_test("-x", x)) {
res <- tryCatch(
system2(x, "--version", stdout=TRUE, stderr=TRUE),
warning=function(e) NULL,
error=function(e) NULL
)
length(res) && grepl("^less \\d+", res[1L])
} else FALSE
}
|