-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from OuhscBbmc/dev
assert versions
- Loading branch information
Showing
14 changed files
with
408 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
#' @name assert_version | ||
#' @aliases | ||
#' assert_version_r | ||
#' assert_version_package | ||
#' assert_version_driver_sqlserver | ||
#' @title I that the local machine is using an acceptable version. | ||
#' | ||
#' @description Assert that the local machine is using a version that satisfies | ||
#' the minimum version specified. | ||
#' | ||
#' @param minimum A [package_version] or [character] that specifies | ||
#' the version of the software being examined | ||
#' (ie, R, a package, or an ODBC driver). | ||
#' | ||
#' @return An error if the minimum version is not met. | ||
#' If the local machine is using an acceptable version, an `invisible()` `TRUE` | ||
#' is returned. | ||
#' | ||
#' @note These functions help us assert the the local machine has an acceptable | ||
#' version of the software running. | ||
#' | ||
#' For [assert_version_r()], the current default value is "4.2.0" because | ||
#' it introduced the | ||
#' [placeholder](https://davidbudzynski.github.io/general/2022/04/23/r-native-placeholder.html) | ||
#' for the native pipe. Future versions of OuhscMunge will likely increase | ||
#' the default value to keep pace with important developments to R. | ||
#' | ||
#' @author Will Beasley | ||
#' | ||
#' @examples | ||
#' # Check R | ||
#' assert_version_r("3.1.0") | ||
#' assert_version_r() | ||
#' # Fails: | ||
#' \dontrun{ | ||
#' assert_version_r("99.1.0") | ||
#' } | ||
#' | ||
#' # Check packages | ||
#' assert_version_package("base", "3.1.0") | ||
#' assert_version_package("OuhscMunge", "0.1.0") | ||
#' # Fails: | ||
#' \dontrun{ | ||
#' assert_version_package("base", "99.1.0") | ||
#' assert_version_package("OuhscMunge", "9.1.0") | ||
#' assert_version_package( | ||
#' package_name = "OuhscMunge", | ||
#' minimum = "9.1.0", | ||
#' installation_code = 'remotes::install_github("OuhscBbmc/OuhscMunge")' | ||
#' ) | ||
#' assert_version_package("OuhscMungeee", "9.1.0") | ||
#' } | ||
#' | ||
#' # Check ODBC driver version | ||
#' \dontrun{ | ||
#' cnn <- DBI::dbConnect(odbc::odbc(), dsn = "dhs_waiver_eval_1") | ||
#' assert_version_driver_sqlserver(cnn, "3.1.0") | ||
#' # Fails: assert_version_driver_sqlserver(cnn, "99.1.0") | ||
#' DBI::dbDisconnect(cnn) | ||
#' } | ||
|
||
#' @export | ||
assert_version_r <- function(minimum = base::package_version("4.2.1")) { | ||
checkmate::assert_vector(minimum, len = 1, any.missing = FALSE) | ||
minimum <- | ||
if (inherits(minimum, "package_version")) { | ||
as.character(minimum) | ||
} else if (inherits(minimum, "character")) { | ||
# Make sure it can be recognized as a version | ||
as.character(base::package_version(minimum)) | ||
} else { | ||
stop("The value passed to `minimum` must inherit either from 'character' or `package_version`.") | ||
} | ||
|
||
current <- as.character(utils::packageVersion("base")) | ||
|
||
comparison <- | ||
utils::compareVersion( | ||
current, | ||
minimum | ||
) | ||
|
||
if (comparison < 0 ) { | ||
"Your R version is too old. It is %s, but needs to be at least %s. Update it at <https://cloud.r-project.org>." |> | ||
sprintf( | ||
current, | ||
minimum | ||
) |> | ||
stop() | ||
} else { | ||
invisible(TRUE) | ||
} | ||
} | ||
|
||
#' @export | ||
assert_version_package <- function( | ||
package_name, | ||
minimum, | ||
installation_code = "" | ||
) { | ||
checkmate::assert_character(package_name, len = 1, min.chars = 1, any.missing = FALSE) | ||
checkmate::assert_vector(minimum, len = 1, any.missing = FALSE) | ||
checkmate::assert_character(installation_code, len = 1, min.chars = 0, any.missing = FALSE) | ||
|
||
package_is_installed <- requireNamespace(package_name, quietly = TRUE) | ||
|
||
installation_message <- | ||
if (1L <= nchar(installation_code)) { | ||
" Install the package with `%s`. Afterwards, please restart the R session." |> | ||
sprintf(installation_code) | ||
} else { | ||
" Afterwards, please restart the R session." | ||
} | ||
|
||
if (!package_is_installed) { | ||
"The package '%s' not installed.%s" |> | ||
sprintf(package_name, installation_message) |> | ||
stop() | ||
} | ||
|
||
minimum <- | ||
if (inherits(minimum, "package_version")) { | ||
as.character(minimum) | ||
} else if (inherits(minimum, "character")) { | ||
# Make sure it can be recognized as a version | ||
as.character(base::package_version(minimum)) | ||
} else { | ||
stop("The value passed to `minimum` must inherit either from 'character' or `package_version`.") | ||
} | ||
|
||
current <- as.character(utils::packageVersion(package_name)) | ||
|
||
comparison <- | ||
utils::compareVersion( | ||
current, | ||
minimum | ||
) | ||
|
||
if (comparison < 0 ) { | ||
"Your version of the `%s` package is too old. It is %s, but needs to be at least %s.%s" |> | ||
sprintf( | ||
package_name, | ||
current, | ||
minimum, | ||
installation_message | ||
) |> | ||
stop() | ||
} else { | ||
invisible(TRUE) | ||
} | ||
} | ||
|
||
#' @export | ||
assert_version_driver_sqlserver <- function( | ||
connection, | ||
minimum | ||
) { # nocov start | ||
checkmate::assert_class(connection, "Microsoft SQL Server") | ||
checkmate::assert_vector(minimum, len = 1, any.missing = FALSE) | ||
|
||
installation_message <- "Please see the installation guidance at <https://ouhscbbmc.github.io/data-science-practices-1/workstation.html#workstation-odbc>." | ||
|
||
minimum <- | ||
if (inherits(minimum, "package_version")) { | ||
as.character(minimum) | ||
} else if (inherits(minimum, "character")) { | ||
# Make sure it can be recognized as a version | ||
as.character(base::package_version(minimum)) | ||
} else { | ||
stop("The value passed to `minimum` must inherit either from 'character' or `package_version`.") | ||
} | ||
|
||
current <- connection@info$driver.version | ||
|
||
comparison <- | ||
utils::compareVersion( | ||
current, | ||
minimum | ||
) | ||
|
||
if (comparison < 0 ) { | ||
"Your version of the driver is too old. It is %s, but needs to be at least %s.%s" |> | ||
sprintf( | ||
current, | ||
minimum, | ||
installation_message | ||
) |> | ||
stop() | ||
} else { | ||
invisible(TRUE) | ||
} | ||
} # nocov end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ MIECHV | |
NIGMS | ||
NSE | ||
ODBC | ||
ORCID | ||
OUHSC | ||
OuhscBbmc | ||
PatientDOB | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.