X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fobjects.lisp;h=9de66f9767a4c3495e6eeef54910a0180fdc2d8c;hb=1ef9b480bdaf7d95663527f4ca1c9b7cd618ed3e;hp=f154990cef415047cc7aadb1cf46aed85b0d5961;hpb=f1efe83cb4f9c4bbc86e667b0773fd5e9f762542;p=uffi.git diff --git a/src/objects.lisp b/src/objects.lisp index f154990..9de66f9 100644 --- a/src/objects.lisp +++ b/src/objects.lisp @@ -128,25 +128,21 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+mcl (defsetf deref-pointer deref-pointer-set) -#+lispworks (defmacro ensure-char-character (obj) + #+(or (and mcl (not openmcl))) obj + #+(or allegro cmu sbcl scl openmcl) `(code-char ,obj) + ;; lispworks varies whether deref'ing array vs. slot access of a char + #+lispworks `(if (characterp ,obj) ,obj (code-char ,obj))) - -#+(and mcl (not openmcl)) -(defmacro ensure-char-character (obj) - obj) - -#+(or allegro cmu sbcl scl openmcl) -(defmacro ensure-char-character (obj) - `(code-char ,obj)) -#+(or lispworks (and mcl (not openmcl))) (defmacro ensure-char-integer (obj) - `(char-code ,obj)) + #+(or (and mcl (not openmcl))) `(char-code ,obj) + #+(or allegro cmu sbcl scl openmcl) obj + `(if (characterp ,obj) (char-code ,obj) ,obj)) -#+(or allegro cmu sbcl scl openmcl) -(defmacro ensure-char-integer (obj) - obj) +(defmacro ensure-char-storable (obj) + #+(or lispworks (and mcl (not openmcl))) obj + #+(or allegro cmu sbcl scl openmcl) `(char-code ,obj)) (defmacro pointer-address (obj) #+(or cmu scl) @@ -175,10 +171,15 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." (let ((,var (alien:addr ,obj))) ,@body))) #+sbcl - (let ((obj (gensym))) - `(sb-alien:with-alien ((,obj ,(convert-from-uffi-type (eval type) :allocate))) - (let ((,var (sb-alien:addr ,obj))) - ,@body))) + (let ((obj (gensym)) + (ctype (convert-from-uffi-type (eval type) :allocate))) + (if (and (consp ctype) (eq 'array (car ctype))) + `(sb-alien:with-alien ((,obj ,ctype)) + (let* ((,var ,obj)) + ,@body)) + `(sb-alien:with-alien ((,obj ,ctype)) + (let* ((,var (sb-alien:addr ,obj))) + ,@body)))) #+lispworks `(fli:with-dynamic-foreign-objects ((,var ,(convert-from-uffi-type (eval type) :allocate)))