Nothing
## Function to check whether mono (unix only) and APSIM-X are installed
.onAttach <- function(libname, pkgname){
find.mono <- NULL
find.apsim <- NULL
## For unix
if(.Platform$OS.type == "unix"){
## Check for mono
mono <- suppressWarnings(system("which mono", intern = TRUE, ignore.stderr = TRUE))
if(length(mono) == 0){
find.mono <- "Mono framework not found (only needed for pre-Sept 2021 versions of APSIM Next Gen) \n"
## In Ubuntu mono seems to be in /usr/bin/mono
## In Mac mono seems to be installed in:
## "/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono"
## In both of them the command 'mono' seems to work
}
## Check for dotnet
## This is not necessary any more
# dotnet <- system("which dotnet", intern = TRUE)
# if(length(dotnet) == 0){
# find.dotnet <- "dotnet core framework not found (needed Sept 2021 -or later- versions of APSIM Next Gen) \n"
# ## In Ubuntu mono seems to be in /usr/bin/mono
# ## In Mac mono seems to be installed in:
# ## "/usr/local/bin/dotnet"
# ## In both of them the command 'mono' seems to work
# }
## This is for solaris or any other flavor of unix
laf <- character(0)
## List of application files in Darwin (Mac)
if(grepl("Darwin", Sys.info()[["sysname"]])){
laf <- list.files("/Applications/")
}
## Linux (Debian)
if(grepl("Linux", Sys.info()[["sysname"]])){
laf <- list.files("/usr/local/lib")
}
}else{
if(grepl("Windows", Sys.info()[["sysname"]])){
laf <- list.files("C:/PROGRA~1")
laf2 <- list.files("C:/PROGRA~2")
}
}
## Check whether APSIM-X is detected
if(!grepl("Windows", Sys.info()[["sysname"]])){
find.apsimx <- laf[grepl("APSIM", laf, ignore.case = TRUE)]
}else{
## This is the location for APSIM-X
find.apsimx <- laf[grepl("APSIM", laf, ignore.case = TRUE)]
## This is the location for APSIM "Classic"
find.apsim <- laf2[grepl("APSIM", laf2, ignore.case = TRUE)]
}
if(length(find.apsimx) > 0 || length(find.apsim) > 0){
fax <- paste0("Found APSIM or APSIM-X")
## Won't print ApsimX at the moment but might change it in the future
## packageStartupMessage(fax)
}else{
apsim.not.found <- "APSIM(X) not found.
If APSIM(X) is installed in an alternative location,
set paths manually using 'apsimx_options' or 'apsim_options'.
You can still try as the package will look into the registry (under Windows)"
## if(length(find.mono) == 0) apsim.not.found <- c(find.mono, apsim.not.found)
packageStartupMessage(apsim.not.found)
}
}
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.