chiark / gitweb /
Fixed previous broken change to DEFBINDING
[clg] / glib / gtype.lisp
index 5c7e5a0d078c465a34da9ed36a5c98dd723e81a4..9006d32f4c570649e0afe37e324f2cb37ef252be 100644 (file)
@@ -15,7 +15,7 @@
 ;; License along with this library; if not, write to the Free Software
 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-;; $Id: gtype.lisp,v 1.24 2005-02-01 15:24:52 espen Exp $
+;; $Id: gtype.lisp,v 1.26 2005-02-10 00:20:02 espen Exp $
 
 (in-package "GLIB")
 
@@ -56,13 +56,13 @@ (defmethod from-alien-function ((type (eql 'gtype)) &rest args)
       (type-from-number type-number)))
 
 (defmethod writer-function ((type (eql 'gtype)) &rest args)
-  (declare (ignore type))
+  (declare (ignore type args))
   (let ((writer (writer-function 'type-number)))
     #'(lambda (gtype location &optional (offset 0))
        (funcall writer (find-type-number gtype t) location offset))))
 
 (defmethod reader-function ((type (eql 'gtype)) &rest args)
-  (declare (ignore type))
+  (declare (ignore type args))
   (let ((reader (reader-function 'type-number)))
     #'(lambda (location &optional (offset 0))
        (type-from-number (funcall reader location offset)))))
@@ -131,7 +131,7 @@ (defun find-type-number (type &optional error)
        (or
        type-number
        (and error (error "Type not registered: ~A" type)))))
-    (pcl::class (find-type-number (class-name type) error))))
+    (class (find-type-number (class-name type) error))))
  
 (defun type-from-number (type-number &optional error)
   (multiple-value-bind (type found)
@@ -153,35 +153,59 @@ (defbinding (find-type-name "g_type_name") (type) (copy-of string)
 (defun type-number-of (object)
   (find-type-number (type-of object) t))
 
-(defun init-type (init)
-  (mapc
-   #'(lambda (fname)
-       (funcall (mkbinding fname 'type-number)))
-   (mklist init)))
-
-(defun %init-types-in-library (pathname prefix ignore)
-  (let ((process (ext:run-program
-                 "nm" (list "-D" (namestring (truename pathname)))
-                 :output :stream :wait nil))
-       (fnames ()))
-    (labels ((read-symbols ()
-              (let ((line (read-line (ext:process-output process) nil)))
-                (when line
-                  (let ((symbol (subseq line 11)))
-                    (when (and
-                           (> (length symbol) (length prefix))
-                           (string= prefix symbol :end2 (length prefix))
-                           (search "_get_type" symbol)
-                           (not (member symbol ignore :test #'string=)))
-                      (push symbol fnames)))
-                  (read-symbols)))))
-      (read-symbols)
-      (ext:process-close process)
-      `(init-type ',fnames))))
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defun %find-types-in-library (pathname prefix ignore)
+    (let ((process (run-program
+                   "/usr/bin/nm" (list "--defined-only" "-D" (namestring (truename pathname)))
+                   :output :stream :wait nil)))
+      (unwind-protect
+         (loop 
+          as symbol = (let ((line (read-line (process-output process) nil)))
+                        (when line (subseq line 11)))                    
+          while symbol
+          when (and
+                (> (length symbol) (length prefix))
+                (string= prefix symbol :end2 (length prefix))
+                (search "_get_type" symbol)
+                (not (member symbol ignore :test #'string=)))
+          collect symbol)
+       (process-close process)))))
+
 
 (defmacro init-types-in-library (filename &key (prefix "") ignore)
-  (%init-types-in-library filename prefix ignore))
+  (let ((names (%find-types-in-library filename prefix ignore)))
+    `(progn
+       ,@(mapcar #'(lambda (name)
+                    `(progn
+                       (defbinding (,(intern name) ,name) () type-number)
+                       (,(intern name))))
+                names))))
+
+
+
+;;;; Metaclass for subclasses of ginstance
 
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defclass ginstance-class (proxy-class)
+    ()))
+
+
+(defmethod shared-initialize ((class ginstance-class) names
+                             &rest initargs &key name alien-name)
+  (declare (ignore names))
+  (let* ((class-name (or name (class-name class)))
+        (type-number
+         (find-type-number
+          (or (first alien-name) (default-alien-type-name class-name)) t)))
+    (register-type class-name type-number)
+    (if (getf initargs :size)
+       (call-next-method)
+      (let ((size (type-instance-size type-number)))
+       (apply #'call-next-method class names :size (list size) initargs)))))
+
+
+(defmethod validate-superclass ((class ginstance-class) (super standard-class))
+  (subtypep (class-name super) 'ginstance))
 
 
 ;;;; Superclass for wrapping types in the glib type system
@@ -217,31 +241,6 @@ (defmethod reader-function ((class ginstance-class) &rest args)
       (ensure-proxy-instance class (sap-ref-sap location offset))))
 
 
-;;;; Metaclass for subclasses of ginstance
-
-(eval-when (:compile-toplevel :load-toplevel :execute)
-  (defclass ginstance-class (proxy-class)
-    ()))
-
-
-(defmethod shared-initialize ((class ginstance-class) names
-                             &rest initargs &key name alien-name)
-  (declare (ignore names))
-  (let* ((class-name (or name (class-name class)))
-        (type-number
-         (find-type-number
-          (or (first alien-name) (default-alien-type-name class-name)) t)))
-    (register-type class-name type-number)
-    (if (getf initargs :size)
-       (call-next-method)
-      (let ((size (type-instance-size type-number)))
-       (apply #'call-next-method class names :size (list size) initargs)))))
-
-
-(defmethod validate-superclass ((class ginstance-class) (super standard-class))
-  (subtypep (class-name super) 'ginstance))
-
-
 ;;;; Registering fundamental types
 
 (register-type 'nil "void")
@@ -345,31 +344,33 @@ (defun find-type-dependencies (type)
       (funcall list-dependencies (find-type-number type t)))))
 
 (defun %sort-types-topologicaly (types)
-  (let ((unsorted (mapcar 
-                  #'(lambda (type)
-                      (cons type (remove-if #'(lambda (dep)
-                                                (not (find dep types)))
-                                            (find-type-dependencies type))))
-                  types))
-       (forward-define ())
+  (let ((partial-sorted
+        (sort
+         (mapcar 
+          #'(lambda (type)
+              (cons type (remove-if #'(lambda (dep)
+                                        (not (find dep types)))
+                                    (find-type-dependencies type))))
+          types)
+         #'(lambda (type1 type2) (type-is-p type2 type1)) :key #'car))
        (sorted ()))
 
     (loop
-     as tmp = unsorted then (or (rest tmp) unsorted)
+     as tmp = partial-sorted then (or (rest tmp) partial-sorted)
      while tmp
      do (destructuring-bind (type . dependencies) (first tmp)
          (cond
           ((every #'(lambda (dep)
-                      (or (find dep forward-define) (find dep sorted)))
+                      (assoc dep sorted))
                   dependencies)
-           (push type sorted)
-           (setq unsorted (delete type unsorted :key #'first)))
+           (push (cons type nil) sorted) ; no forward definition needed
+           (setq partial-sorted (delete type partial-sorted :key #'first)))
           ((some #'(lambda (dep)
                      (find type (find-type-dependencies dep)))
                  dependencies)
-           (push type forward-define)))))
-
-    (values (nreverse sorted) forward-define)))
+           (push (cons type t) sorted) ; forward definition needed
+           (setq partial-sorted (delete type partial-sorted :key #'first))))))
+    (nreverse sorted)))
 
 
 (defun expand-type-definitions (prefix &optional args)
@@ -394,24 +395,31 @@ (defun expand-type-definitions (prefix &optional args)
                              (getf (cdr options) :except)))))
                   args))))
           (find-types prefix))))
-             
+
      (dolist (type-number type-list)
        (let ((name (find-type-name type-number)))
         (register-type
          (getf (type-options type-number) :type (default-type-name name))
          type-number)))
-     
-     (multiple-value-bind  (sorted-type-list forward-define)
-        (%sort-types-topologicaly type-list)
+
+     (let ((sorted-type-list (%sort-types-topologicaly type-list)))
        `(progn
          ,@(mapcar
-            #'(lambda (type)
-                (expand-type-definition type t (type-options type)))
-            forward-define)
+            #'(lambda (pair)
+                (destructuring-bind (type . forward-p) pair
+                  (expand-type-definition type forward-p (type-options type))))
+            sorted-type-list)
          ,@(mapcar
-            #'(lambda (type)
-                (expand-type-definition type nil (type-options type)))
+            #'(lambda (pair)
+                (destructuring-bind (type . forward-p) pair
+                  (when forward-p
+                    (expand-type-definition type nil (type-options type)))))
             sorted-type-list))))))
 
 (defmacro define-types-by-introspection (prefix &rest args)
   (expand-type-definitions prefix args))
+
+
+;;;; Initialize all non static types in GObject
+
+(init-types-in-library #.(concatenate 'string (pkg-config:pkg-variable "glib-2.0" "libdir") "/libgobject-2.0.so"))