r3620: *** empty log message ***
[clsql.git] / uffi / clsql-uffi.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi.cl
6 ;;;; Purpose:       Common functions for interfaces using UFFI
7 ;;;; Programmers:   Kevin M. Rosenberg
8 ;;;; Date Started:  Mar 2002
9 ;;;;
10 ;;;; $Id: clsql-uffi.lisp,v 1.2 2002/12/13 12:21:54 kevin Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :clsql-uffi)
21
22
23 (defun canonicalize-type-list (types auto-list)
24   "Ensure a field type list meets expectations"
25   (let ((length-types (length types))
26         (new-types '()))
27     (loop for i from 0 below (length auto-list)
28           do
29           (if (>= i length-types)
30               (push t new-types) ;; types is shorted than num-fields
31               (push
32                (case (nth i types)
33                  (:int
34                   (case (nth i auto-list)
35                     (:int32
36                      :int32)
37                     (:int64
38                      :int64)
39                     (t
40                      t)))
41                  (:double
42                   (case (nth i auto-list)
43                     (:double
44                      :double)
45                     (t
46                      t)))
47                  (:int32
48                   (if (eq :int32 (nth i auto-list))
49                       :int32
50                     t))
51                  (:int64
52                   (if (eq :int64 (nth i auto-list))
53                       :int64
54                     t))
55                  (t
56                   t))
57                new-types)))
58     (nreverse new-types)))
59
60 (uffi:def-function "atoi"
61     ((str (* :unsigned-char)))
62   :returning :int)
63
64 (uffi:def-function "atol"
65     ((str (* :unsigned-char)))
66   :returning :long)
67
68 (uffi:def-function "atof"
69     ((str (* :unsigned-char)))
70   :returning :double)
71
72 (uffi:def-function "atol64"
73     ((str (* :unsigned-char))
74      (high32 (* :int)))
75   :returning :unsigned-int)
76
77 (uffi:def-constant +2^32+ 4294967296)
78 (uffi:def-constant +2^32-1+ (1- +2^32+))
79
80 (defmacro make-64-bit-integer (high32 low32)
81   `(+ ,low32 (* ,high32 +2^32+)))
82
83 (defmacro split-64-bit-integer (int64)
84   `(values (ash ,int64 -32) (logand ,int64 +2^32-1+)))
85
86 (defun char-ptr-points-to-null (char-ptr)
87   "Returns T if foreign character pointer refers to 'NULL' string. Only called for numeric entries"
88   ;; Uses short cut and returns T if first character is #\N. It should
89   ;; never be non-numeric
90   (let ((char (uffi:ensure-char-character
91                (uffi:deref-pointer char-ptr :char))))
92     (eql char #\N)))
93     
94 (defun convert-raw-field (char-ptr types index)
95   (let ((type (if (listp types)
96                   (nth index types)
97                   types)))
98     (cond
99       ((and (or (eq type :double) (eq type :int32) (eq type :int)
100                 (eq type :int64))
101             (char-ptr-points-to-null char-ptr))
102        nil)
103       (t
104        (case type
105          (:double
106           (atof char-ptr))
107          ((or :int32 :int)
108           (atoi char-ptr))
109          (:int64
110           (uffi:with-foreign-object (high32-ptr :int)
111             (let ((low32 (atol64 char-ptr high32-ptr))
112                   (high32 (uffi:deref-pointer high32-ptr :int)))
113               (if (zerop high32)
114                   low32
115                   (make-64-bit-integer high32 low32)))))
116          (t
117           (uffi:convert-from-foreign-string char-ptr)))))))
118