4
|
1 ;;; file-detect.el --- Emacs Lisp file detection utility
|
|
2
|
86
|
3 ;; Copyright (C) 1996,1997 Free Software Foundation, Inc.
|
4
|
4
|
|
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
6 ;; Version:
|
108
|
7 ;; $Id: file-detect.el,v 1.4 1997/03/08 23:26:56 steve Exp $
|
4
|
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
|
108
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
4
|
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
|
86
|
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
|
4
|
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 \[file-detect.el]"
|
|
86 (catch 'tag
|
|
87 (let ((paths (if all-paths
|
|
88 load-path
|
|
89 default-load-path))
|
|
90 dir)
|
|
91 (while (setq dir (car paths))
|
|
92 (let ((files (sort (directory-files dir t pat t)
|
|
93 (function file-newer-than-file-p)))
|
|
94 file)
|
|
95 (while (setq file (car files))
|
|
96 (if (file-directory-p file)
|
|
97 (throw 'tag file)
|
|
98 )
|
|
99 (setq files (cdr files))
|
|
100 ))
|
|
101 (setq paths (cdr paths))
|
|
102 ))))
|
|
103
|
|
104 (defun file-installed-p (file &optional paths)
|
108
|
105 "Return absolute-path of FILE if FILE exists in PATHS.
|
4
|
106 If PATHS is omitted, `load-path' is used. [file-detect.el]"
|
|
107 (if (null paths)
|
|
108 (setq paths load-path)
|
|
109 )
|
|
110 (catch 'tag
|
|
111 (let (path)
|
|
112 (while paths
|
|
113 (setq path (expand-file-name file (car paths)))
|
|
114 (if (file-exists-p path)
|
|
115 (throw 'tag path)
|
|
116 )
|
|
117 (setq paths (cdr paths))
|
|
118 ))))
|
|
119
|
|
120 (defun module-installed-p (module &optional paths)
|
|
121 "Return t if module is provided or exists in PATHS.
|
|
122 If PATHS is omitted, `load-path' is used. [file-detect.el]"
|
|
123 (or (featurep module)
|
70
|
124 (let ((name (symbol-name module)))
|
|
125 (if (null paths)
|
|
126 (setq paths load-path)
|
|
127 )
|
|
128 (catch 'tag
|
|
129 (while paths
|
|
130 (let ((file (expand-file-name name (car paths))))
|
|
131 (let ((elc-file (concat file ".elc")))
|
|
132 (if (file-exists-p elc-file)
|
|
133 (throw 'tag elc-file)
|
|
134 ))
|
|
135 (let ((el-file (concat file ".el")))
|
|
136 (if (file-exists-p el-file)
|
|
137 (throw 'tag el-file)
|
|
138 ))
|
|
139 (if (file-exists-p file)
|
|
140 (throw 'tag file)
|
|
141 )
|
|
142 )
|
|
143 (setq paths (cdr paths))
|
|
144 )))))
|
4
|
145
|
|
146
|
|
147 ;;; @ end
|
|
148 ;;;
|
|
149
|
|
150 (provide 'file-detect)
|
|
151
|
|
152 ;;; file-detect.el ends here
|