1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
### reflection functions - convenience function relying on the low-level
### functions .jcall/.jnew and friends
### reflection tools (inofficial so far, because it returns strings
### instead of the reflection objects - it's useful for quick checks,
### though)
.jmethods <- function(o, name=NULL, as.obj=FALSE) {
cl <- if (is(o, "jobjRef")) .jcall(o, "Ljava/lang/Class;", "getClass") else if (is(o, "jclassName")) o@jobj else .jfindClass(as.character(o))
ms<-.jcall(cl,"[Ljava/lang/reflect/Method;","getMethods")
if (isTRUE(as.obj)) return(ms)
ss<-unlist(lapply(ms,function(x) .jcall(x,"S","toString")))
if (!is.null(name))
grep(paste("\\.",name,"\\(",sep=''),ss,value=TRUE)
else
ss
}
.jconstructors <- function(o, as.obj=FALSE) {
cl <- if (is(o, "jobjRef")) .jcall(o, "Ljava/lang/Class;", "getClass") else if (is(o, "jclassName")) o@jobj else .jfindClass(as.character(o))
cs<-.jcall(cl,"[Ljava/lang/reflect/Constructor;","getConstructors")
if (isTRUE(as.obj)) return(cs)
unlist(lapply(cs,function(x) .jcall(x,"S","toString")))
}
### this list maps R class names to Java class names for which the constructor does the necessary conversion (for use in .jrcall)
.class.to.jclass <- c(character= "java/lang/String",
jbyte = "java/lang/Byte",
integer = "java/lang/Integer",
numeric = "java/lang/Double",
logical = "java/lang/Boolean",
jlong = "java/lang/Long",
jchar = "java/lang/Character",
jshort = "java/lang/Short",
jfloat = "java/lang/Float")
### Java classes that have a corresponding primitive type and thus a corresponding TYPE field to use with scalars
.primitive.classes = c("java/lang/Byte", "java/lang/Integer", "java/lang/Double", "java/lang/Boolean",
"java/lang/Long", "java/lang/Character", "java/lang/Short", "java/lang/Float")
### creates a valid java object
### if a is already a java object reference, all is good
### otherwise some primitive conversion occurs
# this is used for internal purposes only, in particular
# it does not dispatch arrays to jrectRef
._java_valid_object <- function(a) {
if (is(a, "jobjRef")) a
else if (is.null(a)) .jnull() else {
cm <- match(class(a)[1], names(.class.to.jclass))
if (!any(is.na(cm))) {
if (length(a) == 1) {
y <- .jnew(.class.to.jclass[cm], a)
if (.class.to.jclass[cm] %in% .primitive.classes) attr(y, "primitive") <- TRUE
y
} else .jarray(a, dispatch = FALSE)
} else {
stop("Sorry, parameter type `", cm ,"' is ambiguous or not supported.")
}
}
}
### creates a list of valid java parameters, used in both .J and .jrcall
._java_valid_objects_list <- function( ... )
lapply(list(...), ._java_valid_object )
### returns a list of Class objects
### this is used in both .J and .jrcall
._isPrimitiveReference <- function(x)
isTRUE(attr(x, "primitive"))
._java_class <- function( x ){
if (is.jnull(x)) { if (is(x,"jobjRef")) .jfindClass(x@jclass) else .jclassObject } else {
if (._isPrimitiveReference(x)) .jfield(x, "Ljava/lang/Class;", "TYPE") else .jcall(x, "Ljava/lang/Class;", "getClass")
}
}
._java_class_list <- function( objects_list )
lapply(objects_list, ._java_class )
### reflected call - this high-level call uses reflection to call a method
### it is much less efficient than .jcall but doesn't require return type
### specification or exact matching of parameter types
.jrcall <- function(o, method, ..., simplify=TRUE) {
if (!is.character(method) | length(method) != 1)
stop("Invalid method name - must be exactly one character string.")
if (inherits(o, "jobjRef") || inherits(o, "jarrayRef"))
cl <- .jcall(o, "Ljava/lang/Class;", "getClass")
else
cl <- .jfindClass(o)
if (is.null(cl))
stop("Cannot find class of the object.")
# p is a list of parameters that are formed solely by valid Java objects
p <- ._java_valid_objects_list(...)
# list of classes
pc <- ._java_class_list( p )
# invoke the method directly from the RJavaTools class
# ( this throws the actual exception instead of an InvocationTargetException )
j_p <- .jarray(p, "java/lang/Object" , dispatch = FALSE )
j_pc <- .jarray(pc, "java/lang/Class" , dispatch = FALSE )
r <- .jcall( "RJavaTools", "Ljava/lang/Object;", "invokeMethod",
cl, .jcast(if(inherits(o,"jobjRef") || inherits(o, "jarrayRef")) o else cl, "java/lang/Object"),
.jnew( "java/lang/String", method),
j_p, j_pc, use.true.class = TRUE, evalString = simplify, evalArray = FALSE )
# null is returned when the return type of the method is void
# TODO[romain]: not sure how to distinguish when the result is null but the
# return type is not null
if( is.jnull( r ) || is.null(r) ){
return( invisible( NULL ) )
}
# simplify if needed and return the object
if( is(r, "jarrayRef" ) && simplify ){
._jarray_simplify( r )
} else if (simplify){
.jsimplify(r)
} else {
r
}
}
### reflected construction of java objects
### This uses reflection to call a suitable constructor based
### on the classes of the ... it does not require exact match between
### the objects and the constructor parameters
### This is to .jnew what .jrcall is to .jcall
.J <- function(class, ...) {
# allow non-JNI specifiation
class <- gsub("\\.","/",class)
# p is a list of parameters that are formed solely by valid Java objects
p <- ._java_valid_objects_list(...)
# list of classes
pc <- ._java_class_list( p )
# use RJavaTools to find create the object
o <- .jcall("RJavaTools", "Ljava/lang/Object;",
"newInstance", .jfindClass(class),
.jarray(p,"java/lang/Object", dispatch = FALSE ),
.jarray(pc,"java/lang/Class", dispatch = FALSE ),
evalString = FALSE, evalArray = FALSE, use.true.class = TRUE )
o
}
### simplify non-scalar reference to a scalar object if possible
.jsimplify <- function(o) {
if (!inherits(o, "jobjRef") && !inherits(o, "jarrayRef"))
return(o)
cn <- .jclass(o, true=TRUE)
if (cn == "java.lang.Boolean") .jcall(o, "Z", "booleanValue") else
if (cn == "java.lang.Integer" || cn == "java.lang.Short" || cn == "java.lang.Character" || cn == "java.lang.Byte") .jcall(o, "I", "intValue") else
if (cn == "java.lang.Number" || cn == "java.lang.Double" || cn == "java.lang.Long" || cn == "java.lang.Float") .jcall(o, "D", "doubleValue") else
if (cn == "java.lang.String") .jstrVal(.jcast(o, "java/lang/String")) else
o
}
#! ### get the value of a field (static class fields are not supported yet)
#! .jrfield <- function(o, name, simplify=TRUE, true.class=TRUE) {
#! if (!inherits(o, "jobjRef") && !inherits(o, "jarrayRef") && !is.character(o))
#! stop("Object must be a Java reference or class name.")
#! if (is.character(o)) {
#! cl <- .jfindClass(o)
#! .jcheck(silent=TRUE)
#! if (is.null(cl))
#! stop("class not found")
#! o <- .jnull()
#! } else {
#! cl <- .jcall(o, "Ljava/lang/Class;", "getClass")
#! o <- .jcast(o, "java/lang/Object")
#! }
#! f <- .jcall(cl, "Ljava/lang/reflect/Field;", "getField", name)
#! r <- .jcall(f,"Ljava/lang/Object;","get",o)
#! if (simplify) r <- .jsimplify(r)
#! if (true.class && (inherits(r, "jobjRef") || inherits(r, "jarrayRef"))) {
#! cl <- .jcall(r, "Ljava/lang/Class;", "getClass")
#! cn <- .jcall(cl, "Ljava/lang/String;", "getName")
#! if (substr(cn,1,1) != '[')
#! r@jclass <- gsub("\\.","/",cn)
#! }
#! r
#! }
### list the fields of a class or object
.jfields <- function(o, name=NULL, as.obj=FALSE) {
cl <- if (is(o, "jobjRef")) .jcall(o, "Ljava/lang/Class;", "getClass") else if (is(o, "jclassName")) o@jobj else .jfindClass(as.character(o))
f <- .jcall(cl, "[Ljava/lang/reflect/Field;", "getFields")
if (isTRUE(as.obj)) return(f)
fl <- unlist(lapply(f, function(x) .jcall(x, "S", "toString")))
if (!is.null(name)) grep(paste("\\.",name,"$",sep=''), fl) else fl
}
._must_be_character_of_length_one <- function(name){
if( !is.character(name) || length(name) != 1L ){
stop( "'name' must be a character vector of length one" )
}
}
### checks if the java object x has a field called name
hasField <- function( x, name ){
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "hasField", .jcast( x, "java/lang/Object" ), name)
}
hasJavaMethod <- function( x, name ){
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "hasMethod", .jcast( x, "java/lang/Object" ), name)
}
hasClass <- function( x, name){
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "hasClass", .jcast( x, "java/lang/Object" ), name)
}
### the following ones are needed for the static version of $
classHasField <- function(x, name, static=FALSE) {
if (is(x, "jclassName")) x <- x@jobj else if (!is(x, "jobjRef")) x <- .jfindClass(as.character(x))
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "classHasField", x, name, static)
}
classHasMethod <- function(x, name, static=FALSE) {
if (is(x, "jclassName")) x <- x@jobj else if (!is(x, "jobjRef")) x <- .jfindClass(as.character(x))
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "classHasMethod", x, name, static)
}
classHasClass <- function(x, name, static=FALSE) {
if (is(x, "jclassName")) x <- x@jobj else if (!is(x, "jobjRef")) x <- .jfindClass(as.character(x))
._must_be_character_of_length_one(name)
.jcall("RJavaTools", "Z", "classHasClass", x, name, static)
}
### syntactic sugar to allow object$field and object$methods(...)
### first attempts to find a field of that name and then a method
._jobjRef_dollar <- function(x, name) {
if (hasField(x, name) ){
.jfield(x, , name)
} else if( hasJavaMethod( x, name ) ) {
function(...) .jrcall(x, name, ...)
} else if( hasClass(x, name) ) {
cl <- .jcall( x, "Ljava/lang/Class;", "getClass" )
inner.cl <- .jcall( "RJavaTools", "Ljava/lang/Class;", "getClass", cl, name, FALSE )
new("jclassName", name=.jcall(inner.cl, "S", "getName"), jobj=inner.cl)
} else if( is.character(name) && length(name) == 1L && name == "length" && isJavaArray(x) ){
length( x )
} else {
stop( sprintf( "no field, method or inner class called '%s' ", name ) )
}
}
setMethod("$", c(x="jobjRef"), ._jobjRef_dollar )
### support for object$field<-...
._jobjRef_dollargets <- function(x, name, value) {
if( hasField( x, name ) ){
.jfield(x, name) <- value
}
x
}
setMethod("$<-", c(x="jobjRef"), ._jobjRef_dollargets )
# get a class name for an object
.jclass <- function(o, true=TRUE) {
if (true) .jcall(.jcall(o, "Ljava/lang/Class;", "getClass"), "S", "getName")
else if( inherits( o, "jarrayRef" ) ) o@jsig else o@jclass
}
|