X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ecb7d4501373a21ae69494beee8252f107ec1b56..3e1c43866e5b523c3f1d273c25942ad56dc66d3f:/sdk/R/R/Collection.R diff --git a/sdk/R/R/Collection.R b/sdk/R/R/Collection.R index 8bd4655c2b..fad452ac7a 100644 --- a/sdk/R/R/Collection.R +++ b/sdk/R/R/Collection.R @@ -1,39 +1,78 @@ source("./R/Subcollection.R") source("./R/ArvadosFile.R") -source("./R/HttpRequest.R") -source("./R/HttpParser.R") - -#' Arvados Collection Object +source("./R/RESTService.R") +source("./R/util.R") + +#' Collection +#' +#' Collection class provides interface for working with Arvados collections. +#' +#' @section Usage: +#' \preformatted{collection = Collection$new(arv, uuid)} +#' +#' @section Arguments: +#' \describe{ +#' \item{arv}{Arvados object.} +#' \item{uuid}{UUID of a collection.} +#' } +#' +#' @section Methods: +#' \describe{ +#' \item{add(content)}{Adds ArvadosFile or Subcollection specified by content to the collection.} +#' \item{create(fileNames, relativePath = "")}{Creates one or more ArvadosFiles and adds them to the collection at specified path.} +#' \item{remove(fileNames)}{Remove one or more files from the collection.} +#' \item{move(content, newLocation)}{Moves ArvadosFile or Subcollection to another location in the collection.} +#' \item{getFileListing()}{Returns collections file content as character vector.} +#' \item{get(relativePath)}{If relativePath is valid, returns ArvadosFile or Subcollection specified by relativePath, else returns NULL.} +#' } +#' +#' @name Collection +#' @examples +#' \dontrun{ +#' arv <- Arvados$new("your Arvados token", "example.arvadosapi.com") +#' collection <- Collection$new(arv, "uuid") +#' +#' newFile <- ArvadosFile$new("myFile") +#' collection$add(newFile, "myFolder") #' -#' Update description +#' createdFiles <- collection$create(c("main.cpp", lib.dll), "cpp/src/") #' -#' @examples arv = Collection$new(api, uuid) -#' @export Collection +#' collection$remove("location/to/my/file.cpp") +#' +#' collection$move("folder/file.cpp", "file.cpp") +#' +#' arvadosFile <- collection$get("location/to/my/file.cpp") +#' arvadosSubcollection <- collection$get("location/to/my/directory/") +#' } +NULL + +#' @export Collection <- R6::R6Class( "Collection", public = list( - api = NULL, - uuid = NULL, + uuid = NULL, + # api = NULL, - initialize = function(api, uuid) + initialize = function(api, uuid) { - self$api <- api - private$http <- HttpRequest$new() - private$httpParser <- HttpParser$new() + # self$api <- api + private$REST <- api$getRESTService() self$uuid <- uuid - collection <- self$api$getCollection(uuid) - private$fileContent <- private$getCollectionContent() + private$fileContent <- private$REST$getCollectionContent(uuid) private$tree <- CollectionTree$new(private$fileContent, self) }, add = function(content, relativePath = "") { - if(relativePath == "" || + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() + + if(relativePath == "" || relativePath == "." || relativePath == "./") { @@ -41,9 +80,7 @@ Collection <- R6::R6Class( } else { - if(endsWith(relativePath, "/") && nchar(relativePath) > 0) - relativePath <- substr(relativePath, 1, nchar(relativePath) - 1) - + relativePath <- trimFromEnd(relativePath, "/") subcollection <- self$get(relativePath) } @@ -53,21 +90,26 @@ Collection <- R6::R6Class( if("ArvadosFile" %in% class(content) || "Subcollection" %in% class(content)) { - subcollection$add(content) + if(content$getName() == "") + stop("Content has invalid name.") + subcollection$add(content) content } else { - contentClass <- paste(class(content), collapse = ", ") - stop(paste("Expected AravodsFile or Subcollection object, got", - paste0("(", contentClass, ")"), ".")) + stop(paste0("Expected AravodsFile or Subcollection object, got ", + paste0("(", paste0(class(content), collapse = ", "), ")"), + ".")) } }, create = function(fileNames, relativePath = "") { - if(relativePath == "" || + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() + + if(relativePath == "" || relativePath == "." || relativePath == "./") { @@ -75,9 +117,7 @@ Collection <- R6::R6Class( } else { - if(endsWith(relativePath, "/") && nchar(relativePath) > 0) - relativePath <- substr(relativePath, 1, nchar(relativePath) - 1) - + relativePath <- trimFromEnd(relativePath, "/") subcollection <- self$get(relativePath) } @@ -106,146 +146,134 @@ Collection <- R6::R6Class( } else { - contentClass <- paste(class(fileNames), collapse = ", ") - stop(paste("Expected character vector, got", - paste0("(", contentClass, ")"), ".")) + stop(paste0("Expected character vector, got ", + paste0("(", paste0(class(fileNames), collapse = ", "), ")"), + ".")) } }, - remove = function(content) + remove = function(paths) { - if(is.character(content)) + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() + + if(is.character(paths)) { - sapply(content, function(filePath) + sapply(paths, function(filePath) { - if(endsWith(filePath, "/") && nchar(filePath) > 0) - filePath <- substr(filePath, 1, nchar(filePath) - 1) - + filePath <- trimFromEnd(filePath, "/") file <- self$get(filePath) if(is.null(file)) stop(paste("File", filePath, "doesn't exist.")) parent <- file$getParent() - parent$remove(filePath) + + if(is.null(parent)) + stop("You can't delete root folder.") + + parent$remove(file$getName()) }) + + "Content removed" } - else if("ArvadosFile" %in% class(content) || - "Subcollection" %in% class(content)) + else { - if(is.null(content$getCollection()) || - content$getCollection()$uuid != self$uuid) - stop("Subcollection doesn't belong to this collection.") - - content$removeFromCollection() + stop(paste0("Expected character vector, got ", + paste0("(", paste0(class(paths), collapse = ", "), ")"), + ".")) } }, move = function(content, newLocation) { - if(endsWith(content, "/")) - content <- substr(content, 0, nchar(content) - 1) + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() + + content <- trimFromEnd(content, "/") elementToMove <- self$get(content) if(is.null(elementToMove)) - stop("Element you want to move doesn't exist in the collection.") + stop("Content you want to move doesn't exist in the collection.") elementToMove$move(newLocation) }, - getFileListing = function() private$getCollectionContent(), - - get = function(relativePath) - { - private$tree$getElement(relativePath) - }, - - #Todo: Move these methods to another class. - createFilesOnREST = function(files) - { - sapply(files, function(filePath) - { - self$createNewFile(filePath, NULL, "text/html") - }) - }, - - createNewFile = function(relativePath, content, contentType) + getFileListing = function() { - fileURL <- paste0(self$api$getWebDavHostName(), "c=", self$uuid, "/", relativePath); - headers <- list(Authorization = paste("OAuth2", self$api$getToken()), - "Content-Type" = contentType) - body <- content + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() - serverResponse <- private$http$PUT(fileURL, headers, body) - - if(serverResponse$status_code < 200 || serverResponse$status_code >= 300) - stop(paste("Server code:", serverResponse$status_code)) - - print(paste("File created:", relativePath)) + content <- private$REST$getCollectionContent(self$uuid) + content[order(tolower(content))] }, - deleteFromREST = function(relativePath) + get = function(relativePath) { - fileURL <- paste0(self$api$getWebDavHostName(), "c=", self$uuid, "/", relativePath); - headers <- list(Authorization = paste("OAuth2", self$api$getToken())) + if(is.null(private$tree)) + private$genereateCollectionTreeStructure() - serverResponse <- private$http$DELETE(fileURL, headers) - - if(serverResponse$status_code < 200 || serverResponse$status_code >= 300) - stop(paste("Server code:", serverResponse$status_code)) - - print(paste("File deleted:", relativePath)) + private$tree$getElement(relativePath) }, - moveOnREST = function(from, to) + toJSON = function() { - collectionURL <- URLencode(paste0(self$api$getWebDavHostName(), "c=", self$uuid, "/")) - fromURL <- paste0(collectionURL, from) - toURL <- paste0(collectionURL, to) - - headers = list("Authorization" = paste("OAuth2", self$api$getToken()), - "Destination" = toURL) - - serverResponse <- private$http$MOVE(fromURL, headers) - - if(serverResponse$status_code < 200 || serverResponse$status_code >= 300) - stop(paste("Server code:", serverResponse$status_code)) - - serverResponse - } + fields <- sapply(private$classFields, function(field) + { + self[[field]] + }, USE.NAMES = TRUE) + + jsonlite::toJSON(list("collection" = + Filter(Negate(is.null), fields)), auto_unbox = TRUE) + }, + + isEmpty = function() { + fields <- sapply(private$classFields, + function(field) self[[field]]) + + if(any(sapply(fields, function(field) !is.null(field) && field != ""))) + FALSE + else + TRUE + }, + + getRESTService = function() private$REST, + setRESTService = function(newRESTService) private$REST <- newRESTService ), private = list( - http = NULL, - httpParser = NULL, - tree = NULL, - + REST = NULL, + tree = NULL, fileContent = NULL, + classFields = NULL, - getCollectionContent = function() + genereateCollectionTreeStructure = function() { - collectionURL <- URLencode(paste0(self$api$getWebDavHostName(), "c=", self$uuid)) - - headers = list("Authorization" = paste("OAuth2", self$api$getToken())) + if(is.null(self$uuid)) + stop("Collection uuid is not defined.") - response <- private$http$PROPFIND(collectionURL, headers) + if(is.null(private$REST)) + stop("REST service is not defined.") - parsedResponse <- private$httpParser$parseWebDAVResponse(response, collectionURL) - parsedResponse[-1] - }, - - generateTree = function(content) - { - treeBranches <- sapply(collectionContent, function(filePath) - { - splitPath <- unlist(strsplit(filePath$name, "/", fixed = TRUE)) - - branch = private$createBranch(splitPath, filePath$fileSize) - }) + private$fileContent <- private$REST$getCollectionContent(self$uuid) + private$tree <- CollectionTree$new(private$fileContent, self) } ), cloneable = FALSE ) + +#' print.Collection +#' +#' Custom print function for Collection class +#' +#' @param x Instance of Collection class +#' @param ... Optional arguments. +#' @export +print.Collection = function(x, ...) +{ + cat(paste0("Type: ", "\"", "Arvados Collection", "\""), sep = "\n") + cat(paste0("uuid: ", "\"", x$uuid, "\""), sep = "\n") +}