(in-package :gobject) (defclass gobject-class (standard-class) ((g-type-name :initform (error "G-TYPE-NAME must be specified") :initarg :g-type-name :reader gobject-class-g-type-name) (g-type-initializer :initform nil :initarg :g-type-initializer :reader gobject-class-g-type-initializer) (interface-p :initform nil :initarg :g-interface-p :reader gobject-class-interface-p)) (:documentation "Metaclass for GObject-based classes.")) (defun initialize-gobject-class-g-type (class) (if (gobject-class-g-type-initializer class) (let* ((initializer-fn-ptr (foreign-symbol-pointer (gobject-class-g-type-initializer class))) (type (when initializer-fn-ptr (foreign-funcall-pointer initializer-fn-ptr nil g-type)))) (if (null initializer-fn-ptr) (warn "Type initializer for class '~A' (GType '~A') is invalid: foreign symbol '~A'" (gobject-class-g-type-name class) (class-name class) (gobject-class-g-type-initializer class)) (progn (when (g-type= +g-type-invalid+ type) (warn "Declared GType name '~A' for class '~A' is invalid ('~A' returned 0)" (gobject-class-g-type-name class) (class-name class) (gobject-class-g-type-initializer class))) (unless (g-type= (gobject-class-g-type-name class) type) (warn "Declared GType name '~A' for class '~A' does not match actual GType name '~A'" (gobject-class-g-type-name class) (class-name class) (g-type-name type)))))) (unless (g-type-from-name (gobject-class-g-type-name class)) (warn "Declared GType name '~A' for class '~A' is invalid (g_type_name returned 0)" (gobject-class-g-type-name class) (class-name class))))) (defmethod initialize-instance :after ((object gobject-class) &key &allow-other-keys) (register-object-type (gobject-class-g-type-name object) (class-name object)) (at-init (object) (initialize-gobject-class-g-type object))) (defclass gobject-direct-slot-definition (standard-direct-slot-definition) ((g-property-type :initform nil :initarg :g-property-type :reader gobject-direct-slot-definition-g-property-type))) (defclass gobject-effective-slot-definition (standard-effective-slot-definition) ((g-property-type :initform nil :initarg :g-property-type :accessor gobject-effective-slot-definition-g-property-type))) (defclass gobject-property-direct-slot-definition (gobject-direct-slot-definition) ((g-property-name :initform nil :initarg :g-property-name :reader gobject-property-direct-slot-definition-g-property-name))) (defclass gobject-property-effective-slot-definition (gobject-effective-slot-definition) ((g-property-name :initform nil :initarg :g-property-name :accessor gobject-property-effective-slot-definition-g-property-name))) (defclass gobject-fn-direct-slot-definition (gobject-direct-slot-definition) ((g-getter-name :initform nil :initarg :g-getter :reader gobject-fn-direct-slot-definition-g-getter-name) (g-setter-name :initform nil :initarg :g-setter :reader gobject-fn-direct-slot-definition-g-setter-name))) (defclass gobject-fn-effective-slot-definition (gobject-effective-slot-definition) ((g-getter-name :initform nil :initarg :g-getter :accessor gobject-fn-effective-slot-definition-g-getter-name) (g-setter-name :initform nil :initarg :g-setter :accessor gobject-fn-effective-slot-definition-g-setter-name) (g-getter-fn :initform nil :accessor gobject-fn-effective-slot-definition-g-getter-fn) (g-setter-fn :initform nil :accessor gobject-fn-effective-slot-definition-g-setter-fn))) (defmethod validate-superclass ((class gobject-class) (superclass standard-class)) t) (defmethod validate-superclass ((class standard-class) (superclass gobject-class)) t) (defmethod compute-class-precedence-list ((class gobject-class)) (let ((classes (call-next-method))) (if (member (find-class 'g-object) classes) classes `(,class ,(find-class 'g-object) ,@(rest classes))))) (defmethod direct-slot-definition-class ((class gobject-class) &rest initargs &key allocation) (declare (ignore initargs)) (case allocation (:gobject-property 'gobject-property-direct-slot-definition) (:gobject-fn 'gobject-fn-direct-slot-definition) (otherwise (call-next-method)))) (defmethod effective-slot-definition-class ((class gobject-class) &rest initargs &key allocation) (declare (ignore initargs)) (case allocation (:gobject-property 'gobject-property-effective-slot-definition) (:gobject-fn 'gobject-fn-effective-slot-definition) (otherwise (call-next-method)))) (defmethod compute-effective-slot-definition ((class gobject-class) name direct-slots) (let ((effective-slot (call-next-method))) (when (typep effective-slot 'gobject-effective-slot-definition) (let ((allocation (loop for direct-slot in direct-slots when (slot-definition-allocation direct-slot) return (slot-definition-allocation direct-slot))) (property-name (loop for direct-slot in direct-slots when (and (typep direct-slot 'gobject-property-direct-slot-definition) (gobject-property-direct-slot-definition-g-property-name direct-slot)) return (gobject-property-direct-slot-definition-g-property-name direct-slot))) (property-type (loop for direct-slot in direct-slots when (gobject-direct-slot-definition-g-property-type direct-slot) return (gobject-direct-slot-definition-g-property-type direct-slot))) (property-getter (loop for direct-slot in direct-slots when (and (typep direct-slot 'gobject-fn-direct-slot-definition) (gobject-fn-direct-slot-definition-g-getter-name direct-slot)) return (gobject-fn-direct-slot-definition-g-getter-name direct-slot))) (property-setter (loop for direct-slot in direct-slots when (and (typep direct-slot 'gobject-fn-direct-slot-definition) (gobject-fn-direct-slot-definition-g-setter-name direct-slot)) return (gobject-fn-direct-slot-definition-g-setter-name direct-slot)))) (setf (gobject-effective-slot-definition-g-property-type effective-slot) (gobject-effective-slot-definition-g-property-type effective-slot)) (ecase allocation (:gobject-property (assert property-name nil "G-PROPERTY-NAME for slot ~A on class ~A must be specified" name (class-name class)) (setf (gobject-property-effective-slot-definition-g-property-name effective-slot) property-name)) (:gobject-fn (assert (or property-getter property-setter) nil "At least one of G-PROPERTY-GETTER or G-PROPERTY-SETTER for slot ~A on class ~A must be specified" name (class-name class)) (when (or (and property-getter (stringp property-getter)) (and property-setter (stringp property-setter))) (assert property-type nil "G-PROPERTY-TYPE for slot ~A on class ~A must be specified because at least one of accessor is specified as a foreign function" name (class-name class))) (setf (gobject-fn-effective-slot-definition-g-getter-name effective-slot) property-getter (gobject-fn-effective-slot-definition-g-setter-name effective-slot) property-setter (gobject-fn-effective-slot-definition-g-getter-fn effective-slot) (and property-getter (if (stringp property-getter) (compile nil `(lambda (object) (foreign-funcall ,property-getter g-object object ,property-type))) property-getter)) (gobject-fn-effective-slot-definition-g-setter-fn effective-slot) (and property-setter (if (stringp property-setter) (compile nil `(lambda (object new-value) (foreign-funcall ,property-setter g-object object ,property-type new-value :void))) property-setter))))))) effective-slot)) (defun create-gobject-from-class-and-initargs (class initargs) (when (gobject-class-interface-p class) (error "Trying to create instance of GInterface '~A' (class '~A')" (gobject-class-g-type-name class) (class-name class))) (let (arg-names arg-values arg-types nc-setters nc-arg-values) (declare (dynamic-extent arg-names arg-values arg-types nc-setters nc-arg-values)) (loop for (arg-name arg-value) on initargs by #'cddr for slot = (find arg-name (class-slots class) :key 'slot-definition-initargs :test 'member) when (and slot (typep slot 'gobject-effective-slot-definition)) do (typecase slot (gobject-property-effective-slot-definition (push (gobject-property-effective-slot-definition-g-property-name slot) arg-names) (push arg-value arg-values) (push (gobject-effective-slot-definition-g-property-type slot) arg-types)) (gobject-fn-effective-slot-definition (push (gobject-fn-effective-slot-definition-g-setter-fn slot) nc-setters) (push arg-value nc-arg-values)))) (let ((object (g-object-call-constructor (gobject-class-g-type-name class) arg-names arg-values arg-types))) (loop for fn in nc-setters for value in nc-arg-values do (funcall fn object value)) object))) (defun filter-initargs-by-class (class initargs) (iter (with slots = (class-slots class)) (for (arg-name arg-value) on initargs by #'cddr) (for slot = (find arg-name slots :key #'slot-definition-initargs :test 'member)) (unless (and slot (typep slot 'gobject-effective-slot-definition)) (nconcing (list arg-name arg-value))))) (defmethod initialize-instance ((instance g-object) &rest initargs &key &allow-other-keys) (let ((filtered-initargs (filter-initargs-by-class (class-of instance) initargs))) (apply #'call-next-method instance filtered-initargs))) (defmethod make-instance ((class gobject-class) &rest initargs &key pointer) (if pointer (progn (assert (= (length initargs) 2) nil "POINTER can not be combined with other initargs (~A)" initargs) (call-next-method)) (let ((pointer (create-gobject-from-class-and-initargs class initargs))) (apply #'call-next-method class :pointer pointer initargs)))) (defmethod slot-boundp-using-class ((class gobject-class) object (slot gobject-property-effective-slot-definition)) (handler-case (progn (g-object-property-type (pointer object) (gobject-property-effective-slot-definition-g-property-name slot) :assert-readable t) t) (property-unreadable-error () nil))) (defmethod slot-value-using-class ((class gobject-class) object (slot gobject-property-effective-slot-definition)) (g-object-call-get-property (pointer object) (gobject-property-effective-slot-definition-g-property-name slot) (gobject-effective-slot-definition-g-property-type slot))) (defmethod (setf slot-value-using-class) (new-value (class gobject-class) object (slot gobject-property-effective-slot-definition)) (g-object-call-set-property (pointer object) (gobject-property-effective-slot-definition-g-property-name slot) new-value (gobject-effective-slot-definition-g-property-type slot))) (defmethod slot-boundp-using-class ((class gobject-class) object (slot gobject-fn-effective-slot-definition)) (not (null (gobject-fn-effective-slot-definition-g-getter-fn slot)))) (defmethod slot-value-using-class ((class gobject-class) object (slot gobject-fn-effective-slot-definition)) (let ((fn (gobject-fn-effective-slot-definition-g-getter-fn slot))) (funcall fn object))) (defmethod (setf slot-value-using-class) (new-value (class gobject-class) object (slot gobject-fn-effective-slot-definition)) (funcall (gobject-fn-effective-slot-definition-g-setter-fn slot) object new-value)) (defmethod slot-boundp-using-class ((class gobject-class) object (slot gobject-effective-slot-definition)) t) (defmethod slot-makunbound-using-class ((class gobject-class) object (slot gobject-effective-slot-definition)) nil)