R/read_log.R

Defines functions read_log

Documented in read_log

#' Read common/combined log file into a tibble
#'
#' This is a fairly standard format for log files - it uses both quotes
#' and square brackets for quoting, and there may be literal quotes embedded
#' in a quoted string. The dash, "-", is used for missing values.
#'
#' @inheritParams read_delim
#' @export
#' @examples
#' read_log(readr_example("example.log"))
read_log <- function(file, col_names = FALSE, col_types = NULL,
                     trim_ws = TRUE,
                     skip = 0, n_max = Inf,
                     show_col_types = should_show_types(),
                     progress = show_progress()) {
  tokenizer <- tokenizer_log(trim_ws = trim_ws)
  read_delimited(file, tokenizer,
    col_names = col_names, col_types = col_types,
    skip = skip, n_max = n_max, progress = progress,
    show_col_types = show_col_types
  )
}
hadley/readr documentation built on Feb. 3, 2024, 9:45 a.m.