-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathGroup.R
More file actions
470 lines (440 loc) · 16.2 KB
/
Group.R
File metadata and controls
470 lines (440 loc) · 16.2 KB
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
# MIT License
#
# Copyright (c) 2022-2025 TileDB Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#' An S4 class for a TileDB Group object
#'
#' @slot ptr An external pointer to the underlying implementation
#' @exportClass tiledb_group
setClass("tiledb_group",
slots = list(ptr = "externalptr")
)
.tiledb28 <- function() tiledb_version(TRUE) >= "2.8.0"
#' Creates a 'tiledb_group' object
#'
#' @param uri Character variable with the URI of the new group object
#' @param type Character variable with the query type value: one of
#' \dQuote{READ} or \dQuote{WRITE}
#' @param ctx (optional) A TileDB Context object; if not supplied the default
#' context object is retrieved
#' @param cfg (optional) A TileDB Config object
#' @return A TileDB Group object
#' @export
tiledb_group <- function(
uri,
type = c("READ", "WRITE"),
ctx = tiledb_get_context(),
cfg = NULL
) {
stopifnot(
"The 'ctx' argument must be a Context object" = is(ctx, "tiledb_ctx"),
"The 'uri' argument must be character" = is.character(uri),
"This function needs TileDB 2.8.*" = .tiledb28(),
"The 'config argument must be a Config object" =
is.null(cfg) || is(cfg, "tiledb_config")
)
type <- match.arg(type)
if (is.null(cfg)) {
ptr <- libtiledb_group(ctx@ptr, uri, type)
} else {
ptr <- libtiledb_group_with_config(ctx@ptr, uri, type, cfg@ptr)
}
group <- new("tiledb_group", ptr = ptr)
invisible(group)
}
##' Open a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param type A character value that must be either \sQuote{READ},
##' \sQuote{WRITE} or \sQuote{MODIFY_EXCLUSIVE}
##' @return The TileDB Group object but opened for reading or writing
##' @export
tiledb_group_open <- function(
grp,
type = c("READ", "WRITE", "MODIFY_EXCLUSIVE")
) {
type <- match.arg(type)
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28(),
"Using 'MODIFY_EXCLUSIVE' needs TileDB 2.12.* or later" =
type != "MODIFY_EXCLUSIVE" || tiledb_version(TRUE) >= "2.12.0"
)
grp@ptr <- libtiledb_group_open(grp@ptr, type)
grp
}
##' Set a TileDB Config for a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param cfg A TileDB Config object
##' @return The TileDB Group object with added Config
##' @export
tiledb_group_set_config <- function(grp, cfg) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'cfg' argument must be a tiledb_config object" = is(cfg, "tiledb_config"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
grp@ptr <- libtiledb_group_set_config(grp@ptr, cfg@ptr)
grp
}
##' Get a TileDB Config from a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return The TileDB Config object of the TileDB Group object
##' @export
tiledb_group_get_config <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
ptr <- libtiledb_group_get_config(grp@ptr)
cfg <- new("tiledb_config", ptr = ptr)
cfg
}
##' Close a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return The TileDB Group object but closed for reading or writing
##' @export
tiledb_group_close <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
grp@ptr <- libtiledb_group_close(grp@ptr)
grp
}
#' Create a TileDB Group at the given path
#'
#' @param uri Character variable with the URI of the new group
#' @param ctx (optional) A TileDB Ctx object; if not supplied the default
#' context object is retrieved
#' @return The uri path, invisibly
#' @examples
#' \dontshow{
#' ctx <- tiledb_ctx(limitTileDBCores())
#' }
#' \dontrun{
#' pth <- tempdir()
#' tiledb_group_create(pth)
#' tiledb_object_type(pth)
#' }
#' @export
tiledb_group_create <- function(uri, ctx = tiledb_get_context()) {
stopifnot(
"The 'ctx' argument must be a Context object" = is(ctx, "tiledb_ctx"),
"The 'uri' argument must be character" = is.character(uri),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_create(ctx@ptr, uri)
invisible(uri)
}
##' Test if TileDB Group is open
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return A boolean indicating whether the TileDB Group object is open
##' @export
tiledb_group_is_open <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_is_open(grp@ptr)
}
##' Return a TileDB Group URI
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return A character value with the URI
##' @export
tiledb_group_uri <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_uri(grp@ptr)
}
##' Return a TileDB Group query type
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return A character value with the query type i.e. one of
##' \dQuote{READ} or \dQuote{WRITE}.
##' @export
tiledb_group_query_type <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_query_type(grp@ptr)
}
##' Write Metadata to a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param key A character value with they index under which the
##' data will be written
##' @param val An R object (numeric, int, or char vector) that will be stored
##' @return On success boolean \sQuote{TRUE} is returned
##' @export
tiledb_group_put_metadata <- function(grp, key, val) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'key' argument must be character" = is.character(key),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_put_metadata(grp@ptr, key, val)
}
##' Deletes Metadata from a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param key A character value with they index under which the
##' data will be written
##' @return The TileDB Group object, invisibly
##' @export
tiledb_group_delete_metadata <- function(grp, key) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'key' argument must be character" = is.character(key),
"This function needs TileDB 2.8.*" = .tiledb28()
)
grp@ptr <- libtiledb_group_delete_metadata(grp@ptr, key)
invisible(grp)
}
##' Accesses Metadata from a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param key A character value with the key of the metadata
##' object to be retrieved
##' @return The requested object, or NULL is not found
##' @export
tiledb_group_get_metadata <- function(grp, key) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'key' argument must be character" = is.character(key),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_get_metadata(grp@ptr, key)
}
##' Checks for Metadata in a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param key A character value with they index under which the
##' data will be written
##' @return A logical value indicating if the given key exists in the
##' metadata of the given group
##' @export
tiledb_group_has_metadata <- function(grp, key) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'key' argument must be character" = is.character(key),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_has_metadata(grp@ptr, key)
}
##' Returns Number of Metadata Objects a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return A numeric value with the number of metadata objects
##' @export
tiledb_group_metadata_num <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_metadata_num(grp@ptr)
}
##' Accesses Metadata by Index from a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param idx A numeric value with the index of the metadata object to be retrieved
##' @return The requested object, or NULL is not found
##' @export
tiledb_group_get_metadata_from_index <- function(grp, idx) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'idx' argument must be numeric" = is.numeric(idx),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_get_metadata_from_index(grp@ptr, idx)
}
##' Return all Metadata from a TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return A named List with all Metadata objects index
##' @export
tiledb_group_get_all_metadata <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
n <- tiledb_group_metadata_num(grp)
res <- vector(mode = "list", length = n)
for (i in seq_len(n)) {
obj <- tiledb_group_get_metadata_from_index(grp, i - 1)
res[[i]] <- obj
names(res)[i] <- attr(obj, "key")
}
res
}
##' Add Member to TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param uri A character value with a new URI
##' @param relative A logical value indicating whether URI is
##' relative to the group
##' @param name An optional character providing a name for the
##' object, defaults to \code{NULL}
##' @return The TileDB Group object, invisibly
##' @export
tiledb_group_add_member <- function(grp, uri, relative, name = NULL) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'uri' argument must be character" = is.character(uri),
"The 'relative' argument must be logical" = is.logical(relative),
"The 'name' argument must be NULL or character" = is.null(name) || is.character(name),
"This function needs TileDB 2.8.*" = .tiledb28()
)
grp@ptr <- libtiledb_group_add_member(grp@ptr, uri, relative, name)
invisible(grp)
}
##' Remove Member from TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param uri A character value with a the URI of the member to
##' be removed, or (if added with a name) the name of the member
##' @return The TileDB Group object, invisibly
##' @export
tiledb_group_remove_member <- function(grp, uri) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'uri' argument must be character" = is.character(uri),
"This function needs TileDB 2.8.*" = .tiledb28()
)
grp@ptr <- libtiledb_group_remove_member(grp@ptr, uri)
invisible(grp)
}
##' Get Member Count from TileDB Group
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @return The Count of Members in the TileDB Group object
##' @export
tiledb_group_member_count <- function(grp) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_member_count(grp@ptr)
}
##' Get a Member (Description) by Index from TileDB Group
##'
##' This function returns a three-element character vector with the member
##' object translated to character, uri, and optional name.
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param idx A numeric value with the index of the metadata
##' object to be retrieved
##' @return A character vector with three elements: the member
##' type, its uri, and name (or \code{""} if the member is unnamed).
##' @export
tiledb_group_member <- function(grp, idx) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'idx' argument must be numeric" = is.numeric(idx),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_member(grp@ptr, idx)
}
##' Dump the TileDB Group to String
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param recursive A logical value indicating whether a recursive
##' dump is desired, defaults to \sQuote{FALSE}. Note that recursive listings
##' on remote object may be an expensive or slow operation.
##' @return A character string
##' @export
tiledb_group_member_dump <- function(grp, recursive = FALSE) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"This function needs TileDB 2.8.*" = .tiledb28()
)
libtiledb_group_dump(grp@ptr, recursive)
}
##' Test if a Named Group is Using a Relative URI
##'
##' @param grp A TileDB Group object as for example returned by
##' \code{tiledb_group()}
##' @param name A character value with a group name
##' @return A boolean indicating whether the group uses a relative URI or not
##' @export
tiledb_group_is_relative <- function(grp, name) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'name' argument must be a character variable" = inherits(name, "character"),
"This function needs TileDB 2.12.*" = tiledb_version(TRUE) >= "2.12.0"
)
libtiledb_group_is_relative(grp@ptr, name)
}
#' Display the TileDB Group object to STDOUT
#'
#' @param object `tiledb_group` object
#' @export
setMethod("show", signature(object = "tiledb_group"), function(object) {
cat(libtiledb_group_dump(object@ptr, FALSE))
})
#' Deletes all written data from a 'tiledb_group' object
#'
#' The group must be opened in \sQuote{MODIFY_EXCLUSIVE} mode, otherwise
#' the function will error out.
#'
#' @param grp A TileDB Group object as for example returned by
#' \code{tiledb_group()}
#' @param uri Character variable with the URI of the group item to be deleted
#' @param recursive A logical value indicating whether all data inside the
#' group is to be deleted
#' @return Nothing is returned, the function is invoked for the side-effect of
#' group data removal.
#' @export
tiledb_group_delete <- function(grp, uri, recursive = FALSE) {
stopifnot(
"The 'grp' argument must be a tiledb_group object" = is(grp, "tiledb_group"),
"The 'uri' argument must be a character variable" = inherits(uri, "character"),
"The 'recursive' argument be logical" = is(recursive, "logical"),
"This function needs TileDB 2.14.*" = tiledb_version(TRUE) >= "2.14.0"
)
libtiledb_group_delete(grp@ptr, uri, isTRUE(recursive))
}