-
Notifications
You must be signed in to change notification settings - Fork 81
/
reprex_render.R
257 lines (235 loc) · 7.71 KB
/
reprex_render.R
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
#' Render a document in a new R session
#'
#' @description
#' This is a wrapper around [rmarkdown::render()] that enforces the "reprex"
#' mentality. Here's a simplified version of what happens:
#' ```
#' callr::r(
#' function(input) {
#' rmarkdown::render(input, envir = globalenv(), encoding = "UTF-8")
#' },
#' args = list(input = input),
#' spinner = is_interactive(),
#' stdout = std_file, stderr = std_file
#' )
#' ```
#' Key features to note
#' * [rmarkdown::render()] is executed in a new R session, by using
#' [callr::r()]. The goal is to eliminate the leakage of objects, attached
#' packages, and other aspects of session state from the current session into
#' the rendering session. Also, the system and user-level `.Rprofile`s are
#' ignored.
#' * Code is evaluated in the `globalenv()` of this new R session, which means
#' that method dispatch works the way most people expect it to.
#' * The input file is assumed to be UTF-8, which is a knitr requirement as of
#' v1.24.
#' * If the YAML frontmatter includes `std_err_out: TRUE`, standard output and
#' error of the rendering R session are captured in `std_file`, which is
#' then injected into the rendered result.
#'
#' `reprex_render()` is designed to work with the [reprex_document()] output
#' format, typically through a call to [reprex()]. `reprex_render()` may work
#' with other R Markdown output formats, but it is not well-tested.
#'
#' @param input The input file to be rendered. This can be a `.R` script or a
#' `.Rmd` R Markdown document.
#' @inheritParams reprex
#' @param encoding The encoding of the input file. Note that the only acceptable
#' value is "UTF-8", which is required by knitr as of v1.24. This is exposed
#' as an argument purely for technical convenience, relating to the "Knit"
#' button in the RStudio IDE.
#'
#' @return The output of [rmarkdown::render()] is passed through, i.e. the path
#' of the output file.
#' @export
#'
#' @examples
#' \dontrun{
#' reprex_render("input.Rmd")
#' }
reprex_render <- function(input,
html_preview = NULL,
encoding = "UTF-8") {
if (!identical(encoding, "UTF-8")) {
stop("`reprex_render()` requires an input file with UTF-8 encoding")
}
reprex_render_impl(
input,
new_session = TRUE,
html_preview = html_preview
)
}
prex_render <- function(input,
html_preview = TRUE) {
reprex_render_impl(
input,
new_session = FALSE,
html_preview = html_preview
)
}
reprex_render_impl <- function(input,
new_session = TRUE,
html_preview = NULL) {
yaml_opts <- reprex_document_options(input)
venue <- yaml_opts[["venue"]] %||% "gh"
html_preview <-
(html_preview %||% yaml_opts[["html_preview"]] %||% is_interactive()) &&
is_interactive()
stopifnot(is_toggle(html_preview))
std_out_err <- new_session && (yaml_opts[["std_out_err"]] %||% FALSE)
std_file <- std_out_err_path(input, std_out_err)
opts <- list(
keep.source = TRUE,
rlang_trace_top_env = globalenv(),
`rlang:::force_unhandled_error` = TRUE,
rlang_backtrace_on_error = "full",
crayon.enabled = FALSE
)
if (new_session) {
md_file <- callr::r(
function(input, opts) {
options(opts)
rmarkdown::render(
input,
quiet = TRUE, envir = globalenv(), encoding = "UTF-8"
)
},
args = list(input = input, opts = opts),
spinner = is_interactive(),
stdout = std_file,
stderr = std_file
)
if (!is.null(std_file)) {
inject_file(md_file, std_file)
}
} else {
withr::with_options(
opts,
md_file <- rmarkdown::render(
input,
quiet = TRUE, envir = globalenv(), encoding = "UTF-8",
knit_root_dir = getwd()
)
)
}
reprex_file <- md_file
if (venue %in% c("r", "rtf")) {
reprex_file <- pp_md_to_r(input, comment = yaml_opts[["comment"]] %||% "#>")
}
if (venue == "rtf") {
reprex_file <- pp_highlight(input)
}
if (venue == "html") {
reprex_file <- pp_html_render(input)
}
# TODO: figure out how to get the "Knit" button to display a preview :(
if (html_preview) {
preview_file <- preview(md_file)
invisible(structure(preview_file, reprex_file = reprex_file))
} else {
invisible(structure(reprex_file, reprex_file = reprex_file))
}
}
preview <- function(input) {
# TODO: if it's already html, don't render again?
# we specify output_dir in order to make sure the preview html:
# 1. lives in session temp dir (necessary in order to display within RStudio)
# 2. is not co-located with input because, for .html, the file rendered for
# preview can overwrite the input file, which is the actual reprex file
preview_file <- rmarkdown::render(
input,
output_dir = file_temp("reprex-preview"),
clean = FALSE, quiet = TRUE, encoding = "UTF-8",
output_options = if (pandoc2.0()) list(pandoc_args = "--quiet")
)
viewer <- getOption("viewer") %||% utils::browseURL
viewer(preview_file)
invisible(preview_file)
}
reprex_document_options <- function(input) {
yaml_input <- input
if (tolower(path_ext(input)) == "r") {
yaml_input <- knitr::spin(input, knit = FALSE)
on.exit(file_delete(yaml_input), add = TRUE)
}
yaml <- rmarkdown::yaml_front_matter(yaml_input)
tryCatch(
yaml[["output"]][["reprex::reprex_document"]],
error = function(e) list()
)
}
std_out_err_path <- function(input, std_out_err) {
if (is.null(std_out_err) || !isTRUE(std_out_err)) {
NULL
} else {
std_file(input)
}
}
inject_file <- function(path, inject_path) {
regex <- glue::glue("(`)(.*)({inject_path})(`)")
lines <- read_lines(path)
inject_locus <- grep(regex, lines)
# a user should never see this, but it can happen during development
if (length(inject_locus) > 1) {
message("multiple placeholders for std_out_err! taking the last")
inject_locus <- inject_locus[length(inject_locus)]
}
if (length(inject_locus)) {
inject_lines <- read_lines(inject_path)
if (length(inject_lines) == 0) {
inject_lines <- "-- nothing to show --"
}
inject_lines <- c("``` sh", inject_lines, "```")
regex <- glue::glue("(.*){regex}(.*)")
lines <- c(
lines[seq_len(inject_locus - 1)],
sub(regex, "\\1", lines[inject_locus]),
inject_lines,
sub(regex, "\\6", lines[inject_locus]),
lines[-seq_len(inject_locus)]
)
write_lines(lines, path)
}
path
}
# used when venue is "r" or "rtf"
pp_md_to_r <- function(input, comment = "#>") {
rout_file <- r_file_rendered(input)
output_lines <- read_lines(md_file(input))
output_lines <- convert_md_to_r(output_lines, comment = comment)
write_lines(output_lines, rout_file)
rout_file
}
# used when venue is "rtf"
pp_highlight <- function(input) {
rtf_file <- rtf_file(input)
reprex_highlight(r_file_rendered(input), rtf_file)
rtf_file
}
# used when venue is "html"
pp_html_render <- function(input) {
output_file <- rmarkdown::render(
md_file(input),
output_format = rmarkdown::html_fragment(
self_contained = FALSE,
pandoc_args = if (pandoc2.0()) "--quiet"
),
clean = FALSE,
quiet = TRUE,
encoding = "UTF-8"
)
output_file <- file_move(output_file, html_file(output_file))
# the html_fragment() output is a bit too minimal
# I add an encoding specification
# I think this is positive-to-neutral for the reprex output and, if I don't,
# viewing the fragment in the browser results in mojibake
output_lines <- read_lines(output_file)
output_lines <- c(
"<head>",
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">",
"</head>",
output_lines
)
write_lines(output_lines, output_file)
output_file
}