R/jamba-lldf.R

#' Long listing of R session objects
#'
#' Long listing of R session objects
#'
#' This function expands `base::ls()` by also determining the
#' object size, and sorting to display the top `n` objects by
#' size, largest first.
#'
#' This package will call `pryr::object_size` if available,
#' otherwise falls back to `utils::object.size()`.
#'
#' @family jam practical functions
#'
#' @returns `data.frame` with summary of objects and object sizes,
#'    sorted by decreasing object size.
#'
#' @param n `integer` or `Inf` indicating how many objects to
#'    include in the output `data.frame`.
#' @param envir `environment` where the list of objects is obtained,
#'    default `-1L` searches the environment of the caller, usually
#'    the user workspace.
#'    Other recognized options:
#'    * `character` string suitable for `as.environment()` which
#'    recognizes the search path returned by `search()`
#'    * `integer` or `numeric` equivalent to environment relative position
#'    as used in `ls()` argument `pos`.
#' @param items `character` of items to include, default NULL.
#' @param use_utils_objectsize `logical`, default TRUE, whether to prefer
#'    `utils::object.size()`, otherwise it will attempt to use
#'    `pryr::object_size()` if the package is installed.
#' @param all.names `logical` passed to `base::ls()` indicating whether
#'    to include all names, where `all.names=TRUE` will include
#'    hidden objects whose name begin with `"."` such as `".First"`.
#' @param ... additional arguments are passed to `ls()`, notably
#'    `pattern` can be passed to subset objects by regular expression.
#'
#' @examples
#' lldf(10);
#'
#' # custom environment
#' newenv <- new.env();
#' newenv$A <- 1:10;
#' newenv$df <- data.frame(A=1:10, B=11:20);
#' lldf(envir=newenv);
#' rm(newenv);
#'
#' @export
lldf <- function
(n=Inf,
 envir=-1L,
 items=NULL,
 use_utils_objectsize=TRUE,
 all.names=TRUE,
 ...)
{
   # light check for pryr package without using require()
   if (!use_utils_objectsize &&
         requireNamespace("pryr", quietly=TRUE)) {
      osfun <- pryr::object_size;
   } else {
      osfun <- utils::object.size;
   }
   if (length(n) == 0) {
      n <- Inf;
   }
   if (length(envir) == 0) {
      envir <- -1L;
   }
   if (length(envir) == 1 &&
         inherits(envir, c("integer", "character", "numeric"))) {
      envir <- as.environment(envir)
   }

   if (length(items) == 0) {
      items <- ls(envir=envir,
         all.names=all.names,
         sorted=FALSE,
         ...)
   }

   df <- jamba::rbindList(lapply(items, function(i){
      data.frame(name=i,
         class=jamba::cPaste(class(get(i, envir=envir)), sep=", "),
         bytes=as.numeric(osfun(get(i, envir=envir)))
      )
   }));
   df <- head(jamba::mixedSortDF(df, byCols="-bytes"), n)
   rownames(df) <- df$name;
   # convert bytes to human friendly units
   df$size <- jamba::asSize(df$bytes);
   df;
}

Try the jamba package in your browser

Any scripts or data that you put into this service are public.

jamba documentation built on April 4, 2025, 5:14 a.m.