# File src/library/base/baseloader.R # Part of the R package, http://www.R-project.org # # Copyright (C) 1995-2013 The R Core Team # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # A copy of the GNU General Public License is available at # http://www.r-project.org/Licenses/ ## this should be kept in step with code in R/lazyload.R .Internal(eval(quote({ ..lazyLoad <- function(filebase, envir = parent.frame()) { ## ## bootstrapping definitions so we can load base ## glue <- function (..., sep = " ", collapse = NULL) .Internal(paste(list(...), sep, collapse)) readRDS <- function (file) { halt <- function (message) .Internal(stop(TRUE, message)) gzfile <- function (description, open) .Internal(gzfile(description, open, "", 6)) close <- function (con) .Internal(close(con, "rw")) if (! is.character(file)) halt("bad file name") con <- gzfile(file, "rb") on.exit(close(con)) .Internal(unserializeFromConn(con, baseenv())) } `parent.env<-` <- function (env, value) .Internal(`parent.env<-`(env, value)) existsInFrame <- function (x, env) .Internal(exists(x, env, "any", FALSE)) getFromFrame <- function (x, env) .Internal(get(x, env, "any", FALSE)) set <- function (x, value, env) .Internal(assign(x, value, env, FALSE)) environment <- function () .Internal(environment(NULL)) mkenv <- function() .Internal(new.env(TRUE, baseenv(), 29L)) ## ## main body ## mapfile <- glue(filebase, "rdx", sep = ".") datafile <- glue(filebase, "rdb", sep = ".") env <- mkenv() map <- readRDS(mapfile) vars <- names(map$variables) rvars <- names(map$references) compressed <- map$compressed for (i in seq_along(rvars)) set(rvars[i], map$references[[i]], env) envenv <- mkenv() envhook <- function(n) { if (existsInFrame(n, envenv)) getFromFrame(n, envenv) else { e <- mkenv() set(n, e, envenv) # MUST do this immediately key <- getFromFrame(n, env) data <- lazyLoadDBfetch(key, datafile, compressed, envhook) if (is.null(data$enclos)) parent.env(e) <- emptyenv() else parent.env(e) <- data$enclos vars <- names(data$bindings) for (i in seq_along(vars)) set(vars[i], data$bindings[[i]], e) if (! is.null(data$attributes)) attributes(e) <- data$attributes ## there are no S4 objects in base if (! is.null(data$locked) && data$locked) .Internal(lockEnvironment(e, FALSE)) e } } expr <- quote(lazyLoadDBfetch(key, datafile, compressed, envhook)) this <- environment() .Internal(makeLazy(vars, map$variables, expr, this, envir)) ## reduce memory use map <- NULL vars <- NULL rvars <- NULL mapfile <- NULL readRDS <- NULL } existsInBase <- function (x) .Internal(exists(x, .BaseNamespaceEnv, "any", TRUE)) glue <- function (..., sep = " ", collapse = NULL) .Internal(paste(list(...), sep, collapse)) basedb <- glue(.Internal(R.home()), "library", "base", "R", "base", sep= .Platform$file.sep) ..lazyLoad(basedb, baseenv()) }), .Internal(new.env(FALSE, baseenv(), 29L)), baseenv())) ## keep in sync with R/zzz.R as.numeric <- as.double is.name <- is.symbol ## populate C/Fortran symbols local({ routines <- getDLLRegisteredRoutines("base") for (i in c("dchdc", # chol, deprecated "dqrcf", "dqrdc2", "dqrqty", "dqrqy", "dqrrsd", "dqrxb", # qr "dtrco")) # .kappa_tri assign(paste0(".F_", i), routines[[3]][[i]], envir = .BaseNamespaceEnv) for(i in 1:2) lapply(routines[[i]], function(sym) assign(paste0(".C_", sym$name), sym, envir = .BaseNamespaceEnv)) })