Add minor upstream changes; conform new debian standards
[uffi.git] / src / libraries.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10; Package: UFFI -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          libraries.lisp
6 ;;;; Purpose:       UFFI source to load foreign libraries
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15
16 (in-package #:uffi)
17
18 (defvar *loaded-libraries* nil
19   "List of foreign libraries loaded. Used to prevent reloading a library")
20
21 (defun default-foreign-library-type ()
22   "Returns string naming default library type for platform"
23   #+(or win32 win64 cygwin mswindows windows) "dll"
24   #+(or macosx darwin ccl-5.0) "dylib"
25   #-(or win32 win64 cygwin mswindows windows macosx darwin ccl-5.0) "so"
26 )
27
28 (defun foreign-library-types ()
29   "Returns list of string naming possible library types for platform, sorted by preference"
30   #+(or win32 win64 windows mswindows) '("dll" "lib")
31   #+(or macosx darwin ccl-5.0) '("dylib" "bundle")
32   #-(or win32 win64 windows mswindows macosx darwin ccl-5.0) '("so" "a" "o")
33 )
34
35 (defun find-foreign-library (names directories &key types drive-letters)
36   "Looks for a foreign library. directories can be a single
37 string or a list of strings of candidate directories. Use default
38 library type if type is not specified."
39   (unless types
40     (setq types (foreign-library-types)))
41   (unless (listp types)
42     (setq types (list types)))
43   (unless (listp names)
44     (setq names (list names)))
45   (unless (listp directories)
46     (setq directories (list directories)))
47   #+(or win32 win64 windows mswindows)
48   (unless (listp drive-letters)
49     (setq drive-letters (list drive-letters)))
50   #-(or win32 win64 windows mswindows)
51   (setq drive-letters '(nil))
52   (dolist (drive-letter drive-letters)
53     (dolist (name names)
54       (dolist (dir directories)
55         (dolist (type types)
56           (let ((path (make-pathname
57                        #+lispworks :host
58                        #+lispworks (when drive-letter drive-letter)
59                        #-lispworks :device
60                        #-lispworks (when drive-letter drive-letter)
61                        :name name
62                        :type type
63                        :directory
64                        (etypecase dir
65                          (pathname
66                           (pathname-directory dir))
67                          (list
68                           dir)
69                          (string
70                           (pathname-directory
71                            (parse-namestring dir)))))))
72             (when (probe-file path)
73               (return-from find-foreign-library path)))))))
74    nil)
75
76
77 (defun load-foreign-library (filename &key module supporting-libraries
78                                            force-load)
79   #+(or allegro openmcl digitool sbcl) (declare (ignore module supporting-libraries))
80   #+(or cmu scl) (declare (ignore module))
81   #+lispworks (declare (ignore supporting-libraries))
82
83   (flet ((load-failure ()
84            (error "Unable to load foreign library \"~A\"." filename)))
85     (when (and filename (or (null (pathname-directory filename))
86                             (probe-file filename)))
87       (if (pathnamep filename)    ;; ensure filename is a string to check if already loaded
88           (setq filename (namestring (if (null (pathname-directory filename))
89                                          filename
90                                          ;; lispworks treats as UNC, so use truename
91                                          #+(and lispworks mswindows) (truename filename)
92                                          #-(and lispworks mswindows) filename))))
93
94       (if (and (not force-load)
95                (find filename *loaded-libraries* :test #'string-equal))
96           t ;; return T, but don't reload library
97       (progn
98         #+cmu
99         (let ((type (pathname-type (parse-namestring filename))))
100           (if (string-equal type "so")
101               (unless
102                   (sys::load-object-file filename)
103                 (load-failure))
104               (alien:load-foreign filename
105                                   :libraries
106                                   (convert-supporting-libraries-to-string
107                                    supporting-libraries))))
108         #+scl
109         (let ((type (pathname-type (parse-namestring filename))))
110           (alien:load-foreign filename
111                               :libraries
112                               (convert-supporting-libraries-to-string
113                                supporting-libraries)))
114         #+sbcl
115         (handler-case (sb-alien::load-1-foreign filename)
116           (sb-int:unsupported-operator (c)
117             (if (fboundp (intern "LOAD-SHARED-OBJECT" :sb-alien))
118                 (funcall (intern "LOAD-SHARED-OBJECT" :sb-alien) filename)
119                 (error c))))
120
121         #+lispworks (fli:register-module module :real-name filename
122                                          :connection-style :immediate)
123         #+allegro (load filename)
124         #+openmcl (ccl:open-shared-library filename)
125         #+digitool (ccl:add-to-shared-library-search-path filename t)
126
127         (push filename *loaded-libraries*)
128         t)))))
129
130 (defun convert-supporting-libraries-to-string (libs)
131   (let (lib-load-list)
132     (dolist (lib libs)
133       (push (format nil "-l~A" lib) lib-load-list))
134     (nreverse lib-load-list)))