Description Usage Arguments Author(s) References See Also Examples
Convenience function to initialize the option container that is then stored
as an R option according to the name/ID provided by id
.
1 2 3 4 |
id |
Signature argument.
Object containing suitable information to control the distinct creation
process.
In the simplest case, this corresponds
to the name/ID of a package/package project. But it can also be an
instance of a class for which methods for
|
sub_id |
|
check |
|
hidden |
|
overwrite |
|
... |
Further arguments to be passed to subsequent functions/methods. |
Janko Thyson janko.thyson@gmail.com
http://github.com/Rappster/optionr
initializeOptionContainer-char-method,
ensureOptionContainer,
getOptionContainer
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 | ## Not run:
##------------------------------------------------------------------------------
## Default ID //
##------------------------------------------------------------------------------
## Make sure initial options are `NULL` //
options("optionr" = NULL)
id_hidden <- paste0(".", devtools::as.package(".")$package)
initializeOptionContainer()
opts <- getOption(id_hidden)
opts$options
opts$.meta
opts$.registry
## Clean up //
options(id_hidden = NULL)
##------------------------------------------------------------------------------
## Explicit ID //
##------------------------------------------------------------------------------
id <- "test"
id_hidden <- paste0(".", id)
options(id = NULL)
initializeOptionContainer(id)
opts <- getOption(id_hidden)
opts$options
opts$.meta
opts$.registry
## Clean up //
options(id_hidden = NULL)
##------------------------------------------------------------------------------
## Sub ID //
##------------------------------------------------------------------------------
id <- "test"
id_hidden <- paste0(".", id)
sub_id <- "a"
options(id = NULL)
initializeOptionContainer(id = id, sub_id = sub_id)
opts <- getOption(id_hidden)
"a" %in% ls(opts)
opts[[sub_id]]$options
opts[[sub_id]]$.meta
opts[[sub_id]]$.registry
## Clean up //
options(id_hidden = NULL)
##------------------------------------------------------------------------------
## Partial
##------------------------------------------------------------------------------
id <- "test"
id_hidden <- paste0(".", id)
options(id_hidden = NULL)
initializeOptionContainer(id, components = "options")
opts <- getOption(id_hidden)
opts$options
opts$.meta
## --> not created
opts$.registry
## --> not created
initializeOptionContainer(id, components = c("options", ".meta"),
overwrite = TRUE)
opts <- getOption(id_hidden)
opts$options
opts$.meta
opts$.registry
## --> not created
## Condition handling //
initializeOptionContainer(id, components = c("nonexisting", "options"),
overwrite = TRUE)
opts <- getOption(id_hidden)
ls(opts, all.names = TRUE)
## Clean up //
options(id_hidden = NULL)
##------------------------------------------------------------------------------
## As interface //
##------------------------------------------------------------------------------
## Example of how custom classes can be used for creating custom methods //
id <- structure(list(id = "test"), class = "OptionContext.Test")
id
id_hidden <- paste0(".", id$id)
options(id_hidden = NULL)
initializeOptionContainer(id)
## --> calls `initializeProjectOptions()`, `initializeMeta()` and `initializeRegistry()`
## and for each of which methods for signature ID can be defined
getOption(id_hidden)$options
getOption(id_hidden)$.meta
getOption(id_hidden)$.registry
options(id_hidden = NULL)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.