Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lean into localCheck() + use minimal defer() #176

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ URL: https://github.com/rstudio/pool, http://rstudio.github.io/pool/
BugReports: https://github.com/rstudio/pool/issues
Depends:
methods,
R (>= 3.0.0)
R (>= 3.6.0)
Imports:
DBI,
later (>= 1.0.0),
R6,
rlang (>= 1.0.0),
withr
rlang (>= 1.0.0)
Suggests:
covr,
dbplyr (>= 2.0.0),
Expand All @@ -40,4 +39,4 @@ Config/Needs/website: tidyverse/tidytemplate
Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.0
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,6 @@ exportMethods(sqlParseVariables)
import(DBI)
import(methods)
import(rlang)
importFrom(DBI,dbBreak)
importFrom(R6,R6Class)
importFrom(later,later)
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# pool (development version)

* No longer depends on the withr package, by instead requiring R 3.6.

* Add wrappers for dbplyr generics `db_col_types()` (#171) and
`db_copy_to()` (#172).

Expand Down
3 changes: 1 addition & 2 deletions R/DBI-transactions.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@
#' message("Please install the 'RSQLite' package to run this example")
#' }
poolWithTransaction <- function(pool, func) {
conn <- poolCheckout(pool)
on.exit(poolReturn(conn))
conn <- localCheckout(pool)
DBI::dbWithTransaction(conn, func(conn))
}

Expand Down
3 changes: 1 addition & 2 deletions R/DBI-wrap.R
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ DBI_wrap <- function(fun_name) {
recall <- call2(ns_fun, !!!call_args)

body <- expr({
db_con <- poolCheckout(!!con_arg)
on.exit(poolReturn(db_con))
db_con <- localCheckout(!!con_arg)

!!recall
})
Expand Down
6 changes: 2 additions & 4 deletions R/dbplyr.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ copy_to.Pool <- function(dest,
}

local({
db_con <- poolCheckout(dest)
on.exit(poolReturn(db_con))
db_con <- localCheckout(dest)

dplyr::copy_to(
dest = db_con,
Expand Down Expand Up @@ -115,8 +114,7 @@ dbplyr_wrap <- function(fun_name) {
body <- expr({
!!!temporary

db_con <- poolCheckout(con)
on.exit(poolReturn(db_con))
db_con <- localCheckout(con)

!!recall
})
Expand Down
2 changes: 1 addition & 1 deletion R/pool-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ setMethod("poolReturn", "ANY", function(object) {
#' use only.
localCheckout <- function(pool, env = parent.frame()) {
obj <- poolCheckout(pool)
withr::defer(poolReturn(obj), envir = env)
defer(poolReturn(obj), envir = env)
obj
}
5 changes: 5 additions & 0 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ pool_metadata <- function(x,
meta
}

# Lightweight equivalent of withr::defer()
defer <- function(expr, envir = parent.frame(), after = FALSE) {
thunk <- as.call(list(function() expr))
do.call(on.exit, list(thunk, TRUE, after), envir = envir)
}
3 changes: 1 addition & 2 deletions tests/testthat/_snaps/DBI-wrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
Output
function (conn, statement, ...)
{
db_con <- poolCheckout(conn)
on.exit(poolReturn(db_con))
db_con <- localCheckout(conn)
DBI::dbExecute(conn = db_con, statement = statement, ... = ...)
}
<environment: namespace:pool>
Expand Down
6 changes: 2 additions & 4 deletions tests/testthat/_snaps/dbplyr.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@
Output
function (con, sql, n = -1, warn_incomplete = TRUE, ...)
{
db_con <- poolCheckout(con)
on.exit(poolReturn(db_con))
db_con <- localCheckout(con)
dbplyr::db_collect(con = db_con, sql = sql, n = n, warn_incomplete = warn_incomplete,
... = ...)
}
Expand All @@ -50,8 +49,7 @@
in_transaction = TRUE)
{
stop_if_temporary(temporary)
db_con <- poolCheckout(con)
on.exit(poolReturn(db_con))
db_con <- localCheckout(con)
dbplyr::db_compute(con = db_con, table = table, sql = sql,
... = ..., overwrite = overwrite, temporary = temporary,
unique_indexes = unique_indexes, indexes = indexes, analyze = analyze,
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/helper.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local_db_pool <- function(env = parent.frame()) {
pool <- dbPool(RSQLite::SQLite())
withr::defer(poolClose(pool), envir = env)
defer(poolClose(pool), envir = env)
pool
}

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-DBI.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ test_that("can set options on creation", {
pool <- dbPool(RSQLite::SQLite(), onCreate = function(con) {
DBI::dbExecute(con, "PRAGMA journal_mode = TRUNCATE")
})
withr::defer(poolClose(pool))
defer(poolClose(pool))

res <- DBI::dbGetQuery(pool, "PRAGMA journal_mode")[[1]]
expect_equal(res, "truncate")
Expand Down
3 changes: 1 addition & 2 deletions tests/testthat/test-hooks.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ test_that("onValidate() caches query", {
# reset cache from initial creation + validation
pool$state$validateQuery <- NULL

con <- poolCheckout(pool)
withr::defer(poolReturn(con))
con <- localCheckout(pool)
onValidate(con)
expect_equal(pool$state$validateQuery, "SELECT 1")
})
2 changes: 1 addition & 1 deletion tests/testthat/test-pool-methods.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
test_that("localCheckout works", {
pool <- poolCreate(function(x) 1)
withr::defer(poolClose(pool))
defer(poolClose(pool))

f <- function() {
localCheckout(pool)
Expand Down
34 changes: 17 additions & 17 deletions tests/testthat/test-pool.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test_that("pool can't fetch or close after close", {

test_that("can fetch and release", {
pool <- poolCreate(function() 1)
withr::defer(poolClose(pool))
defer(poolClose(pool))

obj <- poolCheckout(pool)
expect_equal(obj, 1, ignore_attr = TRUE)
Expand All @@ -39,7 +39,7 @@ test_that("can fetch and release", {

test_that("max size is enforced", {
pool <- poolCreate(MockPooledObj$new, maxSize = 2)
withr::defer(poolClose(pool))
defer(poolClose(pool))

obj1 <- poolCheckout(pool)
obj2 <- poolCheckout(pool)
Expand All @@ -52,7 +52,7 @@ test_that("max size is enforced", {

test_that("idle objects are reaped", {
pool <- poolCreate(MockPooledObj$new, idleTimeout = 0)
withr::defer(poolClose(pool))
defer(poolClose(pool))

obj1 <- poolCheckout(pool)
obj2 <- poolCheckout(pool)
Expand All @@ -66,7 +66,7 @@ test_that("idle objects are reaped", {

test_that("validates (only) when needed", {
pool <- poolCreate(MockPooledObj$new, validationInterval = 0.1)
withr::defer(poolClose(pool))
defer(poolClose(pool))

last_validated <- function(pool) {
obj <- localCheckout(pool)
Expand All @@ -89,7 +89,7 @@ test_that("validates (only) when needed", {

test_that("warns if validation fails once, creates new object and tries again", {
pool <- poolCreate(MockPooledObj$new, validationInterval = 0.1)
withr::defer(poolClose(pool))
defer(poolClose(pool))

check_valid_object <- function(x) {
# Sneak into private methods
Expand All @@ -111,7 +111,7 @@ test_that("warns if validation fails once, creates new object and tries again",

# now force all validations to fail so we get an error
failOnValidate <<- TRUE
withr::defer(failOnValidate <<- FALSE)
defer(failOnValidate <<- FALSE)

Sys.sleep(pool$validationInterval + .1)
expect_snapshot(check_valid_object(obj), error = TRUE)
Expand All @@ -123,7 +123,7 @@ test_that("warns if validation fails once, creates new object and tries again",

test_that("can't return the same object twice", {
pool <- poolCreate(MockPooledObj$new)
withr::defer(poolClose(pool))
defer(poolClose(pool))

obj <- poolCheckout(pool)
poolReturn(obj)
Expand Down Expand Up @@ -155,7 +155,7 @@ test_that("poolReturn() errors if object is not valid", {

test_that("pool has useful print method", {
pool <- poolCreate(function() 10)
withr::defer(poolClose(pool))
defer(poolClose(pool))

expect_snapshot({
pool
Expand All @@ -173,7 +173,7 @@ test_that("pool has useful print method", {

test_that("empty pool has useful print method", {
pool <- poolCreate(function() 10, minSize = 0)
withr::defer(poolClose(pool))
defer(poolClose(pool))

expect_snapshot({
pool
Expand All @@ -184,11 +184,11 @@ test_that("empty pool has useful print method", {

test_that("useful warning if onDestroy fails", {
pool <- poolCreate(MockPooledObj$new, idleTimeout = 0)
withr::defer(poolClose(pool))
defer(poolClose(pool))

checkCounts(pool, free = 1, taken = 0)
failOnDestroy <<- TRUE
withr::defer(failOnDestroy <<- FALSE)
defer(failOnDestroy <<- FALSE)

a <- poolCheckout(pool)
b <- poolCheckout(pool)
Expand All @@ -205,32 +205,32 @@ test_that("useful warning if onDestroy fails", {

test_that("throws if onPassivate fails", {
pool <- poolCreate(MockPooledObj$new)
withr::defer(poolClose(pool))
defer(poolClose(pool))

obj <- poolCheckout(pool)
failOnPassivate <<- TRUE
withr::defer(failOnPassivate <<- FALSE)
defer(failOnPassivate <<- FALSE)

expect_snapshot(poolReturn(obj), error = TRUE)
})

test_that("throws if onActivate fails", {
pool <- poolCreate(MockPooledObj$new)
withr::defer(poolClose(pool))
defer(poolClose(pool))

failOnActivate <<- TRUE
withr::defer(failOnActivate <<- FALSE)
defer(failOnActivate <<- FALSE)

expect_snapshot(poolCheckout(pool), error = TRUE)
checkCounts(pool, free = 0, taken = 0)
})

test_that("throws if onValidate fails", {
pool <- poolCreate(MockPooledObj$new)
withr::defer(poolClose(pool))
defer(poolClose(pool))

failOnValidate <<- TRUE
withr::defer(failOnValidate <<- FALSE)
defer(failOnValidate <<- FALSE)
expect_snapshot(poolCheckout(pool), error = TRUE)
checkCounts(pool, free = 0, taken = 0)
})
Loading