annotate lisp/find-paths.el @ 5894:23178aa71f8b

Define ALIGNOF using C11 and C++11 operators. See <CAHCOHQmG51R61KwGUNY7T5t9tXxzbyg=aGijUKYstbE+wL2-6Q@mail.gmail.com> in xemacs-patches for more information.
author Jerry James <james@xemacs.org>
date Mon, 20 Apr 2015 15:09:11 -0600
parents 308d34e9f07d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 ;;; find-paths.el --- setup various XEmacs paths
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985-1986, 1990, 1992-1997 Free Software Foundation, Inc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4 ;; Copyright (c) 1993, 1994 Sun Microsystems, Inc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5 ;; Copyright (C) 1995 Board of Trustees, University of Illinois
1330
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1227
diff changeset
6 ;; Copyright (C) 2003 Ben Wing.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
8 ;; Author: Mike Sperber <mike@xemacs.org>
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9 ;; Maintainer: XEmacs Development Team
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 ;; Keywords: internal, dumped
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12 ;; This file is part of XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
14 ;; XEmacs is free software: you can redistribute it and/or modify it
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
15 ;; under the terms of the GNU General Public License as published by the
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
16 ;; Free Software Foundation, either version 3 of the License, or (at your
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
17 ;; option) any later version.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
18
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
19 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
20 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
21 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
22 ;; for more details.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 ;; You should have received a copy of the GNU General Public License
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 4919
diff changeset
25 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27 ;;; Synched up with: Not in FSF.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
28
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
29 ;;; Commentary:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
30
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
31 ;; This file is dumped with XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
32
776
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 689
diff changeset
33 ;; This file contains basic library functionality for manipulating paths
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 689
diff changeset
34 ;; and path lists and finding paths in the XEmacs hierarchy.
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 689
diff changeset
35
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
36
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
37 ;;; Code:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
38
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
39 (defvar paths-version-control-filename-regexp
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
40 "^\\(RCS\\|CVS\\|SCCS\\)$"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
41 "File bases associated with version control.")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
42
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
43 (defvar paths-lisp-filename-regexp
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
44 "^\\(.*\\.elc?\\)$"
2297
13a418960a88 [xemacs-hg @ 2004-09-22 02:05:42 by stephent]
stephent
parents: 1330
diff changeset
45 "File bases that name Emacs Lisp files.")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
46
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
47 (defvar paths-no-lisp-directory-regexp
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
48 (concat "\\(" paths-version-control-filename-regexp "\\)"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
49 "\\|"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
50 "\\(" paths-lisp-filename-regexp "\\)")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
51 "File bases that may not be directories containing Lisp code.")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
52
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
53 (defun paths-find-recursive-path (directories &optional max-depth exclude-regexp)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
54 "Return a list of the directory hierarchy underneath DIRECTORIES.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
55 The returned list is sorted by pre-order and lexicographically.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
56 MAX-DEPTH limits the depth of the search to MAX-DEPTH level,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
57 if it is a number. If MAX-DEPTH is NIL, the search depth is unlimited.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
58 EXCLUDE-REGEXP is a regexp that matches directory names to exclude
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
59 from the search."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
60 (let ((path '()))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
61 (while directories
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
62 (let ((directory (file-name-as-directory
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
63 (expand-file-name
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
64 (car directories)))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
65 (if (paths-file-readable-directory-p directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
66 (let ((raw-entries
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
67 (if (equal 0 max-depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
68 '()
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
69 (directory-files directory nil "^[^.-]")))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
70 (reverse-dirs '()))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
71 (while raw-entries
531
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 442
diff changeset
72 (if (not (and exclude-regexp
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 442
diff changeset
73 (string-match exclude-regexp (car raw-entries))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
74 (setq reverse-dirs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
75 (cons (expand-file-name (car raw-entries) directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
76 reverse-dirs)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
77 (setq raw-entries (cdr raw-entries)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
78
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
79 (let ((sub-path
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
80 (paths-find-recursive-path (reverse reverse-dirs)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
81 (if (numberp max-depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
82 (- max-depth 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
83 max-depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
84 exclude-regexp)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
85 (setq path (nconc path
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
86 (list directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
87 sub-path))))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
88 (setq directories (cdr directories)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
89 path))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
90
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
91 (defun paths-file-readable-directory-p (filename)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
92 "Check if filename is a readable directory."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
93 (and (file-directory-p filename)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
94 (file-readable-p filename)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
95
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
96 (defun paths-find-recursive-load-path (directories &optional max-depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
97 "Construct a recursive load path underneath DIRECTORIES."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
98 (paths-find-recursive-path directories
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
99 max-depth paths-no-lisp-directory-regexp))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
100
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
101 (defun paths-chase-symlink (file-name)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
102 "Chase a symlink until the bitter end."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
103 (let ((maybe-symlink (file-symlink-p file-name)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
104 (if maybe-symlink
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
105 (let* ((directory (file-name-directory file-name))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
106 (destination (expand-file-name maybe-symlink directory)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
107 (paths-chase-symlink destination))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
108 file-name)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
109
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
110 (defun paths-construct-path (components &optional expand-directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
111 "Convert list of path components COMPONENTS into a path.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
112 If EXPAND-DIRECTORY is non-NIL, use it as a directory to feed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
113 to EXPAND-FILE-NAME."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
114 (let* ((reverse-components (reverse components))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
115 (last-component (car reverse-components))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
116 (first-components (reverse (cdr reverse-components)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
117 (path
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
118 (apply #'concat
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
119 (append (mapcar #'file-name-as-directory first-components)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
120 (list last-component)))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
121 (if expand-directory
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
122 (expand-file-name path expand-directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
123 path)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
124
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
125 (defun paths-construct-emacs-directory (root suffix base)
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
126 "Construct a directory name within the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
127 ROOT must be an installation root.
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
128 SUFFIX is the subdirectory from there.
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
129 BASE is the base to look for."
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
130 (file-name-as-directory
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
131 (expand-file-name
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
132 (concat
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
133 (file-name-as-directory root)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
134 suffix
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
135 base))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
136
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
137
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
138 (defun paths-for-each-emacs-directory (func
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
139 roots suffix bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
140 &optional envvar default keep-suffix)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
141 "Iterate over directories in the XEmacs hierarchy.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
142 FUNC is a function that called for each directory, with the directory
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
143 as the only argument.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
144 ROOTS must be a list of installation roots.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
145 SUFFIX is the subdirectory from there.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
146 BASEA is a list of possible bases to look for.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
147 ENVVAR is the name of the environment variable that might also
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
148 specify the directory.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
149 DEFAULT is the preferred value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
150 If KEEP-SUFFIX is non-nil, the suffix must be respected in searching
1218
ceedb6eeaba8 [xemacs-hg @ 2003-01-16 08:59:47 by michaels]
michaels
parents: 865
diff changeset
151 the directory."
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
152 (let ((preferred-value (or (and envvar (getenv envvar))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
153 default)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
154 (if (and preferred-value
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
155 (paths-file-readable-directory-p preferred-value))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
156 (file-name-as-directory preferred-value)
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
157 (while roots
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
158 (let ((root (car roots))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
159 (bases bases))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
160 (while bases
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
161 (let* ((base (car bases))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
162 ;; installed
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
163 (path (paths-construct-emacs-directory root suffix base)))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
164 (if (paths-file-readable-directory-p path)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
165 (funcall func path)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
166 ;; in-place
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
167 (if (null keep-suffix)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
168 (let ((path (paths-construct-emacs-directory root "" base)))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
169 (if (paths-file-readable-directory-p path)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
170 (funcall func path))))))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
171 (setq bases (cdr bases))))
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
172 (setq roots (cdr roots))))))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
173
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
174 (defun paths-find-emacs-directories (roots
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
175 suffix bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
176 &optional envvar default keep-suffix)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
177 "Find a list of directories in the XEmacs hierarchy.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
178 ROOTS must be a list of installation roots.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
179 SUFFIX is the subdirectory from there.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
180 BASES is a list of bases to look for.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
181 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
182 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
183 DEFAULT is the preferred value.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
184 If KEEP-SUFFIX is non-nil, the suffix must be respected in searching
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
185 the directory."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
186 (let ((l '()))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
187 (paths-for-each-emacs-directory #'(lambda (dir)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
188 (setq l (cons dir l)))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
189 roots
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
190 suffix bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
191 envvar default keep-suffix)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
192 (reverse l)))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
193
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
194 (defun paths-find-emacs-directory (roots suffix bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
195 &optional envvar default keep-suffix)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
196 "Find a directory in the XEmacs hierarchy.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
197 ROOTS must be a list of installation roots.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
198 SUFFIX is the subdirectory from there.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
199 BASES is a list of possible bases to look for.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
200 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
201 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
202 DEFAULT is the preferred value.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
203 If KEEP-SUFFIX is non-nil, the suffix must be respected in searching
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
204 the directory."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
205 (catch 'gotcha
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
206 (paths-for-each-emacs-directory #'(lambda (dir)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
207 (throw 'gotcha dir))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
208 roots
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
209 suffix bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
210 envvar default keep-suffix)))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
211
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
212 (defun paths-for-each-site-directory (func
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
213 roots bases
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
214 arch-dependent-p
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
215 &optional envvar default)
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
216 "Iterate over the site-specific directories in the XEmacs hierarchy.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
217 FUNC is a function that called for each directory, with the directory
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
218 as the only argument.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
219 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
220 BASES is a list of possible bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
221 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
222 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
223 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
224 DEFAULT is the preferred value."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
225 (paths-for-each-emacs-directory func
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
226 roots
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
227 (file-name-as-directory
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
228 (paths-construct-path (list
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
229 (if arch-dependent-p "lib" "share")
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
230 emacs-program-name)))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
231 bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
232 envvar default))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
233
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
234 (defun paths-find-site-directory (roots bases arch-dependent-p &optional envvar default)
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
235 "Find a site-specific directory in the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
236 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
237 BASES is a list of possible bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
238 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
239 ENVVAR is the name of the environment variable that might also
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
240 specify the directory.
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
241 DEFAULT is the preferred value."
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
242 (catch 'gotcha
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
243 (paths-for-each-site-directory #'(lambda (dir)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
244 (throw 'gotcha dir))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
245 roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
246 envvar default)))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
247
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
248 (defun paths-find-site-directories (roots bases arch-dependent-p &optional envvar default)
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
249 "Find a list of site-specific directories in the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
250 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
251 BASES is a list of bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
252 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
253 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
254 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
255 DEFAULT is the preferred value."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
256 (let ((l '()))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
257 (paths-for-each-site-directory #'(lambda (dir)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
258 (setq l (cons dir l)))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
259 roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
260 envvar default)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
261 (reverse l)))
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
262
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
263 (defun paths-for-each-version-directory (func roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
264 &optional envvar default enforce-version)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
265 "Iterate over version-specific directories in the XEmacs hierarchy.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
266 FUNC is a function that called for each directory, with the directory
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
267 as the only argument.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
268 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
269 BASES is a list of possible bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
270 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
271 ENVVAR is the name of the environment variable that might also
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
272 specify the directory.
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
273 DEFAULT is the preferred value.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
274 If ENFORCE-VERSION is non-nil, the directory must contain the XEmacs version."
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
275 (paths-for-each-emacs-directory func
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
276 roots
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
277 (file-name-as-directory
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
278 (paths-construct-path
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
279 (list (if arch-dependent-p "lib" "share")
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
280 (construct-emacs-version-name))))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
281 bases
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
282 envvar default))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
283
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
284 (defun paths-find-version-directory (roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
285 &optional envvar default enforce-version)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
286 "Find a version-specific directory in the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
287 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
288 BASES is a list of possible bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
289 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
290 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
291 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
292 DEFAULT is the preferred value.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
293 If ENFORCE-VERSION is non-nil, the directory must contain the XEmacs version."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
294 (catch 'gotcha
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
295 (paths-for-each-version-directory #'(lambda (dir)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
296 (throw 'gotcha dir))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
297 roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
298 envvar default)))
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
299
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
300 (defun paths-find-version-directories (roots bases arch-dependent-p
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
301 &optional envvar default enforce-version)
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
302 "Find a list of version-specific directories in the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
303 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
304 BASES is a list of possible bases to look for.
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
305 ARCH-DEPENDENT-P says whether the file is architecture-specific.
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
306 ENVVAR is the name of the environment variable that might also
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
307 specify the directory.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
308 DEFAULT is the preferred value.
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
309 If ENFORCE-VERSION is non-nil, the directory must contain the XEmacs version."
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
310 (let ((l '()))
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
311 (paths-for-each-version-directory #'(lambda (dir)
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
312 (setq l (cons dir l)))
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
313 roots bases arch-dependent-p
4092
9c0151d05116 [xemacs-hg @ 2007-08-02 06:33:04 by michaels]
michaels
parents: 3753
diff changeset
314 envvar default)
2481
505a24c07ba9 [xemacs-hg @ 2005-01-15 15:17:32 by michaels]
michaels
parents: 2456
diff changeset
315 (reverse l)))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
316
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
317 (defun paths-find-architecture-directory (roots bases &optional envvar default)
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
318 "Find an architecture-specific directory in the XEmacs hierarchy.
3753
a452d2a78a4e [xemacs-hg @ 2006-12-19 15:28:43 by stephent]
stephent
parents: 2481
diff changeset
319 ROOTS must be a list of installation roots.
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
320 BASES is a list of possible bases to look for.
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
321 ENVVAR is the name of the environment variable that might also
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
322 specify the directory.
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
323 DEFAULT is the preferred value."
4108
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
324 (paths-find-version-directory roots
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
325 ;; from more to less specific
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
326 (append
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
327 (mapcar
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
328 #'(lambda (base)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
329 (paths-construct-path
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
330 (list system-configuration base)))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
331 bases)
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
332 bases
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
333 (list system-configuration))
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
334 t
5da4cc7d5968 [xemacs-hg @ 2007-08-09 06:22:51 by michaels]
michaels
parents: 4092
diff changeset
335 envvar default))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
336
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
337 (defun construct-emacs-version-name ()
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
338 "Construct a string from the raw XEmacs version number."
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
339 (concat emacs-program-name "-" emacs-program-version))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
340
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
341 (defun paths-directories-which-exist (directories)
2456
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
342 "Return the directories among DIRECTORIES.
f4e405a9d18d [xemacs-hg @ 2004-12-27 12:25:14 by michaels]
michaels
parents: 2297
diff changeset
343 DIRECTORIES is a list of strings."
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
344 (let ((reverse-directories '()))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
345 (while directories
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
346 (if (paths-file-readable-directory-p (car directories))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
347 (setq reverse-directories
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
348 (cons (car directories)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
349 reverse-directories)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
350 (setq directories (cdr directories)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
351 (reverse reverse-directories)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
352
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
353 (defun paths-decode-directory-path (string &optional drop-empties)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
354 "Split STRING at path separators into a directory list.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
355 Non-\"\" components are converted into directory form.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
356 If DROP-EMPTIES is non-NIL, \"\" components are dropped from the output.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
357 Otherwise, they are left alone."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
358 (let* ((components (split-path string))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
359 (directories
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
360 (mapcar #'(lambda (component)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
361 (if (string-equal "" component)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
362 component
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
363 (file-name-as-directory component)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
364 components)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
365 (if drop-empties
4919
9c6ea1581159 Remove a couple of XEmacs-specific duplicate functions, find-paths.el
Aidan Kehoe <kehoea@parhasard.net>
parents: 4108
diff changeset
366 (delete "" directories)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
367 directories)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
368
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
369 ;;; find-paths.el ends here