r10077: * multiple: Apply patch from Joerg Hoehle with multiple
[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$
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 (in-package #:clsql-uffi)
20
21
22 (defun canonicalize-type-list (types auto-list)
23   "Ensure a field type list meets expectations"
24   (declare (optimize (speed 3) (safety 0)))
25   (do ((i 0 (1+ i))
26        (new-types '())
27        (length-types (length types))
28        (length-auto-list (length auto-list)))
29       ((= i length-auto-list)
30        (nreverse new-types))
31     (declare (fixnum length-types length-auto-list i))
32     (if (>= i length-types)
33         (push t new-types) ;; types is shorter than num-fields
34         (push
35          (case (nth i types)
36            (:int
37             (case (nth i auto-list)
38               (:int32
39                :int32)
40               (:int64
41                :int64)
42               (t
43                t)))
44            (:double
45             (case (nth i auto-list)
46               (:double
47                :double)
48               (t
49                t)))
50            (:int32
51             (if (eq :int32 (nth i auto-list))
52                 :int32
53                 t))
54            (:int64
55             (if (eq :int64 (nth i auto-list))
56                 :int64
57                 t))
58            (t
59             t))
60          new-types))))
61
62 (uffi:def-function "atoi"
63     ((str (* :unsigned-char)))
64   :returning :int)
65
66 (uffi:def-function "atol"
67     ((str (* :unsigned-char)))
68   :returning :long)
69
70 (uffi:def-function "atof"
71     ((str (* :unsigned-char)))
72   :returning :double)
73
74 (uffi:def-function "atol64"
75     ((str (* :unsigned-char))
76      (high32 (* :int)))
77   :module "clsql-uffi"
78   :returning :unsigned-int)
79
80 (uffi:def-constant +2^32+ 4294967296)
81 (uffi:def-constant +2^64+ 18446744073709551616)
82 (uffi:def-constant +2^32-1+ (1- +2^32+))
83
84 (defmacro make-64-bit-integer (high32 low32)
85   `(if (zerop (ldb (byte 1 31) ,high32))
86        (+ ,low32 (ash ,high32 32))
87      (- (+ ,low32 (ash ,high32 32)) +2^64+)))
88
89 ;; From high to low ints
90 (defmacro make-128-bit-integer (a b c d)
91   `(+ ,d (ash ,c 32) (ash ,b 64) (ash ,a 96)))
92
93 (defmacro split-64-bit-integer (int64)
94   `(values (ash ,int64 -32) (logand ,int64 +2^32-1+)))
95
96 (uffi:def-type char-ptr-def (* :unsigned-char))
97
98 (defun convert-raw-field (char-ptr types index &optional length)
99   (declare (optimize (speed 3) (safety 0) (space 0))
100            (type char-ptr-def char-ptr))
101   (let ((type (if (consp types)
102                   (nth index types)
103                   types)))
104     (cond
105       ((uffi:null-pointer-p char-ptr)
106        nil)
107       (t
108        (case type
109          (:double
110           (atof char-ptr))
111          ((:int32 :int)
112           (atoi char-ptr))
113          (:int64
114           (uffi:with-foreign-object (high32-ptr :int)
115             (let ((low32 (atol64 char-ptr high32-ptr))
116                   (high32 (uffi:deref-pointer high32-ptr :int)))
117               (if (zerop high32)
118                   low32
119                   (make-64-bit-integer high32 low32)))))
120          (t
121           (if length
122               (uffi:convert-from-foreign-string char-ptr :locale :none
123                                                 :null-terminated-p nil
124                                                 :length length)
125             (uffi:convert-from-foreign-string char-ptr :locale :none))))))))
126