r1557: *** empty log message ***
[uffi.git] / src / primitives.cl
1 ;;;; -*- Mode: 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.5 2002/03/14 21:32:23 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)
23   "Macro to define a constant and to export it"
24   `(eval-when (:compile-toplevel :load-toplevel :execute)
25      (defconstant ,name ,value)
26      (export ',name)))
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   `(if (or (eql ,val 0)
41            (eq ,val #\Null))
42       t
43     nil))
44
45       
46 (defmacro def-foreign-type (name type)
47   #+lispworks `(fli:define-c-typedef ,name ,(convert-from-uffi-type type :type))
48   #+allegro `(ff:def-foreign-type ,name ,(convert-from-uffi-type type :type))
49   #+cmu `(alien:def-alien-type ,name ,(convert-from-uffi-type type :type))
50   )
51
52 (eval-when (:compile-toplevel :load-toplevel :execute)
53   (defvar +type-conversion-hash+ (make-hash-table :size 20))
54   #+cmu (defvar +cmu-def-type-hash+ (make-hash-table :size 20))
55   )
56
57 #+cmu
58 (defconstant +cmu-def-type-list+
59     '((:char . (alien:signed 8))
60       (:unsigned-char . (alien:unsigned 8))
61       (:byte . (alien:unsigned 8))
62       (:short . (alien:signed 16))
63       (:unsigned-short . (alien:unsigned 16))
64       (:int . (alien:signed 32))
65       (:unsigned-int . (alien:unsigned 32))
66       (:long . (alien:signed 32))
67       (:unsigned-long . (alien:unsigned 32))
68       (:float . alien:single-float)
69       (:double . alien:double-float)
70       ))
71
72 #+cmu
73 (defconstant +type-conversion-list+
74     '((* . *) (:void . c-call:void) 
75       (:short . c-call:short)
76       (:pointer-void . (* t))
77       (:cstring . c-call:c-string)
78       (:char . c-call:char) 
79       (:unsigned-char . (alien:unsigned 8))
80       (:byte . (alien:unsigned 8))
81       (:int . alien:integer) (:unsigned-int . c-call:unsigned-int) 
82       (:long . c-call:long) (:unsigned-long . c-call:unsigned-long)
83       (:float . c-call:float) (:double . c-call:double)
84       (:array . alien:array)))
85 #+allegro
86 (defconstant +type-conversion-list+
87     '((* . *) (:void . :void)
88       (:short . :short)
89       (:pointer-void . (* :void))
90       (:cstring . (* :char))
91       (:char . :char)
92       (:unsigned-char . :unsigned-char)
93       (:byte . :byte)
94       (:int . :int) (:unsigned-int . :unsigned-int) 
95       (:long . :long) (:unsigned-long . :unsigned-long)
96       (:float . :float) (:double . :double)
97       (:array . :array)))
98 #+lispworks
99 (defconstant +type-conversion-list+
100     '((* . :pointer) (:void . :void) 
101       (:short . :short)
102       (:pointer-void . (:pointer :void))
103       (:cstring . (:pointer :char))
104       (:char . :char) 
105       (:unsigned-char . (:unsigned :char))
106       (:int . :int) (:unsigned-int . (:unsigned :int))
107       (:long . :long) (:unsigned-long . (:unsigned :long))
108       (:float . :float) (:double . :double)
109       (:array . :c-array)))
110
111 (dolist (type +type-conversion-list+)
112   (setf (gethash (car type) +type-conversion-hash+) (cdr type)))
113
114 #+cmu
115 (dolist (type +cmu-def-type-list+)
116   (setf (gethash (car type) +cmu-def-type-hash+) (cdr type)))
117
118 (defmethod ph (&optional (os *standard-output*))
119   (maphash #'(lambda (k v) (format os "~&~S => ~S" k v)) +type-conversion-hash+))
120
121 (defun convert-from-uffi-type (type context)
122   "Converts from a uffi type to an implementation specific type"
123   (if (atom type)
124       (cond
125        #+allegro 
126        ((and (or (eq context :routine) (eq context :return))
127              (eq type :cstring))
128         (setq type '((* :char) integer)))
129        #+cmu 
130        ((eq context :type)
131         (let ((cmu-type (gethash type +cmu-def-type-hash+)))
132           (if cmu-type
133               cmu-type
134             (let ((found-type (gethash type +type-conversion-hash+)))
135               (if found-type
136                   found-type
137                 type)))))
138        (t
139         (let ((found-type (gethash type +type-conversion-hash+)))
140           (if found-type
141               found-type
142             type))))
143     (cons (convert-from-uffi-type (first type) context) 
144           (convert-from-uffi-type (rest type) context))))
145
146
147
148
149
150