r2914: rename .cl files
[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.1 2002/09/30 10:19:24 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 convert-raw-field (char-ptr types index)
87   (let ((type (if (listp types)
88                   (nth index types)
89                   types)))
90     (case type
91       (:double
92        (atof char-ptr))
93       ((or :int32 :int)
94        (atoi char-ptr))
95       (:int64
96        (uffi:with-foreign-object (high32-ptr :int)
97          (let ((low32 (atol64 char-ptr high32-ptr))
98                (high32 (uffi:deref-pointer high32-ptr :int)))
99            (if (zerop high32)
100                low32
101                (make-64-bit-integer high32 low32)))))
102       (t
103        (uffi:convert-from-foreign-string char-ptr)))))