Nothing
#' @param request_list a list of requests that will be processed in parallel.
#' @param workers maximum number of simultaneous request that will be submitted
#' to the service. Most ECMWF services are limited to 20 concurrent requests
#' (default = 2).
#' @param total_timeout overall timeout limit for all the requests in seconds.
#' @param retry polling frequency of submitted request for downloading (default =
#' \code{30} seconds).
#' @importFrom R6 R6Class
#'
#' @rdname wf_request
#' @export
wf_request_batch <- function(
request_list,
workers = 2,
user = "ecmwfr",
path = tempdir(),
time_out = 3600,
retry = 5,
total_timeout = length(request_list)*time_out/workers
) {
list_in_list <- vapply(request_list, is.list, logical(1))
if (any(!list_in_list)) {
stop("request_list must be a list of requests")
}
filenames <- vapply(request_list, function(x) x$target, character(1))
if (any(duplicated(filenames))) {
stop("Duplicated targets found in `request_list`.")
}
N <- length(request_list)
slots <- as.list(rep(FALSE, workers))
queue <- request_list
done <- list()
force(total_timeout) # Need to evaluate the expression before changing time_out
time_out <- repeat_if_one(time_out, N)
user <- repeat_if_one(user, N)
path <- repeat_if_one(path, N)
timeout_time <- Sys.time() + total_timeout
while (length(done) < length(request_list) & Sys.time() < timeout_time) {
for (w in seq_along(slots)) {
# wait before submitting a call
# set to the same value is the
# retry rate
Sys.sleep(retry)
# If a slot is free and there's a queue,
# assign to it the next pending request,
# remove that request from the queue
if (isFALSE(slots[[w]]) & length(queue) > 0) {
slots[[w]] <- wf_request(
queue[[1]],
user = user[1],
time_out = time_out[1],
retry = retry,
path = path[1],
transfer = FALSE
)
queue <- queue[-1]
user <- user[-1]
time_out <- time_out[-1]
path <- path[-1]
}
# Try to download
if (!isFALSE(slots[[w]])) {
slots[[w]]$download()
}
# If the slot is not still pending,
# add the request to the "done" list
# and free-up the slot
if (!isFALSE(slots[[w]]) && !slots[[w]]$is_pending()) {
# remove the download slot from the queue
slots[[w]]$delete()
# add finished request to done list
done <- append(done, slots[[w]])
slots[[w]] <- FALSE
}
}
}
unlist(lapply(done, function(x) x$get_file()))
}
repeat_if_one <- function(x, N) {
if (is.null(x)) {
return(x)
}
if (length(x) == 1) {
x <- rep(x, N)
}
if (length(x) != N) {
stop(deparse(substitute(x)), " must be a vector of length ", N, " or 1.")
}
x
}
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.