R/pkgdiff.R

Defines functions refresh_package_lists .onAttach

#' @title Identify Differences Between Package Versions
#'
#' @description The \strong{pkgdiff} package contains functions to
#' identify differences between versions of R packages. The \strong{pkgdiff}
#' package was written specifically to detect breaking changes and
#' help with package upgrades.
#'
#' @section Functions:
#' The main functions included in the \strong{pkgdiff} package are
#' as follows:
#' \itemize{
#'   \item {\code{\link{pkg_info}}: Retrieves general information about a package,
#'   mostly from the package description file.}
#'   \item {\code{\link{pkg_versions}}: Gets a data frame containing all
#'   versions of a package and the release date for each.}
#'   \item {\code{\link{pkg_diff}}: Compares two package versions, and
#'   returns an object that contains the differences in terms of exported
#'   function signatures.}
#'   \item {\code{\link{pkg_stability}}: Compiles information on package
#'   stability over time, and calculates a score based on this information.
#'   This function is useful when making package selection choices.}
#'   \item {\code{\link{pkg_repo}}: Fetches package names and versions for
#'   packages in a specified repository.}
#'   \item {\code{\link{repo_breakages}}: Identifies breakages when
#'   upgrading from one version of a repository to another.}
#'   \item {\code{\link{repo_stability}}: Performs a stability assessment
#'   on multiple packages, even an entire repository.}
#' }
#' For additional information on \strong{pkgdiff}, see the package vignette
#' \code{vignette('pkgdiff')}, or visit the package web site
#' [here](https://pkgdiff.r-sassy.org/index.html).
#'
#' @keywords internal
#' @aliases pkgdiff-package
#' @name pkgdiff
"_PACKAGE"


# Globals -----------------------------------------------------------------


e <- new.env(parent = emptyenv())
e$LoadDate <- Sys.Date()
e$GithubPath <- "https://github.com/dbosak01/pkgdiffdata/raw/refs/heads/main/data"

e$RStudioPath <- "https://cran.rstudio.com/src/contrib"
e$Mirror <- "https://cran.rstudio.com/"
e$CranArchivePath <- "https://cran.r-project.org/src/contrib/Archive"
e$CranCurrentPath <- "https://cran.r-project.org/src/contrib/"
e$MirrorArchivePath <- "https://cran.rstudio.com/src/contrib/Archive"
e$MirrorCurrentPath <- "https://cran.rstudio.com/src/contrib/"
e$CranPackagePath <- "https://cran.r-project.org/web/packages"
e$AvailablePackages <- NULL
e$SavedPackages <- NULL
e$BasePackages <- NULL


.onAttach <- function(...) {


  refresh_package_lists()

}


# Utility -----------------------------------------------------------------


#' @import utils
#' @noRd
refresh_package_lists <- function(force = FALSE) {

  ret <- FALSE

  ts <- Sys.Date() - e$LoadDate
  if (is.null(e$AvailablePackages) ||
      is.null(e$SavedPackages) || ts > 1 || force == TRUE) {

    e$AvailablePackages <- available_packages()

    e$SavedPackages <- github_packages()

    e$BasePackages <- base_packages()

    ret <- TRUE
  }

  return(ret)
}

Try the pkgdiff package in your browser

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

pkgdiff documentation built on Aug. 8, 2025, 7:44 p.m.