X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi%2Fclsql-uffi.lisp;h=41d38b0a88ba98c3bbd9b211e22f6e255b76b818;hb=3acccef9826b2d59474d5d09bad453dba5df189c;hp=3b5cf719382429f26428870de84d5bb7754a1b61;hpb=73d3c42de4eb898508f635362896ddcbc1d5ce7a;p=clsql.git diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index 3b5cf71..41d38b0 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: clsql-uffi.lisp,v 1.5 2003/05/06 02:22:58 kevin Exp $ +;;;; $Id: clsql-uffi.lisp,v 1.29 2003/06/06 21:59:09 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,8 +16,7 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :clsql-uffi) +(in-package #:clsql-uffi) (defun canonicalize-type-list (types auto-list) @@ -83,9 +82,6 @@ (defmacro split-64-bit-integer (int64) `(values (ash ,int64 -32) (logand ,int64 +2^32-1+))) -(defvar +ascii-N-value+ (char-code #\N)) -(defvar +ascii-U-value+ (char-code #\U)) - (uffi:def-type char-ptr-def (* :unsigned-char)) (defun char-ptr-points-to-null (char-ptr) @@ -93,9 +89,8 @@ ;; Uses short cut and returns T if first character is #\N. It should ;; never be non-numeric (declare (type char-ptr-def char-ptr)) - (let ((char (uffi:ensure-char-character - (uffi:deref-pointer char-ptr :char)))) - (eql char #\N))) + (char-equal #\N (uffi:ensure-char-character + (uffi:deref-pointer char-ptr :char)))) (defun convert-raw-field (char-ptr types index) (let ((type (if (listp types) @@ -120,5 +115,5 @@ low32 (make-64-bit-integer high32 low32))))) (t - (uffi:convert-from-foreign-string char-ptr))))))) + (uffi:convert-from-foreign-string char-ptr :locale :none)))))))