r2784: *** empty log message ***
[uffi.git] / src-main / libraries.cl
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10; Package: UFFI -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          libraries.cl
6 ;;;; Purpose:       UFFI source to load foreign libraries
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: libraries.cl,v 1.2 2002/09/20 04:51:14 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 (defvar *loaded-libraries* nil
23   "List of foreign libraries loaded. Used to prevent reloading a library")
24
25 (defun default-foreign-library-type ()
26   "Returns string naming default library type for platform"
27   #+(or win32 mswindows) "dll"
28   #-(or win32 mswindows macosx) "so"
29   #+macosx "dylib")
30
31 (defun find-foreign-library (names directories &key types drive-letters)  
32   "Looks for a foreign library. directories can be a single
33 string or a list of strings of candidate directories. Use default
34 library type if type is not specified."
35   (unless types
36     (setq types (default-foreign-library-type)))
37   (unless (listp types)
38     (setq types (list types)))
39   (unless (listp names)
40     (setq names (list names)))
41   (unless (listp directories)
42     (setq directories (list directories)))
43   #+(or win32 mswindows)
44   (unless (listp drive-letters)
45     (setq drive-letters (list drive-letters)))
46   #-(or win32 mswindows)
47   (setq drive-letters '(nil))
48   (dolist (drive-letter drive-letters)
49     (dolist (name names)
50       (dolist (dir directories)
51         (dolist (type types)
52           (let ((path (make-pathname 
53                        #+lispworks :host
54                        #+lispworks (when drive-letter drive-letter)
55                        #-lispworks :device
56                        #-lispworks (when drive-letter drive-letter)
57                        :name name 
58                        :type type
59                        :directory 
60                        (etypecase dir
61                          (pathname
62                           (pathname-directory dir))
63                          (list
64                           dir)
65                          (string
66                           (pathname-directory 
67                            (parse-namestring dir)))))))
68             (when (probe-file path)
69               (return-from find-foreign-library path)))))))
70    nil)
71
72
73 (defun load-foreign-library (filename &key module supporting-libraries
74                                            force-load)
75   #+allegro (declare (ignore module supporting-libraries))
76   #+lispworks  (declare (ignore supporting-libraries))
77   #+cmu (declare (ignore module))
78   
79   (when (and filename (probe-file filename))
80     (if (pathnamep filename)    ;; ensure filename is a string to check if
81         (setq filename (namestring filename)))  ; already loaded
82
83     (if (and (not force-load)
84              (find filename *loaded-libraries* :test #'string-equal))
85         t ;; return T, but don't reload library
86       (progn
87         #+cmu
88         (let ((type (pathname-type (parse-namestring filename))))
89           (if (equal type "so")
90               (sys::load-object-file filename)
91               (alien:load-foreign filename 
92                                   :libraries
93                                   (convert-supporting-libraries-to-string
94                                    supporting-libraries))))
95         
96         #+lispworks (fli:register-module module 
97                                          :real-name filename)
98         #+allegro (load filename)
99         
100         (push filename *loaded-libraries*)
101         t)))
102   )
103
104 (defun convert-supporting-libraries-to-string (libs)
105   (let (lib-load-list)
106     (dolist (lib libs)
107       (push (format nil "-l~A" lib) lib-load-list))
108     (nreverse lib-load-list)))