chiark / gitweb /
New toolbar API
[clg] / glib / proxy.lisp
CommitLineData
94f15c3c 1;; Common Lisp bindings for GTK+ v2.0
2;; Copyright (C) 2000 Espen S. Johnsen <esj@stud.cs.uit.no>
3;;
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.
8;;
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.
13;;
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
17
12b7df04 18;; $Id: proxy.lisp,v 1.17 2004-12-26 11:40:14 espen Exp $
94f15c3c 19
20(in-package "GLIB")
21
94f15c3c 22;;;; Superclass for all metaclasses implementing some sort of virtual slots
23
24(eval-when (:compile-toplevel :load-toplevel :execute)
9adccb27 25 (defclass virtual-slots-class (standard-class)
4d83a8a6 26 ())
94f15c3c 27
28 (defclass direct-virtual-slot-definition (standard-direct-slot-definition)
12d0437e 29 ((setter :reader slot-definition-setter :initarg :setter)
4d83a8a6 30 (getter :reader slot-definition-getter :initarg :getter)
eeda1c2d 31 (unbound :reader slot-definition-unbound :initarg :unbound)
4d83a8a6 32 (boundp :reader slot-definition-boundp :initarg :boundp)))
94f15c3c 33
4d83a8a6 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)
eeda1c2d 37 (unbound :reader slot-definition-unbound :initarg :unbound)
4d83a8a6 38 (boundp :reader slot-definition-boundp :initarg :boundp)))
eeda1c2d 39
40 (defvar *unbound-marker* (gensym "UNBOUND-MARKER-"))
4d83a8a6 41
eeda1c2d 42 (defun most-specific-slot-value (instances slot &optional
43 (default *unbound-marker*))
4d83a8a6 44 (let ((object (find-if
45 #'(lambda (ob)
46 (and (slot-exists-p ob slot) (slot-boundp ob slot)))
47 instances)))
48 (if object
49 (slot-value object slot)
9adccb27 50 default))))
4d83a8a6 51
94f15c3c 52
53
9adccb27 54(defmethod direct-slot-definition-class ((class virtual-slots-class) &rest initargs)
94f15c3c 55 (if (eq (getf initargs :allocation) :virtual)
56 (find-class 'direct-virtual-slot-definition)
57 (call-next-method)))
58
9adccb27 59(defmethod effective-slot-definition-class ((class virtual-slots-class) &rest initargs)
94f15c3c 60 (if (eq (getf initargs :allocation) :virtual)
61 (find-class 'effective-virtual-slot-definition)
62 (call-next-method)))
63
4d83a8a6 64
65(defmethod initialize-internal-slot-functions ((slotd effective-virtual-slot-definition))
eeda1c2d 66 (if (not (slot-boundp slotd 'getter))
67 (setf
4d83a8a6 68 (slot-value slotd 'reader-function)
eeda1c2d 69 #'(lambda (object)
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))
74
75 (let ((getter-function
76 (let ((getter (slot-value slotd 'getter)))
77 (etypecase getter
78 (function getter)
79 (symbol
80 #'(lambda (object)
81 (funcall getter object)))
82 (string
83 (let ((reader nil))
84 (setf (slot-value slotd 'reader-function)
85 #'(lambda (object)
86 (unless reader
12b7df04 87 (setq reader
88 (mkbinding getter
89 (slot-definition-type slotd) 'pointer)))
eeda1c2d 90 (funcall reader (proxy-location object))))))))))
91
4d83a8a6 92 (setf
eeda1c2d 93 (slot-value slotd 'boundp-function)
94 (cond
eeda1c2d 95 ((slot-boundp slotd 'unbound)
96 (let ((unbound-value (slot-value slotd 'unbound)))
12b7df04 97 #'(lambda (object)
98 (not (eq (funcall getter-function object) unbound-value)))))
99 ((slot-boundp slotd 'boundp)
100 (let ((boundp (slot-value slotd 'boundp)))
eeda1c2d 101 (etypecase boundp
102 (function boundp)
103 (symbol #'(lambda (object)
104 (funcall boundp object)))
105 (string (let ((reader ()))
106 #'(lambda (object)
107 (unless reader
108 (setq reader
109 (mkbinding boundp
110 (slot-definition-type slotd) 'pointer)))
12b7df04 111 (funcall reader (proxy-location object))))))))
112 ((multiple-value-bind (unbound-p unbound-value)
113 (unbound-value (slot-definition-type slotd))
114 (when unbound-p
115 #'(lambda (object)
116 (not (eq (funcall getter-function object) unbound-value))))))
117 (#'(lambda (object) (declare (ignore object)) t))))
eeda1c2d 118
119 (setf
120 (slot-value slotd 'reader-function)
121 (cond
122 ((slot-boundp slotd 'unbound)
123 (let ((unbound (slot-value slotd 'unbound))
124 (slot-name (slot-definition-name slotd)))
12b7df04 125 #'(lambda (object)
126 (let ((value (funcall getter-function object)))
127 (if (eq value unbound)
128 (slot-unbound (class-of object) object slot-name)
129 value)))))
eeda1c2d 130 ((slot-boundp slotd 'boundp)
131 (let ((boundp-function (slot-value slotd 'boundp-function)))
12b7df04 132 #'(lambda (object)
133 (and
134 (funcall boundp-function object)
135 (funcall getter-function object)))))
136 ((multiple-value-bind (unbound-p unbound-value)
137 (unbound-value (slot-definition-type slotd))
138 (let ((slot-name (slot-definition-name slotd)))
139 (when unbound-p
140 #'(lambda (object)
141 (let ((value (funcall getter-function object)))
142 (if (eq value unbound-value)
143 (slot-unbound (class-of object) object slot-name)
144 value)))))))
eeda1c2d 145 (getter-function)))))
146
147 (setf
148 (slot-value slotd 'writer-function)
149 (if (not (slot-boundp slotd 'setter))
150 #'(lambda (object)
151 (declare (ignore object))
152 (error "Can't set slot: ~A" (slot-definition-name slotd)))
153 (with-slots (setter) slotd
4d83a8a6 154 (etypecase setter
155 (function setter)
eeda1c2d 156 ((or symbol cons)
157 #'(lambda (value object)
158 (funcall (fdefinition setter) value object)))
7d1ddc9e 159 (string
eeda1c2d 160 (let ((writer ()))
161 (setf
162 (slot-value slotd 'writer-function)
163 #'(lambda (value object)
164 (unless writer
165 (setq writer
166 (mkbinding setter 'nil 'pointer
167 (slot-definition-type slotd))))
168 (funcall writer (proxy-location object) value)))))))))
169
4d83a8a6 170 (initialize-internal-slot-gfs (slot-definition-name slotd)))
171
172
173
eeda1c2d 174(defmethod compute-slot-accessor-info ((slotd effective-virtual-slot-definition) type gf)
4d83a8a6 175 nil)
176
9adccb27 177(defmethod compute-effective-slot-definition-initargs ((class virtual-slots-class) direct-slotds)
eeda1c2d 178 (if (typep (first direct-slotds) 'direct-virtual-slot-definition)
179 (let ((initargs ()))
180 (let ((getter (most-specific-slot-value direct-slotds 'getter)))
181 (unless (eq getter *unbound-marker*)
182 (setf (getf initargs :getter) getter)))
183 (let ((setter (most-specific-slot-value direct-slotds 'setter)))
184 (unless (eq setter *unbound-marker*)
185 (setf (getf initargs :setter) setter)))
186 (let ((unbound (most-specific-slot-value direct-slotds 'unbound)))
187 (unless (eq unbound *unbound-marker*)
188 (setf (getf initargs :unbound) unbound)))
189 (let ((boundp (most-specific-slot-value direct-slotds 'boundp)))
190 (unless (eq boundp *unbound-marker*)
191 (setf (getf initargs :boundp) boundp)))
192 (nconc initargs (call-next-method)))
4d83a8a6 193 (call-next-method)))
194
94f15c3c 195
94f15c3c 196(defmethod slot-value-using-class
9adccb27 197 ((class virtual-slots-class) (object standard-object)
94f15c3c 198 (slotd effective-virtual-slot-definition))
4d83a8a6 199 (if (funcall (slot-value slotd 'boundp-function) object)
200 (funcall (slot-value slotd 'reader-function) object)
201 (slot-unbound class object (slot-definition-name slotd))))
94f15c3c 202
94f15c3c 203(defmethod slot-boundp-using-class
9adccb27 204 ((class virtual-slots-class) (object standard-object)
94f15c3c 205 (slotd effective-virtual-slot-definition))
4d83a8a6 206 (funcall (slot-value slotd 'boundp-function) object))
207
208(defmethod (setf slot-value-using-class)
9adccb27 209 (value (class virtual-slots-class) (object standard-object)
94f15c3c 210 (slotd effective-virtual-slot-definition))
4d83a8a6 211 (funcall (slot-value slotd 'writer-function) value object))
212
213
94f15c3c 214(defmethod validate-superclass
9adccb27 215 ((class virtual-slots-class) (super standard-class))
94f15c3c 216 t)
217
218
219;;;; Proxy cache
220
221(internal *instance-cache*)
222(defvar *instance-cache* (make-hash-table :test #'eql))
223
224(defun cache-instance (instance)
225 (setf
226 (gethash (system:sap-int (proxy-location instance)) *instance-cache*)
227 (ext:make-weak-pointer instance)))
228
229(defun find-cached-instance (location)
230 (let ((ref (gethash (system:sap-int location) *instance-cache*)))
231 (when ref
232 (ext:weak-pointer-value ref))))
233
0f134a29 234(defun instance-cached-p (location)
235 (gethash (system:sap-int location) *instance-cache*))
236
94f15c3c 237(defun remove-cached-instance (location)
238 (remhash (system:sap-int location) *instance-cache*))
239
9adccb27 240;; For debuging
241(defun cached-instances ()
242 (let ((instances ()))
243 (maphash #'(lambda (location ref)
244 (declare (ignore location))
245 (push (ext:weak-pointer-value ref) instances))
246 *instance-cache*)
247 instances))
248
94f15c3c 249
250
251;;;; Proxy for alien instances
252
9adccb27 253(defclass proxy ()
254 ((location :reader proxy-location :type system-area-pointer)))
94f15c3c 255
9adccb27 256(defgeneric initialize-proxy (object &rest initargs))
257(defgeneric instance-finalizer (object))
258(defgeneric reference-foreign (class location))
259(defgeneric unreference-foreign (class location))
260
3b167652 261(defmethod reference-foreign ((name symbol) location)
262 (reference-foreign (find-class name) location))
263
264(defmethod unreference-foreign ((name symbol) location)
265 (unreference-foreign (find-class name) location))
266
9adccb27 267(defmethod unreference-foreign :around ((class class) location)
268 (unless (null-pointer-p location)
269;; (format t "Unreferencing ~A at ~A" (class-name class) location)
270;; (finish-output *standard-output*)
271 (call-next-method)
272;; (write-line " done")
273;; (finish-output *standard-output*)
274 ))
94f15c3c 275
0f134a29 276(defmethod print-object ((instance proxy) stream)
277 (print-unreadable-object (instance stream :type t :identity nil)
eeda1c2d 278 (when (slot-boundp instance 'location)
279 (format stream "at 0x~X" (sap-int (proxy-location instance))))))
94f15c3c 280
9adccb27 281(defmethod initialize-instance :around ((instance proxy) &key location)
282 (if location
283 (setf (slot-value instance 'location) location)
284 (call-next-method))
12d0437e 285 (cache-instance instance)
9adccb27 286 (ext:finalize instance (instance-finalizer instance))
287 instance)
94f15c3c 288
289(defmethod instance-finalizer ((instance proxy))
9adccb27 290 (let ((location (proxy-location instance))
291 (class (class-of instance)))
292;; (unless (find-method #'unreference-foreign nil (list (class-of class) t) nil)
293;; (error "No matching method for UNREFERENCE-INSTANCE when called with class ~A" class))
294 #'(lambda ()
1dbf4216 295 (remove-cached-instance location)
9adccb27 296 (unreference-foreign class location))))
12d0437e 297
94f15c3c 298
299;;;; Metaclass used for subclasses of proxy
300
301(eval-when (:compile-toplevel :load-toplevel :execute)
9adccb27 302 (defclass proxy-class (virtual-slots-class)
303 ((size :reader proxy-instance-size)))
94f15c3c 304
305 (defclass direct-alien-slot-definition (direct-virtual-slot-definition)
12d0437e 306 ((allocation :initform :alien)
307 (offset :reader slot-definition-offset :initarg :offset)))
94f15c3c 308
309 (defclass effective-alien-slot-definition (effective-virtual-slot-definition)
4d83a8a6 310 ((offset :reader slot-definition-offset :initarg :offset)))
12d0437e 311
94f15c3c 312
313 (defmethod most-specific-proxy-superclass ((class proxy-class))
314 (find-if
315 #'(lambda (class)
316 (subtypep (class-name class) 'proxy))
4d83a8a6 317 (cdr (compute-class-precedence-list class))))
318
12d0437e 319 (defmethod direct-proxy-superclass ((class proxy-class))
320 (find-if
321 #'(lambda (class)
322 (subtypep (class-name class) 'proxy))
4d83a8a6 323 (class-direct-superclasses class)))
324
eeda1c2d 325 (defmethod shared-initialize ((class proxy-class) names &key size)
94f15c3c 326 (call-next-method)
12d0437e 327 (cond
4d83a8a6 328 (size (setf (slot-value class 'size) (first size)))
9adccb27 329 ((slot-boundp class 'size) (slot-makunbound class 'size))))
4d83a8a6 330
331 (defmethod direct-slot-definition-class ((class proxy-class) &rest initargs)
94f15c3c 332 (case (getf initargs :allocation)
333 ((nil :alien) (find-class 'direct-alien-slot-definition))
94f15c3c 334 (t (call-next-method))))
4d83a8a6 335
336 (defmethod effective-slot-definition-class ((class proxy-class) &rest initargs)
94f15c3c 337 (case (getf initargs :allocation)
338 (:alien (find-class 'effective-alien-slot-definition))
94f15c3c 339 (t (call-next-method))))
340
4d83a8a6 341
342 (defmethod compute-effective-slot-definition-initargs ((class proxy-class) direct-slotds)
343 (if (eq (most-specific-slot-value direct-slotds 'allocation) :alien)
344 (nconc
345 (list :offset (most-specific-slot-value direct-slotds 'offset))
346 (call-next-method))
347 (call-next-method)))
348
349
350 (defmethod initialize-internal-slot-functions ((slotd effective-alien-slot-definition))
351 (with-slots (offset) slotd
9adccb27 352 (let ((type (slot-definition-type slotd)))
eeda1c2d 353 (unless (slot-boundp slotd 'getter)
9adccb27 354 (let ((reader (reader-function type)))
355 (setf
eeda1c2d 356 (slot-value slotd 'getter)
9adccb27 357 #'(lambda (object)
358 (funcall reader (proxy-location object) offset)))))
4d83a8a6 359
eeda1c2d 360 (unless (slot-boundp slotd 'setter)
9adccb27 361 (let ((writer (writer-function type))
362 (destroy (destroy-function type)))
363 (setf
eeda1c2d 364 (slot-value slotd 'setter)
9adccb27 365 #'(lambda (value object)
366 (let ((location (proxy-location object)))
367 (funcall destroy location offset) ; destroy old value
eeda1c2d 368 (funcall writer value location offset))))))))
369
4d83a8a6 370 (call-next-method))
371
372
4d83a8a6 373 ;; TODO: call some C code to detect this a compile time
374 (defconstant +struct-alignmen+ 4)
94f15c3c 375
376 (defmethod compute-slots ((class proxy-class))
4d83a8a6 377 (loop
3b167652 378 with offset = (let ((size-of-super-classes
379 (proxy-instance-size
380 (most-specific-proxy-superclass class))))
381 (+ size-of-super-classes
382 (mod size-of-super-classes +struct-alignmen+)))
4d83a8a6 383 with size = offset
384 for slotd in (class-direct-slots class)
385 when (eq (slot-definition-allocation slotd) :alien)
386 do (if (not (slot-boundp slotd 'offset))
387 (setf (slot-value slotd 'offset) offset)
388 (setq offset (slot-value slotd 'offset)))
389
390 (incf offset (size-of (slot-definition-type slotd)))
391 (incf offset (mod offset +struct-alignmen+))
392 (setq size (max size offset))
393
394 finally (unless (slot-boundp class 'size)
395 (setf (slot-value class 'size) size)))
94f15c3c 396 (call-next-method))
3e15002d 397
4d83a8a6 398
399 (defmethod validate-superclass ((class proxy-class) (super standard-class))
400 (subtypep (class-name super) 'proxy))
401
9adccb27 402 (defmethod proxy-instance-size (class)
12d0437e 403 (declare (ignore class))
404 0)
4d83a8a6 405)
406
9adccb27 407(defmethod alien-type ((class proxy-class) &rest args)
408 (declare (ignore class args))
409 (alien-type 'pointer))
410
411(defmethod size-of ((class proxy-class) &rest args)
412 (declare (ignore class args))
413 (size-of 'pointer))
414
415(defmethod from-alien-form (location (class proxy-class) &rest args)
416 (declare (ignore args))
417 `(ensure-proxy-instance ',(class-name class) ,location))
418
419(defmethod from-alien-function ((class proxy-class) &rest args)
420 (declare (ignore args))
421 #'(lambda (location)
422 (ensure-proxy-instance class location)))
94f15c3c 423
9adccb27 424(defmethod to-alien-form (instance (class proxy-class) &rest args)
425 (declare (ignore class args))
426 `(proxy-location ,instance))
94f15c3c 427
9adccb27 428(defmethod to-alien-function ((class proxy-class) &rest args)
429 (declare (ignore class args))
430 #'proxy-location)
431
9ca5565a 432(defmethod copy-from-alien-form (location (class proxy-class) &rest args)
433 (declare (ignore args))
434 (let ((class-name (class-name class)))
435 `(ensure-proxy-instance ',class-name
436 (reference-foreign ',class-name ,location))))
437
438(defmethod copy-from-alien-function ((class proxy-class) &rest args)
439 (declare (ignore args))
440 #'(lambda (location)
441 (ensure-proxy-instance class (reference-foreign class location))))
442
443(defmethod copy-to-alien-form (instance (class proxy-class) &rest args)
444 (declare (ignore args))
445 `(reference-foreign ',(class-name class) (proxy-location ,instance)))
446
447(defmethod copy-to-alien-function ((class proxy-class) &rest args)
448 (declare (ignore class args))
449 #'(lambda (instance)
450 (reference-foreign class (proxy-location instance))))
451
9adccb27 452(defmethod writer-function ((class proxy-class) &rest args)
453 (declare (ignore args))
454 #'(lambda (instance location &optional (offset 0))
455 (assert (null-pointer-p (sap-ref-sap location offset)))
456 (setf
457 (sap-ref-sap location offset)
458 (reference-foreign class (proxy-location instance)))))
94f15c3c 459
9adccb27 460(defmethod reader-function ((class proxy-class) &rest args)
461 (declare (ignore args))
462 #'(lambda (location &optional (offset 0))
9ca5565a 463 (let ((instance (sap-ref-sap location offset)))
464 (unless (null-pointer-p instance)
465 (ensure-proxy-instance class (reference-foreign class instance))))))
94f15c3c 466
9adccb27 467(defmethod destroy-function ((class proxy-class) &rest args)
468 (declare (ignore args))
469 #'(lambda (location &optional (offset 0))
470 (unreference-foreign class (sap-ref-sap location offset))))
471
12b7df04 472(defmethod unbound-value ((class proxy-class) &rest args)
473 (declare (ignore type args))
474 (values t nil))
9adccb27 475
476(defgeneric ensure-proxy-instance (class location)
477 (:documentation "Returns a proxy object representing the foreign object at the give location."))
478
479(defmethod ensure-proxy-instance :around (class location)
480 (unless (null-pointer-p location)
481 (or
482 (find-cached-instance location)
483 (call-next-method))))
484
485(defmethod ensure-proxy-instance ((class symbol) location)
486 (ensure-proxy-instance (find-class class) location))
487
488(defmethod ensure-proxy-instance ((class proxy-class) location)
489 (make-instance class :location location))
94f15c3c 490
12d0437e 491
492;;;; Superclasses for wrapping of C structures
94f15c3c 493
9adccb27 494(defclass struct (proxy)
495 ()
496 (:metaclass proxy-class))
94f15c3c 497
9adccb27 498(defmethod initialize-instance ((struct struct) &rest initargs)
94f15c3c 499 (declare (ignore initargs))
ec1a4146 500 (unless (slot-boundp struct 'location)
501 (let ((size (proxy-instance-size (class-of struct))))
502 (if (zerop size)
503 (error "~A has zero size" (class-of struct))
504 (setf (slot-value struct 'location) (allocate-memory size)))))
94f15c3c 505 (call-next-method))
506
507
9adccb27 508;;;; Metaclasses used for subclasses of struct
509
510(defclass struct-class (proxy-class)
511 ())
94f15c3c 512
9adccb27 513(defmethod reference-foreign ((class struct-class) location)
514 (copy-memory location (proxy-instance-size class)))
515
516(defmethod unreference-foreign ((class struct-class) location)
12d0437e 517 (deallocate-memory location))
94f15c3c 518
519
9adccb27 520(defclass static-struct-class (struct-class)
521 ())
94f15c3c 522
9adccb27 523(defmethod reference-foreign ((class static-struct-class) location)
524 (declare (ignore class))
12d0437e 525 location)
94f15c3c 526
9adccb27 527(defmethod unreference-foreign ((class static-struct-class) location)
528 (declare (ignore class location))
12d0437e 529 nil)