R/table_save.R

Defines functions table_save

Documented in table_save

#' @title Save a known location table
#' @description Save a tibble of known locations to the preferred directory. If
#' \code{outputType} is a vector, the known locations table will be saved to the 
#' preferred directory in multiple formats.
#' 
#' @param locationTbl Tibble of known locations.
#' @param collectionName Character identifier for this table.
#' @param backup Logical specifying whether to save a backup version of any
#' existing tables sharing \code{collectionName}.
#' @param outputType Vecctor of output formats. (Currently only "rda" or "csv" are supported.)
#' @return File path of saved file.
#' @examples
#' library(MazamaLocationUtils)
#' 
#' # Set the directory for saving location tables
#' setLocationDataDir(tempdir())
#' 
#' # Load an example table and check the dimensions
#' locationTbl <- get(data("wa_monitors_500"))
#' dim(locationTbl)
#' 
#' # Save it as "table_save_example"
#' table_save(locationTbl, "table_save_example")
#' 
#' # Add a column and save again 
#' locationTbl %>% 
#'   table_addColumn("my_column") %>% 
#'   table_save("table_save_example")
#'   
#' # Check the locationDataDir
#' list.files(getLocationDataDir(), pattern = "table_save_example")
#' 
#' @details Backup files are saved with "YYYY-mm-ddTHH:MM:SS"
#' @rdname table_save
#' @export 
#' @importFrom MazamaCoreUtils stopIfNull
#' @importFrom lubridate now
table_save <- function(
    locationTbl = NULL,
    collectionName = NULL,
    backup = TRUE,
    outputType = "rda"
) {
  
  # ----- Validate parameters --------------------------------------------------
  
  MazamaLocationUtils::validateLocationTbl(locationTbl, locationOnly = FALSE)
  MazamaCoreUtils::stopIfNull(collectionName)
  
  for ( type in outputType ) {
    if ( !type %in% c("rda", "csv") ) 
      stop("outputType '%s' is not supported.", type)
  }
  
  dataDir <- getLocationDataDir()
  
  # ----- Save data ------------------------------------------------------------
  
  for ( type in outputType ) {
    
    result <- try({
      
      fileName <- paste0(collectionName, ".", type)
      filePath <- file.path(dataDir, fileName)
      
      # Save backups
      if ( backup && file.exists(filePath) ) {
        backupName <- paste0(
          collectionName, ".",
          strftime(lubridate::now(), "%Y-%m-%dT%H:%M:%S"),
          ".rda"
        )
        backupPath <- file.path(dataDir, backupName)
        file.rename(filePath, backupPath)
      }
      
      if ( type == "rda" ) {
        # Assign a name and save
        assign(collectionName, locationTbl)
        save(list = c(collectionName), file = filePath)
      }
      
      if ( type == "csv" ) {
        readr::write_csv(locationTbl, file = filePath)
      }
      
    }, silent = TRUE)
    
    if ( "try-error" %in% class(result) ) {
      warning(sprintf("Could not write %s", filePath))
    }
    
  } # END of type loop
  
  
  # ----- Return ---------------------------------------------------------------
  
  return(invisible(filePath))
  
}
MazamaScience/MazamaLocationUtils documentation built on Jan. 26, 2024, 3:16 p.m.