1 ;; Common Lisp bindings for GTK+ v2.0
2 ;; Copyright (C) 2000 Espen S. Johnsen <esj@stud.cs.uit.no>
4 ;; This library is free software; you can redistribute it and/or
5 ;; modify it under the terms of the GNU Lesser General Public
6 ;; License as published by the Free Software Foundation; either
7 ;; version 2 of the License, or (at your option) any later version.
9 ;; This library is distributed in the hope that it will be useful,
10 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 ;; Lesser General Public License for more details.
14 ;; You should have received a copy of the GNU Lesser General Public
15 ;; License along with this library; if not, write to the Free Software
16 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 ;; $Id: proxy.lisp,v 1.16 2004/12/19 23:33:57 espen Exp $
22 ;;;; Superclass for all metaclasses implementing some sort of virtual slots
24 (eval-when (:compile-toplevel :load-toplevel :execute)
25 (defclass virtual-slots-class (standard-class)
28 (defclass direct-virtual-slot-definition (standard-direct-slot-definition)
29 ((setter :reader slot-definition-setter :initarg :setter)
30 (getter :reader slot-definition-getter :initarg :getter)
31 (unbound :reader slot-definition-unbound :initarg :unbound)
32 (boundp :reader slot-definition-boundp :initarg :boundp)))
34 (defclass effective-virtual-slot-definition (standard-effective-slot-definition)
35 ((setter :reader slot-definition-setter :initarg :setter)
36 (getter :reader slot-definition-getter :initarg :getter)
37 (unbound :reader slot-definition-unbound :initarg :unbound)
38 (boundp :reader slot-definition-boundp :initarg :boundp)))
40 (defvar *unbound-marker* (gensym "UNBOUND-MARKER-"))
42 (defun most-specific-slot-value (instances slot &optional
43 (default *unbound-marker*))
44 (let ((object (find-if
46 (and (slot-exists-p ob slot) (slot-boundp ob slot)))
49 (slot-value object slot)
54 (defmethod direct-slot-definition-class ((class virtual-slots-class) &rest initargs)
55 (if (eq (getf initargs :allocation) :virtual)
56 (find-class 'direct-virtual-slot-definition)
59 (defmethod effective-slot-definition-class ((class virtual-slots-class) &rest initargs)
60 (if (eq (getf initargs :allocation) :virtual)
61 (find-class 'effective-virtual-slot-definition)
65 (defmethod initialize-internal-slot-functions ((slotd effective-virtual-slot-definition))
66 (if (not (slot-boundp slotd 'getter))
68 (slot-value slotd 'reader-function)
70 (declare (ignore object))
71 (error "Can't read slot: ~A" (slot-definition-name slotd)))
72 (slot-value slotd 'boundp-function)
73 #'(lambda (object) (declare (ignore object)) nil))
75 (let ((getter-function
76 (let ((getter (slot-value slotd 'getter)))
81 (funcall getter object)))
84 (setf (slot-value slotd 'reader-function)
89 (slot-definition-type slotd) 'pointer)))
90 (funcall reader (proxy-location object))))))))))
93 (slot-value slotd 'boundp-function)
96 (not (slot-boundp slotd 'unbound))
97 (not (slot-boundp slotd 'boundp)))
98 #'(lambda (object) (declare (ignore object)) t))
99 ((slot-boundp slotd 'unbound)
100 (let ((unbound-value (slot-value slotd 'unbound)))
102 (not (eq (funcall getter-function object) unbound-value)))))
103 ((let ((boundp (slot-value slotd 'boundp)))
106 (symbol #'(lambda (object)
107 (funcall boundp object)))
108 (string (let ((reader ()))
113 (slot-definition-type slotd) 'pointer)))
114 (funcall reader (proxy-location object))))))))))
117 (slot-value slotd 'reader-function)
119 ((slot-boundp slotd 'unbound)
120 (let ((unbound (slot-value slotd 'unbound))
121 (slot-name (slot-definition-name slotd)))
123 (let ((value (funcall getter-function object)))
124 (if (eq value unbound)
125 (slot-unbound (class-of object) object slot-name)
127 ((slot-boundp slotd 'boundp)
128 (let ((boundp-function (slot-value slotd 'boundp-function)))
131 (funcall boundp-function object)
132 (funcall getter-function object)))))
133 (getter-function)))))
136 (slot-value slotd 'writer-function)
137 (if (not (slot-boundp slotd 'setter))
139 (declare (ignore object))
140 (error "Can't set slot: ~A" (slot-definition-name slotd)))
141 (with-slots (setter) slotd
145 #'(lambda (value object)
146 (funcall (fdefinition setter) value object)))
150 (slot-value slotd 'writer-function)
151 #'(lambda (value object)
154 (mkbinding setter 'nil 'pointer
155 (slot-definition-type slotd))))
156 (funcall writer (proxy-location object) value)))))))))
158 (initialize-internal-slot-gfs (slot-definition-name slotd)))
162 (defmethod compute-slot-accessor-info ((slotd effective-virtual-slot-definition) type gf)
165 (defmethod compute-effective-slot-definition-initargs ((class virtual-slots-class) direct-slotds)
166 (if (typep (first direct-slotds) 'direct-virtual-slot-definition)
168 (let ((getter (most-specific-slot-value direct-slotds 'getter)))
169 (unless (eq getter *unbound-marker*)
170 (setf (getf initargs :getter) getter)))
171 (let ((setter (most-specific-slot-value direct-slotds 'setter)))
172 (unless (eq setter *unbound-marker*)
173 (setf (getf initargs :setter) setter)))
174 (let ((unbound (most-specific-slot-value direct-slotds 'unbound)))
175 (unless (eq unbound *unbound-marker*)
176 (setf (getf initargs :unbound) unbound)))
177 (let ((boundp (most-specific-slot-value direct-slotds 'boundp)))
178 (unless (eq boundp *unbound-marker*)
179 (setf (getf initargs :boundp) boundp)))
180 (nconc initargs (call-next-method)))
184 (defmethod slot-value-using-class
185 ((class virtual-slots-class) (object standard-object)
186 (slotd effective-virtual-slot-definition))
187 (if (funcall (slot-value slotd 'boundp-function) object)
188 (funcall (slot-value slotd 'reader-function) object)
189 (slot-unbound class object (slot-definition-name slotd))))
191 (defmethod slot-boundp-using-class
192 ((class virtual-slots-class) (object standard-object)
193 (slotd effective-virtual-slot-definition))
194 (funcall (slot-value slotd 'boundp-function) object))
196 (defmethod (setf slot-value-using-class)
197 (value (class virtual-slots-class) (object standard-object)
198 (slotd effective-virtual-slot-definition))
199 (funcall (slot-value slotd 'writer-function) value object))
202 (defmethod validate-superclass
203 ((class virtual-slots-class) (super standard-class))
209 (internal *instance-cache*)
210 (defvar *instance-cache* (make-hash-table :test #'eql))
212 (defun cache-instance (instance)
214 (gethash (system:sap-int (proxy-location instance)) *instance-cache*)
215 (ext:make-weak-pointer instance)))
217 (defun find-cached-instance (location)
218 (let ((ref (gethash (system:sap-int location) *instance-cache*)))
220 (ext:weak-pointer-value ref))))
222 (defun instance-cached-p (location)
223 (gethash (system:sap-int location) *instance-cache*))
225 (defun remove-cached-instance (location)
226 (remhash (system:sap-int location) *instance-cache*))
229 (defun cached-instances ()
230 (let ((instances ()))
231 (maphash #'(lambda (location ref)
232 (declare (ignore location))
233 (push (ext:weak-pointer-value ref) instances))
239 ;;;; Proxy for alien instances
242 ((location :reader proxy-location :type system-area-pointer)))
244 (defgeneric initialize-proxy (object &rest initargs))
245 (defgeneric instance-finalizer (object))
246 (defgeneric reference-foreign (class location))
247 (defgeneric unreference-foreign (class location))
249 (defmethod reference-foreign ((name symbol) location)
250 (reference-foreign (find-class name) location))
252 (defmethod unreference-foreign ((name symbol) location)
253 (unreference-foreign (find-class name) location))
255 (defmethod unreference-foreign :around ((class class) location)
256 (unless (null-pointer-p location)
257 ;; (format t "Unreferencing ~A at ~A" (class-name class) location)
258 ;; (finish-output *standard-output*)
260 ;; (write-line " done")
261 ;; (finish-output *standard-output*)
264 (defmethod print-object ((instance proxy) stream)
265 (print-unreadable-object (instance stream :type t :identity nil)
266 (when (slot-boundp instance 'location)
267 (format stream "at 0x~X" (sap-int (proxy-location instance))))))
269 (defmethod initialize-instance :around ((instance proxy) &key location)
271 (setf (slot-value instance 'location) location)
273 (cache-instance instance)
274 (ext:finalize instance (instance-finalizer instance))
277 (defmethod instance-finalizer ((instance proxy))
278 (let ((location (proxy-location instance))
279 (class (class-of instance)))
280 ;; (unless (find-method #'unreference-foreign nil (list (class-of class) t) nil)
281 ;; (error "No matching method for UNREFERENCE-INSTANCE when called with class ~A" class))
283 (remove-cached-instance location)
284 (unreference-foreign class location))))
287 ;;;; Metaclass used for subclasses of proxy
289 (eval-when (:compile-toplevel :load-toplevel :execute)
290 (defclass proxy-class (virtual-slots-class)
291 ((size :reader proxy-instance-size)))
293 (defclass direct-alien-slot-definition (direct-virtual-slot-definition)
294 ((allocation :initform :alien)
295 (offset :reader slot-definition-offset :initarg :offset)))
297 (defclass effective-alien-slot-definition (effective-virtual-slot-definition)
298 ((offset :reader slot-definition-offset :initarg :offset)))
301 (defmethod most-specific-proxy-superclass ((class proxy-class))
304 (subtypep (class-name class) 'proxy))
305 (cdr (compute-class-precedence-list class))))
307 (defmethod direct-proxy-superclass ((class proxy-class))
310 (subtypep (class-name class) 'proxy))
311 (class-direct-superclasses class)))
313 (defmethod shared-initialize ((class proxy-class) names &key size)
316 (size (setf (slot-value class 'size) (first size)))
317 ((slot-boundp class 'size) (slot-makunbound class 'size))))
319 (defmethod direct-slot-definition-class ((class proxy-class) &rest initargs)
320 (case (getf initargs :allocation)
321 ((nil :alien) (find-class 'direct-alien-slot-definition))
322 (t (call-next-method))))
324 (defmethod effective-slot-definition-class ((class proxy-class) &rest initargs)
325 (case (getf initargs :allocation)
326 (:alien (find-class 'effective-alien-slot-definition))
327 (t (call-next-method))))
330 (defmethod compute-effective-slot-definition-initargs ((class proxy-class) direct-slotds)
331 (if (eq (most-specific-slot-value direct-slotds 'allocation) :alien)
333 (list :offset (most-specific-slot-value direct-slotds 'offset))
338 (defmethod initialize-internal-slot-functions ((slotd effective-alien-slot-definition))
339 (with-slots (offset) slotd
340 (let ((type (slot-definition-type slotd)))
341 (unless (slot-boundp slotd 'getter)
342 (let ((reader (reader-function type)))
344 (slot-value slotd 'getter)
346 (funcall reader (proxy-location object) offset)))))
348 (unless (slot-boundp slotd 'setter)
349 (let ((writer (writer-function type))
350 (destroy (destroy-function type)))
352 (slot-value slotd 'setter)
353 #'(lambda (value object)
354 (let ((location (proxy-location object)))
355 (funcall destroy location offset) ; destroy old value
356 (funcall writer value location offset))))))))
361 ;; TODO: call some C code to detect this a compile time
362 (defconstant +struct-alignmen+ 4)
364 (defmethod compute-slots ((class proxy-class))
366 with offset = (let ((size-of-super-classes
368 (most-specific-proxy-superclass class))))
369 (+ size-of-super-classes
370 (mod size-of-super-classes +struct-alignmen+)))
372 for slotd in (class-direct-slots class)
373 when (eq (slot-definition-allocation slotd) :alien)
374 do (if (not (slot-boundp slotd 'offset))
375 (setf (slot-value slotd 'offset) offset)
376 (setq offset (slot-value slotd 'offset)))
378 (incf offset (size-of (slot-definition-type slotd)))
379 (incf offset (mod offset +struct-alignmen+))
380 (setq size (max size offset))
382 finally (unless (slot-boundp class 'size)
383 (setf (slot-value class 'size) size)))
387 (defmethod validate-superclass ((class proxy-class) (super standard-class))
388 (subtypep (class-name super) 'proxy))
390 (defmethod proxy-instance-size (class)
391 (declare (ignore class))
395 (defmethod alien-type ((class proxy-class) &rest args)
396 (declare (ignore class args))
397 (alien-type 'pointer))
399 (defmethod size-of ((class proxy-class) &rest args)
400 (declare (ignore class args))
403 (defmethod from-alien-form (location (class proxy-class) &rest args)
404 (declare (ignore args))
405 `(ensure-proxy-instance ',(class-name class) ,location))
407 (defmethod from-alien-function ((class proxy-class) &rest args)
408 (declare (ignore args))
410 (ensure-proxy-instance class location)))
412 (defmethod to-alien-form (instance (class proxy-class) &rest args)
413 (declare (ignore class args))
414 `(proxy-location ,instance))
416 (defmethod to-alien-function ((class proxy-class) &rest args)
417 (declare (ignore class args))
420 (defmethod copy-from-alien-form (location (class proxy-class) &rest args)
421 (declare (ignore args))
422 (let ((class-name (class-name class)))
423 `(ensure-proxy-instance ',class-name
424 (reference-foreign ',class-name ,location))))
426 (defmethod copy-from-alien-function ((class proxy-class) &rest args)
427 (declare (ignore args))
429 (ensure-proxy-instance class (reference-foreign class location))))
431 (defmethod copy-to-alien-form (instance (class proxy-class) &rest args)
432 (declare (ignore args))
433 `(reference-foreign ',(class-name class) (proxy-location ,instance)))
435 (defmethod copy-to-alien-function ((class proxy-class) &rest args)
436 (declare (ignore class args))
438 (reference-foreign class (proxy-location instance))))
440 (defmethod writer-function ((class proxy-class) &rest args)
441 (declare (ignore args))
442 #'(lambda (instance location &optional (offset 0))
443 (assert (null-pointer-p (sap-ref-sap location offset)))
445 (sap-ref-sap location offset)
446 (reference-foreign class (proxy-location instance)))))
448 (defmethod reader-function ((class proxy-class) &rest args)
449 (declare (ignore args))
450 #'(lambda (location &optional (offset 0))
451 (let ((instance (sap-ref-sap location offset)))
452 (unless (null-pointer-p instance)
453 (ensure-proxy-instance class (reference-foreign class instance))))))
455 (defmethod destroy-function ((class proxy-class) &rest args)
456 (declare (ignore args))
457 #'(lambda (location &optional (offset 0))
458 (unreference-foreign class (sap-ref-sap location offset))))
461 (defgeneric ensure-proxy-instance (class location)
462 (:documentation "Returns a proxy object representing the foreign object at the give location."))
464 (defmethod ensure-proxy-instance :around (class location)
465 (unless (null-pointer-p location)
467 (find-cached-instance location)
468 (call-next-method))))
470 (defmethod ensure-proxy-instance ((class symbol) location)
471 (ensure-proxy-instance (find-class class) location))
473 (defmethod ensure-proxy-instance ((class proxy-class) location)
474 (make-instance class :location location))
477 ;;;; Superclasses for wrapping of C structures
479 (defclass struct (proxy)
481 (:metaclass proxy-class))
483 (defmethod initialize-instance ((struct struct) &rest initargs)
484 (declare (ignore initargs))
485 (unless (slot-boundp struct 'location)
486 (let ((size (proxy-instance-size (class-of struct))))
488 (error "~A has zero size" (class-of struct))
489 (setf (slot-value struct 'location) (allocate-memory size)))))
493 ;;;; Metaclasses used for subclasses of struct
495 (defclass struct-class (proxy-class)
498 (defmethod reference-foreign ((class struct-class) location)
499 (copy-memory location (proxy-instance-size class)))
501 (defmethod unreference-foreign ((class struct-class) location)
502 (deallocate-memory location))
505 (defclass static-struct-class (struct-class)
508 (defmethod reference-foreign ((class static-struct-class) location)
509 (declare (ignore class))
512 (defmethod unreference-foreign ((class static-struct-class) location)
513 (declare (ignore class location))