Nothing
.check.jags.home <- function(jags.home, major)
{
## Check that folder jags.home actually exists and contains the DLL
## in the appropriate sub-folder.
## Registry entries created by the JAGS instsaller may be invalid
## if the user removes JAGS by manually deleting files rather than
## using the uninstaller. So this function is used to check that
## the installation still exists.
if (is.null(jags.home)) return(FALSE)
if (!is.vector(jags.home, mode="character") || length(jags.home) != 1) {
return(FALSE)
}
if (!file_test("-d", jags.home)) return(FALSE)
bindir <- file.path(jags.home, .Platform$r_arch, "bin")
jags.dll <- file.path(bindir, paste("libjags-", major,
.Platform$dynlib.ext, sep=""))
return(file.exists(jags.dll))
}
.findJAGS <- function(hive, major)
{
## Returns the registry key corresponding to the latest release of
## JAGS-major.x.y, or NULL if no release is found
## JAGS installer records JAGS install directory in 32-bit
## registry. This will switch to 64-bit registry after we drop
## 32-bit support. So check both (Fix for problem in rjags_4-11).
regkey <- try(readRegistry("SOFTWARE\\JAGS", hive = hive, maxdepth = 2,
view="64-bit"), silent = TRUE)
if (inherits(regkey, "try-error")) {
regkey <- try(readRegistry("SOFTWARE\\JAGS", hive = hive, maxdepth = 2,
view="32-bit"), silent = TRUE)
}
if (inherits(regkey, "try-error")) {
return(NULL)
}
keynames <- names(regkey)
keynames <- keynames[grep(paste0("^JAGS-", major, "\\."), keynames)]
if (length(keynames) == 0) {
return(NULL)
}
else {
keynames <- rev(keynames) #Search in reverse order of release number
regkey <- regkey[keynames]
for (i in seq(along=keynames)) {
if(.check.jags.home(regkey[[i]][["InstallDir"]], major)) {
return(regkey[i])
}
}
return(NULL)
}
}
.noJAGS <- function(major)
{
paste("Failed to locate any version of JAGS version ", major, "\n\n",
"The rjags package is just an interface to the JAGS library\n",
"Make sure you have installed JAGS-", major,
".x.y.exe (for any x >=0, y>=0) from\n",
"http://www.sourceforge.net/projects/mcmc-jags/files\n", sep="")
}
.onLoad <- function(lib, pkg)
{
### First task is to get installation directory of JAGS
## Major version of JAGS library should match major version
## of the rjags package
jags.major <- packageVersion(pkg, lib)$major
## Try environment variable first
jags.home <- Sys.getenv("JAGS_HOME")
if (nchar(jags.home) > 0) {
if (!.check.jags.home(jags.home, jags.major)) {
stop("The environment variable JAGS_HOME is set to\n", jags.home,
"\nbut no JAGS installation can be found there\n")
}
}
else {
## Search the registry. We need to look for both machine-wide and
## user-specific installations
key1 <- .findJAGS("HLM", jags.major)
key2 <- .findJAGS("HCU", jags.major)
if (is.null(key1)) {
if (is.null(key2)) {
stop(.noJAGS(jags.major))
}
else {
latest <- key2
}
}
else if (is.null(key2) || names(key2) < names(key1)) {
latest <- key1
}
else {
latest <- key2
}
jags.home <- latest[[1]][["InstallDir"]]
}
### Add the JAGS bin to the windows PATH, if not already present
path <- Sys.getenv("PATH")
split.path <- strsplit(path, .Platform$path.sep)$PATH
bindir <- file.path(jags.home, .Platform$r_arch, "bin")
if (!any(split.path == bindir)) {
path <- paste(bindir, path, sep=.Platform$path.sep)
if (!Sys.setenv("PATH"=path)) {
stop("Failed to add the rjags bin directory to the PATH:\n",
bindir)
}
}
### Load the rjags dll
library.dynam("rjags", pkg, lib)
### Set the module directory, if the option jags.moddir is not already set
if (is.null(getOption("jags.moddir"))) {
options("jags.moddir" = file.path(jags.home, .Platform$r_arch,
"modules"))
}
### Check that the module directory actually exists
moddir <- getOption("jags.moddir")
if (!file.exists(moddir)) {
stop(moddir, " not found\n\n",
"rjags is looking for the JAGS modules in\n", moddir,
"\nbut this folder does not exist\n")
}
load.module("basemod", quiet=TRUE)
load.module("bugs", quiet=TRUE)
### Set progress bar type
if (is.null(getOption("jags.pb"))) {
options("jags.pb"="text")
}
}
.onAttach <- function(lib, pkg)
{
packageStartupMessage("Linked to JAGS ",
.Call("get_version", PACKAGE="rjags"))
packageStartupMessage("Loaded modules: ",
paste(list.modules(), collapse=","))
}
.onUnload <- function(libpath)
{
library.dynam.unload("rjags", libpath)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.