ffi/java: fix support of Boolean types in JNI signature format
[nit.git] / src / common_ffi / java.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013-2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # FFI support for the Java language
18 #
19 # TODO support callbacks to super and casts
20 module java
21
22 import extern_classes
23 import c
24 import c_compiler_options
25
26 redef class FFILanguageAssignationPhase
27 var java_language: FFILanguage = new JavaLanguage(self)
28 end
29
30 class JavaLanguage
31 super FFILanguage
32
33 redef fun identify_language(n) do return n.is_java
34
35 redef fun compile_module_block(block, ccu, nmodule)
36 do
37 nmodule.ensure_java_files
38 var java_file = nmodule.java_file
39 assert java_file != null
40
41 java_file.header.add(block.code)
42 end
43
44 redef fun compile_extern_method(block, m, ccu, nmodule)
45 do
46 ffi_ccu = ccu
47 nmodule.ensure_java_files
48 var java_file = nmodule.java_file
49 assert java_file != null
50
51 var mmodule = nmodule.mmodule.as(not null)
52 var mclass_type = m.parent.as(AClassdef).mclass.mclass_type
53 var mmethodef = m.mpropdef
54 var mproperty = m.mpropdef.mproperty
55
56 # C function calling the Java method through JNI
57 var fc = new ExternCFunction(m, mmodule)
58
59 fc.exprs.add """
60 jclass java_class;
61 jmethodID java_meth_id;
62
63 // retrieve the current JVM
64 Sys sys = {{{mmodule.name}}}___Pointer_sys(NULL);
65 JNIEnv *nit_ffi_jni_env = {{{mmodule.name}}}___Sys_jni_env(sys);
66
67 // retrieve the implementation Java class
68 java_class = {{{mmodule.name}}}___Sys_load_jclass(sys, "{{{mmodule.impl_java_class_name}}}");
69 if (java_class == NULL) {
70 fprintf(stderr, "Nit FFI with Java error: failed to load class.\\n");
71 (*nit_ffi_jni_env)->ExceptionDescribe(nit_ffi_jni_env);
72 exit(1);
73 }
74
75 // register callbacks (only once per Nit module)
76 if (!nit_ffi_with_java_registered_natives) nit_ffi_with_java_register_natives(nit_ffi_jni_env, java_class);
77 """
78
79 # Retrieve the Java implementation function id
80 var java_fun_name = mproperty.build_cname(mclass_type, mmodule, "___java_impl", long_signature)
81 var jni_format = mproperty.build_jni_format(mclass_type, mmodule)
82 fc.exprs.add """
83 // retreive the implementation static function
84 java_meth_id = (*nit_ffi_jni_env)->GetStaticMethodID(nit_ffi_jni_env, java_class, "{{{java_fun_name}}}", "{{{jni_format}}}");
85 if (java_meth_id == NULL) {
86 fprintf(stderr, "Nit FFI with Java error: Java implementation not found.\\n");
87 (*nit_ffi_jni_env)->ExceptionDescribe(nit_ffi_jni_env);
88 exit(1);
89 }
90 """
91
92 # Call the C Java implementation method from C
93 var signature = mmethodef.msignature
94 assert signature != null
95
96 var jni_signature_alt
97 var return_type
98 var c_return_type
99 var params = new Array[String]
100 params.add "nit_ffi_jni_env"
101 params.add "java_class"
102 params.add "java_meth_id"
103
104 if mproperty.is_init then
105 jni_signature_alt = mclass_type.jni_signature_alt
106 return_type = mclass_type
107 c_return_type = mclass_type.cname
108 else
109 params.add "recv"
110 if signature.return_mtype != null then
111 var ret_mtype = signature.return_mtype
112 ret_mtype = ret_mtype.resolve_for(mclass_type, mclass_type, mmodule, true)
113 return_type = signature.return_mtype
114 c_return_type = mclass_type.cname
115 jni_signature_alt = return_type.jni_signature_alt
116 else
117 jni_signature_alt = "Void"
118 return_type = null
119 c_return_type = null
120 end
121 end
122
123 for p in signature.mparameters do params.add(p.name)
124
125 var cname = "(*nit_ffi_jni_env)->CallStatic{jni_signature_alt}Method"
126 var ccall
127 if return_type != null then
128 ccall = "{return_type.jni_type} jni_res = {cname}({params.join(", ")});"
129 else ccall = "{cname}({params.join(", ")});"
130
131 fc.exprs.add """
132 // execute implementation code
133 {{{ccall}}}
134 if ((*nit_ffi_jni_env)->ExceptionCheck(nit_ffi_jni_env)) {
135 fprintf(stderr, "Nit FFI with Java error: Exception after call.\\n");
136 (*nit_ffi_jni_env)->ExceptionDescribe(nit_ffi_jni_env);
137 exit(1);
138 }
139
140 (*nit_ffi_jni_env)->DeleteLocalRef(nit_ffi_jni_env, java_class);
141 """
142
143 if return_type != null then
144 fc.exprs.add "\treturn {to_java_call_context.cast_from(return_type, "jni_res")};"
145 end
146
147 ccu.add_exported_function( fc )
148
149 # Java implementation function in Java
150 var java_csig = mproperty.build_csignature(mclass_type, mmodule, "___java_impl", long_signature, java_call_context)
151 nmodule.java_file.class_content.add """
152 public static {{{java_csig}}} {
153 // from Nit FII at: {{{block.location}}}
154 {{{block.code}}}
155 }
156 """
157 end
158
159 redef fun compile_extern_class(block, m, ccu, nmodule) do end
160
161 redef fun get_ftype(block, m) do return new ForeignJavaType(block.code)
162
163 redef fun compile_to_files(nmodule, compdir)
164 do
165 # Make sure we have a .java file
166 nmodule.ensure_java_files
167
168 # Needed compiler and linker options
169 nmodule.insert_compiler_options
170
171 # Enable linking C callbacks to java native methods
172 nmodule.ensure_linking_callback_methods(ffi_ccu, nmodule.ffi_callbacks[self])
173
174 # Java implementation code
175 var java_file = nmodule.java_file
176 assert java_file != null
177 var extern_java_file = java_file.write_to_files(compdir)
178 nmodule.ffi_files.add(extern_java_file)
179 end
180
181 var ffi_ccu: CCompilationUnit # HACK
182
183 redef fun compile_callback(callback, nmodule, mainmodule, ccu)
184 do
185 ffi_ccu = ccu
186 callback.compile_callback_to_java(nmodule, ccu)
187 end
188 end
189
190 redef class AModule
191
192 # Pure java class source file
193 private var java_file: nullable JavaClassTemplate = null
194
195 # Set up the templates of the Java implementation class
196 private fun ensure_java_files
197 do
198 if java_file != null then return
199
200 # Java implementation code
201 java_file = new JavaClassTemplate(mmodule.impl_java_class_name)
202 end
203
204 # Compile C code to call JNI and link C callbacks implementations to Java extern methods
205 private fun ensure_linking_callback_methods(ccu: CCompilationUnit, callbacks: Set[NitniCallback])
206 do
207 if callbacks.is_empty then
208 ccu.body_decl.add "static int nit_ffi_with_java_registered_natives = 1;\n"
209 return
210 end
211
212 ccu.body_decl.add "static int nit_ffi_with_java_registered_natives = 0;\n"
213
214 var jni_methods = new Array[String]
215 for cb in callbacks do
216 jni_methods.add_all(cb.jni_methods_declaration(mmodule.as(not null)))
217 end
218
219 var cf = new CFunction("static void nit_ffi_with_java_register_natives(JNIEnv* env, jclass jclazz)")
220 cf.exprs.add """
221 nit_ffi_with_java_registered_natives = 1;
222
223 jint n_methods = {{{jni_methods.length}}};
224 JNINativeMethod methods[] = {
225 {{{jni_methods.join(",\n\t\t")}}}
226 };
227 jint res = (*env)->RegisterNatives(env, jclazz, methods, n_methods);
228 if (res != JNI_OK) {
229 fprintf(stderr, "RegisterNatives failed\\n");
230 (*env)->ExceptionDescribe(env);
231 exit(1);
232 }
233 """
234 ccu.add_local_function cf
235 end
236
237 # Tell the C compiler where to find jni.h and how to link with libjvm
238 private fun insert_compiler_options
239 do
240 mmodule.c_compiler_options = "{mmodule.c_compiler_options} -I $(JAVA_HOME)/include/"
241 mmodule.c_linker_options = "{mmodule.c_linker_options} -L $(JNI_LIB_PATH) -ljvm"
242 end
243 end
244
245 redef class MModule
246 # Name of the generated Java class where to store all implementation methods of this module
247 # as well as generated callbacks.
248 private fun impl_java_class_name: String do return "Nit_{name}"
249 end
250
251 redef class AExternPropdef
252 redef fun verify_nitni_callbacks(toolcontext)
253 do
254 super
255
256 var block = n_extern_code_block
257 if block != null and block.is_java then
258 insert_artificial_callbacks(toolcontext)
259 end
260 end
261
262 # Insert additionnal explicit calls to get the current `JNIEnv`
263 #
264 # This forces declaration of callbacks to Nit. The callbacks will be available in Java
265 # but will be used mainly by the FFI itself.
266 #
267 # The developper can aso customize the JNIEnv used by the FFI by redefing `Sys::jni_env`.
268 private fun insert_artificial_callbacks(toolcontext: ToolContext)
269 do
270 var fcc = foreign_callbacks
271 assert fcc != null
272
273 var modelbuilder = toolcontext.modelbuilder
274 var mmodule = mpropdef.mclassdef.mmodule
275
276 # Pointer::sys
277 var pointer_class = modelbuilder.try_get_mclass_by_name(self, mmodule, "Pointer")
278 assert pointer_class != null
279 var pointer_sys_meth = modelbuilder.try_get_mproperty_by_name2(self, mmodule, pointer_class.mclass_type, "sys")
280 assert pointer_sys_meth != null and pointer_sys_meth isa MMethod
281
282 var explicit_call = new MExplicitCall(pointer_class.mclass_type, pointer_sys_meth, mmodule)
283 fcc.callbacks.add(explicit_call)
284 explicit_call.fill_type_for(fcc, mmodule)
285
286 # Sys::jni_env
287 var sys_class = modelbuilder.try_get_mclass_by_name(self, mmodule, "Sys")
288 assert sys_class != null
289 var sys_jni_env_meth = modelbuilder.try_get_mproperty_by_name2(self, mmodule, sys_class.mclass_type, "jni_env")
290 assert sys_jni_env_meth != null
291 assert sys_jni_env_meth isa MMethod
292
293 explicit_call = new MExplicitCall(sys_class.mclass_type, sys_jni_env_meth, mmodule)
294 fcc.callbacks.add(explicit_call)
295 explicit_call.fill_type_for(fcc, mmodule)
296
297 # Sys::load_jclass
298 var sys_jni_load_jclass_meth = modelbuilder.try_get_mproperty_by_name2(self, mmodule, sys_class.mclass_type, "load_jclass")
299 assert sys_jni_load_jclass_meth != null
300 assert sys_jni_load_jclass_meth isa MMethod
301
302 explicit_call = new MExplicitCall(sys_class.mclass_type, sys_jni_load_jclass_meth, mmodule)
303 fcc.callbacks.add(explicit_call)
304 explicit_call.fill_type_for(fcc, mmodule)
305 end
306 end
307
308 redef class AExternCodeBlock
309 fun is_java : Bool do return language_name != null and
310 language_name_lowered == "java"
311 end
312
313 # Java class source template
314 class JavaClassTemplate
315 super Template
316
317 var java_class_name: String
318 init(name: String) do self.java_class_name = name
319
320 var header = new Template
321 var class_content = new Template
322
323 fun write_to_files(compdir: String): ExternFile
324 do
325 var filename = "{java_class_name}.java"
326 var filepath = "{compdir}/{filename}"
327
328 write_to_file filepath
329
330 return new JavaFile(filename)
331 end
332
333 redef fun rendering
334 do
335 add header
336 add "\n"
337 add "public class {java_class_name} \{\n"
338 add class_content
339 add "\}"
340 end
341 end
342
343 # A generated Java source file, represent the corresponding Makefile rules
344 class JavaFile
345 super ExternFile
346
347 redef fun makefile_rule_name do return "{filename.basename(".java")}.class"
348 redef fun makefile_rule_content do return "javac {filename} -d ."
349 redef fun add_to_jar do return true
350 end
351
352 # Context in pure Java code
353 private class JavaCallContext
354 super CallContext
355
356 redef fun name_mtype(mtype) do return mtype.java_type
357 end
358
359 # Context in C, when call are from normal C to JNI
360 private class ToJavaCallContext
361 super CallContext
362
363 redef fun cast_to(mtype, name) do return "({mtype.jni_type})({name})"
364 redef fun cast_from(mtype, name) do return "({mtype.cname})({name})"
365 redef fun name_mtype(mtype) do return mtype.jni_type
366 end
367
368 # Context in C, when call are from JNI to normal C
369 private class FromJavaCallContext
370 super CallContext
371
372 redef fun cast_to(mtype, name) do return "({mtype.cname})({name})"
373 redef fun cast_from(mtype, name) do return "({mtype.jni_type})({name})"
374 redef fun name_mtype(mtype) do return mtype.jni_type
375 end
376
377 # Foreign type attach to Nit extern Java classes
378 class ForeignJavaType
379 super ForeignType
380
381 var java_type: String
382 init (java_type: String) do self.java_type = java_type
383 end
384
385 redef class NitniCallback
386 # Compile C and Java code to implement this callback
387 fun compile_callback_to_java(nmodule: AModule, ccu: CCompilationUnit) do end
388
389 # Returns the list of C functions to link with extern Java methods, as required
390 # to enable this callback from Java code.
391 #
392 # Return used by `AModule::ensure_linking_callback_methods`
393 #
394 # TODO we return an Array to support cast and other features like that
395 fun jni_methods_declaration(from_module: MModule): Array[String] do return new Array[String]
396 end
397
398 redef class MExplicitCall
399 redef fun compile_callback_to_java(nmodule, ccu)
400 do
401 var mproperty = mproperty
402 assert mproperty isa MMethod
403 var mmodule = nmodule.mmodule.as(not null)
404
405 # In C, indirection implementing the Java extern methods
406 var csignature = mproperty.build_c_implementation_signature(recv_mtype, mmodule, "___indirect", long_signature, from_java_call_context)
407 var cf = new CFunction("JNIEXPORT {csignature}")
408 cf.exprs.add "\t{mproperty.build_ccall(recv_mtype, mmodule, null, long_signature, from_java_call_context, null)}\n"
409 ccu.add_local_function cf
410
411 # In Java, declare the extern method as a private static local method
412 var java_signature = mproperty.build_csignature(recv_mtype, mmodule, null, short_signature, java_call_context)
413 nmodule.java_file.class_content.add "private native static {java_signature};\n"
414 end
415
416 redef fun jni_methods_declaration(from_mmodule)
417 do
418 var mproperty = mproperty
419 assert mproperty isa MMethod
420
421 var java_name = mproperty.build_cname(recv_mtype, from_mmodule, null, short_signature)
422 var jni_format = mproperty.build_jni_format(recv_mtype, from_mmodule)
423 var c_name = mproperty.build_cname(recv_mtype, from_mmodule, "___indirect", long_signature)
424
425 return ["""{"{{{java_name}}}", "{{{jni_format}}}", {{{c_name}}}}"""]
426 end
427 end
428
429 redef class MType
430
431 # Type name in Java
432 #
433 # * Primitives common to both languages use their Java primitive type
434 # * Nit extern Java classes are reprensented by their full Java type
435 # * Other Nit objects are represented by `int` in Java. It holds the
436 # pointer to the underlying C structure.
437 # TODO create static Java types to store and hide the pointer
438 private fun java_type: String do return "int"
439
440 # JNI type name (in C)
441 #
442 # So this is a C type, usually defined in `jni.h`
443 private fun jni_type: String do return "jint"
444
445 # JNI short type name (for signatures)
446 #
447 # Is used by `MMethod::build_jni_format` to pass a Java method signature
448 # to the JNI function `GetStaticMetodId`.
449 private fun jni_format: String do return "I"
450
451 # Type name appearing within JNI function names.
452 #
453 # Used by `JavaLanguage::compile_extern_method` when calling JNI's `CallStatic*Method`.
454 # This strategy is used by JNI to type the return of callbacks to Java.
455 private fun jni_signature_alt: String do return "Int"
456 end
457
458 redef class MClassType
459 redef fun java_type
460 do
461 var ftype = mclass.ftype
462 if ftype isa ForeignJavaType then return ftype.java_type
463 if mclass.name == "Bool" then return "boolean"
464 if mclass.name == "Char" then return "char"
465 if mclass.name == "Int" then return "int"
466 if mclass.name == "Float" then return "double"
467 return super
468 end
469
470 redef fun jni_type
471 do
472 var ftype = mclass.ftype
473 if ftype isa ForeignJavaType then return "jobject"
474 if mclass.name == "Bool" then return "jboolean"
475 if mclass.name == "Char" then return "jchar"
476 if mclass.name == "Int" then return "jint"
477 if mclass.name == "Float" then return "jdouble"
478 return super
479 end
480
481 redef fun jni_format
482 do
483 var ftype = mclass.ftype
484 if ftype isa ForeignJavaType then return "L{ftype.java_type.replace('.', "/").replace(' ', "")};"
485 if mclass.name == "Bool" then return "Z"
486 if mclass.name == "Char" then return "C"
487 if mclass.name == "Int" then return "I"
488 if mclass.name == "Float" then return "D"
489 return super
490 end
491
492 redef fun jni_signature_alt
493 do
494 var ftype = mclass.ftype
495 if ftype isa ForeignJavaType then return "Object"
496 if mclass.name == "Bool" then return "Boolean"
497 if mclass.name == "Char" then return "Char"
498 if mclass.name == "Int" then return "Int"
499 if mclass.name == "Float" then return "Double"
500 return super
501 end
502 end
503
504 redef class MMethod
505 # Returns the JNI signature format of this Nit method
506 #
507 # Example: a Nity signature `(Bool, Int, Float, JavaString)` is represented by
508 # the JNI format `(ZIDLjava/lang/string;)V"
509 private fun build_jni_format(recv_mtype: MClassType, from_mmodule: MModule): String
510 do
511 var mmethoddef = lookup_first_definition(from_mmodule, recv_mtype)
512 var msignature = mmethoddef.msignature
513 var format = new Array[String]
514
515 format.add "("
516
517 # receiver
518 if not self.is_init then format.add recv_mtype.jni_format
519
520 # parameters
521 for p in msignature.mparameters do
522 var param_mtype = p.mtype.resolve_for(recv_mtype, recv_mtype, from_mmodule, true)
523 format.add param_mtype.jni_format
524 end
525 format.add ")"
526
527 # return
528 if self.is_init then
529 format.add recv_mtype.jni_format
530 else
531 var return_mtype = msignature.return_mtype
532 if return_mtype != null then
533 return_mtype = return_mtype.resolve_for(recv_mtype, recv_mtype, from_mmodule, true)
534 format.add return_mtype.jni_format
535 else format.add "V"
536 end
537
538 return format.join("")
539 end
540
541 # Similar to `build_c_signature` but adapted to create the signature expected by JNI for C functions
542 # implementing Java extern methods.
543 #
544 # Is used to generate FFI callbacks to Nit at `MExplicitCall::compile_callback_to_java`.
545 private fun build_c_implementation_signature(recv_mtype: MClassType, from_mmodule: MModule,
546 suffix: nullable String, length: SignatureLength, call_context: CallContext): String
547 do
548 var mmethoddef = lookup_first_definition(from_mmodule, recv_mtype)
549 var signature = mmethoddef.msignature
550 assert signature != null
551
552 var creturn_type
553 if self.is_init then
554 creturn_type = call_context.name_mtype(recv_mtype)
555 else if signature.return_mtype != null then
556 var ret_mtype = signature.return_mtype
557 ret_mtype = ret_mtype.resolve_for(recv_mtype, recv_mtype, from_mmodule, true)
558 creturn_type = call_context.name_mtype(ret_mtype)
559 else
560 creturn_type = "void"
561 end
562
563 var cname = build_cname(recv_mtype, from_mmodule, suffix, length)
564
565 var cparams = new List[String]
566
567 # This is different
568 cparams.add "JNIEnv *env"
569 cparams.add "jclass clazz"
570
571 if not self.is_init then
572 cparams.add "{call_context.name_mtype(recv_mtype)} recv"
573 end
574 for p in signature.mparameters do
575 var param_mtype = p.mtype.resolve_for(recv_mtype, recv_mtype, from_mmodule, true)
576 cparams.add "{call_context.name_mtype(param_mtype)} {p.name}"
577 end
578
579 return "{creturn_type} {cname}( {cparams.join(", ")} )"
580 end
581 end
582
583 private fun java_call_context: JavaCallContext do return new JavaCallContext
584 private fun to_java_call_context: ToJavaCallContext do return new ToJavaCallContext
585 private fun from_java_call_context: FromJavaCallContext do return new FromJavaCallContext