Nothing
# Covered in semi-automated cloud tests.
# nocov start
database_aws_new <- function(
memory = NULL,
path = NULL,
key = NULL,
header = NULL,
logical_columns = NULL,
integer_columns = NULL,
numeric_columns = NULL,
list_columns = NULL,
list_column_modes = NULL,
buffer = NULL,
resources = NULL
) {
database_aws_class$new(
memory = memory,
path = path,
key = key,
header = header,
logical_columns = logical_columns,
integer_columns = integer_columns,
numeric_columns = numeric_columns,
list_columns = list_columns,
list_column_modes = list_column_modes,
buffer = buffer,
resources = resources
)
}
database_aws_class <- R6::R6Class(
classname = "tar_database_aws",
inherit = database_class,
class = FALSE,
portable = FALSE,
cloneable = FALSE,
public = list(
validate = function() {
super$validate()
tar_assert_inherits(
self$resources$aws,
"tar_resources_aws",
msg = paste(
"Resources must be supplied to the `targets` AWS ",
"database class. Set resources with tar_option_set()"
)
)
resources_validate(self$resources$aws)
},
download = function(verbose = TRUE) {
if (verbose) {
tar_print(
"Downloading AWS cloud object ",
self$key,
" to local file ",
self$path
)
}
aws <- self$resources$aws
dir_create(dirname(self$path))
aws_s3_download(
file = self$path,
key = self$key,
bucket = aws$bucket,
region = aws$region,
endpoint = aws$endpoint,
args = aws$args,
max_tries = aws$max_tries %|||% 5L
)
invisible()
},
upload = function(verbose = TRUE) {
if (verbose) {
tar_print(
"Uploading local file ",
self$path,
" to AWS cloud object ",
self$key
)
}
aws <- self$resources$aws
file <- file_init(path = path)
file_ensure_hash(file)
aws_s3_upload(
file = self$path,
key = self$key,
bucket = aws$bucket,
region = aws$region,
endpoint = aws$endpoint,
metadata = list(
"targets-database-hash" = file$hash,
"targets-database-size" = file$size,
"targets-database-time" = file$time
),
part_size = aws$part_size,
args = aws$args,
max_tries = aws$max_tries %|||% 5L
)
invisible()
},
head = function() {
aws <- self$resources$aws
head <- aws_s3_head(
key = self$key,
bucket = aws$bucket,
region = aws$region,
endpoint = aws$endpoint,
args = aws$args,
max_tries = aws$max_tries %|||% 5L
)
list(
exists = !is.null(head),
hash = head$Metadata$`targets-database-hash`,
size = head$Metadata$`targets-database-size`,
time = head$Metadata$`targets-database-time`
)
},
delete_cloud = function(verbose = TRUE) {
if (verbose) {
tar_print("Deleting AWS cloud object ", self$key)
}
aws <- self$resources$aws
aws_s3_delete(
key = self$key,
bucket = aws$bucket,
region = aws$region,
endpoint = aws$endpoint,
args = aws$args,
max_tries = aws$max_tries %|||% 5L
)
}
)
)
# nocov end
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.