chiark / gitweb /
Updates for SBCL 0.9.14 and 0.9.15
[clg] / glib / gobject.lisp
1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 2000-2006 Espen S. Johnsen <espen@users.sf.net>
3 ;;
4 ;; Permission is hereby granted, free of charge, to any person obtaining
5 ;; a copy of this software and associated documentation files (the
6 ;; "Software"), to deal in the Software without restriction, including
7 ;; without limitation the rights to use, copy, modify, merge, publish,
8 ;; distribute, sublicense, and/or sell copies of the Software, and to
9 ;; permit persons to whom the Software is furnished to do so, subject to
10 ;; the following conditions:
11 ;;
12 ;; The above copyright notice and this permission notice shall be
13 ;; included in all copies or substantial portions of the Software.
14 ;;
15 ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 ;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 ;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 ;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 ;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 ;; $Id: gobject.lisp,v 1.53 2006-08-16 11:02:46 espen Exp $
24
25 (in-package "GLIB")
26
27
28 ;;;; Metaclass used for subclasses of gobject
29
30 (eval-when (:compile-toplevel :load-toplevel :execute)
31 ;;   (push :debug-ref-counting *features*)
32   (defclass gobject-class (ginstance-class)
33     ((instance-slots-p :initform nil :reader instance-slots-p
34       :documentation "Non NIL if the class has slots with instance allocation")))
35   (defmethod shared-initialize ((class gobject-class) names &rest initargs)
36     (declare (ignore names initargs))
37     (call-next-method)
38     (unless (slot-boundp class 'ref)
39       (setf (slot-value class 'ref) '%object-ref))
40     (unless (slot-boundp class 'unref)
41       (setf (slot-value class 'unref) '%object-unref)))
42
43   (defmethod validate-superclass ((class gobject-class) (super standard-class))
44 ;  (subtypep (class-name super) 'gobject)
45     t))
46
47 (defclass direct-property-slot-definition (direct-virtual-slot-definition)
48   ((pname :reader slot-definition-pname :initarg :pname)
49    (readable :reader slot-readable-p :initarg :readable)
50    (writable :reader slot-writable-p :initarg :writable)
51    (construct-only :initarg :construct-only :reader construct-only-property-p)))
52
53 (defclass effective-property-slot-definition (effective-virtual-slot-definition)
54   ((pname :reader slot-definition-pname :initarg :pname)
55    (readable :initform t :reader slot-readable-p :initarg :readable)
56    (writable :initform t :reader slot-writable-p :initarg :writable)
57    (construct-only :initform nil :initarg :construct-only :reader construct-only-property-p)))
58
59 (defclass direct-user-data-slot-definition (direct-virtual-slot-definition)
60   ())
61
62 (defclass effective-user-data-slot-definition (effective-virtual-slot-definition)
63   ())
64
65
66 (defmethod slot-readable-p ((slotd standard-effective-slot-definition))
67   (declare (ignore slotd))
68   t)
69
70 (defmethod slot-writable-p ((slotd standard-effective-slot-definition))
71   (declare (ignore slotd))
72   t)
73
74
75 (defbinding %object-ref () pointer
76   (location pointer))
77
78 (defbinding %object-unref () nil
79   (location pointer))
80
81 #?(pkg-exists-p "glib-2.0" :atleast-version "2.8.0")
82 (progn
83   (define-callback toggle-ref-callback nil
84       ((data pointer) (location pointer) (last-ref-p boolean))
85     (declare (ignore data))
86     #+debug-ref-counting
87     (if last-ref-p
88         (format t "Object at 0x~8,'0X has no foreign references~%" (pointer-address location))
89       (format t "Foreign reference added to object at 0x~8,'0X~%" (pointer-address location)))
90     (if last-ref-p
91         (cache-instance (find-cached-instance location) t)
92       (cache-instance (find-cached-instance location) nil)))
93
94   (defbinding %object-add-toggle-ref (location) pointer
95     (location pointer)
96     (toggle-ref-callback callback)
97     (nil null))
98
99   (defbinding %object-remove-toggle-ref (location) pointer
100     (location pointer)
101     (toggle-ref-callback callback)
102     (nil null)))
103
104 #+debug-ref-counting
105 (progn
106   (define-callback weak-ref-callback nil ((data pointer) (location pointer))
107     (format t "Object at 0x~8,'0X (~A) being finalized~%" (pointer-address location) (type-from-number (%type-number-of-ginstance location))))
108   
109   (defbinding %object-weak-ref (location) pointer
110     (location pointer)
111     (weak-ref-callback callback)
112     (nil null)))
113
114
115 ; (defbinding object-class-install-param () nil
116 ;   (class pointer)
117 ;   (id unsigned-int)
118 ;   (parameter parameter))
119
120 ; (defbinding object-class-find-param-spec () parameter
121 ;   (class pointer)
122 ;   (name string))
123
124 (defun signal-name-to-string (name)
125   (substitute #\_ #\- (string-downcase (string name))))
126
127
128 (defmethod direct-slot-definition-class ((class gobject-class) &rest initargs)
129   (case (getf initargs :allocation)
130     (:property (find-class 'direct-property-slot-definition))
131     (:user-data (find-class 'direct-user-data-slot-definition))
132     (t (call-next-method))))
133
134 (defmethod effective-slot-definition-class ((class gobject-class) &rest initargs)
135   (case (getf initargs :allocation)
136     (:property (find-class 'effective-property-slot-definition))
137     (:user-data (find-class 'effective-user-data-slot-definition))
138     (t (call-next-method))))
139
140 (defmethod compute-effective-slot-definition-initargs ((class gobject-class) direct-slotds)
141   (if (eq (slot-definition-allocation (first direct-slotds)) :property)
142       (nconc
143        (compute-most-specific-initargs direct-slotds
144         '(pname construct-only readable writable))
145        (call-next-method))
146     (call-next-method)))
147
148
149 (defvar *ignore-setting-construct-only-property* nil)
150 (declaim (special *ignore-setting-construct-only-property*))
151
152 (defmethod compute-slot-reader-function ((slotd effective-property-slot-definition) &optional signal-unbound-p)
153   (declare (ignore signal-unbound-p))
154   (if (slot-readable-p slotd)
155       (let* ((type (slot-definition-type slotd))
156              (pname (slot-definition-pname slotd))
157              (reader (reader-function type :ref :get)))
158         #'(lambda (object)
159             (with-memory (gvalue +gvalue-size+)
160               (%gvalue-init gvalue (find-type-number type))
161               (%object-get-property object pname gvalue)
162               (funcall reader gvalue +gvalue-value-offset+))))
163     (call-next-method)))
164
165 (defmethod compute-slot-writer-function ((slotd effective-property-slot-definition))
166   (cond
167    ((slot-writable-p slotd)
168     (let* ((type (slot-definition-type slotd))
169            (pname (slot-definition-pname slotd))
170            (writer (writer-function type :temp t))
171            (destroy (destroy-function type :temp t)))
172       #'(lambda (value object)
173           (with-memory (gvalue +gvalue-size+)
174             (%gvalue-init gvalue (find-type-number type))
175             (funcall writer value gvalue +gvalue-value-offset+)
176             (%object-set-property object pname gvalue)
177             (funcall destroy gvalue +gvalue-value-offset+))
178           value)))
179
180    ((construct-only-property-p slotd)
181     #'(lambda (value object)
182         (declare (ignore value object))
183         (unless *ignore-setting-construct-only-property*
184           (error 'unwritable-slot :name (slot-definition-name slotd) :instance object))))
185    ((call-next-method))))
186
187 (defmethod compute-slot-reader-function ((slotd effective-user-data-slot-definition) &optional signal-unbound-p)
188   (declare (ignore signal-unbound-p))
189   (let ((slot-name (slot-definition-name slotd)))
190     #'(lambda (object)
191         (user-data object slot-name))))
192
193 (defmethod compute-slot-boundp-function ((slotd effective-user-data-slot-definition))
194   (let ((slot-name (slot-definition-name slotd)))
195     #'(lambda (object)
196         (user-data-p object slot-name))))
197
198 (defmethod compute-slot-writer-function ((slotd effective-user-data-slot-definition))
199   (let ((slot-name (slot-definition-name slotd)))
200     #'(lambda (value object)
201         (setf (user-data object slot-name) value))))
202
203 (defmethod compute-slot-makunbound-function ((slotd effective-user-data-slot-definition))
204   (let ((slot-name (slot-definition-name slotd)))
205     #'(lambda (object)
206         (unset-user-data object slot-name))))
207
208 (defmethod compute-slots :around ((class gobject-class))
209   (let ((slots (call-next-method)))
210     (when (some #'(lambda (slotd)
211                     (and
212                      (eq (slot-definition-allocation slotd) :instance)
213                      (not (typep slotd 'effective-special-slot-definition))))
214                 slots)
215       (setf (slot-value class 'instance-slots-p) t))
216     slots))
217
218
219 ;;;; Super class for all classes in the GObject type hierarchy
220
221 (eval-when (:compile-toplevel :load-toplevel :execute)
222   (defclass gobject (ginstance)
223     (#+debug-ref-counting
224      (ref-count :allocation :alien :type int :reader ref-count))
225     (:metaclass gobject-class)
226     (:gtype "GObject")))
227
228 #+debug-ref-counting
229 (defmethod print-object ((instance gobject) stream)
230   (print-unreadable-object (instance stream :type t :identity nil)
231     (if (proxy-valid-p instance)
232         (format stream "at 0x~X (~D)" (pointer-address (foreign-location instance)) (ref-count instance))
233       (write-string "at \"unbound\"" stream))))
234
235
236 (define-type-method reader-function ((type gobject) &key (ref :read) inlined)
237   (assert-not-inlined type inlined)
238   (ecase ref
239     ((:read :peek) (call-next-method type :ref :read))
240     (:get
241      #'(lambda (location &optional (offset 0))
242          (let ((instance (ref-pointer location offset)))
243            (unless (null-pointer-p instance)
244              (multiple-value-bind (gobject new-p)
245                  (ensure-proxy-instance 'gobject instance :reference nil)
246                (unless new-p
247                  (%object-unref instance))
248                (setf (ref-pointer location offset) (make-pointer 0))
249                gobject)))))))
250
251 (define-type-method callback-wrapper ((type gobject) var arg form)
252   (let ((class (type-expand type)))
253     `(let ((,var (ensure-proxy-instance ',class ,arg)))
254        ,form)))
255
256 (defun initial-add (object function initargs key pkey)
257   (loop 
258    as (initarg value . rest) = initargs then rest
259    do (cond
260        ((eq initarg key) (funcall function object value))
261        ((eq initarg pkey) (mapc #'(lambda (value)
262                                     (funcall function object value))
263                                 value)))
264        while rest))
265
266 (defun initial-apply-add (object function initargs key pkey)
267   (initial-add object #'(lambda (object value)
268                           (apply function object (mklist value)))
269                initargs key pkey))
270
271
272 (defmethod make-proxy-instance ((class gobject-class) location &rest initargs)
273   (declare (ignore location initargs))
274   (if (slot-value class 'instance-slots-p)
275       (error "Objects of class ~A has instance slots and should only be created with MAKE-INSTANCE" class)
276     (call-next-method)))
277
278
279 (defmethod allocate-foreign ((object gobject) &rest initargs)
280   (let ((init-slots ())) 
281     (flet ((value-from-initargs (slotd)
282              (loop
283               with slot-initargs = (slot-definition-initargs slotd)
284               for (initarg value) on initargs by #'cddr
285               when (find initarg slot-initargs)
286               do (return (values value t)))))
287
288     (loop 
289      for slotd in (class-slots (class-of object))
290      when (and 
291            (eq (slot-definition-allocation slotd) :property)
292            (construct-only-property-p slotd))
293      do (multiple-value-bind (value initarg-p) (value-from-initargs slotd)
294           (cond
295            (initarg-p (push (cons slotd value) init-slots))
296            ((slot-definition-initfunction slotd)
297             (push 
298              (cons slotd (funcall (slot-definition-initfunction slotd)))
299              init-slots))))))
300
301     (cond
302      (init-slots
303       (let* ((pointer-size (size-of 'pointer))
304              (element-size (+ +gvalue-size+ pointer-size))
305              (num-slots (length init-slots)))
306         (with-memory (params (* num-slots element-size))
307           (loop
308            with string-writer = (writer-function 'string)
309            for (slotd . value) in init-slots
310            as param = params then (pointer+ param element-size)
311            as type = (slot-definition-type slotd)
312            as pname = (slot-definition-pname slotd)
313            do (funcall string-writer pname param)
314               (gvalue-init (pointer+ param pointer-size) type value))
315
316           (unwind-protect
317               (%gobject-newv (type-number-of object) num-slots params)
318         
319             (loop
320              with string-destroy = (destroy-function 'string)
321              repeat num-slots
322              as param = params then (pointer+ param element-size)
323              do (funcall string-destroy param)
324                 (gvalue-unset (pointer+ param pointer-size)))))))
325
326      (t (%gobject-new (type-number-of object))))))
327
328
329 (defmethod shared-initialize ((object gobject) names &rest initargs)
330   (declare (ignore names initargs))
331   (let ((*ignore-setting-construct-only-property* t))
332     (call-next-method)))
333
334 (defmethod initialize-instance :around ((object gobject) &rest initargs)
335   (declare (ignore initargs))
336   (prog1
337       (call-next-method)
338     #+debug-ref-counting(%object-weak-ref (foreign-location object))
339     #?(pkg-exists-p "glib-2.0" :atleast-version "2.8.0")
340     (when (slot-value (class-of object) 'instance-slots-p)
341       (%object-add-toggle-ref (foreign-location object))
342       (%object-unref (foreign-location object)))))
343
344
345 (defmethod instance-finalizer ((instance gobject))
346   (let ((location (foreign-location instance)))
347     #?(pkg-exists-p "glib-2.0" :atleast-version "2.8.0")
348     (if (slot-value (class-of instance) 'instance-slots-p)
349         #'(lambda ()
350             #+debug-ref-counting
351             (format t "Finalizing proxy for 0x~8,'0X~%" (pointer-address location))
352             (%object-remove-toggle-ref location))
353       #'(lambda ()
354           #+debug-ref-counting
355           (format t "Finalizing proxy for 0x~8,'0X~%" (pointer-address location))
356           (%object-unref location)))
357     #?-(pkg-exists-p "glib-2.0" :atleast-version "2.8.0")
358     #'(lambda ()
359         (%object-unref location))))
360
361
362 (defbinding (%gobject-new "g_object_new") () pointer
363   (type type-number)
364   (nil null))
365
366 (defbinding (%gobject-newv "g_object_newv") () pointer
367   (type type-number)
368   (n-parameters unsigned-int)
369   (params pointer))
370
371
372
373 ;;;; Property stuff
374
375 (defbinding %object-set-property () nil
376   (object gobject)
377   (name string)
378   (value gvalue))
379
380 (defbinding %object-get-property () nil
381   (object gobject)
382   (name string)
383   (value gvalue))
384
385 (defbinding %object-notify () nil
386   (object gobject)
387   (name string))
388
389 (defbinding object-freeze-notify () nil
390   (object gobject))
391
392 (defbinding object-thaw-notify () nil
393   (object gobject))
394
395
396 ;;;; User data
397
398 (defbinding %object-set-qdata-full () nil
399   (object gobject)
400   (id quark)
401   (data unsigned-long)
402   (destroy-marshal callback))
403
404 (define-callback user-data-destroy-callback nil ((id unsigned-int))
405   (destroy-user-data id))
406
407 (defun (setf user-data) (data object key)
408   (%object-set-qdata-full object (quark-intern key)
409    (register-user-data data) user-data-destroy-callback)
410   data)
411
412 (defbinding %object-get-qdata () unsigned-long
413   (object gobject)               
414   (id quark))
415
416 (defun user-data (object key)
417   (find-user-data (%object-get-qdata object (quark-intern key))))
418
419 (defun user-data-p (object key)
420   (user-data-exists-p (%object-get-qdata object (quark-intern key))))
421
422 (defbinding %object-steal-qdata () unsigned-long
423   (object gobject)               
424   (id quark))
425
426 (defun unset-user-data (object key)
427   (destroy-user-data (%object-steal-qdata object (quark-intern key))))
428
429
430 ;;;;
431
432 (defbinding %object-class-list-properties () pointer
433   (class pointer)
434   (n-properties unsigned-int :out))
435
436
437 (defun %map-params (params length type inherited-p)
438   (if inherited-p
439       (map-c-vector 'list #'identity params 'param length)
440     (let ((properties ()))
441       (map-c-vector 'list 
442        #'(lambda (param)
443            (when (eql (param-owner-type param) type)
444              (push param properties)))
445        params 'param length)
446       (nreverse properties))))
447
448 (defun query-object-class-properties (type &optional inherited-p)
449   (let* ((type-number (find-type-number type t))
450          (class (type-class-ref type-number)))
451     (unwind-protect
452          (multiple-value-bind (array length)
453              (%object-class-list-properties class)
454            (unless (null-pointer-p array)
455              (unwind-protect
456                  (%map-params array length type-number inherited-p)
457                (deallocate-memory array))))
458 ;      (type-class-unref type-number)
459       )))
460
461
462 (defun default-slot-name (name)
463   (let ((prefix-len (length (package-prefix))))
464     (intern (substitute #\- #\_
465              (string-upcase
466               (if (and
467                    (string-prefix-p (package-prefix) name)
468                    (char= #\- (char name prefix-len)))
469                   (subseq name (1+ prefix-len))
470                 name))))))
471
472 (defun default-slot-accessor (class-name slot-name type)
473   (intern
474    (format
475     nil "~A-~A~A" class-name slot-name
476     (if (eq type 'boolean) "-P" ""))))
477
478
479 (defun slot-definition-from-property (class property &optional slot-name args)
480   (with-slots (name flags value-type documentation) property
481     (let* ((slot-name (or slot-name (default-slot-name name)))
482            (slot-type (or (getf args :type) (type-from-number value-type) 'pointer))
483            (accessor (default-slot-accessor class slot-name slot-type)))
484       
485       `(,slot-name
486         :allocation :property :pname ,name
487
488         ,@(when (find :unbound args) (list :unbound (getf args :unbound)))
489         ,@(when (find :getter args) (list :getter (getf args :getter)))
490         ,@(when (find :setter args) (list :setter (getf args :setter)))
491         
492         ;; accessors
493         ,@(cond
494            ((and
495              (member :writable flags) (member :readable flags)
496              (not (member :construct-only flags)))
497             (list :accessor accessor))
498            ((and (member :writable flags) (not (member :construct-only flags)))
499             (list :writer `(setf ,accessor)))
500            ((member :readable flags)
501             (list :reader accessor)))
502
503         ;; readable/writable/construct
504         ,@(when (or (not (member :writable flags))
505                     (member :construct-only flags))
506             '(:writable nil))
507         ,@(when (not (member :readable flags))
508             '(:readable nil))
509         ,@(when (member :construct-only flags)
510             '(:construct-only t))
511         
512         ;; initargs
513         ,@(if (find :initarg args)
514               (let ((initarg (getf args :initarg)))
515                 (etypecase initarg
516                   (null ())
517                   (symbol `(:initarg ,initarg))))
518             (when (or (member :construct flags)
519                       (member :construct-only flags)
520                       (member :writable flags))
521               (list :initarg (intern (string slot-name) "KEYWORD"))))
522         
523         :type ,slot-type
524         :documentation ,documentation))))
525
526
527 (defun slot-definitions (class properties slots)
528   (loop 
529    for property in properties
530    as slot = (or
531               (find (param-name property) slots 
532                :key #'(lambda (slot) (getf (rest slot) :pname)) 
533                :test #'string=)
534               (find (param-name property) slots 
535                :key #'first :test #'string-equal))
536    do (cond
537        ((not slot) 
538         (push (slot-definition-from-property class property) slots))
539        ((getf (rest slot) :merge)
540         (setf 
541          (rest slot) 
542          (rest (slot-definition-from-property class property (first slot) (rest slot)))))))
543   (delete-if #'(lambda (slot) (getf (rest slot) :ignore)) slots))
544
545
546 (defun expand-gobject-type (type forward-p options &optional (metaclass 'gobject-class))
547   (let ((supers (cons (supertype type) (implements type)))
548         (class  (type-from-number type))
549         (slots (getf options :slots)))
550     `(defclass ,class ,supers
551          ,(unless forward-p
552             (slot-definitions class (query-object-class-properties type) slots))
553          (:metaclass ,metaclass)
554          (:gtype ,(register-type-as type)))))
555
556 (defun gobject-dependencies (type options)
557   (delete-duplicates 
558    (cons
559     (supertype type)
560     (append 
561      (type-interfaces type)
562      (mapcar #'param-value-type (query-object-class-properties type))
563      (getf options :dependencies)
564      (loop
565       for slot in (getf options :slots)
566       as type = (getf (rest slot) :type)
567       when (and type (symbolp type) (find-type-number type))
568       collect (find-type-number type))))))
569
570
571 (register-derivable-type 'gobject "GObject" 'expand-gobject-type 'gobject-dependencies)
572
573
574 ;;; Pseudo type for gobject instances which have their reference count
575 ;;; increased by the returning function
576
577 (deftype referenced (type) type)
578
579 (define-type-method from-alien-form ((type referenced) form &key (ref :free))
580   (cond
581    ((not (eq ref :free))
582     (error "Keyword arg :REF to FROM-ALIEN-FORM should be :FREE for type ~A. It was give ~A" type ref))
583    ((subtypep type 'gobject)
584     (from-alien-form (second (type-expand-to 'referenced type)) form :ref ref))))
585
586 (define-type-method from-alien-function ((type referenced) &key (ref :free))
587   (cond
588    ((not (eq ref :free))
589     (error "Keyword arg :REF to FROM-ALIEN-FUNCTION should be :FREE for type ~A. It was give ~A" type ref))
590 ;   ((subtypep type 'gobject) (call-next-method type ref :free))))
591    ((subtypep type 'gobject) 
592     (from-alien-function (second (type-expand-to 'referenced type)) :ref ref))))