Improve Collections create and move methods and update documentation
[arvados.git] / sdk / R / R / Collection.R
index ea6f692ce556c558c62fe71005ef384d2d2657e6..8869d7be67846b449200fe2c675936dd1c4133db 100644 (file)
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: Apache-2.0
+
 source("./R/Subcollection.R")
 source("./R/ArvadosFile.R")
-source("./R/HttpRequest.R")
-source("./R/HttpParser.R")
+source("./R/RESTService.R")
+source("./R/util.R")
 
-#' Arvados Collection Object
+#' 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(files)}{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, destination)}{Moves ArvadosFile or Subcollection to another location in the collection.}
+#'   \item{copy(content, destination)}{Copies 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.}
+#' }
 #'
-#' Update description
+#' @name Collection
+#' @examples
+#' \dontrun{
+#' arv <- Arvados$new("your Arvados token", "example.arvadosapi.com")
+#' collection <- Collection$new(arv, "uuid")
 #'
-#' @examples arv = Collection$new(api, uuid)
-#' @export Collection
+#' createdFiles <- collection$create(c("main.cpp", lib.dll), "cpp/src/")
+#'
+#' 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,
 
-        initialize = function(api, uuid)
+               initialize = function(api, uuid)
         {
-            self$api <- api
-            private$http <- HttpRequest$new()
-            private$httpParser <- HttpParser$new()
-
+            private$REST <- api$getRESTService()
             self$uuid <- uuid
-            collection <- self$api$getCollection(uuid)
-
-            private$fileContent <- private$getCollectionContent()
-            private$tree <- CollectionTree$new(private$fileContent, self)
         },
 
         add = function(content, relativePath = "")
         {
-            if(relativePath == "" ||
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
+
+            if(relativePath == ""  ||
                relativePath == "." ||
                relativePath == "./")
             {
-                subcollection <- private$tree$.__enclos_env__$private$tree
+                subcollection <- private$tree$getTree()
             }
             else
             {
-                if(endsWith(relativePath, "/") && nchar(relativePath) > 0)
-                    relativePath <- substr(relativePath, 1, nchar(relativePath) - 1)
-
+                relativePath <- trimFromEnd(relativePath, "/")
                 subcollection <- self$get(relativePath)
             }
 
             if(is.null(subcollection))
                 stop(paste("Subcollection", relativePath, "doesn't exist."))
 
-            if(is.character(content))
+            if("ArvadosFile"   %in% class(content) ||
+               "Subcollection" %in% class(content))
+            {
+                if(!is.null(content$getCollection()))
+                    stop("Content already belongs to a collection.")
+
+                if(content$getName() == "")
+                    stop("Content has invalid name.")
+
+                subcollection$add(content)
+                content
+            }
+            else
+            {
+                stop(paste0("Expected AravodsFile or Subcollection object, got ",
+                            paste0("(", paste0(class(content), collapse = ", "), ")"),
+                            "."))
+            }
+        },
+
+        create = function(files)
+        {
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
+
+            if(is.character(files))
             {
-                sapply(content, function(fileName)
+                sapply(files, function(file)
                 {
-                    subcollection$add(ArvadosFile$new(fileName))
+                    childWithSameName <- self$get(file)
+                    if(!is.null(childWithSameName))
+                        stop("Destination already contains file with same name.")
+
+                    newTreeBranch <- private$tree$createBranch(file)
+                    private$tree$addBranch(private$tree$getTree(), newTreeBranch)
+
+                    private$REST$create(file, self$uuid)
+                    newTreeBranch$setCollection(self)
                 })
+
+                "Created"
             }
-            else if("ArvadosFile"   %in% class(content) ||
-                    "Subcollection" %in% class(content))
+            else
             {
-                subcollection$add(content)
+                stop(paste0("Expected character vector, got ",
+                            paste0("(", paste0(class(files), collapse = ", "), ")"),
+                            "."))
             }
         },
 
-        remove = function(content)
+        remove = function(paths)
         {
-            if(is.character(content))
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
+
+            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."))
 
-                    file$removeFromCollection()
+                    parent <- file$getParent()
+
+                    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$.__enclos_env__$private$collection) || 
-                   content$.__enclos_env__$private$collection$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)
+        move = function(content, destination)
         {
-            if(endsWith(content, "/"))
-                content <- substr(content, 0, nchar(content) - 1)
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
+
+            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)
+            elementToMove$move(destination)
         },
 
-        getFileContent = function() private$getCollectionContent(),
-
-        get = function(relativePath)
+        copy = function(content, destination)
         {
-            private$tree$getElement(relativePath)
-        }
-    ),
-
-    private = list(
-
-        http       = NULL,
-        httpParser = NULL,
-        tree       = NULL,
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
 
-        fileContent = NULL,
-
-        getCollectionContent = function()
-        {
-            collectionURL <- URLencode(paste0(self$api$getWebDavHostName(), "c=", self$uuid))
+            content <- trimFromEnd(content, "/")
 
-            headers = list("Authorization" = paste("OAuth2", self$api$getToken()))
+            elementToCopy <- self$get(content)
 
-            response <- private$http$PROPFIND(collectionURL, headers)
+            if(is.null(elementToCopy))
+                stop("Content you want to copy doesn't exist in the collection.")
 
-            parsedResponse <- private$httpParser$parseWebDAVResponse(response, collectionURL)
-            parsedResponse[-1]
+            elementToCopy$copy(destination)
         },
 
-        createFilesOnREST = function(files)
+        refresh = function()
         {
-            sapply(files, function(filePath)
+            if(!is.null(private$tree))
             {
-                private$createNewFile(filePath, NULL, "text/html")
-            })
+                private$tree$getTree()$setCollection(NULL, setRecursively = TRUE)
+                private$tree <- NULL
+            }
         },
-        
-        generateTree = function(content)
+
+        getFileListing = function()
         {
-            treeBranches <- sapply(collectionContent, function(filePath)
-            {
-                splitPath <- unlist(strsplit(filePath$name, "/", fixed = TRUE))
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
 
-                branch = private$createBranch(splitPath, filePath$fileSize)      
-            })
+            content <- private$REST$getCollectionContent(self$uuid)
+            content[order(tolower(content))]
         },
 
-        createNewFile = function(relativePath, content, contentType)
+        get = function(relativePath)
         {
-            fileURL <- paste0(self$api$getWebDavHostName(), "c=", self$uuid, "/", relativePath);
-            headers <- list(Authorization = paste("OAuth2", self$api$getToken()), 
-                            "Content-Type" = contentType)
-            body <- content
-
-            serverResponse <- private$http$PUT(fileURL, headers, body)
-
-            if(serverResponse$status_code != 201)
-                stop(paste("Server code:", serverResponse$status_code))
+            if(is.null(private$tree))
+                private$generateCollectionTreeStructure()
 
-            print(paste("File created:", relativePath))
+            private$tree$getElement(relativePath)
         },
-        
-        deleteFromREST = function(relativePath)
-        {
-            fileURL <- paste0(self$api$getWebDavHostName(), "c=", self$uuid, "/", relativePath);
-            headers <- list(Authorization = paste("OAuth2", self$api$getToken())) 
 
-            serverResponse <- private$http$DELETE(fileURL, headers)
+        getRESTService = function() private$REST,
+        setRESTService = function(newRESTService) private$REST <- newRESTService
+    ),
 
-            if(serverResponse$status_code != 204)
-                stop(paste("Server code:", serverResponse$status_code))
+    private = list(
 
-            print(paste("File deleted", relativePath))
-        },
+        REST        = NULL,
+        tree        = NULL,
+        fileContent = NULL,
 
-        moveOnRest = function(from, to)
+        generateCollectionTreeStructure = 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(is.null(self$uuid))
+                stop("Collection uuid is not defined.")
 
-            if(serverResponse$status_code < 200 || serverResponse$status_code >= 300)
-                stop(paste("Server code:", serverResponse$status_code))
+            if(is.null(private$REST))
+                stop("REST service is not defined.")
 
-            serverResponse
+            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")
+}