8a29b21318087606e6956b928cd377776206114a
[uffi.git] / src / primitives.cl
1 ;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          primitives.cl
6 ;;;; Purpose:       UFFI source to handle immediate types
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: primitives.cl,v 1.13 2002/03/23 09:32:43 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI 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 :uffi)
21
22 (defmacro def-constant (name value &key (export nil))
23   "Macro to define a constant and to export it"
24   `(eval-when (:compile-toplevel :load-toplevel :execute)
25      (defconstant ,name ,value)
26      ,(if export (list 'export `(quote ,name)) (values))))
27
28 (defmacro def-type (name type)
29   "Generates a (deftype) statement for CL. Currently, only CMUCL
30 supports takes advantage of this optimization."
31   #+(or lispworks allegro)
32   (declare (ignore type))
33   #+(or lispworks allegro)
34   `(deftype ,name () t)
35   #+cmu
36   `(deftype ,name () '(alien:alien ,(convert-from-uffi-type type :declare)))
37   )
38
39 (defmacro null-char-p (val)
40   "Returns T if character is NULL"
41   `(zerop ,val))
42       
43 (defmacro def-foreign-type (name type)
44   #+lispworks `(fli:define-c-typedef ,name ,(convert-from-uffi-type type :type))
45   #+allegro `(ff:def-foreign-type ,name ,(convert-from-uffi-type type :type))
46   #+cmu `(alien:def-alien-type ,name ,(convert-from-uffi-type type :type))
47   )
48
49 (eval-when (:compile-toplevel :load-toplevel :execute)
50   (defvar +type-conversion-hash+ (make-hash-table :size 20))
51   #+cmu (defvar +cmu-def-type-hash+ (make-hash-table :size 20))
52   )
53
54 #+cmu
55 (defconstant +cmu-def-type-list+
56     '((:char . (alien:signed 8))
57       (:unsigned-char . (alien:unsigned 8))
58       (:byte . (alien:unsigned 8))
59       (:short . (alien:signed 16))
60       (:unsigned-short . (alien:unsigned 16))
61       (:int . (alien:signed 32))
62       (:unsigned-int . (alien:unsigned 32))
63       (:long . (alien:signed 32))
64       (:unsigned-long . (alien:unsigned 32))
65       (:float . alien:single-float)
66       (:double . alien:double-float)
67       )
68   "Conversions in CMUCL or def-foreign-type are different thatn in def-function")
69
70
71 #+cmu
72 (defconstant +type-conversion-list+
73     '((* . *) (:void . c-call:void) 
74       (:short . c-call:short)
75       (:pointer-void . (* t))
76       (:cstring . c-call:c-string)
77       (:char . c-call:char) 
78       (:unsigned-char . (alien:unsigned 8))
79       (:byte . (alien:unsigned 8))
80       (:short . c-call:unsigned-short) 
81       (:unsigned-short . c-call:unsigned-short)
82       (:int . alien:integer) (:unsigned-int . c-call:unsigned-int) 
83       (:long . c-call:long) (:unsigned-long . c-call:unsigned-long)
84       (:float . c-call:float) (:double . c-call:double)
85       (:array . alien:array)))
86 #+allegro
87 (defconstant +type-conversion-list+
88     '((* . *) (:void . :void)
89       (:short . :short)
90       (:pointer-void . (* :void))
91       (:cstring . (* :unsigned-char))
92       (:char . :char)
93       (:unsigned-char . :unsigned-char)
94       (:byte . :byte)
95       (:int . :int) (:unsigned-int . :unsigned-int) 
96       (:long . :long) (:unsigned-long . :unsigned-long)
97       (:float . :float) (:double . :double)
98       (:array . :array)))
99 #+lispworks
100 (defconstant +type-conversion-list+
101     '((* . :pointer) (:void . :void) 
102       (:short . :short)
103       (:pointer-void . (:pointer :void))
104       (:cstring . (:reference-pass :ef-mb-string :allow-null t))
105       (:cstring-returning . (:reference :ef-mb-string :allow-null t))
106       (:char . :char)
107       (:byte :byte)
108       (:unsigned-char . (:unsigned :char))
109       (:int . :int) (:unsigned-int . (:unsigned :int))
110       (:long . :long) (:unsigned-long . (:unsigned :long))
111       (:float . :float) (:double . :double)
112       (:array . :c-array)))
113
114 (dolist (type +type-conversion-list+)
115   (setf (gethash (car type) +type-conversion-hash+) (cdr type)))
116
117 #+cmu
118 (dolist (type +cmu-def-type-list+)
119   (setf (gethash (car type) +cmu-def-type-hash+) (cdr type)))
120
121 (defun basic-convert-from-uffi-type (type)
122   (let ((found-type (gethash type +type-conversion-hash+)))
123     (if found-type
124         found-type
125         type)))
126
127 (defun convert-from-uffi-type (type context)
128   "Converts from a uffi type to an implementation specific type"
129   (if (atom type)
130       (cond
131        #+allegro 
132        ((and (or (eq context :routine) (eq context :return))
133              (eq type :cstring))
134         (setq type '((* :char) integer)))
135        #+cmu 
136        ((eq context :type)
137         (let ((cmu-type (gethash type +cmu-def-type-hash+)))
138           (if cmu-type
139               cmu-type
140               (basic-convert-from-uffi-type type))))
141        #+lispworks
142        ((and (eq context :return)
143              (eq type :cstring))
144         (basic-convert-from-uffi-type :cstring-returning))
145        (t
146         (basic-convert-from-uffi-type type)))
147       (cons (convert-from-uffi-type (first type) context) 
148             (convert-from-uffi-type (rest type) context))))
149
150
151
152
153
154