@@ -122,17 +122,10 @@ renv_paths_root_default <- function() {
122
122
! is.na(Sys.getenv(" TESTTHAT" , unset = NA ))
123
123
124
124
if (checking )
125
- return (renv_paths_root_default_impl ())
125
+ return (renv_paths_root_default_tempdir ())
126
126
127
- root <- switch (
128
- Sys.info()[[" sysname" ]],
129
- Darwin = Sys.getenv(" XDG_DATA_HOME" , " ~/Library/Application Support" ),
130
- Windows = Sys.getenv(" LOCALAPPDATA" , Sys.getenv(" APPDATA" )),
131
- Sys.getenv(" XDG_DATA_HOME" , " ~/.local/share" )
132
- )
133
-
134
- root <- renv_path_normalize(root , winslash = " /" , mustWork = FALSE )
135
- path <- file.path(root , " renv" )
127
+ # resolve path to cache
128
+ path <- renv_paths_root_default_impl()
136
129
137
130
# check for user consent
138
131
consenting <- identical(getOption(" renv.consenting" ), TRUE )
@@ -165,19 +158,70 @@ renv_paths_root_default <- function() {
165
158
)
166
159
}
167
160
168
- renv_paths_root_default_impl ()
161
+ renv_paths_root_default_tempdir ()
169
162
170
163
}
171
164
172
165
renv_paths_root_default_impl <- function () {
166
+
167
+ # support renv projects created with the old root location
168
+ oldroot <- switch (
169
+ Sys.info()[[" sysname" ]],
170
+ Darwin = Sys.getenv(" XDG_DATA_HOME" , " ~/Library/Application Support" ),
171
+ Windows = Sys.getenv(" LOCALAPPDATA" , Sys.getenv(" APPDATA" )),
172
+ Sys.getenv(" XDG_DATA_HOME" , " ~/.local/share" )
173
+ )
174
+
175
+ # if we've already initialized renv with the old location, use it
176
+ oldpath <- file.path(oldroot , " renv" )
177
+ if (file.exists(oldpath ))
178
+ return (oldpath )
179
+
180
+ # try using tools to get the user directory
181
+ tools <- asNamespace(" tools" )
182
+ path <- catch(tools $ R_user_dir(" renv" , which = " cache" ))
183
+ if (! inherits(path , " error" ))
184
+ return (path )
185
+
186
+ # try using our own backfill for older versions of R
187
+ renv_paths_root_default_impl_fallback()
188
+
189
+ }
190
+
191
+ renv_paths_root_default_impl_fallback <- function () {
192
+
193
+ # check for R_USER_CACHE_DIR + XDG_CACHE_HOME overrides
194
+ envvars <- c(" R_USER_CACHE_DIR" , " XDG_CACHE_HOME" )
195
+ for (envvar in envvars ) {
196
+ root <- Sys.getenv(envvar , unset = NA )
197
+ if (! is.na(root )) {
198
+ path <- file.path(root , " R/renv" )
199
+ return (path )
200
+ }
201
+ }
202
+
203
+ # use platform-specific default fallbacks
204
+ if (renv_platform_windows())
205
+ file.path(Sys.getenv(" LOCALAPPDATA" ), " R/cache/R/renv" )
206
+ else if (renv_platform_macos())
207
+ " ~/Library/Caches/org.R-project.R/R/renv"
208
+ else
209
+ " ~/.cache/R/renv"
210
+
211
+ }
212
+
213
+ renv_paths_root_default_tempdir <- function () {
173
214
temp <- file.path(tempdir(), " renv" )
174
215
ensure_directory(temp )
175
216
return (temp )
176
217
}
177
-
178
218
# nocov end
179
219
180
220
renv_paths_init <- function () {
221
+ renv_paths_init_envvars()
222
+ }
223
+
224
+ renv_paths_init_envvars <- function () {
181
225
182
226
envvars <- Sys.getenv()
183
227
@@ -205,7 +249,20 @@ renv_paths_init <- function() {
205
249
# ' Windows \tab `%LOCALAPPDATA%/renv` \cr
206
250
# ' }
207
251
# '
208
- # ' If desired, this path can be adjusted by setting the `RENV_PATHS_ROOT`
252
+ # ' For new installations of `renv` using R (>= 4.0.0), `renv` will use
253
+ # ' [tools::R_user_dir()] to resolve the root directory. If an `renv` root
254
+ # ' directory has already been created in one of the old locations, that will
255
+ # ' still be used. This change was made to comply with the CRAN policy
256
+ # ' requirements of \R packages. By default, these paths resolve as:
257
+ # '
258
+ # ' \tabular{ll}{
259
+ # ' **Platform** \tab **Location** \cr
260
+ # ' Linux \tab `~/.cache/R/renv` \cr
261
+ # ' macOS \tab `~/Library/Caches/org.R-project.R/R/renv` \cr
262
+ # ' Windows \tab `%LOCALAPPDATA%/R/cache/R/renv` \cr
263
+ # ' }
264
+ # '
265
+ # ' If desired, this path can be customized by setting the `RENV_PATHS_ROOT`
209
266
# ' environment variable. This can be useful if you'd like, for example, multiple
210
267
# ' users to be able to share a single global cache.
211
268
# '
0 commit comments