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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#' @include arrow-object.R
#' @include enums.R
#' @include buffer.R
# OutputStream ------------------------------------------------------------
Writable <- R6Class(
"Writable",
inherit = ArrowObject,
public = list(
write = function(x) io___Writable__write(self, buffer(x))
)
)
#' @title OutputStream classes
#' @description `FileOutputStream` is for writing to a file;
#' `BufferOutputStream` writes to a buffer;
#' You can create one and pass it to any of the table writers, for example.
#' @usage NULL
#' @format NULL
#' @docType class
#' @section Factory:
#'
#' The `$create()` factory methods instantiate the `OutputStream` object and
#' take the following arguments, depending on the subclass:
#'
#' - `path` For `FileOutputStream`, a character file name
#' - `initial_capacity` For `BufferOutputStream`, the size in bytes of the
#' buffer.
#'
#' @section Methods:
#'
#' - `$tell()`: return the position in the stream
#' - `$close()`: close the stream
#' - `$write(x)`: send `x` to the stream
#' - `$capacity()`: for `BufferOutputStream`
#' - `$finish()`: for `BufferOutputStream`
#' - `$GetExtentBytesWritten()`: for `MockOutputStream`, report how many bytes
#' were sent.
#'
#' @rdname OutputStream
#' @name OutputStream
OutputStream <- R6Class(
"OutputStream",
inherit = Writable,
public = list(
close = function() io___OutputStream__Close(self),
tell = function() io___OutputStream__Tell(self)
)
)
#' @usage NULL
#' @format NULL
#' @rdname OutputStream
#' @export
FileOutputStream <- R6Class("FileOutputStream", inherit = OutputStream)
FileOutputStream$create <- function(path) {
io___FileOutputStream__Open(clean_path_abs(path))
}
#' @usage NULL
#' @format NULL
#' @rdname OutputStream
#' @export
BufferOutputStream <- R6Class(
"BufferOutputStream",
inherit = OutputStream,
public = list(
capacity = function() io___BufferOutputStream__capacity(self),
finish = function() io___BufferOutputStream__Finish(self),
write = function(bytes) io___BufferOutputStream__Write(self, bytes),
tell = function() io___BufferOutputStream__Tell(self)
)
)
BufferOutputStream$create <- function(initial_capacity = 0L) {
io___BufferOutputStream__Create(initial_capacity)
}
# InputStream -------------------------------------------------------------
Readable <- R6Class(
"Readable",
inherit = ArrowObject,
public = list(
Read = function(nbytes) io___Readable__Read(self, nbytes)
)
)
#' @title InputStream classes
#' @description `RandomAccessFile` inherits from `InputStream` and is a base
#' class for: `ReadableFile` for reading from a file; `MemoryMappedFile` for
#' the same but with memory mapping; and `BufferReader` for reading from a
#' buffer. Use these with the various table readers.
#' @usage NULL
#' @format NULL
#' @docType class
#' @section Factory:
#'
#' The `$create()` factory methods instantiate the `InputStream` object and
#' take the following arguments, depending on the subclass:
#'
#' - `path` For `ReadableFile`, a character file name
#' - `x` For `BufferReader`, a [Buffer] or an object that can be
#' made into a buffer via `buffer()`.
#'
#' To instantiate a `MemoryMappedFile`, call [mmap_open()].
#'
#' @section Methods:
#'
#' - `$GetSize()`:
#' - `$supports_zero_copy()`: Logical
#' - `$seek(position)`: go to that position in the stream
#' - `$tell()`: return the position in the stream
#' - `$close()`: close the stream
#' - `$Read(nbytes)`: read data from the stream, either a specified `nbytes` or
#' all, if `nbytes` is not provided
#' - `$ReadAt(position, nbytes)`: similar to `$seek(position)$Read(nbytes)`
#' - `$Resize(size)`: for a `MemoryMappedFile` that is writeable
#'
#' @rdname InputStream
#' @name InputStream
InputStream <- R6Class(
"InputStream",
inherit = Readable,
public = list(
close = function() io___InputStream__Close(self)
)
)
#' @usage NULL
#' @format NULL
#' @rdname InputStream
#' @export
RandomAccessFile <- R6Class(
"RandomAccessFile",
inherit = InputStream,
public = list(
GetSize = function() io___RandomAccessFile__GetSize(self),
supports_zero_copy = function() io___RandomAccessFile__supports_zero_copy(self),
seek = function(position) io___RandomAccessFile__Seek(self, position),
tell = function() io___RandomAccessFile__Tell(self),
Read = function(nbytes = NULL) {
if (is.null(nbytes)) {
io___RandomAccessFile__Read0(self)
} else {
io___Readable__Read(self, nbytes)
}
},
ReadAt = function(position, nbytes = NULL) {
if (is.null(nbytes)) {
nbytes <- self$GetSize() - position
}
io___RandomAccessFile__ReadAt(self, position, nbytes)
},
ReadMetadata = function() {
as.list(io___RandomAccessFile__ReadMetadata(self))
}
)
)
#' @usage NULL
#' @format NULL
#' @rdname InputStream
#' @export
MemoryMappedFile <- R6Class(
"MemoryMappedFile",
inherit = RandomAccessFile,
public = list(
Resize = function(size) io___MemoryMappedFile__Resize(self, size)
)
)
#' @usage NULL
#' @format NULL
#' @rdname InputStream
#' @export
ReadableFile <- R6Class("ReadableFile", inherit = RandomAccessFile)
ReadableFile$create <- function(path) {
io___ReadableFile__Open(clean_path_abs(path))
}
#' @usage NULL
#' @format NULL
#' @rdname InputStream
#' @export
BufferReader <- R6Class("BufferReader", inherit = RandomAccessFile)
BufferReader$create <- function(x) {
x <- buffer(x)
io___BufferReader__initialize(x)
}
#' Create a new read/write memory mapped file of a given size
#'
#' @param path file path
#' @param size size in bytes
#'
#' @return a [arrow::io::MemoryMappedFile][MemoryMappedFile]
#'
#' @export
mmap_create <- function(path, size) {
path <- clean_path_abs(path)
io___MemoryMappedFile__Create(path, size)
}
#' Open a memory mapped file
#'
#' @param path file path
#' @param mode file mode (read/write/readwrite)
#'
#' @export
mmap_open <- function(path, mode = c("read", "write", "readwrite")) {
mode <- match(match.arg(mode), c("read", "write", "readwrite")) - 1L
path <- clean_path_abs(path)
io___MemoryMappedFile__Open(path, mode)
}
#' Handle a range of possible input sources
#' @param file A character file name, `raw` vector, or an Arrow input stream
#' @param mmap Logical: whether to memory-map the file (default `TRUE`)
#' @param random_access Logical: whether the result must be a RandomAccessFile
#' @return An `InputStream` or a subclass of one.
#' @keywords internal
#' @importFrom utils download.file
make_readable_file <- function(file, mmap = TRUE, random_access = TRUE) {
if (inherits(file, "SubTreeFileSystem")) {
filesystem <- file$base_fs
# SubTreeFileSystem adds a slash to base_path, but filesystems will reject
# file names with trailing slashes, so we need to remove it here.
path <- sub("/$", "", file$base_path)
file <- filesystem$OpenInputFile(path)
} else if (is.string(file)) {
# if this is a HTTP URL, we need a local copy to pass to FileSystem$from_uri
if (random_access && is_http_url(file)) {
tf <- tempfile()
download.file(file, tf, quiet = TRUE, mode = "wb")
file <- tf
on.exit(unlink(tf))
}
if (is_http_url(file)) {
file <- MakeRConnectionInputStream(url(file, open = "rb"))
} else if (is_url(file)) {
fs_and_path <- FileSystem$from_uri(file)
file <- fs_and_path$fs$OpenInputFile(fs_and_path$path)
} else if (isTRUE(mmap)) {
file <- mmap_open(file)
} else {
file <- ReadableFile$create(file)
}
} else if (inherits(file, c("raw", "Buffer"))) {
file <- BufferReader$create(file)
} else if (inherits(file, "connection")) {
if (!isOpen(file)) {
open(file, "rb")
}
# Try to create a RandomAccessFile first because some readers need this
# (e.g., feather, parquet) but fall back on an InputStream for the readers
# that don't (e.g., IPC, CSV)
file <- tryCatch(
MakeRConnectionRandomAccessFile(file),
error = function(e) MakeRConnectionInputStream(file)
)
}
assert_is(file, "InputStream")
file
}
make_output_stream <- function(x) {
if (inherits(x, "connection")) {
if (!isOpen(x)) {
open(x, "wb")
}
return(MakeRConnectionOutputStream(x))
}
if (inherits(x, "SubTreeFileSystem")) {
filesystem <- x$base_fs
# SubTreeFileSystem adds a slash to base_path, but filesystems will reject
# file names with trailing slashes, so we need to remove it here.
path <- sub("/$", "", x$base_path)
filesystem$OpenOutputStream(path)
} else if (is_url(x)) {
fs_and_path <- FileSystem$from_uri(x)
fs_and_path$fs$OpenOutputStream(fs_and_path$path)
} else {
assert_that(is.string(x))
FileOutputStream$create(x)
}
}
detect_compression <- function(path) {
if (inherits(path, "SubTreeFileSystem")) {
path <- path$base_path
}
if (!is.string(path)) {
return("uncompressed")
}
# Remove any trailing slashes, which SubTreeFileSystem may add
path <- sub("/$", "", path)
switch(
tools::file_ext(path),
bz2 = "bz2",
gz = "gzip",
lz4 = "lz4_frame",
zst = "zstd",
snappy = "snappy",
"uncompressed"
)
}
|