source: trunk/abcl/contrib/jss/invoke.lisp @ 15064

Last change on this file since 15064 was 15064, checked in by Mark Evenson, 6 years ago

Add jss hook and test
(Alan Ruttenberg)

From <https://github.com/armedbear/abcl/pull/52/commits/155db3e3fbb19a2969221edce465bf45f1560abe>.

Part of merge <https://github.com/armedbear/abcl/pull/52>.

File size: 27.3 KB
Line 
1;; Copyright (C) 2005 Alan Ruttenberg
2;; Copyright (C) 2011-2 Mark Evenson
3;;
4;; Since JSS 1.0 was largely derivative of the Jscheme System, the
5;; current system is licensed under the same terms, namely:
6
7;; This software is provided 'as-is', without any express or
8;; implied warranty.
9
10;; In no event will the author be held liable for any damages
11;; arising from the use of this software.
12
13;; Permission is granted to anyone to use this software for any
14;; purpose, including commercial applications, and to alter it
15;; and redistribute it freely, subject to the following
16;; restrictions:
17
18;; 1. The origin of this software must not be misrepresented; you
19;;    must not claim that you wrote the original software. If you
20;;    use this software in a product, an acknowledgment in the
21;;    product documentation would be appreciated but is not
22;;    required.
23
24;; 2. Altered source versions must be plainly marked as such, and
25;;    must not be misrepresented as being the original software.
26
27;; 3. This notice may not be removed or altered from any source
28;;    distribution.
29
30
31;; The dynamic dispatch of the java.lang.reflect package is used to
32;; make it real easy, if perhaps less efficient, to write Java code
33;; since you don't need to be bothered with imports, or with figuring
34;; out which method to call.  The only time that you need to know a
35;; class name is when you want to call a static method, or a
36;; constructor, and in those cases, you only need to know enough of
37;; the class name that is unique wrt to the classes on your classpath.
38;;
39;; Java methods look like this: #"toString". Java classes are
40;; represented as symbols, which are resolved to the appropriate java
41;; class name. When ambiguous, you need to be more specific. A simple example:
42
43;; (let ((sw (new 'StringWriter)))
44;;   (#"write" sw "Hello ")
45;;   (#"write" sw "World")
46;;   (print (#"toString" sw)))
47
48;; What's happened here? First, all the classes in all the jars in the
49;; classpath have been collected.  For each class a.b.C.d, we have
50;; recorded that b.c.d, b.C.d, C.d, c.d, and d potentially refer to
51;; this class. In your call to new, as long as the symbol can refer to
52;; only one class, we use that class. In this case, it is
53;; java.io.StringWriter. You could also have written (new
54;; 'io.stringwriter), (new '|io.StringWriter|), (new
55;; 'java.io.StringWriter)...
56
57;; the call (#"write" sw "Hello "), uses the code in invoke.java to
58;; call the method named "write" with the arguments sw and "Hello ".
59;; JSS figures out the right java method to call, and calls it.
60
61;; If you want to do a raw java call, use #0"toString". Raw calls
62;; return their results as Java objects, avoiding doing the usual Java
63;; object to Lisp object conversions that ABCL does.
64
65;; (with-constant-signature ((name jname raw?)*) &body body)
66;; binds a macro which expands to a jcall, promising that the same method
67;; will be called every time. Use this if you are making a lot of calls and
68;; want to avoid the overhead of a the dynamic dispatch.
69;; e.g. (with-constant-signature ((tostring "toString"))
70;;        (time (dotimes (i 10000) (tostring "foo"))))
71;; runs about 3x faster than (time (dotimes (i 10000) (#"toString" "foo")))
72;;
73;; (with-constant-signature ((tostring "toString" t)) ...) will cause the
74;; toString to be a raw java call. see get-all-jar-classnames below for an example.
75;;
76;; Implementation is that the first time the function is called, the
77;; method is looked up based on the arguments passed, and thereafter
78;; that method is called directly.  Doesn't work for static methods at
79;; the moment (lazy)
80;;
81;; (japropos string) finds all class names matching string
82;; (jcmn class-name) lists the names of all methods for the class
83;;
84;; TODO
85;;   - Make with-constant-signature work for static methods too.
86;;   - #2"toString" to work like function scoped (with-constant-signature ((tostring "toString")) ...)
87;;   - #3"toString" to work like runtime scoped (with-constant-signature ((tostring "toString")) ...)
88;;      (both probably need compiler support to work)
89;;   - Maybe get rid of second " in reader macro. #"toString looks nicer, but might
90;;     confuse lisp mode.
91;;   - write jmap, analogous to map, but can take java collections, java arrays etc.
92;;   - write loop clauses for java collections.
93;;   - Register classes in .class files below classpath directories (when :wild-inferiors works)
94;;   - Make documentation like Edi Weitz
95;;
96;; Thanks: Peter Graves, Jscheme developers, Mike Travers for skij, 
97;; Andras Simon for jfli-abcl which bootstrapped me and taught me how to do
98;; get-all-jar-classnames
99;;
100
101;; changelog
102
103;; Sat January 28, 2006, alanr:
104
105;; Change imports strategy. Only index by last part of class name,
106;; case insensitive. Make the lookup-class-name logic be a bit more
107;; complicated. This substantially reduces the time it takes to do the
108;; auto imports and since class name lookup is relatively infrequent,
109;; and in any case cached, this doesn't effect run time speed.  (did
110;; try caching, but didn't pay - more time was spent reading and
111;; populating large hash table)
112;;
113;; Split class path by ";" in addition to ":" for windows.
114;;
115;; Tested on windows, linux.
116
117;; 2011-05-21 Mark Evenson
118;;   "ported" to native ABCL without needing the jscheme.jar or bsh-2.0b4.jar
119
120(in-package :jss)
121
122(eval-when (:compile-toplevel :load-toplevel :execute)
123  (defvar *do-auto-imports* t 
124    "Whether to automatically introspect all Java classes on the classpath when JSS is loaded."))
125
126(defvar *muffle-warnings* t)
127
128(defvar *imports-resolved-classes* (make-hash-table :test 'equalp))
129
130(defun find-java-class (name)
131  "Returns the java.lang.Class representation of NAME.
132
133NAME can either string or a symbol according to the usual JSS conventions."
134  (jclass (maybe-resolve-class-against-imports name)))
135
136(defmacro invoke-add-imports (&rest imports)
137  "Push these imports onto the search path. If multiple, earlier in list take precedence"
138  `(eval-when (:compile-toplevel :load-toplevel :execute)
139     (clrhash *imports-resolved-classes*)
140     (dolist (i (reverse ',imports))
141       (setq *imports-resolved-classes* (delete i *imports-resolved-classes* :test 'equal))
142       )))
143
144(defun clear-invoke-imports ()
145  (clrhash *imports-resolved-classes*))
146
147(defun maybe-resolve-class-against-imports (classname)
148  (or (gethash (string classname) *imports-resolved-classes*)
149      (let ((found (lookup-class-name classname)))
150        (if found
151            (progn 
152              (setf (gethash classname *imports-resolved-classes*) found)
153              found)
154            (string classname)))))
155
156(defvar *class-name-to-full-case-insensitive* (make-hash-table :test 'equalp))
157
158;; This is the function that calls invoke to call your java
159;; method. The first argument is the method name or 'new. The second
160;; is the object you are calling it on, followed by the rest of the
161;; arguments. If the "object" is a symbol, then that symbol is assumed
162;; to be a java class, and a static method on the class is called,
163;; otherwise a regular method is called.
164
165(defun invoke (method object &rest args)
166  (invoke-restargs method object args))
167
168(defun invoke-restargs (method object args &optional (raw? nil))
169  (let* ((object-as-class-name 
170          (if (symbolp object) (maybe-resolve-class-against-imports object)))
171         (object-as-class 
172          (if object-as-class-name (find-java-class object-as-class-name))))
173    (if (eq method 'new)
174        (apply #'jnew (or object-as-class-name object) args)
175        (if raw?
176            (if (symbolp object)
177                (apply #'jstatic-raw method object-as-class  args)
178                (apply #'jcall-raw method object  args))
179            (if (symbolp object)
180                (apply #'jstatic method object-as-class args)
181                (apply #'jcall method object args))))))
182
183(defconstant +set-accessible+ 
184  (jmethod "java.lang.reflect.AccessibleObject" "setAccessible" "boolean"))
185
186(defun invoke-find-method (method object args)
187  (let ((result 
188         (if (symbolp object)
189                ;;; static method
190             (apply #'jmethod (lookup-class-name object) 
191                    method (mapcar #'jobject-class args))
192                  ;;; instance method
193             (apply #'jresolve-method 
194                    method object args))))
195    (jcall +set-accessible+ result +true+)
196    result))
197
198;; This is the reader macro for java methods. it translates the method
199;; into a lambda form that calls invoke. Which is nice because you
200;; can, e.g. do this: (mapcar #"toString" list-of-java-objects). The reader
201;; macro takes one arg. If 0, then jstatic-raw is called, so that abcl doesn't
202;; automagically convert the returned java object into a lisp object. So
203;; #0"toString" returns a java.lang.String object, where as #"toString" returns
204;; a regular Lisp string as ABCL converts the Java string to a Lisp string.
205
206(eval-when (:compile-toplevel :load-toplevel :execute)
207  (defun read-invoke (stream char arg) 
208    (if (eql arg 1)
209  (progn (require 'javaparser)
210         (read-sharp-java-expression stream))
211  (progn
212    (unread-char char stream)
213    (let ((name (read stream)))
214      (if (or (find #\. name) (find #\{ name))
215    (jss-transform-to-field name)
216    (let ((object-var (gensym))
217          (args-var (gensym)))
218      `(lambda (,object-var &rest ,args-var) 
219         (invoke-restargs ,name  ,object-var ,args-var ,(eql arg 0)))))))))
220  (set-dispatch-macro-character #\# #\" 'read-invoke))
221
222(defmacro with-constant-signature (fname-jname-pairs &body body)
223  "Expand all references to FNAME-JNAME-PAIRS in BODY into static function calls promising that the same function bound in the FNAME-JNAME-PAIRS will be invoked with the same argument signature.
224
225FNAME-JNAME-PAIRS is a list of (symbol function &optional raw)
226elements where symbol will be the symbol bound to the method named by
227the string function.  If the optional parameter raw is non-nil, the
228result will be the raw JVM object, uncoerced by the usual conventions.
229
230Use this macro if you are making a lot of calls and
231want to avoid the overhead of the dynamic dispatch."
232
233  (if (null fname-jname-pairs)
234      `(progn ,@body)
235      (destructuring-bind ((fname jname &optional raw) &rest ignore) fname-jname-pairs
236        (declare (ignore ignore))
237        (let ((varname (gensym)))
238          `(let ((,varname nil))
239             (macrolet ((,fname (&rest args)
240                          `(if ,',varname
241                               (if ,',raw
242                                   (jcall-raw ,',varname ,@args)
243                                   (jcall ,',varname ,@args))
244                               (progn
245                                 (setq ,',varname (invoke-find-method ,',jname ,(car args) (list ,@(rest args))))
246                                 (if ,',raw
247                                     (jcall-raw ,',varname ,@args)
248                                     (jcall ,',varname ,@args))))))
249               (with-constant-signature ,(cdr fname-jname-pairs)
250                 ,@body)))))))
251
252(defun lookup-class-name (name &key
253                                 (table *class-name-to-full-case-insensitive*)
254                                 (muffle-warning nil)
255                                 (return-ambiguous nil))
256  (setq name (string name))
257  (let* (;; cant (last-name-pattern (#"compile" '|java.util.regex.Pattern| ".*?([^.]*)$"))
258         ;; reason: bootstrap - the class name would have to be looked up...
259         (last-name-pattern (load-time-value (jstatic (jmethod "java.util.regex.Pattern" "compile"
260                                                               (jclass "java.lang.String"))
261                                                      (jclass "java.util.regex.Pattern") 
262                                                      ".*?([^.]*)$")))
263         (last-name 
264          (let ((matcher (#0"matcher" last-name-pattern name)))
265            (#"matches" matcher)
266            (#"group" matcher 1))))
267    (let* ((bucket (gethash last-name *class-name-to-full-case-insensitive*))
268           (bucket-length (length bucket)))
269      (or (find name bucket :test 'equalp)
270          (flet ((matches-end (end full test)
271                   (= (+ (or (search end full :from-end t :test test) -10)
272                         (length end))
273                      (length full)))
274                 (ambiguous (choices)
275       (if return-ambiguous 
276           (return-from lookup-class-name choices)
277           (error "Ambiguous class name: ~a can be ~{~a~^, ~}" name choices))))
278            (if (zerop bucket-length)
279    (progn (unless muffle-warning (warn "can't find class named ~a" name)) nil)
280                (let ((matches (loop for el in bucket when (matches-end name el 'char=) collect el)))
281                  (if (= (length matches) 1)
282                      (car matches)
283                      (if (= (length matches) 0)
284                          (let ((matches (loop for el in bucket when (matches-end name el 'char-equal) collect el)))
285                            (if (= (length matches) 1)
286                                (car matches)
287                                (if (= (length matches) 0)
288            (progn (unless muffle-warning (warn "can't find class named ~a" name)) nil)
289                                    (ambiguous matches))))
290                          (ambiguous matches))))))))))
291
292(defun get-all-jar-classnames (jar-file-name)
293  (let* ((jar (jnew (jconstructor "java.util.jar.JarFile" (jclass "java.lang.String")) (namestring (truename jar-file-name))))
294         (entries (#"entries" jar)))
295    (with-constant-signature ((matcher "matcher" t) (substring "substring")
296                              (jreplace "replace" t) (jlength "length")
297                              (matches "matches") (getname "getName" t)
298                              (next "nextElement" t) (hasmore "hasMoreElements")
299                              (group "group"))
300      (loop while (hasmore entries)
301         for name =  (getname (next entries))
302         with class-pattern = (jstatic "compile" "java.util.regex.Pattern" ".*\\.class$")
303         with name-pattern = (jstatic "compile" "java.util.regex.Pattern" ".*?([^.]*)$")
304         when (matches (matcher class-pattern name))
305         collect
306           (let* ((fullname (substring (jreplace name #\/ #\.) 0 (- (jlength name) 6)))
307                  (matcher (matcher name-pattern fullname))
308                  (name (progn (matches matcher) (group matcher 1))))
309             (cons name fullname))
310           ))))
311
312(defun jar-import (file)
313  "Import all the Java classes contained in the pathname FILE into the JSS dynamic lookup cache."
314  (when (probe-file file)
315    (loop for (name . full-class-name) in (get-all-jar-classnames file)
316       do 
317         (pushnew full-class-name (gethash name *class-name-to-full-case-insensitive*) 
318                  :test 'equal))))
319
320(defun new (class-name &rest args)
321  "Invoke the Java constructor for CLASS-NAME with ARGS.
322
323CLASS-NAME may either be a symbol or a string according to the usual JSS conventions."
324  (invoke-restargs 'new class-name args))
325
326(defvar *running-in-osgi* (ignore-errors (jclass "org.osgi.framework.BundleActivator")))
327
328(define-condition no-such-java-field (error)
329  ((field-name
330    :initarg :field-name
331    :reader field-name
332    )
333   (object
334    :initarg :object
335    :reader object
336    ))
337  (:report (lambda (c stream)
338             (format stream "Unable to find a FIELD named ~a for ~a"
339                     (field-name c) (object c))))
340  )
341
342(defun get-java-field (object field &optional (try-harder *running-in-osgi*))
343  "Get the value of the FIELD contained in OBJECT.
344If OBJECT is a symbol it names a dot qualified static FIELD."
345  (if try-harder
346      (let* ((class (if (symbolp object)
347                        (setq object (find-java-class object))
348                        (if (equal "java.lang.Class" (jclass-name (jobject-class object)))
349                            object
350                            (jobject-class object))))
351             (jfield (if (java-object-p field)
352                         field
353                         (or (find-declared-field field class)
354                             (error 'no-such-java-field :field-name field :object object)))))
355        (#"setAccessible" jfield +true+)
356        (values (#"get" jfield object) jfield))
357      (if (symbolp object)
358          (let ((class (find-java-class object)))
359            (jfield class field))
360          (jfield field object))))
361
362(defun find-declared-field (field class)
363  "Return a FIELD object corresponding to the definition of FIELD
364\(a string\) visible at CLASS. *Not* restricted to public classes, and checks
365all superclasses of CLASS.
366   Returns NIL if no field object is found."
367  (loop while class
368     for field-obj = (get-declared-field class field)
369     if field-obj
370     do (return-from find-declared-field field-obj)
371     else
372     do (setf class (jclass-superclass class)))
373  nil)
374
375(defun get-declared-field (class fieldname)
376  (find fieldname (#"getDeclaredFields" class)
377        :key 'jfield-name :test 'equal))
378
379;; TODO use #"getSuperclass" and #"getInterfaces" to see whether there
380;; are fields in superclasses that we might set
381(defun set-java-field (object field value &optional (try-harder *running-in-osgi*))
382  "Set the FIELD of OBJECT to VALUE.
383If OBJECT is a symbol, it names a dot qualified Java class to look for
384a static FIELD.  If OBJECT is an instance of java:java-object, the
385associated is used to look up the static FIELD."
386  (if try-harder
387      (let* ((class (if (symbolp object)
388                        (setq object (find-java-class object))
389                        (if (equal "java.lang.Class" (jclass-name (jobject-class object)) )
390                            object
391                            (jobject-class object))))
392             (jfield (if (java-object-p field)
393                         field
394                         (or (find-declared-field field class)
395                             (error 'no-such-java-field :field-name field :object object)))))
396        (#"setAccessible" jfield +true+)
397        (values (#"set" jfield object value) jfield))
398      (if (symbolp object)
399          (let ((class (find-java-class object)))
400            (setf (jfield (#"getName" class) field) value))
401          (if (typep object 'java-object)
402              (setf (jfield (jclass-of object) field) value)
403              (setf (jfield object field) value)))))
404
405(defun (setf get-java-field) (value object field &optional (try-harder *running-in-osgi*))
406  (set-java-field object field value try-harder))
407
408
409(defconstant +for-name+ 
410  (jmethod "java.lang.Class" "forName" "java.lang.String" "boolean" "java.lang.ClassLoader"))
411
412(defun find-java-class (name)
413  (or (jstatic +for-name+ "java.lang.Class" 
414               (maybe-resolve-class-against-imports name) +true+ java::*classloader*)
415      (ignore-errors (jclass (maybe-resolve-class-against-imports name)))))
416
417(defmethod print-object ((obj (jclass "java.lang.Class")) stream) 
418  (print-unreadable-object (obj stream :identity nil)
419    (format stream "java class ~a" (jclass-name obj))))
420
421(defmethod print-object ((obj (jclass "java.lang.reflect.Method")) stream) 
422  (print-unreadable-object (obj stream :identity nil)
423    (format stream "method ~a" (#"toString" obj))))
424
425(defun do-auto-imports ()
426  (labels ((expand-paths (cp)
427             (loop :for s :in cp
428                :appending (loop :for entry 
429                              :in (let ((p (pathname s)))
430                                    (if (wild-pathname-p p)
431                                        (directory p)
432                                        (list p)))
433                              :collecting entry)))
434           (import-classpath (cp)
435             (mapcar 
436              (lambda (p) 
437                (when *load-verbose*
438                  (format t ";; Importing ~A~%" p))
439                (cond 
440                  ((file-directory-p p) )
441                  ((equal (pathname-type p) "jar")
442                   (jar-import (merge-pathnames p
443                                                (format nil "~a/" (jstatic "getProperty" "java.lang.System" "user.dir")))))))
444              cp))
445           (split-classpath (cp)
446             (coerce 
447              (jcall "split" cp 
448                     (string (jfield (jclass "java.io.File") "pathSeparatorChar")))
449              'cons))
450           (do-imports (cp)
451             (import-classpath (expand-paths (split-classpath cp)))))
452    (do-imports (jcall "getClassPath" (jstatic "getRuntimeMXBean" '|java.lang.management.ManagementFactory|)))
453    (do-imports (jcall "getBootClassPath" (jstatic "getRuntimeMXBean" '|java.lang.management.ManagementFactory|)))))
454
455(eval-when (:load-toplevel :execute)
456  (when *do-auto-imports* 
457    (do-auto-imports)))
458
459(defun japropos (string)
460  "Output the names of all Java class names loaded in the current process which match STRING.."
461  (setq string (string string))
462  (let ((matches nil))
463    (maphash (lambda(key value) 
464               (declare (ignore key))
465               (loop for class in value
466                  when (search string class :test 'string-equal)
467                  do (pushnew (list class "Java Class") matches :test 'equal)))
468             *class-name-to-full-case-insensitive*)
469    (loop for (match type) in (sort matches 'string-lessp :key 'car)
470       do (format t "~a: ~a~%" match type))
471    ))
472
473(defun jclass-method-names (class &optional full)
474  (if (java-object-p class)
475      (if (equal (jclass-name (jobject-class class)) "java.lang.Class")
476          (setq class (jclass-name class))
477          (setq class (jclass-name (jobject-class class)))))
478  (union
479   (remove-duplicates (map 'list (if full #"toString" 'jmethod-name) (#"getMethods" (find-java-class class))) :test 'equal)
480   (ignore-errors (remove-duplicates (map 'list (if full #"toString" 'jmethod-name) (#"getConstructors" (find-java-class class))) :test 'equal))))
481
482(defun java-class-method-names (class &optional stream)
483  "Return a list of the public methods encapsulated by the JVM CLASS.
484
485If STREAM non-nil, output a verbose description to the named output stream.
486
487CLASS may either be a string naming a fully qualified JVM class in dot
488notation, or a symbol resolved against all class entries in the
489current classpath."
490  (if stream
491      (dolist (method (jclass-method-names class t))
492        (format stream "~a~%" method))
493      (jclass-method-names class)))
494
495(setf (symbol-function 'jcmn) #'java-class-method-names)
496
497(defun path-to-class (classname)
498  (let ((full (lookup-class-name classname)))
499    (#"toString" 
500     (#"getResource" 
501      (find-java-class full)
502      (concatenate 'string "/" (substitute #\/ #\. full) ".class")))))
503
504;; http://www.javaworld.com/javaworld/javaqa/2003-07/02-qa-0725-classsrc2.html
505
506(defun all-loaded-classes ()
507  (let ((classes-field 
508         (find "classes" (#"getDeclaredFields" (jclass "java.lang.ClassLoader"))
509               :key #"getName" :test 'equal)))
510    (#"setAccessible" classes-field +true+)
511    (loop for classloader in (mapcar #'first (dump-classpath))
512       append
513         (loop with classesv = (#"get" classes-field classloader)
514            for i below (#"size" classesv)
515            collect (#"getName" (#"elementAt" classesv i)))
516       append
517         (loop with classesv = (#"get" classes-field (#"getParent" classloader))
518            for i below (#"size" classesv)
519            collect (#"getName" (#"elementAt" classesv i))))))
520
521(defun get-dynamic-class-path ()
522  (rest 
523   (find-if (lambda (loader) 
524              (string= "org.armedbear.lisp.JavaClassLoader"
525                       (jclass-name (jobject-class loader))))
526            (dump-classpath)
527            :key #'car)))
528
529(defun java-gc ()
530  (#"gc" (#"getRuntime" 'java.lang.runtime))
531  (#"runFinalization" (#"getRuntime" 'java.lang.runtime))
532  (#"gc" (#"getRuntime" 'java.lang.runtime))
533  (java-room))
534
535(defun java-room ()
536  (let ((rt (#"getRuntime" 'java.lang.runtime)))
537    (values (- (#"totalMemory" rt) (#"freeMemory" rt))
538            (#"totalMemory" rt)
539            (#"freeMemory" rt)
540            (list :used :total :free))))
541
542(defun verbose-gc (&optional (new-value nil new-value-supplied))
543  (if new-value-supplied
544      (progn (#"setVerbose" (#"getMemoryMXBean"  'java.lang.management.ManagementFactory) new-value) new-value)
545      (#"isVerbose" (#"getMemoryMXBean"  'java.lang.management.ManagementFactory))))
546
547(defun all-jars-below (directory) 
548  (loop with q = (system:list-directory directory) 
549     while q for top = (pop q)
550     if (null (pathname-name top)) do (setq q (append q (all-jars-below top))) 
551     if (equal (pathname-type top) "jar") collect top))
552
553(defun all-classfiles-below (directory) 
554  (loop with q = (system:list-directory directory) 
555     while q for top = (pop q)
556     if (null (pathname-name top)) do (setq q (append q (all-classfiles-below top ))) 
557     if (equal (pathname-type top) "class")
558     collect top
559       ))
560
561(defun all-classes-below-directory (directory)
562  (loop for file in (all-classfiles-below directory) collect
563       (format nil "~{~a.~}~a"
564               (subseq (pathname-directory file) (length (pathname-directory directory)))
565               (pathname-name file))
566       ))
567
568(defun classfiles-import (directory)
569  "Load all Java classes recursively contained under DIRECTORY in the current process."
570  (setq directory (truename directory))
571  (loop for full-class-name in (all-classes-below-directory directory)
572     for name = (#"replaceAll" full-class-name "^.*\\." "")
573     do
574       (pushnew full-class-name (gethash name *class-name-to-full-case-insensitive*) 
575                :test 'equal)))
576
577(defun jclass-all-interfaces (class)
578  "Return a list of interfaces the class implements"
579  (unless (java-object-p class)
580    (setq class (find-java-class class)))
581  (loop for aclass = class then (#"getSuperclass" aclass)
582     while aclass
583     append (coerce (#"getInterfaces" aclass) 'list)))
584
585(defun safely (f name)
586  (let ((fname (gensym)))
587    (compile fname
588             `(lambda(&rest args)
589                (with-simple-restart (top-level
590                                      "Return from lisp method implementation for ~a." ,name)
591                  (apply ,f args))))
592    (symbol-function fname)))
593
594(defun jdelegating-interface-implementation (interface dispatch-to &rest method-names-and-defs)
595  "Creates and returns an implementation of a Java interface with
596   methods calling Lisp closures as given in METHOD-NAMES-AND-DEFS.
597
598   INTERFACE is an interface
599
600   DISPATCH-TO is an existing Java object
601
602   METHOD-NAMES-AND-DEFS is an alternating list of method names
603   (strings) and method definitions (closures).
604
605   For missing methods, a dummy implementation is provided that
606   calls the method on DISPATCH-TO."
607  (let ((implemented-methods
608         (loop for m in method-names-and-defs
609            for i from 0
610            if (evenp i) 
611            do (assert (stringp m) (m) "Method names must be strings: ~s" m) and collect m
612            else
613            do (assert (or (symbolp m) (functionp m)) (m) "Methods must be function designators: ~s" m))))
614    (let ((safe-method-names-and-defs 
615           (loop for (name function) on method-names-and-defs by #'cddr
616              collect name collect (safely function name))))
617      (loop for method across
618           (jclass-methods interface :declared nil :public t)
619         for method-name = (jmethod-name method)
620         when (not (member method-name implemented-methods :test #'string=))
621         do
622           (let* ((def  `(lambda
623                             (&rest args)
624                           (invoke-restargs ,(jmethod-name method) ,dispatch-to args t)
625                           )))
626             (push (coerce def 'function) safe-method-names-and-defs)
627             (push method-name safe-method-names-and-defs)))
628      (apply #'java::%jnew-proxy  interface safe-method-names-and-defs))))
629
630
Note: See TracBrowser for help on using the repository browser.