X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/8e0e01e42b1c846d06a0a38f5cfb38cf897e2f96..050f6c9f2af72fa8a1114b02e823118ef258e08a:/glib/glib.lisp diff --git a/glib/glib.lisp b/glib/glib.lisp index 6d01049..2b3e256 100644 --- a/glib/glib.lisp +++ b/glib/glib.lisp @@ -20,13 +20,22 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: glib.lisp,v 1.37 2006-04-25 21:51:32 espen Exp $ +;; $Id: glib.lisp,v 1.40 2007-06-15 12:25:16 espen Exp $ (in-package "GLIB") (use-prefix "g") +#-sb-thread +(progn + (defun make-mutex () + nil) + + (defmacro with-mutex ((mutex) &body body) + (declare (ignore mutex)) + `(progn ,@body))) + ;;;; Memory management @@ -36,48 +45,55 @@ (defbinding (%allocate-memory "g_malloc0") () pointer (defbinding (%deallocate-memory "g_free") () nil (address pointer)) -(setf - (symbol-function 'allocate-memory) #'%allocate-memory - (symbol-function 'deallocate-memory) #'%deallocate-memory) +;; (setf +;; (symbol-function 'allocate-memory) #'%allocate-memory +;; (symbol-function 'deallocate-memory) #'%deallocate-memory) +(setf *memory-allocator* #'%allocate-memory) +(setf *memory-deallocator* #'%deallocate-memory) ;;;; User data mechanism +(defvar *user-data-lock* (make-mutex)) (defvar *user-data* (make-hash-table)) (defvar *user-data-count* 0) (defun register-user-data (object &optional destroy-function) (check-type destroy-function (or null symbol function)) - (incf *user-data-count*) - (setf - (gethash *user-data-count* *user-data*) - (cons object destroy-function)) - *user-data-count*) + (with-mutex (*user-data-lock*) + (incf *user-data-count*) + (setf + (gethash *user-data-count* *user-data*) + (cons object destroy-function)) + *user-data-count*)) (defun find-user-data (id) (check-type id fixnum) - (multiple-value-bind (user-data p) (gethash id *user-data*) - (values (car user-data) p))) + (with-mutex (*user-data-lock*) + (multiple-value-bind (user-data p) (gethash id *user-data*) + (values (car user-data) p)))) (defun user-data-exists-p (id) (nth-value 1 (find-user-data id))) (defun update-user-data (id object) (check-type id fixnum) - (multiple-value-bind (user-data exists-p) (gethash id *user-data*) - (cond - ((not exists-p) (error "User data id ~A does not exist" id)) - (t - (when (cdr user-data) - (funcall (cdr user-data) (car user-data))) - (setf (car user-data) object))))) + (with-mutex (*user-data-lock*) + (multiple-value-bind (user-data exists-p) (gethash id *user-data*) + (cond + ((not exists-p) (error "User data id ~A does not exist" id)) + (t + (when (cdr user-data) + (funcall (cdr user-data) (car user-data))) + (setf (car user-data) object)))))) (defun destroy-user-data (id) (check-type id fixnum) - (let ((user-data (gethash id *user-data*))) - (when (cdr user-data) - (funcall (cdr user-data) (car user-data)))) - (remhash id *user-data*)) + (with-mutex (*user-data-lock*) + (let ((user-data (gethash id *user-data*))) + (when (cdr user-data) + (funcall (cdr user-data) (car user-data)))) + (remhash id *user-data*))) ;;;; Quarks @@ -167,6 +183,9 @@ (define-type-method size-of ((type glist) &key inlined) (assert-not-inlined type inlined) (size-of 'pointer)) +(define-type-method type-alignment ((type glist) &key inlined) + (assert-not-inlined type inlined) + (type-alignment 'pointer)) (define-type-method alien-arg-wrapper ((type glist) var list style form &optional copy-in-p) (destructuring-bind (element-type) (rest (type-expand-to 'glist type)) @@ -317,6 +336,10 @@ (define-type-method size-of ((type gslist) &key inlined) (assert-not-inlined type inlined) (size-of 'pointer)) +(define-type-method type-alignment ((type gslist) &key inlined) + (assert-not-inlined type inlined) + (type-alignment 'pointer)) + (define-type-method alien-arg-wrapper ((type gslist) var list style form &optional copy-in-p) (destructuring-bind (element-type) (rest (type-expand-to 'gslist type)) (cond