1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 2000-2006 Espen S. Johnsen <espen@users.sf.net>
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:
12 ;; The above copyright notice and this permission notice shall be
13 ;; included in all copies or substantial portions of the Software.
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.
23 ;; $Id: gobject.lisp,v 1.53 2006-08-16 11:02:46 espen Exp $
28 ;;;; Metaclass used for subclasses of gobject
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))
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)))
43 (defmethod validate-superclass ((class gobject-class) (super standard-class))
44 ; (subtypep (class-name super) 'gobject)
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)))
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)))
59 (defclass direct-user-data-slot-definition (direct-virtual-slot-definition)
62 (defclass effective-user-data-slot-definition (effective-virtual-slot-definition)
66 (defmethod slot-readable-p ((slotd standard-effective-slot-definition))
67 (declare (ignore slotd))
70 (defmethod slot-writable-p ((slotd standard-effective-slot-definition))
71 (declare (ignore slotd))
75 (defbinding %object-ref () pointer
78 (defbinding %object-unref () nil
81 #?(pkg-exists-p "glib-2.0" :atleast-version "2.8.0")
83 (define-callback toggle-ref-callback nil
84 ((data pointer) (location pointer) (last-ref-p boolean))
85 (declare (ignore data))
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)))
91 (cache-instance (find-cached-instance location) t)
92 (cache-instance (find-cached-instance location) nil)))
94 (defbinding %object-add-toggle-ref (location) pointer
96 (toggle-ref-callback callback)
99 (defbinding %object-remove-toggle-ref (location) pointer
101 (toggle-ref-callback callback)
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))))
109 (defbinding %object-weak-ref (location) pointer
111 (weak-ref-callback callback)
115 ; (defbinding object-class-install-param () nil
118 ; (parameter parameter))
120 ; (defbinding object-class-find-param-spec () parameter
124 (defun signal-name-to-string (name)
125 (substitute #\_ #\- (string-downcase (string name))))
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))))
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))))
140 (defmethod compute-effective-slot-definition-initargs ((class gobject-class) direct-slotds)
141 (if (eq (slot-definition-allocation (first direct-slotds)) :property)
143 (compute-most-specific-initargs direct-slotds
144 '(pname construct-only readable writable))
149 (defvar *ignore-setting-construct-only-property* nil)
150 (declaim (special *ignore-setting-construct-only-property*))
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)))
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+))))
165 (defmethod compute-slot-writer-function ((slotd effective-property-slot-definition))
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+))
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))))
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)))
191 (user-data object slot-name))))
193 (defmethod compute-slot-boundp-function ((slotd effective-user-data-slot-definition))
194 (let ((slot-name (slot-definition-name slotd)))
196 (user-data-p object slot-name))))
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))))
203 (defmethod compute-slot-makunbound-function ((slotd effective-user-data-slot-definition))
204 (let ((slot-name (slot-definition-name slotd)))
206 (unset-user-data object slot-name))))
208 (defmethod compute-slots :around ((class gobject-class))
209 (let ((slots (call-next-method)))
210 (when (some #'(lambda (slotd)
212 (eq (slot-definition-allocation slotd) :instance)
213 (not (typep slotd 'effective-special-slot-definition))))
215 (setf (slot-value class 'instance-slots-p) t))
219 ;;;; Super class for all classes in the GObject type hierarchy
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)
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))))
236 (define-type-method reader-function ((type gobject) &key (ref :read) inlined)
237 (assert-not-inlined type inlined)
239 ((:read :peek) (call-next-method type :ref :read))
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)
247 (%object-unref instance))
248 (setf (ref-pointer location offset) (make-pointer 0))
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)))
256 (defun initial-add (object function initargs key pkey)
258 as (initarg value . rest) = initargs then rest
260 ((eq initarg key) (funcall function object value))
261 ((eq initarg pkey) (mapc #'(lambda (value)
262 (funcall function object value))
266 (defun initial-apply-add (object function initargs key pkey)
267 (initial-add object #'(lambda (object value)
268 (apply function object (mklist value)))
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)
279 (defmethod allocate-foreign ((object gobject) &rest initargs)
280 (let ((init-slots ()))
281 (flet ((value-from-initargs (slotd)
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)))))
289 for slotd in (class-slots (class-of object))
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)
295 (initarg-p (push (cons slotd value) init-slots))
296 ((slot-definition-initfunction slotd)
298 (cons slotd (funcall (slot-definition-initfunction slotd)))
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))
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))
317 (%gobject-newv (type-number-of object) num-slots params)
320 with string-destroy = (destroy-function 'string)
322 as param = params then (pointer+ param element-size)
323 do (funcall string-destroy param)
324 (gvalue-unset (pointer+ param pointer-size)))))))
326 (t (%gobject-new (type-number-of object))))))
329 (defmethod shared-initialize ((object gobject) names &rest initargs)
330 (declare (ignore names initargs))
331 (let ((*ignore-setting-construct-only-property* t))
334 (defmethod initialize-instance :around ((object gobject) &rest initargs)
335 (declare (ignore initargs))
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)))))
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)
351 (format t "Finalizing proxy for 0x~8,'0X~%" (pointer-address location))
352 (%object-remove-toggle-ref location))
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")
359 (%object-unref location))))
362 (defbinding (%gobject-new "g_object_new") () pointer
366 (defbinding (%gobject-newv "g_object_newv") () pointer
368 (n-parameters unsigned-int)
375 (defbinding %object-set-property () nil
380 (defbinding %object-get-property () nil
385 (defbinding %object-notify () nil
389 (defbinding object-freeze-notify () nil
392 (defbinding object-thaw-notify () nil
398 (defbinding %object-set-qdata-full () nil
402 (destroy-marshal callback))
404 (define-callback user-data-destroy-callback nil ((id unsigned-int))
405 (destroy-user-data id))
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)
412 (defbinding %object-get-qdata () unsigned-long
416 (defun user-data (object key)
417 (find-user-data (%object-get-qdata object (quark-intern key))))
419 (defun user-data-p (object key)
420 (user-data-exists-p (%object-get-qdata object (quark-intern key))))
422 (defbinding %object-steal-qdata () unsigned-long
426 (defun unset-user-data (object key)
427 (destroy-user-data (%object-steal-qdata object (quark-intern key))))
432 (defbinding %object-class-list-properties () pointer
434 (n-properties unsigned-int :out))
437 (defun %map-params (params length type inherited-p)
439 (map-c-vector 'list #'identity params 'param length)
440 (let ((properties ()))
443 (when (eql (param-owner-type param) type)
444 (push param properties)))
445 params 'param length)
446 (nreverse properties))))
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)))
452 (multiple-value-bind (array length)
453 (%object-class-list-properties class)
454 (unless (null-pointer-p array)
456 (%map-params array length type-number inherited-p)
457 (deallocate-memory array))))
458 ; (type-class-unref type-number)
462 (defun default-slot-name (name)
463 (let ((prefix-len (length (package-prefix))))
464 (intern (substitute #\- #\_
467 (string-prefix-p (package-prefix) name)
468 (char= #\- (char name prefix-len)))
469 (subseq name (1+ prefix-len))
472 (defun default-slot-accessor (class-name slot-name type)
475 nil "~A-~A~A" class-name slot-name
476 (if (eq type 'boolean) "-P" ""))))
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)))
486 :allocation :property :pname ,name
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)))
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)))
503 ;; readable/writable/construct
504 ,@(when (or (not (member :writable flags))
505 (member :construct-only flags))
507 ,@(when (not (member :readable flags))
509 ,@(when (member :construct-only flags)
510 '(:construct-only t))
513 ,@(if (find :initarg args)
514 (let ((initarg (getf args :initarg)))
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"))))
524 :documentation ,documentation))))
527 (defun slot-definitions (class properties slots)
529 for property in properties
531 (find (param-name property) slots
532 :key #'(lambda (slot) (getf (rest slot) :pname))
534 (find (param-name property) slots
535 :key #'first :test #'string-equal))
538 (push (slot-definition-from-property class property) slots))
539 ((getf (rest slot) :merge)
542 (rest (slot-definition-from-property class property (first slot) (rest slot)))))))
543 (delete-if #'(lambda (slot) (getf (rest slot) :ignore)) slots))
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
552 (slot-definitions class (query-object-class-properties type) slots))
553 (:metaclass ,metaclass)
554 (:gtype ,(register-type-as type)))))
556 (defun gobject-dependencies (type options)
561 (type-interfaces type)
562 (mapcar #'param-value-type (query-object-class-properties type))
563 (getf options :dependencies)
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))))))
571 (register-derivable-type 'gobject "GObject" 'expand-gobject-type 'gobject-dependencies)
574 ;;; Pseudo type for gobject instances which have their reference count
575 ;;; increased by the returning function
577 (deftype referenced (type) type)
579 (define-type-method from-alien-form ((type referenced) form &key (ref :free))
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))))
586 (define-type-method from-alien-function ((type referenced) &key (ref :free))
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))))