From 73fb9000faacebbe9d6c20cfd10458e48a635f7c Mon Sep 17 00:00:00 2001 From: Florian Angerer <florian.angerer@oracle.com> Date: Tue, 21 Nov 2017 15:04:19 +0100 Subject: [PATCH] Using 'zip' instead of 'tar'. --- .../r/install.packages.R | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/com.oracle.truffle.r.test.packages/r/install.packages.R b/com.oracle.truffle.r.test.packages/r/install.packages.R index 0ef36a2b32..1e109b0291 100644 --- a/com.oracle.truffle.r.test.packages/r/install.packages.R +++ b/com.oracle.truffle.r.test.packages/r/install.packages.R @@ -752,22 +752,24 @@ pkg.cache.get <- function(pkgname, lib) { } log.message("using package cache directory ", version.dir, level=1) + cache.entry.name <- paste0(pkgname, ".gz") # lookup package dir - pkg.dirs <- list.dirs(version.dir, full.names=FALSE, recursive=FALSE) - if (!is.na(match(pkgname, pkg.dirs))) { + pkg.dirs <- list.files(version.dir, full.names=FALSE, recursive=FALSE) + if (!is.na(match(cache.entry.name, pkg.dirs))) { # cache hit - fromPath <- file.path(version.dir, pkgname) + fromPath <- file.path(version.dir, cache.entry.name) toPath <- lib # extract cached package to library directory - if (untar(fromPath, exdir=toPath) != 0L) { + tryCatch({ + unzip(fromPath, exdir=toPath, unzip = getOption("unzip")) + log.message("package cache hit, using package from ", fromPath) + return (TRUE) + }, error = function(e) { log.message("could not extract cached package from ", fromPath , " to ", toPath, level=1) return (FALSE) - } - - log.message("package cache hit, using package from ", fromPath) - return (TRUE) + }) } log.message("cache miss for package ", pkgname, level=1) @@ -788,12 +790,12 @@ pkg.cache.insert <- function(pkgname, lib) { } fromPath <- file.path(lib, pkgname) - toPath <- file.path(version.dir, paste0(pkgname, ".tar.gz")) + toPath <- file.path(version.dir, paste0(pkgname, ".gz")) # to produce a TAR with relative paths, we need to change the working dir prev.wd <- getwd() setwd(lib) - if(tar(toPath, pkgname, compression="gzip") != 0L) { + if(zip(toPath, pkgname) != 0L) { log.message("could not compress package dir ", fromPath , " and store it to ", toPath, level=1) return (FALSE) } -- GitLab