1 ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
3 ;;; cffi-abcl.lisp --- CFFI-SYS implementation for ABCL/JNA.
5 ;;; Copyright (C) 2009, Luis Oliveira <loliveira@common-lisp.net>
6 ;;; Copyright (C) 2012, Mark Evenson <evenson.not.org@gmail.com>
8 ;;; Permission is hereby granted, free of charge, to any person
9 ;;; obtaining a copy of this software and associated documentation
10 ;;; files (the "Software"), to deal in the Software without
11 ;;; restriction, including without limitation the rights to use, copy,
12 ;;; modify, merge, publish, distribute, sublicense, and/or sell copies
13 ;;; of the Software, and to permit persons to whom the Software is
14 ;;; furnished to do so, subject to the following conditions:
16 ;;; The above copyright notice and this permission notice shall be
17 ;;; included in all copies or substantial portions of the Software.
19 ;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 ;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 ;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 ;;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23 ;;; HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24 ;;; WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 ;;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 ;;; DEALINGS IN THE SOFTWARE.
29 ;;; This implementation requires the Java Native Access (JNA) library.
30 ;;; <http://jna.dev.java.net/>
32 ;;; JNA may be automatically loaded into the current JVM process from
33 ;;; abcl-1.1.0-dev via the contrib mechanism.
35 ;;; This is a preliminary version that will have to be cleaned up,
36 ;;; optimized, etc. Nevertheless, it passes all of the relevant CFFI
37 ;;; tests except MAKE-POINTER.HIGH. Shareable Vectors are not
40 (in-package #:cffi-sys
)
42 ;;;# Loading and Closing Foreign Libraries
44 (defparameter *loaded-libraries
* (make-hash-table))
46 (defun %load-foreign-library
(name path
)
47 "Load a foreign library, signals a simple error on failure."
48 (flet ((load-and-register (name path
)
49 (let ((lib (jstatic "getInstance" "com.sun.jna.NativeLibrary" path
)))
50 (setf (gethash name
*loaded-libraries
*) lib
)
52 (foreign-library-type-p (type)
53 (find type
'("so" "dll" "dylib") :test
#'string
=))
55 (error (jcall (jmethod "java.lang.Exception" "getMessage")
56 (java-exception-cause e
)))))
58 (load-and-register name path
)
60 ;; From JNA http://jna.java.net/javadoc/com/sun/jna/NativeLibrary.html
61 ;; ``[The name] can be short form (e.g. "c"), an explicit
62 ;; version (e.g. "libc.so.6"), or the full path to the library
63 ;; (e.g. "/lib/libc.so.6")''
65 ;; Try to deal with the occurance "libXXX" and "libXXX.so" as
66 ;; "libXXX.so.6" and "XXX" should have succesfully loaded.
67 (let ((p (pathname path
)))
68 (if (and (not (pathname-directory p
))
69 (= (search "lib" (pathname-name p
)) 0))
70 (let ((short-name (if (foreign-library-type-p (pathname-type p
))
71 (subseq (pathname-name p
) 3)
74 (load-and-register name short-name
)
75 (java-exception (e) (java-error e
))))
78 ;;; FIXME. Should remove libraries from the hash table.
79 (defun %close-foreign-library
(handle)
80 "Closes a foreign library."
81 #+#:ignore
(setf *loaded-libraries
* (remove handle
*loaded-libraries
*))
82 (jcall-raw (jmethod "com.sun.jna.NativeLibrary" "dispose") handle
))
86 ;;; FIXME! We should probably define a private-jfield-accessor that does the hard work once!
87 (let ((get-declared-fields-jmethod (jmethod "java.lang.Class" "getDeclaredFields")))
88 (defun private-jfield (class-name field-name instance
)
89 (let ((field (find field-name
90 (jcall get-declared-fields-jmethod
94 (jcall (jmethod "java.lang.reflect.Field" "setAccessible" "boolean")
96 (jcall (jmethod "java.lang.reflect.Field" "get" "java.lang.Object")
99 ;;; XXX: doesn't match jmethod-arguments.
101 (let ((get-declared-methods-jmethod (jmethod "java.lang.Class" "getDeclaredMethods")))
102 (defun private-jmethod (class-name method-name
)
103 (let ((method (find method-name
104 (jcall get-declared-methods-jmethod
108 (jcall (jmethod "java.lang.reflect.Method" "setAccessible" "boolean")
112 (let ((get-declared-constructors-jmethod (jmethod "java.lang.Class"
113 "getDeclaredConstructors"))
114 (set-accessible-jmethod (jmethod "java.lang.reflect.Constructor" "setAccessible" "boolean")))
115 (defun private-jconstructor (class-name &rest params
)
116 (let* ((param-classes (mapcar #'jclass params
))
117 (cons (find-if (lambda (x &aux
(cons-params (jconstructor-params x
)))
118 (and (length= param-classes cons-params
)
119 (loop for param in param-classes
120 and param-x across cons-params
121 always
(string= (jclass-name param
)
122 (jclass-name param-x
)))))
123 (jcall get-declared-constructors-jmethod
(jclass class-name
)))))
124 (jcall set-accessible-jmethod cons
+true
+)
129 (defun canonicalize-symbol-name-case (name)
130 (string-upcase name
))
134 (deftype foreign-pointer
()
135 '(satisfies pointerp
))
137 (defun pointerp (ptr)
138 "Return true if PTR is a foreign pointer."
139 (let ((jclass (jclass-of ptr
)))
141 (jclass-superclass-p (jclass "com.sun.jna.Pointer") jclass
))))
143 (let ((jconstructor (private-jconstructor "com.sun.jna.Pointer" "long")))
144 (defun make-pointer (address)
145 "Return a pointer pointing to ADDRESS."
146 (jnew jconstructor address
)))
148 (defun make-private-jfield-accessor (class-name field-name
)
149 (let ((field (find field-name
150 (jcall (jmethod "java.lang.Class" "getDeclaredFields")
154 (jcall (jmethod "java.lang.reflect.Field" "setAccessible" "boolean")
156 (let ((get-jmethod (jmethod "java.lang.reflect.Field" "get" "java.lang.Object")))
158 (jcall get-jmethod field instance
)))))
160 (let ((accessor (make-private-jfield-accessor "com.sun.jna.Pointer" "peer")))
161 (defun %pointer-address
(pointer)
162 (funcall accessor pointer
)))
164 (defun pointer-address (pointer)
165 "Return the address pointed to by PTR."
166 (let ((peer (%pointer-address pointer
)))
168 (+ #.
(ash 1 64) peer
)
171 (defun pointer-eq (ptr1 ptr2
)
172 "Return true if PTR1 and PTR2 point to the same address."
173 (= (%pointer-address ptr1
) (%pointer-address ptr2
)))
175 (defun null-pointer ()
176 "Construct and return a null pointer."
179 (defun null-pointer-p (ptr)
180 "Return true if PTR is a null pointer."
181 (zerop (%pointer-address ptr
)))
183 (defun inc-pointer (ptr offset
)
184 "Return a fresh pointer pointing OFFSET bytes past PTR."
185 (make-pointer (+ (%pointer-address ptr
) offset
)))
189 (let ((malloc-jmethod (private-jmethod "com.sun.jna.Memory" "malloc")))
190 (defun %foreign-alloc
(size)
191 "Allocate SIZE bytes on the heap and return a pointer."
193 (jstatic-raw malloc-jmethod nil size
))))
195 (let ((free-jmethod (private-jmethod "com.sun.jna.Memory" "free")))
196 (defun foreign-free (ptr)
197 "Free a PTR allocated by FOREIGN-ALLOC."
198 (jstatic-raw free-jmethod nil
(%pointer-address ptr
))
201 ;;; TODO: stack allocation.
202 (defmacro with-foreign-pointer
((var size
&optional size-var
) &body body
)
203 "Bind VAR to SIZE bytes of foreign memory during BODY. The pointer
204 in VAR is invalid beyond the dynamic extent of BODY, and may be
205 stack-allocated if supported by the implementation. If SIZE-VAR is
206 supplied, it will be bound to SIZE during BODY."
208 (setf size-var
(gensym "SIZE")))
209 `(let* ((,size-var
,size
)
210 (,var
(%foreign-alloc
,size-var
)))
213 (foreign-free ,var
))))
215 ;;;# Shareable Vectors
217 ;;; This interface is very experimental. WITH-POINTER-TO-VECTOR-DATA
218 ;;; should be defined to perform a copy-in/copy-out if the Lisp
219 ;;; implementation can't do this.
221 (defun jna-setter (type)
223 ((:char
:unsigned-char
) "setByte")
224 (:double
"setDouble")
226 ((:int
:unsigned-int
) "setInt")
227 ((:long
:unsigned-long
) "setNativeLong")
228 ((:long-long
:unsigned-long-long
) "setLong")
229 (:pointer
"setPointer")
230 ((:short
:unsigned-short
) "setShort")))
232 (defun jna-setter-arg-type (type)
234 ((:char
:unsigned-char
) "byte")
237 ((:int
:unsigned-int
) "int")
238 ((:long
:unsigned-long
) "com.sun.jna.NativeLong")
239 ((:long-long
:unsigned-long-long
) "long")
240 (:pointer
"com.sun.jna.Pointer")
241 ((:short
:unsigned-short
) "short")))
243 (defun jna-getter (type)
245 ((:char
:unsigned-char
) "getByte")
246 (:double
"getDouble")
248 ((:int
:unsigned-int
) "getInt")
249 ((:long
:unsigned-long
) "getNativeLong")
250 ((:long-long
:unsigned-long-long
) "getLong")
251 (:pointer
"getPointer")
252 ((:short
:unsigned-short
) "getShort")))
254 ;;; HACK for now: keep track of all the pointers to malloc()'d memory
255 ;;; hashed by the shareable byte vectors we allocate.
256 (defvar *static-vector-pointer
*
257 (make-hash-table :weakness
:value
))
259 ;;; available in abcl-1.7.0
260 ;;; presence of :nio-buffer keyword to CL:MAKE-ARRAY
262 (defun make-shareable-vector (length &key
(element-type '(unsigned-byte 8)))
263 "Use memory on the heap for storing a vector of LENGTH with ELEMENT-TYPE
265 Returns the allocated vector as the first value, and the pointer to
266 the heap memory as the second.
268 Only works for 8, 16, 32 bit bytes.
271 (first element-type
))
273 (second element-type
))
274 (bytes-per-element ;; ehh, not going to work well for element type not of size 8, 16, or 32
275 (ceiling bits-per-byte
8)))
276 (unless (subtypep element-type
277 '(or (unsigned-byte 8) (unsigned-byte 16) (unsigned-byte 32)))
278 (signal 'type-error
:datum element-type
282 (unsigned-byte 32))))
284 (* length bytes-per-element
))
286 (jss:new
"com.sun.jna.Memory" bytes
))
288 (#"getByteBuffer" heap-pointer
0 bytes
))
290 (make-array length
:element-type element-type
:nio-buffer bytebuffer
)))
291 (setf (gethash static-vector
*static-vector-pointer
*)
297 (defun make-shareable-byte-vector (size)
298 "Create a Lisp vector of SIZE bytes can passed to
299 WITH-POINTER-TO-VECTOR-DATA."
300 (if (find :nio
*features
*)
301 (make-shareable-vector size
:element-type
'(unsigned-byte 8)) ;; abcl-1.6.2-dev, upcoming abcl-1.7.0
302 (make-array size
:element-type
'(unsigned-byte 8))))
304 (let ((method (jmethod "com.sun.jna.Pointer"
305 (jna-setter :char
) "long" (jna-setter-arg-type :char
))))
306 (defun copy-to-foreign-vector (vector foreign-pointer
)
307 (loop for i below
(length vector
)
313 ;; hand-roll the jna-getter method instead of calling %mem-ref every time through
314 (let ((method (jmethod "com.sun.jna.Pointer" (jna-getter :char
) "long")))
315 (defun copy-from-foreign-vector (vector foreign-pointer
)
316 (loop for i below
(length vector
)
317 do
(setf (aref vector i
)
318 (java:jobject-lisp-value
(jcall-raw method foreign-pointer i
))))))
320 (defmacro with-pointer-to-vector-data
((ptr-var vector
) &body body
)
321 "Bind PTR-VAR to a foreign pointer to the data in VECTOR."
322 (let ((vector-sym (gensym "VECTOR"))
323 (heap-pointer (gethash vector
*static-vector-pointer
*)))
325 `(let ((,ptr-var
,heap-pointer
))
327 `(let ((,vector-sym
,vector
))
328 (with-foreign-pointer (,ptr-var
(length ,vector-sym
))
329 (copy-to-foreign-vector ,vector-sym
,ptr-var
)
332 (copy-from-foreign-vector ,vector-sym
,ptr-var
)))))))
336 (defun foreign-type-to-java-class (type)
339 ((:int
:unsigned-int
) "java.lang.Integer")
340 ((:long
:unsigned-long
) "com.sun.jna.NativeLong")
341 ((:long-long
:unsigned-long-long
) "java.lang.Long")
342 (:pointer
"com.sun.jna.Pointer") ;; void * is pointer?
343 (:float
"java.lang.Float")
344 (:double
"java.lang.Double")
345 ((:char
:unsigned-char
) "java.lang.Byte")
346 ((:short
:unsigned-short
) "java.lang.Short"))))
348 (defun %foreign-type-size
(type)
349 "Return the size in bytes of a foreign type."
350 (jstatic "getNativeSize" "com.sun.jna.Native"
351 (foreign-type-to-java-class type
)))
354 (defun %foreign-type-alignment
(type)
355 "Return the alignment in bytes of a foreign type."
356 (%foreign-type-size type
))
358 (defun unsigned-type-p (type)
364 :unsigned-long-long
) t
)
367 (defun lispify-value (value type
)
368 (when (and (eq type
:pointer
) (or (null (java:jobject-lisp-value value
))
369 (eq +null
+ (java:jobject-lisp-value value
))))
370 (return-from lispify-value
(null-pointer)))
371 (when (or (eq type
:long
) (eq type
:unsigned-long
))
372 (setq value
(jcall-raw (jmethod "com.sun.jna.NativeLong" "longValue")
373 (java:jobject-lisp-value value
))))
374 (let ((bit-size (* 8 (%foreign-type-size type
))))
375 (let ((lisp-value (java:jobject-lisp-value value
)))
376 (if (and (unsigned-type-p type
)
377 (logbitp (1- bit-size
) lisp-value
))
378 (lognot (logxor lisp-value
(1- (expt 2 bit-size
))))
381 (defun %mem-ref
(ptr type
&optional
(offset 0))
383 (jcall-raw (jmethod "com.sun.jna.Pointer" (jna-getter type
) "long")
387 (defun %mem-set
(value ptr type
&optional
(offset 0))
388 (let* ((bit-size (* 8 (%foreign-type-size type
)))
389 (val (if (and (unsigned-type-p type
) (logbitp (1- bit-size
) value
))
390 (lognot (logxor value
(1- (expt 2 bit-size
))))
392 (jcall-raw (jmethod "com.sun.jna.Pointer"
393 (jna-setter type
) "long" (jna-setter-arg-type type
))
396 (if (or (eq type
:long
) (eq type
:unsigned-long
))
397 (jnew (jconstructor "com.sun.jna.NativeLong" "long") val
)
402 (let ((get-symbol-address-jmethod (private-jmethod "com.sun.jna.NativeLibrary" "getSymbolAddress")))
403 (defun %foreign-symbol-pointer
(name library
)
404 "Returns a pointer to a foreign symbol NAME."
405 (flet ((find-it (library)
408 (jcall-raw get-symbol-address-jmethod library name
)))))
409 (if (eq library
:default
)
411 (jstatic "getProcess" "com.sun.jna.NativeLibrary"))
412 ;; The above should find it, but I'm not exactly sure, so
413 ;; let's still do it manually just in case.
414 (loop for lib being the hash-values of
*loaded-libraries
*
415 thereis
(find-it lib
)))
416 (find-it library
)))))
418 ;;;# Calling Foreign Functions
420 (defun find-foreign-function (name library
)
421 (flet ((find-it (library)
423 (jcall-raw (jmethod "com.sun.jna.NativeLibrary" "getFunction"
426 (or (if (eq library
:default
)
428 (jstatic "getProcess" "com.sun.jna.NativeLibrary"))
429 ;; The above should find it, but I'm not exactly sure, so
430 ;; let's still do it manually just in case.
431 (loop for lib being the hash-values of
*loaded-libraries
*
432 thereis
(find-it lib
)))
433 (find-it (or (gethash library
*loaded-libraries
*)
434 (error "Foreign library ~S is not loaded" library
))))
435 (error "Undefined foreign function ~S~@[ in library ~S~]"
437 (if (eq library
:default
) nil library
)))))
439 (defun convert-calling-convention (convention)
441 (:stdcall
"ALT_CONVENTION")
442 (:cdecl
"C_CONVENTION")))
444 (defparameter *jna-string-encoding
* "UTF-8"
445 "Encoding for conversion between Java and native strings that occurs within JNA.
447 Used with jna-4.0.0 or later.")
449 ;;; c.f. <http://twall.github.io/jna/4.0/javadoc/com/sun/jna/Function.html#Function%28com.sun.jna.Pointer,%20int,%20java.lang.String%29>
450 (defvar *jna-4.0
.0-or-later-p
*
451 (ignore-errors (private-jconstructor "com.sun.jna.Function"
452 "com.sun.jna.Pointer" "int" "java.lang.String")))
455 (if *jna-4.0
.0-or-later-p
*
456 (private-jconstructor "com.sun.jna.Function"
457 "com.sun.jna.Pointer" "int" "java.lang.String")
458 (private-jconstructor "com.sun.jna.Function"
459 "com.sun.jna.Pointer" "int"))))
460 (defun make-function-pointer (pointer convention
)
462 #'jnew jconstructor pointer
463 (jfield "com.sun.jna.Function" (convert-calling-convention convention
))
464 (when *jna-4.0
.0-or-later-p
*
465 (list *jna-string-encoding
*)))))
467 (defun lisp-value-to-java (value foreign-type
)
471 (t (jnew (ecase foreign-type
472 ((:int
:unsigned-int
) (jconstructor "java.lang.Integer" "int"))
473 ((:long-long
:unsigned-long-long
)
474 (jconstructor "java.lang.Long" "long"))
475 ((:long
:unsigned-long
)
476 (jconstructor "com.sun.jna.NativeLong" "long"))
477 ((:short
:unsigned-short
) (jconstructor "java.lang.Short" "short"))
478 ((:char
:unsigned-char
) (jconstructor "java.lang.Byte" "byte"))
479 (:float
(jconstructor "java.lang.Float" "float"))
480 (:double
(jconstructor "java.lang.Double" "double")))
483 (defun %%foreign-funcall
(function args arg-types return-type
)
484 (let ((jargs (jnew-array "java.lang.Object" (length args
))))
485 (loop for arg in args and type in arg-types and i from
0
486 do
(setf (jarray-ref jargs i
)
487 (lisp-value-to-java arg type
)))
488 (if (eq return-type
:void
)
490 (jcall-raw (jmethod "com.sun.jna.Function" "invoke" "[Ljava.lang.Object;")
494 (jcall-raw (jmethod "com.sun.jna.Function" "invoke"
495 "java.lang.Class" "[Ljava.lang.Object;")
497 (foreign-type-to-java-class return-type
)
501 (defun foreign-funcall-type-and-args (args)
502 (let ((return-type :void
))
503 (loop for
(type arg
) on args by
#'cddr
504 if arg collect type into types
505 and collect arg into fargs
506 else do
(setf return-type type
)
507 finally
(return (values types fargs return-type
)))))
509 (defmacro %foreign-funcall
(name args
&key
(library :default
) convention
)
510 (declare (ignore convention
))
511 (multiple-value-bind (types fargs rettype
)
512 (foreign-funcall-type-and-args args
)
513 `(%%foreign-funcall
(find-foreign-function ',name
',library
)
514 (list ,@fargs
) ',types
',rettype
)))
516 (defmacro %foreign-funcall-pointer
(ptr args
&key convention
)
517 (multiple-value-bind (types fargs rettype
)
518 (foreign-funcall-type-and-args args
)
519 `(%%foreign-funcall
(make-function-pointer ,ptr
',convention
)
520 (list ,@fargs
) ',types
',rettype
)))
524 (defun foreign-to-callback-type (type)
526 ((:int
:unsigned-int
)
528 ((:long
:unsigned-long
)
529 (jvm::make-jvm-class-name
"com.sun.jna.NativeLong"))
530 ((:long-long
:unsigned-long-long
)
531 (jvm::make-jvm-class-name
"java.lang.Long"))
533 (jvm::make-jvm-class-name
"com.sun.jna.Pointer"))
538 ((:char
:unsigned-char
)
540 ((:short
:unsigned-short
)
547 (defvar *callbacks
* (make-hash-table))
549 (defmacro convert-args-to-lisp-values
(arg-names arg-types
&body body
)
550 (let ((gensym-args (loop for name in arg-names
551 collect
(format-symbol t
'#:callback-arg-~a- name
))))
552 `(lambda (,@gensym-args
)
553 (let ,(loop for arg in arg-names
554 for type in arg-types
555 for gensym-arg in gensym-args
556 collecting
`(,arg
(if (typep ,gensym-arg
'java
:java-object
)
557 (lispify-value ,gensym-arg
,type
)
561 (defmacro %defcallback
(name return-type arg-names arg-types body
563 (declare (ignore convention
)) ;; I'm always up for ignoring convention, but this is probably wrong.
564 `(setf (gethash ',name
*callbacks
*)
565 (jinterface-implementation
566 (ensure-callback-interface ',return-type
',arg-types
)
568 (convert-args-to-lisp-values ,arg-names
,arg-types
(lisp-value-to-java ,body
',return-type
)))))
569 ;; (lambda (,@arg-names) ,body))))
571 (jvm::define-class-name
+callback-object
+ "com.sun.jna.Callback")
573 +dynamic-callback-package
+
574 "org/armedbear/jna/dynamic/callbacks"
575 "The slash-delimited Java package in which we create classes dynamically to specify callback interfaces.")
577 (defun ensure-callback-interface (returns args
)
578 "Ensure that the jvm interface for the callback exists in the current JVM.
580 Returns the fully dot qualified name of the interface."
581 (let* ((jvm-returns (foreign-to-callback-type returns
))
582 (jvm-args (mapcar #'foreign-to-callback-type args
))
583 (interface-name (qualified-callback-interface-classname jvm-returns jvm-args
)))
585 (jss:find-java-class interface-name
)
587 (when (jinstance-of-p (java:java-exception-cause e
)
588 "java.lang.ClassNotFoundException")
589 (let ((interface-class-bytes (%define-jna-callback-interface jvm-returns jvm-args
))
590 (simple-interface-name (callback-interface-classname jvm-returns jvm-args
)))
591 (load-class interface-name interface-class-bytes
)))))
594 (defun qualified-callback-interface-classname (returns args
)
596 (substitute #\.
#\
/ +dynamic-callback-package
+)
597 (callback-interface-classname returns args
)))
599 (defun callback-interface-classname (returns args
)
600 (flet ((stringify (thing)
604 (jvm::class-name-internal thing
)))
605 (t (string thing
)))))
606 (format nil
"~A__~{~A~^__~}"
608 (mapcar #'stringify args
))))
610 (defun %define-jna-callback-interface
(returns args
)
611 "Returns the Java byte[] array of a class representing a Java
612 interface descending form +CALLBACK-OBJECT+ which contains the
613 single function 'callback' which takes ARGS returning RETURNS.
615 The fully qualified dotted name of the generated class is returned as
617 (let ((name (callback-interface-classname returns args
)))
619 (define-java-interface name
+dynamic-callback-package
+
620 `(("callback" ,returns
,args
))
621 `(,+callback-object
+))
622 (qualified-callback-interface-classname returns args
))))
624 (defun define-java-interface (name package methods
625 &optional
(superinterfaces nil
))
626 "Returns the bytes of the Java class interface called NAME in PACKAGE with METHODS.
628 METHODS is a list of (NAME RETURN-TYPE (ARG-TYPES)) entries. NAME is
629 a string. The values of RETURN-TYPE and the list of ARG-TYPES for the
630 defined method follow the are either references to Java objects as
631 created by JVM::MAKE-JVM-CLASS-NAME, or keywords representing Java
632 primtive types as contained in JVM::MAP-PRIMITIVE-TYPE.
634 SUPERINTERFACES optionally contains a list of interfaces that this
635 interface extends specified as fully qualifed dotted Java names."
636 (let* ((class-name-string (format nil
"~A/~A" package name
))
637 (class-name (jvm::make-jvm-class-name class-name-string
))
638 (class (jvm::make-class-interface-file class-name
)))
639 (dolist (superinterface superinterfaces
)
640 (jvm::class-add-superinterface
642 (if (typep superinterface
'jvm
::jvm-class-name
)
644 (jvm::make-jvm-class-name superinterface
))))
645 (dolist (method methods
)
646 (let ((name (first method
))
647 (returns (second method
))
648 (args (third method
)))
649 (jvm::class-add-method
651 (jvm::make-jvm-method name returns args
652 :flags
'(:public
:abstract
)))))
653 (jvm::finalize-class-file class
)
654 (let ((s (sys::%make-byte-array-output-stream
)))
655 (jvm::write-class-file class s
)
656 (sys::%get-output-stream-bytes s
))))
658 (defun load-class (name bytes
)
659 "Load the byte[] array BYTES as a Java class called NAME."
660 (#"loadClassFromByteArray" java
::*classloader
* name bytes
))
662 ;;; Test function: unused in CFFI
663 (defun write-class (class-bytes pathname
)
664 "Write the Java byte[] array CLASS-BYTES to PATHNAME."
665 (with-open-file (stream pathname
667 :element-type
'(signed-byte 8))
668 (dotimes (i (jarray-length class-bytes
))
669 (write-byte (jarray-ref class-bytes i
) stream
))))
671 (defun %callback
(name)
672 (or (#"getFunctionPointer" 'com.sun.jna.CallbackReference
673 (gethash name
*callbacks
*))
674 (error "Undefined callback: ~S" name
)))
676 (defun native-namestring (pathname)
677 (namestring pathname
))