R/rmRegistryValue.r

#' @title
#' Remove Registry Value (generic)
#'
#' @description 
#' Removes registry value from the respective environment containing registry
#' information (see \code{\link[optionr]{initializeOptionContainer}}).
#' 
#' @template path-like-ids
#'     
#' @param id \strong{Signature argument}.
#'    Object containing path-like name/ID information.
#' @param where \strong{Signature argument}.
#'    Object containing information about the location of the option container
#'    that is to be used. Typically, this either corresponds to the name/ID
#'    of a package/package project or an instance of a custom class for which
#'    suitable methods in the context of managing options are defined 
#'    (see other methods of this package that have signature arguments 
#'    \code{id} or \code{where}).  
#' @param sub_id \code{\link{character}}.
#'    Optional ID for a sub layer. Useful for a hub-like option container 
#'    structure.
#' @param strict \code{\link{logical}}.
#'     Controls what happens when \code{id} points to a non-existing registry object:
#'    \itemize{
#'       \item{0: }{ignore and return \code{FALSE} to signal that the 
#' 				assignment process was not successful or \code{fail_value} depending
#' 				on the value of \code{return_status}} 
#' 			\item{1: }{ignore and with warning and return \code{FALSE}}
#' 			\item{2: }{ignore and with error}
#'   	}
#' @template threedots
#' @example inst/examples/rmRegistryValue.r
#' @seealso \code{
#'   	\link[optionr]{rmRegistryValue-char-char-method},
#'     \link[optionr]{setRegistryValue},
#'     \link[optionr]{getRegistryValue},
#'     \link[optionr]{existsRegistryValue}
#' }
#' @template author
#' @template references
#' @import devtools
#' @export 
setGeneric(
  name = "rmRegistryValue",
  signature = c(
    "id",
    "where"
  ),
  def = function(
    id,
    where = tryCatch(devtools::as.package(".")$package, error = function(cond) {
      stop("Invalid default value for `where`")
    }),
    sub_id = character(),
    strict = c(0, 1, 2), 
    ...
  ) {
    standardGeneric("rmRegistryValue")       
  }
)

#' @title
#' Remove Registry Value (char-miss)
#'
#' @description 
#' See generic: \code{\link[optionr]{rmRegistryValue}}
#'      
#' @inheritParams rmRegistryValue
#' @param id \code{\link{character}}.
#' @param where \code{\link{missing}}.
#' @return See method 
#'    \code{\link[optionr]{rmRegistryValue-char-char-method}}
#' @example inst/examples/rmRegistryValue.r
#' @seealso \code{
#'    \link[optionr]{rmRegistryValue}
#' }
#' @template author
#' @template references
#' @aliases rmRegistryValue-char-miss-method
#' @export
setMethod(
  f = "rmRegistryValue", 
  signature = signature(
    id = "character",
    where = "missing"
  ), 
  definition = function(
    id,
    where,
    sub_id,
    strict,
    ...
  ) {
 
  rmRegistryValue(
    id = id,
    where = where,
    sub_id = sub_id,
    strict = strict,
    ...
  )    
    
  }
)

#' @title
#' Remove Registry Value (char-any)
#'
#' @description 
#' See generic: \code{\link[optionr]{rmRegistryValue}}
#'      
#' @inheritParams rmRegistryValue
#' @param id \code{\link{character}}.
#' @param where \code{\link{ANY}}.
#' @return See method 
#'    \code{\link[optionr]{rmRegistryValue-char-any-method}}
#' @example inst/examples/rmRegistryValue.r
#' @seealso \code{
#'    \link[optionr]{rmRegistryValue}
#' }
#' @template author
#' @template references
#' @aliases rmRegistryValue-char-any-method
#' @import conditionr
#' @export
setMethod(
  f = "rmRegistryValue", 
  signature = signature(
    id = "character",
    where = "ANY"
  ), 
  definition = function(
    id,
    where,
    strict,
    ...
  ) {
 
  if (is.null(where$id)) {
    conditionr::signalCondition(
      condition = "Invalid",
      msg = c(
        Reason = "cannot determine value of `where`"
      ),
      ns = "optionr",
      type = "error"
    )
  }        
    
  rmRegistryValue(
    id = id,
    where = where$id,
    strict = strict,
    ...
  )    
    
  }
)

#' @title
#' Remove Registry Value (char-env)
#'
#' @description 
#' See generic: \code{\link[optionr]{rmRegistryValue}}
#'      
#' @inheritParams rmRegistryValue
#' @param id \code{\link{character}}.
#' @param where \code{\link{environment}}.
#' @return See method 
#'    \code{\link[optionr]{rmRegistryValue-char-char-method}}
#' @example inst/examples/rmRegistryValue.r
#' @seealso \code{
#'    \link[optionr]{rmRegistryValue}
#' }
#' @template author
#' @template references
#' @aliases rmRegistryValue-char-env-method
#' @import conditionr
#' @export
setMethod(
  f = "rmRegistryValue", 
  signature = signature(
    id = "character",
    where = "environment"
  ), 
  definition = function(
    id,
    where,
    sub_id,
    strict,
    ...
  ) {
 
  sub_id <- as.character(sub_id)    
  rmAnywhereOption(
    id = if (!length(sub_id)) {
      file.path(".registry", id)
    } else {
      file.path(sub_id, ".registry", id)
    },
    where = where,
    strict = strict,
    ...
  )    
    
  }
)

#' @title
#' Remove Registry Value (char-char)
#'
#' @description 
#' See generic: \code{\link[optionr]{rmRegistryValue}}
#'   	 
#' @inheritParams rmRegistryValue
#' @param id \code{\link{character}}.
#' @param where \code{\link{character}}.
#' @return \code{\link{ANY}}. Component value or for invalid argument input 
#' 		and non-existing component the value of \code{default} unless 
#' 		\code{strict == 1} in which case a warning is issued or
#' 		\code{strict == 2} in which case an error is thrown.
#' @example inst/examples/rmRegistryValue.r
#' @seealso \code{
#'    \link[optionr]{rmRegistryValue}
#' }
#' @template author
#' @template references
#' @aliases rmRegistryValue-char-miss-method
#' @export
setMethod(
  f = "rmRegistryValue", 
  signature = signature(
    id = "character",
    where = "character"
  ), 
  definition = function(
    id,
    where,
    strict,
    ...
  ) {

  sub_id <- as.character(sub_id)    
  rmAnywhereOption(
    id = if (!length(sub_id)) {
      file.path(".registry", id)
    } else {
      file.path(sub_id, ".registry", id)
    },
    where = where,
    strict = strict,
    ...
  ) 
    
  }
)
rappster/optionr documentation built on May 26, 2019, 11:23 p.m.