X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi%2Fclsql-uffi.lisp;h=2f55de39be750fc76a1fcf4311f0eeb97324270b;hb=c5fdac9a4ba0eae09de5f5f3a51727ffd8eafe5c;hp=a6d4af4da61c779dd82932474cc4a374a0d575b6;hpb=fce7c4f2a188851c40844cc1b7cface0bf099c6f;p=clsql.git diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index a6d4af4..2f55de3 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -1,4 +1,4 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +l;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: clsql-uffi.lisp,v 1.22 2003/05/17 07:45:05 kevin Exp $ +;;;; $Id: clsql-uffi.lisp,v 1.24 2003/05/17 07:52:21 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -120,33 +120,14 @@ low32 (make-64-bit-integer high32 low32))))) (t - ;; Choose optimized routine - #-(or cmu sbcl scl) - (native-to-string char-ptr) - #+(or cmu sbcl scl) - (uffi:convert-from-foreign-string char-ptr))))))) + #+allegro (native-to-string char-ptr) ;; optimized + #-allegro (uffi:convert-from-foreign-string char-ptr))))))) (uffi:def-function "strlen" ((str (* :unsigned-char))) :returning :unsigned-int) -#-allegro -(defun native-to-string (s) - (declare (optimize (speed 3) (space 0) (safety 0) (compilation-speed 0)) - (type char-ptr-def s)) - (let* ((len (strlen s)) - (str (make-string len))) - (declare (fixnum len) - (simple-string str)) - (do ((i 0)) - ((= i len)) - (declare (fixnum i)) - (setf (schar str i) - (code-char (uffi:deref-array s :unsigned-char i))) - (incf i)) - str)) - #+(and allegro ics) (defun native-to-string (s) (declare (optimize (speed 3) (space 0) (safety 0) (compilation-speed 0)) @@ -159,7 +140,7 @@ ((= i len)) (declare (fixnum i)) (setf (schar str i) - (code-char (uffi:deref-array s :unsigned-char i))) + (code-char (uffi:deref-array s '(:array :unsigned-char) i))) (incf i)) str)) @@ -176,13 +157,13 @@ ((= i len4)) (declare (fixnum i)) (setf (aref (the (simple-array (signed-byte 32) (*)) str) i) - (uffi:deref-array s :int i)) + (uffi:deref-array s '(:array :int) i)) (incf i)) (do ((i (* 4 len4))) ((= i len)) (declare (fixnum i)) (setf (aref (the (simple-array (signed-byte 8) (*)) str) i) - (uffi:deref-array s :unsigned-char i)) + (uffi:deref-array s '(:array :unsigned-char) i)) (incf i)) str))