1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
### =========================================================================
### Import/export support
### -------------------------------------------------------------------------
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Classes files and connections
###
### BiocFile is a base class for high-level file abstractions, where
### subclasses are associated with a particular file format/type. It
### wraps a low-level representation of a file, currently either a
### path/URL or connection.
#' @importFrom BiocGenerics path
#' @importFrom S4Vectors SimpleList isSingleString
#' @importFrom methods findMethods getClass getClassDef is new packageSlot show
#' @importFrom tools file_ext file_path_as_absolute file_path_sans_ext
#' @export
setClass("BiocFile", representation(resource = "character_OR_connection"),
contains = "VIRTUAL")
#' @export
setClass("BiocFileList",
prototype = prototype(elementType = "BiocFile"),
contains = "SimpleList")
#' @export
BiocFileList <- function(files) {
new("BiocFileList", listData = files)
}
###' @export
###setMethod("showAsCell", "BiocFileList", function(object) {
### showAsCell(vapply(object, path, character(1L)))
###})
#' @export
resource <- function(x) x@resource
#' @export
`resource<-` <- function(x, value) {
x@resource <- value
x
}
#' @export
setGeneric("fileFormat", function(x) NULL)
#' @export
setMethod("fileFormat", "character", function(x) fileFormat(FileForFormat(x)))
#' @export
setMethod("fileFormat", "BiocFile", function(x)
tolower(sub("File$", "", class(x))))
#' @export
setMethod("path", "BiocFile", function(object, ...) {
r <- resource(object)
if (!is.character(r))
stop("Connection resource requested as a path")
r
})
#' @export
setMethod("show", "BiocFile", function(object) {
r <- resource(object)
if (!isSingleString(r))
r <- summary(r)$description
cat(class(object), "object\nresource:", r, "\n")
})
#' @export
FileForFormat <- function(path, format = file_ext(path)) {
if (!(isSingleString(path) || is(path, "connection")))
stop("'path' must be a single string or a connection object")
if (!isSingleString(format))
stop("'format' must be a single string")
if (format == "")
stop("Cannot detect format (no extension found in file name)")
fileClassName <- paste0(format, "File")
signatureClasses <- function(fun, pos) {
matrix(unlist(findMethods(fun)@signatures), 3)[pos,]
}
fileClassNames <- unique(c(signatureClasses(export, 2),
signatureClasses(import, 1)))
fileClassNames <- fileClassNames[grepl("File$", fileClassNames)]
fileSubClassNames <- unlist(lapply(fileClassNames, function(x) {
names(getClassDef(x)@subclasses)
}), use.names = FALSE)
fileClassNames <- c(fileClassNames, fileSubClassNames)
fileClassIndex <- match(tolower(fileClassName),
tolower(fileClassNames))
if (is.na(fileClassIndex))
stop("Format '", format, "' unsupported")
fileClassName <- fileClassNames[fileClassIndex]
fileClass <- getClass(fileClassName)
pkg <- packageSlot(fileClass)
if (is.null(pkg) || identical(pkg, ".GlobalEnv"))
ns <- topenv()
else ns <- getNamespace(pkg[1])
constructorName <- fileClassName
if(!exists(constructorName, ns)) {
parentClassNames <- names(getClass(constructorName)@contains)
constructorName <- names(which(vapply(parentClassNames,
exists, logical(1), ns)))[1]
if (is.na(constructorName))
stop("No constructor found for ", fileClassName)
}
get(constructorName, ns)(path)
}
#' @export
setMethod("as.character", "BiocFile", function(x) path(x))
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Utilities
###
isURL <- function(uri) {
if (!isSingleString(uri))
return(FALSE)
windowsDriveLetter <- .Platform$OS.type == "windows" &&
grepl("^[A-Za-z]:[/\\]", uri)
grepl("^[A-Za-z]+:", uri) && !windowsDriveLetter
}
.parseURI <- function(uri) {
if (!isURL(uri)) {
parsed <- list(scheme = "", path = uri)
} else {
parsed <- list(scheme = "", path = uri)
protocols <- c("file", "http", "https", "ftp", "smtp")
if (length(protocol <- protocols[startsWith(uri, paste0(protocols, ':'))])) {
parsed$scheme <- protocol
rem <- paste0(protocol, "://")
if (protocol %in% protocols[-1]) {
domain <- strsplit(gsub("http://|https://|ftp://|smtp://|www\\.", "", uri), "/")[[c(1, 1)]]
parsed$path <- sub(paste0(rem, domain), "", uri)
}
else
parsed$path <- sub(rem, "", uri)
}
else
parsed$scheme <- "file"
#if (parsed$scheme == "file" && .Platform$OS.type == "windows")
#parsed$path <- substring(parsed$path, 2) # trim '/' from '/C:/foo/bar.txt'
}
parsed
}
resourceDescription <- function(x) {
r <- resource(x)
if (is(r, "connection"))
r <- summary(r)$description
r
}
.ConnectionManager <- setRefClass("ConnectionManager",
fields = c(connections = "list"))
manager <- function() .ConnectionManager()
connectionForResource <- function(manager, x, open = "") {
resource <- decompress(manager, x)
if (is.character(resource)) {
if (!nzchar(resource))
stop("path cannot be an empty string")
uri <- .parseURI(resource)
if (uri$scheme != "")
con <- url(resource)
else con <- file(resource)
} else con <- resource
if (!isOpen(con) && nzchar(open)) {
open(con, open)
con <- manage(manager, con)
}
con
}
connection <- function(manager, x, open = "") {
connectionForResource(manager, resource(x), open = open)
}
## Connection management (similar to memory management)
manage <- function(manager, con) {
manager$connections <- unique(c(manager$connections, list(con)))
attr(con, "manager") <- manager
con
}
managed <- function(manager, con) {
con %in% manager$connections
}
unmanage <- function(manager, con) {
manager$connections <- setdiff(manager$connections, con)
attr(con, "manager") <- NULL
con
}
release <- function(manager, con) {
if (managed(manager, con)) {
unmanage(manager, con)
close(con)
}
con
}
|