1d072edcd2bc35f1a0e279a68f3f4db7dc12c48e
[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.32 2003/06/23 19:25:30 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 (in-package #:clsql-uffi)
20
21
22 (defun canonicalize-type-list (types auto-list)
23   "Ensure a field type list meets expectations"
24   (declaim (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     (declaim (fixnum length-types length-auto-list i))
32     (if (>= i length-types)
33         (push t new-types) ;; types is shorted 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   :returning :unsigned-int)
78
79 (uffi:def-constant +2^32+ 4294967296)
80 (uffi:def-constant +2^32-1+ (1- +2^32+))
81
82 (defmacro make-64-bit-integer (high32 low32)
83   `(+ ,low32 (ash ,high32 32)))
84
85 (defmacro split-64-bit-integer (int64)
86   `(values (ash ,int64 -32) (logand ,int64 +2^32-1+)))
87
88 (uffi:def-type char-ptr-def (* :unsigned-char))
89
90 (defun convert-raw-field (char-ptr types index)
91   (declare (optimize (speed 3) (safety 0) (space 0))
92            (type char-ptr-def char-ptr))
93   (let ((type (if (listp types)
94                   (nth index types)
95                   types)))
96     (cond
97       ((uffi:null-pointer-p char-ptr)
98        nil)
99       (t
100        (case type
101          (:double
102           (atof char-ptr))
103          ((or :int32 :int)
104           (atoi char-ptr))
105          (:int64
106           (uffi:with-foreign-object (high32-ptr :int)
107             (let ((low32 (atol64 char-ptr high32-ptr))
108                   (high32 (uffi:deref-pointer high32-ptr :int)))
109               (if (zerop high32)
110                   low32
111                   (make-64-bit-integer high32 low32)))))
112          (t
113           (uffi:convert-from-foreign-string char-ptr :locale :none)))))))
114