semi 0.72.
[elisp/apel.git] / file-detect.el
1 ;;; file-detect.el --- Emacs Lisp file detection utility
2
3 ;; Copyright (C) 1996,1997 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version:
7 ;;      $Id: file-detect.el,v 3.2 1997/03/14 09:54:04 morioka Exp $
8 ;; Keywords: install, module
9
10 ;; This file is part of tl (Tiny Library).
11
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
16
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (defvar default-load-path load-path)
30
31 (defun add-path (path &rest options)
32   "Add PATH to `load-path' if it exists under `default-load-path'
33 directories and it does not exist in `load-path'.
34
35 You can use following PATH styles:
36         load-path relative: \"PATH/\"
37                         (it is searched from `defaul-load-path')
38         home directory relative: \"~/PATH/\" \"~USER/PATH/\"
39         absolute path: \"/HOO/BAR/BAZ/\"
40
41 You can specify following OPTIONS:
42         'all-paths      search from `load-path'
43                         instead of `default-load-path'
44         'append         add PATH to the last of `load-path'
45
46 \[file-detect.el]"
47   (let ((rest (if (memq 'all-paths options)
48                   load-path
49                 default-load-path))
50         p)
51     (if (and (catch 'tag
52                (while rest
53                  (setq p (expand-file-name path (car rest)))
54                  (if (file-directory-p p)
55                      (throw 'tag p)
56                    )
57                  (setq rest (cdr rest))
58                  ))
59              (not (member p load-path))
60              )
61         (setq load-path
62               (if (memq 'append options)
63                   (append load-path (list p))
64                 (cons p load-path)
65                 ))
66       )))
67
68 (defun add-latest-path (pattern &optional all-paths)
69   "Add latest path matched by PATTERN to `load-path'
70 if it exists under `default-load-path' directories
71 and it does not exist in `load-path'.
72
73 If optional argument ALL-PATHS is specified, it is searched from all
74 of load-path instead of default-load-path. [file-detect.el]"
75   (let ((path (get-latest-path pattern all-paths)))
76     (if path
77         (add-to-list 'load-path path)
78       )))
79
80 (defun get-latest-path (pat &optional all-paths)
81   "Return latest directory in default-load-path
82 which is matched to regexp PAT.
83 If optional argument ALL-PATHS is specified,
84 it is searched from all of load-path instead of default-load-path."
85   (catch 'tag
86     (let ((paths (if all-paths
87                     load-path
88                   default-load-path))
89           dir)
90       (while (setq dir (car paths))
91         (if (and (file-exists-p dir)
92                  (file-directory-p dir)
93                  )
94             (let ((files (sort (directory-files dir t pat t)
95                                (function file-newer-than-file-p)))
96                   file)
97               (while (setq file (car files))
98                 (if (file-directory-p file)
99                     (throw 'tag file)
100                   )
101                 (setq files (cdr files))
102                 )))
103         (setq paths (cdr paths))
104         ))))
105
106 (defun file-installed-p (file &optional paths)
107   "Return absolute-path of FILE if FILE exists in PATHS.
108 If PATHS is omitted, `load-path' is used. [file-detect.el]"
109   (if (null paths)
110       (setq paths load-path)
111     )
112   (catch 'tag
113     (let (path)
114       (while paths
115         (setq path (expand-file-name file (car paths)))
116         (if (file-exists-p path)
117             (throw 'tag path)
118           )
119         (setq paths (cdr paths))
120         ))))
121
122 (defvar exec-suffix-list '("")
123   "*List of suffixes for executable.")
124
125 (defun exec-installed-p (file &optional paths suffixes)
126   "Return absolute-path of FILE if FILE exists in PATHS.
127 If PATHS is omitted, `exec-path' is used.
128 If suffixes is omitted, `exec-suffix-list' is used. [file-detect.el]"
129   (or paths
130       (setq paths exec-path)
131       )
132   (or suffixes
133       (setq suffixes exec-suffix-list)
134       )
135   (catch 'tag
136     (while paths
137       (let ((stem (expand-file-name file (car paths)))
138             (sufs suffixes)
139             )
140         (while sufs
141           (let ((file (concat stem (car sufs))))
142             (if (file-exists-p file)
143                 (throw 'tag file)
144               ))
145           (setq sufs (cdr sufs))
146           ))
147       (setq paths (cdr paths))
148       )))
149
150 (defun module-installed-p (module &optional paths)
151   "Return t if module is provided or exists in PATHS.
152 If PATHS is omitted, `load-path' is used. [file-detect.el]"
153   (or (featurep module)
154       (exec-installed-p (symbol-name module) load-path '(".elc" ".el"))
155       ))
156
157
158 ;;; @ end
159 ;;;
160
161 (provide 'file-detect)
162
163 ;;; file-detect.el ends here