Skip to content
Snippets Groups Projects
Commit 826c40a7 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

added .jaddClasPath, .jpackage and J functions to rjava package

parent c5233106
No related branches found
No related tags found
No related merge requests found
# Generated by roxygen2: do not edit by hand # Generated by roxygen2: do not edit by hand
export(.jaddClassPath)
export(.jarray) export(.jarray)
export(.jbyte) export(.jbyte)
export(.jcall) export(.jcall)
...@@ -12,5 +13,7 @@ export(.jinit) ...@@ -12,5 +13,7 @@ export(.jinit)
export(.jlong) export(.jlong)
export(.jnew) export(.jnew)
export(.jnull) export(.jnull)
export(.jpackage)
export(.jshort) export(.jshort)
export(.jsimplify) export(.jsimplify)
export(J)
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
simplify = FALSE, use.true.class = FALSE) simplify = FALSE, use.true.class = FALSE)
{ {
if(is.character(obj)) { if(is.character(obj)) {
obj <- gsub("/", ".", as.character(obj))
co <- .fastr.java.class(obj) co <- .fastr.java.class(obj)
r <- co[method](...) r <- co[method](...)
} else { } else {
...@@ -91,6 +92,18 @@ ...@@ -91,6 +92,18 @@
invisible(x) invisible(x)
} }
#' @export
J <- function (class, method, ...)
{
class <- gsub("/", ".", as.character(class))
javaClass <- .fastr.java.class(class)
if (nargs() == 1L && missing(method)) {
javaClass
} else {
.jcall(javaClass, ,method, ...)
}
}
# #
# noop stubs # noop stubs
# #
...@@ -117,3 +130,31 @@ ...@@ -117,3 +130,31 @@
{ {
# do nothing # do nothing
} }
#' @export
.jpackage <- function (name, jars='*', morePaths='', nativeLibrary=FALSE, lib.loc=NULL)
{
javalibs <- system.file("java", package = name, lib.loc = lib.loc)
if(javalibs == "") {
javalibs = paste0("library/", name, "/java")
}
cat(paste0("********************************************************\n",
"*** WARNING!!!\n",
"*** .jpackage is not yet implemented.\n",
"*** Please ensure that all java libraries from:\n",
"*** ", javalibs, "\n",
"*** are on FastR classpath\n",
"********************************************************\n"))
}
#' @export
.jaddClassPath <- function (path)
{
cat(paste0("********************************************************\n",
"*** WARNING!!!\n",
"*** .jaddClasPath is not yet implemented.\n",
"*** Please ensure that \n",
"*** ", path, "\n",
"*** is on FastR classpath\n",
"********************************************************\n"))
}
\ No newline at end of file
# prerequisites:
# - 'testthat' package has to be installed: install.packages("testthat")
# - FastR`s rJava package has to be installed: bin/r CMD INSTALL com.oracle.truffle.r.pkgs/rjava
# - mxbuild/dists/fastr-unit-tests.jar has to be on FastR classpath
library(testthat)
library(rJava)
testName <- "test J function"
test_that(testName, {
cat(paste0(testName, "\n"))
tc <- J("com.oracle.truffle.r.test.library.fastr.TestJavaInterop$TestClass")
expect_equal(2147483647L, tc$fieldStaticInteger)
tc <- J("com/oracle/truffle/r/test/library/fastr/TestJavaInterop$TestClass")
expect_equal(2147483647L, tc$fieldStaticInteger)
expect_equal(2147483647L, J("com.oracle.truffle.r.test.library.fastr.TestJavaInterop$TestClass", "methodStaticInteger"))
expect_equal(2147483647L, J("com/oracle/truffle/r/test/library/fastr/TestJavaInterop$TestClass", "methodStaticInteger"))
})
...@@ -445,24 +445,24 @@ public class TestJavaInterop extends TestBase { ...@@ -445,24 +445,24 @@ public class TestJavaInterop extends TestBase {
public static class TestClass { public static class TestClass {
public static boolean fieldStaticBoolean; public static boolean fieldStaticBoolean = true;
public static byte fieldStaticByte; public static byte fieldStaticByte = Byte.MAX_VALUE;
public static char fieldStaticChar; public static char fieldStaticChar = 'a';
public static short fieldStaticShort; public static short fieldStaticShort = Short.MAX_VALUE;
public static int fieldStaticInteger; public static int fieldStaticInteger = Integer.MAX_VALUE;
public static long fieldStaticLong; public static long fieldStaticLong = Long.MAX_VALUE;
public static double fieldStaticDouble; public static double fieldStaticDouble = Double.MAX_VALUE;
public static float fieldStaticFloat; public static float fieldStaticFloat = Float.MAX_VALUE;
public static Boolean fieldStaticBooleanObject; public static Boolean fieldStaticBooleanObject = fieldStaticBoolean;
public static Byte fieldStaticByteObject; public static Byte fieldStaticByteObject = fieldStaticByte;
public static Character fieldStaticCharObject; public static Character fieldStaticCharObject = fieldStaticChar;
public static Short fieldStaticShortObject; public static Short fieldStaticShortObject = fieldStaticShort;
public static Integer fieldStaticIntegerObject; public static Integer fieldStaticIntegerObject = fieldStaticInteger;
public static Long fieldStaticLongObject; public static Long fieldStaticLongObject = fieldStaticLong;
public static Double fieldStaticDoubleObject; public static Double fieldStaticDoubleObject = fieldStaticDouble;
public static Float fieldStaticFloatObject; public static Float fieldStaticFloatObject = fieldStaticFloat;
public static String fieldStaticStringObject; public static String fieldStaticStringObject = "a string";
public boolean fieldBoolean; public boolean fieldBoolean;
public byte fieldByte; public byte fieldByte;
......
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