chiark / gitweb /
Initial revision
[clg] / glib / gtype.lisp
... / ...
CommitLineData
1;; Common Lisp bindings for GTK+ v2.0
2;; Copyright (C) 2000 Espen S. Johnsen <espejohn@online.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
18;; $Id: gtype.lisp,v 1.1 2000-08-14 16:44:34 espen Exp $
19
20(in-package "GLIB")
21
22(use-prefix "g")
23
24
25;;;;
26
27(deftype type-number () '(unsigned 32))
28
29(define-foreign ("g_type_name" alien-type-name) (type) (static string)
30 ((find-type-number type) type-number))
31
32(define-foreign %type-from-name () type-number
33 (name string))
34
35;(define-foreign type-parent () type-number
36; (type type-number))
37
38(define-foreign type-instance-size (type) int
39 ((find-type-number type) type-number))
40
41(define-foreign type-create-instance (type) pointer
42 ((find-type-number type) type-number))
43
44(define-foreign type-free-instance () nil
45 (instance pointer))
46
47
48(defvar *type-to-number-hash* (make-hash-table))
49(defvar *number-to-type-hash* (make-hash-table))
50
51(defun type-number-from-alien-name (name &optional (error t))
52 (if (string= name "invalid")
53 0
54 (let ((type-number (%type-from-name name)))
55 (cond
56 ((and (zerop type-number) error)
57 (error "Invalid alien type name: ~A" name))
58 ((zerop type-number) nil)
59 (t type-number)))))
60
61(defun (setf alien-type-name) (alien-name type)
62 (let ((type-name (ensure-type-name type))
63 (type-number (type-number-from-alien-name alien-name)))
64 (setf (gethash type-number *number-to-type-hash*) type-name)
65 (setf (gethash type-name *type-to-number-hash*) type-number)))
66
67(defun (setf find-type-number) (type-number type)
68 (setf (gethash (ensure-type-name type) *type-to-number-hash*) type-number))
69
70(defun find-type-number (type)
71 (etypecase type
72 (integer type)
73 (symbol (gethash type *type-to-number-hash*))
74 (pcl::class (gethash (class-name type) *type-to-number-hash*))))
75
76(defun type-from-number (type-number)
77 (gethash type-number *number-to-type-hash*))
78
79(defun type-number-of (object)
80 (find-type-number (type-of object)))
81
82
83
84;;;; Superclass for all metaclasses implementing some sort of virtual slots
85
86(eval-when (:compile-toplevel :load-toplevel :execute)
87 (defclass virtual-class (pcl::standard-class))
88
89 (defclass direct-virtual-slot-definition (standard-direct-slot-definition)
90 ((location
91 :reader slot-definition-location
92 :initarg :location)))
93
94 (defclass effective-virtual-slot-definition
95 (standard-effective-slot-definition)))
96
97
98(defmethod direct-slot-definition-class ((class virtual-class) initargs)
99 (if (eq (getf initargs :allocation) :virtual)
100 (find-class 'direct-virtual-slot-definition)
101 (call-next-method)))
102
103
104(defmethod effective-slot-definition-class ((class virtual-class) initargs)
105 (if (eq (getf initargs :allocation) :virtual)
106 (find-class 'effective-virtual-slot-definition)
107 (call-next-method)))
108
109
110(defun %direct-slot-definitions-slot-value (slotds slot &optional default)
111 (let ((slotd
112 (find-if
113 #'(lambda (slotd)
114 (and
115 (slot-exists-p slotd slot)
116 (slot-boundp slotd slot)))
117 slotds)))
118 (if slotd
119 (slot-value slotd slot)
120 default)))
121
122
123(defgeneric compute-virtual-slot-location (class slotd direct-slotds))
124
125(defmethod compute-virtual-slot-location
126 ((class virtual-class)
127 (slotd effective-virtual-slot-definition)
128 direct-slotds)
129 (let ((location
130 (%direct-slot-definitions-slot-value direct-slotds 'location)))
131 (if (and location (symbolp location))
132 (list location `(setf ,location))
133 location)))
134
135
136(defmethod compute-effective-slot-definition
137 ((class virtual-class) direct-slotds)
138 (let ((slotd (call-next-method)))
139 (when (typep slotd 'effective-virtual-slot-definition)
140 (setf
141 (slot-value slotd 'pcl::location)
142 (compute-virtual-slot-location class slotd direct-slotds)))
143 slotd))
144
145
146(defmethod slot-value-using-class
147 ((class virtual-class) (object standard-object)
148 (slotd effective-virtual-slot-definition))
149 (let ((reader (first (slot-definition-location slotd))))
150 (if reader
151 (funcall reader object)
152 (slot-unbound class object (slot-definition-name slotd)))))
153
154
155(defmethod slot-boundp-using-class
156 ((class virtual-class) (object standard-object)
157 (slotd effective-virtual-slot-definition))
158 (and (first (slot-definition-location slotd)) t))
159
160
161
162(defmethod (setf slot-value-using-class)
163 (value (class virtual-class) (object standard-object)
164 (slotd effective-virtual-slot-definition))
165 (let ((writer (second (slot-definition-location slotd))))
166 (cond
167 ((null writer)
168 (error
169 "Can't set read-only slot ~A in ~A"
170 (slot-definition-name slotd)
171 object))
172 ((or (functionp writer) (symbolp writer))
173 (funcall writer value object)
174 object)
175 (t
176 (funcall (fdefinition writer) value object)
177 object))))
178
179
180(defmethod validate-superclass
181 ((class virtual-class) (super pcl::standard-class))
182 t)
183
184
185
186;;;; Superclass for wrapping of C structures
187
188(eval-when (:compile-toplevel :load-toplevel :execute)
189 (defclass alien-instance ()
190 ((location
191 :reader alien-instance-location
192 :type system-area-pointer)))
193
194 (defgeneric allocate-alien-storage (class))
195 (defgeneric reference-instance (object))
196 (defgeneric unreference-instance (object))
197 (defgeneric from-alien-initialize-instance (object &rest initargs))
198 (defgeneric instance-finalizer (object)))
199
200
201(internal *instance-cache*)
202(defvar *instance-cache* (make-hash-table :test #'eql))
203
204(defun cache-instance (object)
205 (setf
206 (gethash (system:sap-int (alien-instance-location object)) *instance-cache*)
207 (ext:make-weak-pointer object)))
208
209(defun find-cached-instance (location)
210 (let ((ref (gethash (system:sap-int location) *instance-cache*)))
211 (when ref
212 (ext:weak-pointer-value ref))))
213
214(defun remove-cached-instance (location)
215 (remhash (system:sap-int location) *instance-cache*))
216
217
218(defmethod initialize-instance :before ((instance alien-instance)
219 &rest initargs &key)
220 (declare (ignore initargs))
221 (setf
222 (slot-value instance 'location)
223 (allocate-alien-storage (class-of instance)))
224 (cache-instance instance)
225 (ext:finalize instance (instance-finalizer instance)))
226
227
228(defmethod from-alien-initialize-instance ((instance alien-instance)
229 &rest initargs &key location)
230 (declare (ignore initargs))
231 (setf (slot-value instance 'location) location)
232 (cache-instance instance))
233
234
235(deftype-method translate-type-spec alien-instance (type-spec)
236 (declare (ignore type-spec))
237 'system-area-pointer)
238
239
240
241;;;; Metaclass used for subclasses of alien-instance
242
243(eval-when (:compile-toplevel :load-toplevel :execute)
244 (defclass alien-class (virtual-class)
245 ((size
246 :reader alien-class-size)))
247
248 (defclass direct-alien-slot-definition (direct-virtual-slot-definition)
249 ((allocation
250 :initform :alien)
251 (offset
252 :reader slot-definition-offset
253 :initarg :offset
254 :initform 0)))
255
256 (defclass effective-alien-slot-definition (effective-virtual-slot-definition)
257 ((offset
258 :reader slot-definition-offset)))
259
260 (defclass effective-virtual-alien-slot-definition
261 (effective-virtual-slot-definition))
262
263
264 (defmethod alien-class-superclass ((class alien-class))
265 (find-if
266 #'(lambda (class)
267 (subtypep (class-name class) 'alien-instance))
268 (pcl::class-direct-superclasses class)))
269
270
271 (defmethod shared-initialize ((class alien-class) names
272 &rest initargs &key size alien-name name)
273 (declare (ignore initargs))
274 (call-next-method)
275
276 ;; For some reason I can't figure out, accessors for only the
277 ;; first direct slot in an alien class gets defined by
278 ;; PCL. Therefore it has to be done here.
279 (pcl::fix-slot-accessors class (class-direct-slots class) 'pcl::add)
280
281 (when alien-name
282 (setf (alien-type-name (or name (class-name class))) (first alien-name)))
283 (when size
284 (setf (slot-value class 'size) (first size))))
285
286
287 (defmethod shared-initialize :after ((class alien-class) names
288 &rest initargs &key)
289 (declare (ignore initargs names))
290 (let* ((super (alien-class-superclass class))
291 (actual-size
292 (if (eq (class-name super) 'alien-instance)
293 0
294 (alien-class-size super))))
295 (dolist (slotd (class-slots class))
296 (when (eq (slot-definition-allocation slotd) :alien)
297 (with-slots (offset type) slotd
298 (setq actual-size (max actual-size (+ offset (size-of type)))))))
299 (cond
300 ((not (slot-boundp class 'size))
301 (setf (slot-value class 'size) actual-size))
302 ((> actual-size (slot-value class 'size))
303 (warn "The actual size of class ~A is lager than specified" class)))))
304
305
306 (defmethod direct-slot-definition-class ((class alien-class) initargs)
307 (case (getf initargs :allocation)
308 ((nil :alien) (find-class 'direct-alien-slot-definition))
309; (:instance (error "Allocation :instance not allowed in class ~A" class))
310 (t (call-next-method))))
311
312
313 (defmethod effective-slot-definition-class ((class alien-class) initargs)
314 (case (getf initargs :allocation)
315 (:alien (find-class 'effective-alien-slot-definition))
316 (:virtual (find-class 'effective-virtual-alien-slot-definition))
317 (t (call-next-method))))
318
319
320 (defmethod compute-virtual-slot-location
321 ((class alien-class) (slotd effective-alien-slot-definition)
322 direct-slotds)
323 (with-slots (offset type) slotd
324 (setf offset (%direct-slot-definitions-slot-value direct-slotds 'offset))
325 (let ((reader (get-reader-function type))
326 (writer (get-writer-function type))
327 (destroy (get-destroy-function type)))
328 (list
329 #'(lambda (object)
330 (funcall reader (alien-instance-location object) offset))
331 #'(lambda (value object)
332 (let ((location (alien-instance-location object)))
333 (funcall destroy location offset)
334 (funcall writer value location offset)))))))
335
336
337 (defmethod compute-virtual-slot-location
338 ((class alien-class)
339 (slotd effective-virtual-alien-slot-definition)
340 direct-slotds)
341 (let ((location (call-next-method)))
342 (if (or (stringp location) (consp location))
343 (destructuring-bind (reader &optional writer) (mklist location)
344 (with-slots (type) slotd
345 (list
346 (if (stringp reader)
347 (let* ((alien-type (translate-type-spec type))
348 (alien
349 (alien::%heap-alien
350 (alien::make-heap-alien-info
351 :type (alien::parse-alien-type
352 `(function ,alien-type system-area-pointer))
353 :sap-form (system:foreign-symbol-address reader))))
354 (from-alien (get-from-alien-function type)))
355 #'(lambda (object)
356 (funcall
357 from-alien
358 (alien-funcall
359 alien (alien-instance-location object)))))
360 reader)
361 (if (stringp writer)
362 (let* ((alien-type (translate-type-spec type))
363 (alien
364 (alien::%heap-alien
365 (alien::make-heap-alien-info
366 :type (alien::parse-alien-type
367 `(function
368 void ,alien-type system-area-pointer))
369 :sap-form (system:foreign-symbol-address writer))))
370 (to-alien (get-to-alien-function type))
371 (cleanup (get-cleanup-function type)))
372 #'(lambda (value object)
373 (let ((alien-value (funcall to-alien value))
374 (location (alien-instance-location object)))
375 (alien-funcall alien location alien-value)
376 (funcall cleanup alien-value))))
377 writer))))
378 location)))
379
380
381 (defmethod compute-slots ((class alien-class))
382 ;; Translating the user supplied relative (to previous slot) offsets
383 ;; to absolute offsets.
384 ;; This code is broken and have to be fixed for real use.
385 (with-slots (direct-slots) class
386 (let* ((super (alien-class-superclass class))
387 (slot-offset
388 (if (eq (class-name super) 'alien-instance)
389 0
390 (alien-class-size super))))
391 (dolist (slotd direct-slots)
392 (when (eq (slot-definition-allocation slotd) :alien)
393 (with-slots (offset type) slotd
394 (setf
395 offset (+ slot-offset offset)
396 slot-offset (+ offset (size-of type)))))))
397
398 ;; Reverse the direct slot definitions so the effective slots
399 ;; will be in correct order.
400 (setf direct-slots (nreverse direct-slots)))
401 (call-next-method))
402
403
404 (defmethod validate-superclass ((class alien-class)
405 (super pcl::standard-class))
406 (subtypep (class-name super) 'alien-instance))
407
408 (defgeneric make-instance-from-alien (class location &rest initargs &key)))
409
410(defmethod make-instance-from-alien ((class symbol) location
411 &rest initargs &key)
412 (apply #'make-instance-from-alien (find-class class) location initargs))
413
414(defmethod make-instance-from-alien ((class alien-class) location
415 &rest initargs &key)
416 (let ((instance (allocate-instance class)))
417 (apply
418 #'from-alien-initialize-instance
419 instance :location location initargs)
420 instance))
421
422(defun ensure-alien-instance (class location &rest initargs)
423 (or
424 (find-cached-instance location)
425 (apply #'make-instance-from-alien class location initargs)))
426
427(defmethod allocate-alien-storage ((class alien-class))
428 (allocate-memory (alien-class-size class)))
429
430
431
432;;;; Superclass for wrapping structures with reference counting
433
434(eval-when (:compile-toplevel :load-toplevel :execute)
435 (defclass alien-object (alien-instance)
436 ()
437 (:metaclass alien-class)
438 (:size 0)))
439
440(define-type-method-fun alien-ref (type-spec))
441(define-type-method-fun alien-unref (type-spec))
442
443(defmethod from-alien-initialize-instance ((object alien-object)
444 &rest initargs &key)
445 (declare (ignore initargs))
446 (call-next-method)
447 (reference-instance object))
448
449(defmethod instance-finalizer ((object alien-object))
450 (let ((location (alien-instance-location object))
451 (unref (fdefinition (alien-unref (class-of object)))))
452 (declare (type system-area-pointer location) (type function unref))
453 #'(lambda ()
454 (remove-cached-instance location)
455 (funcall unref location))))
456
457(defmethod reference-instance ((object alien-object))
458 (funcall (alien-ref (class-of object)) object)
459 object)
460
461(defmethod unreference-instance ((object alien-object))
462 (funcall (alien-unref (class-of object)) object)
463 nil)
464
465(deftype-method translate-to-alien
466 alien-object (type-spec object &optional copy)
467 (if copy
468 `(,(alien-ref type-spec) ,object)
469 `(alien-instance-location ,object)))
470
471(deftype-method translate-from-alien
472 alien-object (type-spec location &optional alloc)
473 (declare (ignore alloc))
474 `(let ((location ,location))
475 (unless (null-pointer-p location)
476 (ensure-alien-instance ',type-spec location))))
477
478(deftype-method
479 cleanup-alien alien-object (type-spec sap &optional copied)
480 (when copied
481 `(let ((sap ,sap))
482 (unless (null-pointer-p sap)
483 (,(alien-unref type-spec) sap)))))
484
485
486
487;;;; Superclass for wrapping of non-refcounted structures
488
489(eval-when (:compile-toplevel :load-toplevel :execute)
490 (defclass alien-structure (alien-instance)
491 ((static
492 :allocation :instance
493 :reader alien-structure-static-p
494 :initform nil
495 :type boolean))
496 (:metaclass alien-class)
497 (:size 0)))
498
499(define-type-method-fun alien-copier (type-spec))
500(define-type-method-fun alien-deallocator (type-spec))
501
502(defmethod from-alien-initialize-instance ((structure alien-structure)
503 &rest initargs &key static)
504 (declare (ignore initargs))
505 (call-next-method)
506 (setf (slot-value structure 'static) static))
507
508(defmethod instance-finalizer ((structure alien-structure))
509 (let ((location (alien-instance-location structure)))
510 (declare (type system-area-pointer location))
511 (if (alien-structure-static-p structure)
512 #'(lambda ()
513 (remove-cached-instance location))
514 (let ((deallocator
515 (fdefinition (alien-deallocator (class-of structure)))))
516 (declare (type function deallocator))
517 #'(lambda ()
518 (remove-cached-instance location)
519 (funcall deallocator location))))))
520
521
522(deftype-method alien-copier alien-structure (type-spec)
523 (declare (ignore type-spec))
524 'copy-memory)
525
526(deftype-method alien-deallocator alien-structure (type-spec)
527 (declare (ignore type-spec))
528 'deallocate-memory)
529
530(deftype-method translate-to-alien
531 alien-structure (type-spec object &optional copy)
532 `(let ((object ,object))
533 (if (and ,copy (not (alien-structure-static-p object)))
534 (,(alien-copier type-spec)
535 `(alien-instance-location object)
536 ,(alien-class-size (find-class type-spec)))
537 (alien-instance-location object))))
538
539(deftype-method translate-from-alien
540 alien-structure (type-spec location &optional (alloc :dynamic))
541 `(let ((location ,location))
542 (unless (null-pointer-p location)
543 ,(ecase alloc
544 (:dynamic `(ensure-alien-instance ',type-spec location))
545 (:static `(ensure-alien-instance ',type-spec location :static t))
546 (:copy `(ensure-alien-instance
547 ',type-spec
548 `(,(alien-copier type-spec)
549 location ,(alien-class-size (find-class type-spec)))))))))
550
551(deftype-method cleanup-alien alien-structure (type-spec sap &optional copied)
552 (when copied
553 `(let ((sap ,sap))
554 (unless (or
555 (null-pointer-p sap)
556 (alien-structure-static-p (find-cached-instance sap)))
557 (,(alien-deallocator type-spec) sap)))))
558
559
560
561;;;; Superclass for static structures such as gdk:visual
562
563(defclass static-structure (alien-structure)
564 ()
565 (:metaclass alien-class)
566 (:size 0))
567
568
569(defmethod from-alien-initialize-instance ((structure alien-structure)
570 &rest initargs)
571 (declare (ignore initargs))
572 (call-next-method)
573 (setf (slot-value structure 'static) t))
574
575
576
577;;;; Superclass wrapping types in the glib type system
578
579(eval-when (:compile-toplevel :load-toplevel :execute)
580 (defclass gtype (alien-object)
581 ()
582 (:metaclass alien-class)
583 (:size 4 #|(size-of 'pointer)|#)))
584
585
586(defun %alien-instance-type-number (location)
587 (let ((class (sap-ref-sap location 0)))
588 (sap-ref-unsigned class 0)))
589
590
591(deftype-method translate-from-alien gtype (type-spec location &optional alloc)
592 (declare (ignore type-spec alloc))
593 `(let ((location ,location))
594 (unless (null-pointer-p location)
595 (ensure-alien-instance
596 (type-from-number (%alien-instance-type-number location))
597 location))))
598
599
600
601;;;; Metaclass for subclasses of gtype-class
602
603(eval-when (:compile-toplevel :load-toplevel :execute)
604 (defclass gtype-class (alien-class)))
605
606
607(defmethod shared-initialize ((class gtype-class) names
608 &rest initargs &key name)
609 (declare (ignore initargs names))
610 (call-next-method)
611 (setf
612 (slot-value class 'size)
613 (type-instance-size (find-type-number (or name (class-name class))))))
614
615
616(defmethod validate-superclass
617 ((class gtype-class) (super pcl::standard-class))
618 (subtypep (class-name super) 'gtype))
619
620
621(defmethod allocate-alien-storage ((class gtype-class))
622 (type-create-instance (find-type-number class)))
623
624
625;;;; Initializing type numbers
626
627(setf (alien-type-name 'invalid) "invalid")
628(setf (alien-type-name 'char) "gchar")
629(setf (alien-type-name 'unsigned-char) "guchar")
630(setf (alien-type-name 'boolean) "gboolean")
631(setf (alien-type-name 'int) "gint")
632(setf (alien-type-name 'unsigned-int) "guint")
633(setf (alien-type-name 'long) "glong")
634(setf (alien-type-name 'unsigned-long) "gulong")
635(setf (alien-type-name 'enum) "GEnum")
636(setf (alien-type-name 'flags) "GFlags")
637(setf (alien-type-name 'single-float) "gfloat")
638(setf (alien-type-name 'double-float) "gdouble")
639(setf (alien-type-name 'string) "gstring")
640(setf (find-type-number 'fixnum) (find-type-number 'int))