Skip to content
Snippets Groups Projects
Commit 25dca48d authored by Zbynek Slajchrt's avatar Zbynek Slajchrt
Browse files

Java options for GraalVM can be specified through graalvm.setup

parent 778d175b
No related branches found
No related tags found
No related merge requests found
...@@ -35,11 +35,16 @@ graalvm.status <- function() { ...@@ -35,11 +35,16 @@ graalvm.status <- function() {
#' @param port The port at which the GraalVM agent is listening #' @param port The port at which the GraalVM agent is listening
#' @param rlibs The value of the FastR R_LIBS environmental variable. The default #' @param rlibs The value of the FastR R_LIBS environmental variable. The default
#' value is calculated as paste0(graalvm.home, "/language/R/library"). #' value is calculated as paste0(graalvm.home, "/language/R/library").
#' @param javaOpts a character vector of Java options
#' @examples #' @examples
#' graalvm.setup("~/work/graalvm-0.21") #' graalvm.setup("~/work/graalvm-0.21")
#' # Running GraalVM in debug mode
#' graalvm.setup("~/work/graalvm-0.21", javaOpts = c("-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=y"))
#' @export #' @export
graalvm.setup <- function(home, host = "localhost", port = 9876, rlibs = paste0(home, "/language/R/library")) { graalvm.setup <- function(home, host = "localhost", port = 9876, rlibs = paste0(home, "/language/R/library"),
options(graalvm.home = home, graalvm.host = host, graalvm.port = port, graalvm.rlibs = rlibs) javaOpts = character(0)) {
options(graalvm.home = home, graalvm.host = host, graalvm.port = port, graalvm.rlibs = rlibs,
graalvm.javaOpts = paste(sapply(javaOpts, function(opt) { paste0("-J'", opt, "'") }), collapse = " "))
} }
commandURL <- function(cmd) { commandURL <- function(cmd) {
...@@ -70,8 +75,9 @@ graalvm.start <- function() { ...@@ -70,8 +75,9 @@ graalvm.start <- function() {
gHost <- getOption("graalvm.host"); gHost <- getOption("graalvm.host");
gPort <- getOption("graalvm.port"); gPort <- getOption("graalvm.port");
javaOpts <- getOption("graalvm.javaOpts");
nodeLaunchCmd <- paste0(libEnvVar, " ", gHome, "/bin/node ", serverScriptPath, " ", gHost, " ", gPort, " &") nodeLaunchCmd <- paste0(libEnvVar, " ", gHome, "/bin/node ", javaOpts, " ", serverScriptPath, " ", gHost, " ", gPort, " &")
system(nodeLaunchCmd, ignore.stdout = TRUE, ignore.stderr = TRUE) system(nodeLaunchCmd, ignore.stdout = TRUE, ignore.stderr = TRUE)
attempts <- 0L attempts <- 0L
......
...@@ -37,7 +37,7 @@ g.r("a1") ...@@ -37,7 +37,7 @@ g.r("a1")
g.js("a2") g.js("a2")
g.rb("$a3") g.rb("$a3")
g(a1 = FALSE) g(a1 <- FALSE)
gget(a1) gget(a1)
a1 a1
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\title{Set up the GraalVM agent} \title{Set up the GraalVM agent}
\usage{ \usage{
graalvm.setup(home, host = "localhost", port = 9876, rlibs = paste0(home, graalvm.setup(home, host = "localhost", port = 9876, rlibs = paste0(home,
"/language/R/library")) "/language/R/library"), javaOpts = character(0))
} }
\arguments{ \arguments{
\item{home}{The home folder of the GraalVM installation} \item{home}{The home folder of the GraalVM installation}
...@@ -16,10 +16,14 @@ graalvm.setup(home, host = "localhost", port = 9876, rlibs = paste0(home, ...@@ -16,10 +16,14 @@ graalvm.setup(home, host = "localhost", port = 9876, rlibs = paste0(home,
\item{rlibs}{The value of the FastR R_LIBS environmental variable. The default \item{rlibs}{The value of the FastR R_LIBS environmental variable. The default
value is calculated as paste0(graalvm.home, "/language/R/library").} value is calculated as paste0(graalvm.home, "/language/R/library").}
\item{javaOpts}{a character vector of Java options}
} }
\description{ \description{
Set up the GraalVM agent Set up the GraalVM agent
} }
\examples{ \examples{
graalvm.setup("~/work/graalvm-0.21") graalvm.setup("~/work/graalvm-0.21")
# Running GraalVM in debug mode
graalvm.setup("~/work/graalvm-0.21", javaOpts = c("-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=y"))
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment