Mercurial > hg > xemacs-beta
annotate lisp/packages.el @ 5327:d1b17a33450b
Move the heavy lifting from cl-seq.el to C.
src/ChangeLog addition:
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
Move the heavy lifting from cl-seq.el to C, finally making those
functions first-class XEmacs citizens, with circularity checking,
built-in support for tests other than #'eql, and as much
compatibility with current Common Lisp as Paul Dietz' tests require.
* fns.c (check_eq_nokey, check_eq_key, check_eql_nokey)
(check_eql_key, check_equal_nokey, check_equal_key)
(check_equalp_nokey, check_equalp_key, check_string_match_nokey)
(check_string_match_key, check_other_nokey, check_other_key)
(check_if_nokey, check_if_key, check_match_eq_key)
(check_match_eql_key, check_match_equal_key)
(check_match_equalp_key, check_match_other_key): New. These are
basically to provide function pointers to be used by Lisp
functions that take TEST, TEST-NOT and KEY arguments.
(get_check_match_function_1, get_check_test_function)
(get_check_match_function): These functions work out which of the
previous list of functions to use, given the keywords supplied by
the user.
(count_with_tail): New. This is the bones of #'count.
(list_count_from_end, string_count_from_end): Utility functions
for #'count.
(Fcount): New, moved from cl-seq.el.
(list_position_cons_before): New. The implementation of #'member*,
and important in implementing various other functions.
(FmemberX, Fadjoin, FassocX, FrassocX, Fposition, Ffind)
(FdeleteX, FremoveX, Fdelete_duplicates, Fremove_duplicates)
(Fnsubstitute, Fsubstitute, Fsublis, Fnsublis, Fsubst, Fnsubst)
(Ftree_equal, Fmismatch, Fsearch, Fintersection, Fnintersection)
(Fsubsetp, Fset_difference, Fnset_difference, Fnunion, Funion)
(Fset_exclusive_or, Fnset_exclusive_or): New, moved here from
cl-seq.el.
(position): New. The implementation of #'find and #'position.
(list_delete_duplicates_from_end, subst, sublis, nsublis)
(tree_equal, mismatch_from_end, mismatch_list_list)
(mismatch_list_string, mismatch_list_array)
(mismatch_string_array, mismatch_string_string)
(mismatch_array_array, get_mismatch_func): Helper C functions for
the Lisp-visible functions.
(venn, nvenn): New. The implementation of the main Lisp functions that
treat lists as sets.
lisp/ChangeLog addition:
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* cl-seq.el:
Move the heavy lifting from this file to C. Dump the
cl-parsing-keywords macro, but don't use defun* for the functions
we define that do take keywords, dynamic scope lossage makes that
not practical.
* subr.el (sort, fillarray): Move these aliases here.
(map-plist): #'nsublis is now built-in, but at this point #'eql
isn't necessarily available as a test; use #'eq.
* obsolete.el (cl-delete-duplicates): Make this available for old
compiler macros and old code.
(memql): Document that this is equivalent to #'member*, and worse.
* cl.el (adjoin, subst): Removed. These are in C.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 30 Dec 2010 01:59:52 +0000 |
parents | d27c1ee1943b |
children | 311f6817efc2 b9167d522a9a |
rev | line source |
---|---|
428 | 1 ;;; packages.el --- Low level support for XEmacs packages |
2 | |
3 ;; Copyright (C) 1997 Free Software Foundation, Inc. | |
2557 | 4 ;; Copyright (C) 2002, 2003, 2004 Ben Wing. |
428 | 5 |
6 ;; Author: Steven L Baur <steve@xemacs.org> | |
7 ;; Maintainer: Steven L Baur <steve@xemacs.org> | |
8 ;; Keywords: internal, lisp, dumped | |
9 | |
10 ;; This file is part of XEmacs. | |
11 | |
12 ;; XEmacs is free software; you can redistribute it and/or modify it | |
13 ;; under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; XEmacs 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 XEmacs; see the file COPYING. If not, write to the Free | |
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
25 ;; 02111-1307, USA. | |
26 | |
27 ;;; Synched up with: Not in FSF | |
28 | |
29 ;;; Commentary: | |
30 | |
31 ;; This file is dumped with XEmacs. | |
32 | |
33 ;; This file provides low level facilities for XEmacs startup -- | |
5284
d27c1ee1943b
Make the order of preloaded-file-list more sane.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5264
diff
changeset
|
34 ;; particularly regarding the package setup. |
428 | 35 |
36 ;; This file requires find-paths.el. | |
37 | |
38 ;;; Code: | |
39 | |
40 ;;; Package versioning | |
41 | |
42 (defvar packages-package-list nil | |
454 | 43 "Database of installed packages and version numbers") |
428 | 44 |
2456 | 45 ;;; Directories and paths |
46 | |
47 ;;; Terminology: | |
48 | |
49 ;;; A *package hierarchy* is a directory that contains a collection of | |
50 ;;; packages; it has lisp/, info/, etc/ etc. subdirectories that | |
51 ;;; contain the files constituting the packages. | |
52 | |
53 ;;; A *package directory* contains package hierarchies---the package | |
54 ;;; hierarchies are typically in directories "xemacs-packages", | |
55 ;;; "mule-packages", and so on. A package hierarchy might only be | |
56 ;;; applicable for specific variants of XEmacs. | |
57 | |
58 ;;; Package hierarchies come in "early", "late", and "last" variants, | |
59 ;;; depending on their relative location in the various paths. | |
60 ;;; "Early" hierarchies are typically in the user's home directory, | |
61 ;;; "late" hierarchies are typically part of the XEmacs installation, | |
62 ;;; and "last" package hierarchies are for special purposes, such as | |
63 ;;; making the packages of some previous XEmacs version available. | |
428 | 64 |
65 (defvar packages-load-path-depth 1 | |
66 "Depth of load-path search in package hierarchies.") | |
67 | |
68 (defvar packages-data-path-depth 1 | |
69 "Depth of data-path search in package hierarchies.") | |
70 | |
2456 | 71 (defvar early-package-hierarchies nil |
72 "Package hierarchies early in the load path.") | |
428 | 73 |
74 (defvar early-package-load-path nil | |
75 "Load path for packages early in the load path.") | |
76 | |
2456 | 77 (defvar late-package-hierarchies nil |
78 "Package hierarchies late in the load path.") | |
428 | 79 |
80 (defvar late-package-load-path nil | |
81 "Load path for packages late in the load path.") | |
82 | |
2456 | 83 (defvar last-package-hierarchies nil |
84 "Package hierarchies last in the load path.") | |
428 | 85 |
86 (defvar last-package-load-path nil | |
87 "Load path for packages last in the load path.") | |
88 | |
2456 | 89 (defun packages-package-hierarchy-directory-names () |
90 "Returns a list package hierarchy directory names. | |
91 These are the valid immediate directory names of package | |
92 directories, directories with higher priority first" | |
4919
9c6ea1581159
Remove a couple of XEmacs-specific duplicate functions, find-paths.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4108
diff
changeset
|
93 (delq nil `("site-packages" |
9c6ea1581159
Remove a couple of XEmacs-specific duplicate functions, find-paths.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4108
diff
changeset
|
94 ,(when (featurep 'mule) "mule-packages") |
9c6ea1581159
Remove a couple of XEmacs-specific duplicate functions, find-paths.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4108
diff
changeset
|
95 "xemacs-packages"))) |
428 | 96 |
97 (defun package-get-key-1 (info key) | |
98 "Locate keyword `key' in list." | |
99 (cond ((null info) | |
100 nil) | |
101 ((eq (car info) key) | |
102 (nth 1 info)) | |
103 (t (package-get-key-1 (cddr info) key)))) | |
104 | |
105 (defun package-get-key (name key) | |
106 "Get info `key' from package `name'." | |
107 (let ((info (assq name packages-package-list))) | |
108 (when info | |
109 (package-get-key-1 (cdr info) key)))) | |
110 | |
111 (defun package-provide (name &rest attributes) | |
112 (let ((info (if (and attributes (floatp (car attributes))) | |
113 (list :version (car attributes)) | |
114 attributes))) | |
115 (setq packages-package-list | |
116 (cons (cons name info) (remassq name packages-package-list))))) | |
117 | |
2557 | 118 (defun package-suppress (package file form) |
119 "Set up a package-suppress condition FORM for FILE in PACKAGE. | |
120 When XEmacs searches for a file in the load path, it will ignore FILE | |
121 if FORM evaluates to non-nil." | |
122 (setq load-suppress-alist | |
123 (acons (expand-file-name file load-file-name) form | |
124 load-suppress-alist))) | |
125 | |
428 | 126 (defun package-require (name version) |
127 (let ((pkg (assq name packages-package-list))) | |
128 (cond ((null pkg) | |
1410 | 129 (error 'invalid-state |
130 (format "Package %s has not been loaded into this XEmacsen" | |
131 name))) | |
428 | 132 ((< (package-get-key name :version) version) |
1410 | 133 (error 'search-failed |
134 (format "Need version %g of package %s, got version %g" | |
2252 | 135 version name (package-get-key name :version)))) |
428 | 136 (t t)))) |
137 | |
138 (defun package-delete-name (name) | |
139 (let (pkg) | |
140 ;; Delete ALL versions of package. | |
141 ;; This is pretty memory-intensive, as we use copy-alist when deleting | |
142 ;; package entries, to prevent side-effects in functions that call this | |
143 ;; one. | |
144 (while (setq pkg (assq name packages-package-list)) | |
145 (setq packages-package-list (delete pkg (copy-alist | |
1365 | 146 packages-package-list)))))) |
428 | 147 |
148 ;;; Build time stuff | |
149 | |
150 (defvar autoload-file-name "auto-autoloads.el" | |
151 "Filename that autoloads are expected to be found in.") | |
152 | |
1330 | 153 ;; Moved from help.el. |
428 | 154 ;; Unlike the FSF version, our `locate-library' uses the `locate-file' |
155 ;; primitive, which should make it lightning-fast. | |
156 | |
157 (defun locate-library (library &optional nosuffix path interactive-call) | |
158 "Show the precise file name of Emacs library LIBRARY. | |
159 This command searches the directories in `load-path' like `M-x load-library' | |
160 to find the file that `M-x load-library RET LIBRARY RET' would load. | |
161 Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el' | |
162 to the specified name LIBRARY. | |
163 | |
164 If the optional third arg PATH is specified, that list of directories | |
165 is used instead of `load-path'." | |
624 | 166 (interactive (list (read-library-name "Locate library: ") |
428 | 167 nil nil |
168 t)) | |
169 (let ((result | |
170 (locate-file | |
171 library | |
172 (or path load-path) | |
173 (cond ((or (rassq 'jka-compr-handler file-name-handler-alist) | |
174 (and (boundp 'find-file-hooks) | |
175 (member 'crypt-find-file-hook find-file-hooks))) | |
176 ;; Compression involved. | |
177 (if nosuffix | |
448 | 178 '("" ".gz" ".Z" ".bz2") |
179 '(".elc" ".elc.gz" "elc.Z" ".elc.bz2" | |
180 ".el" ".el.gz" ".el.Z" ".el.bz2" | |
181 "" ".gz" ".Z" ".bz2"))) | |
428 | 182 (t |
183 ;; No compression. | |
184 (if nosuffix | |
185 "" | |
186 '(".elc" ".el" ""))))))) | |
187 (and interactive-call | |
188 (if result | |
189 (message "Library is file %s" result) | |
190 (message "No library %s in search path" library))) | |
191 result)) | |
192 | |
193 (defun packages-add-suffix (str) | |
194 (if (null (string-match "\\.el\\'" str)) | |
195 (concat str ".elc") | |
196 str)) | |
197 | |
198 (defun packages-list-autoloads-path () | |
199 "List autoloads from precomputed load-path." | |
200 (let ((path load-path) | |
201 autoloads) | |
202 (while path | |
203 (if (file-exists-p (concat (car path) | |
204 autoload-file-name)) | |
205 (setq autoloads (cons (concat (car path) | |
206 autoload-file-name) | |
207 autoloads))) | |
208 (setq path (cdr path))) | |
209 autoloads)) | |
210 | |
211 (defun packages-list-autoloads (source-directory) | |
212 "List autoload files in (what will be) the normal lisp search path. | |
213 This function is used during build to find where the global symbol files so | |
214 they can be perused for their useful information." | |
215 (let ((files (directory-files (file-name-as-directory source-directory) | |
216 t ".*")) | |
217 file autolist) | |
218 ;; (print (prin1-to-string source-directory)) | |
219 ;; (print (prin1-to-string files)) | |
220 (while (setq file (car-safe files)) | |
221 (if (and (file-directory-p file) | |
222 (file-exists-p (concat (file-name-as-directory file) | |
223 autoload-file-name))) | |
224 (setq autolist (cons (concat (file-name-as-directory file) | |
225 autoload-file-name) | |
226 autolist))) | |
227 (setq files (cdr files))) | |
228 autolist)) | |
229 | |
230 ;; The following function cannot be called from a bare temacs | |
231 (defun packages-new-autoloads () | |
232 "Return autoloads files that have been added or modified since XEmacs dump." | |
233 (require 'loadhist) | |
234 (let ((me (concat invocation-directory invocation-name)) | |
235 (path load-path) | |
236 result dir) | |
237 (while path | |
238 (setq dir (file-truename (car path))) | |
239 (let ((autoload-file (file-name-sans-extension (concat | |
240 dir | |
241 autoload-file-name)))) | |
242 ;; Check for: | |
243 ;; 1. An auto-autoload file that hasn't provided a feature (because | |
244 ;; it has been installed since XEmacs was dumped). | |
245 ;; 2. auto-autoload.el being newer than the executable | |
246 ;; 3. auto-autoload.elc being newer than the executable (the .el | |
247 ;; could be missing or compressed) | |
248 (when (or (and (null (file-provides autoload-file)) | |
249 (or (file-exists-p (concat autoload-file ".elc")) | |
250 (file-exists-p (concat autoload-file ".el")))) | |
251 (and (file-newer-than-file-p (concat autoload-file ".el") me) | |
252 (setq autoload-file (concat autoload-file ".el"))) | |
253 (and (file-newer-than-file-p (concat autoload-file | |
254 ".elc") | |
255 me) | |
256 (setq autoload-file (concat autoload-file ".elc")))) | |
257 (push autoload-file result))) | |
258 (setq path (cdr path))) | |
259 result)) | |
260 | |
261 ;; The following function cannot be called from a bare temacs | |
262 (defun packages-reload-autoloads () | |
263 "Reload new or updated auto-autoloads files. | |
264 This is an extremely dangerous function to call after the user-init-files | |
265 is run. Don't call it or you'll be sorry." | |
266 (let ((autoload-list (packages-new-autoloads))) | |
267 (while autoload-list | |
268 (let* ((autoload-file (car autoload-list)) | |
269 (feature (car-safe (file-provides autoload-file)))) | |
270 (when feature | |
271 ;; (message "(unload-feature %S)" feature) | |
272 (unload-feature feature)) | |
273 (condition-case nil | |
274 (load autoload-file) | |
275 (t nil))) | |
276 (setq autoload-list (cdr autoload-list))))) | |
277 | |
278 ;; Data-directory is really a list now. Provide something to search it for | |
279 ;; directories. | |
280 | |
281 (defun locate-data-directory-list (name &optional dir-list) | |
282 "Locate the matching list of directories in a search path DIR-LIST. | |
283 If no DIR-LIST is supplied, it defaults to `data-directory-list'." | |
284 (unless dir-list | |
285 (setq dir-list data-directory-list)) | |
286 (let (found found-dir found-dir-list) | |
287 (while dir-list | |
288 (setq found (file-name-as-directory (concat (car dir-list) name)) | |
289 found-dir (file-directory-p found)) | |
290 (and found-dir | |
291 (setq found-dir-list (cons found found-dir-list))) | |
292 (setq dir-list (cdr dir-list))) | |
293 (nreverse found-dir-list))) | |
294 | |
295 ;; Data-directory is really a list now. Provide something to search it for | |
296 ;; a directory. | |
297 | |
298 (defun locate-data-directory (name &optional dir-list) | |
299 "Locate a directory in a search path DIR-LIST (a list of directories). | |
300 If no DIR-LIST is supplied, it defaults to `data-directory-list'." | |
301 (unless dir-list | |
302 (setq dir-list data-directory-list)) | |
303 (let (found found-dir) | |
304 (while (and (null found-dir) dir-list) | |
305 (setq found (file-name-as-directory (concat (car dir-list) name)) | |
306 found-dir (file-directory-p found)) | |
307 (or found-dir | |
308 (setq found nil)) | |
309 (setq dir-list (cdr dir-list))) | |
310 found)) | |
311 | |
312 ;; Data-directory is really a list now. Provide something to search it for | |
313 ;; files. | |
314 | |
315 (defun locate-data-file (name &optional dir-list) | |
316 "Locate a file in a search path DIR-LIST (a list of directories). | |
317 If no DIR-LIST is supplied, it defaults to `data-directory-list'. | |
318 This function is basically a wrapper over `locate-file'." | |
633 | 319 (locate-file name (or dir-list data-directory-list))) |
428 | 320 |
321 ;; Path setup | |
322 | |
2456 | 323 (defun packages-find-package-hierarchies-named (package-directories base) |
324 "Find a set of package hierarchies within an XEmacs installation. | |
325 PACKAGE-DIRECTORIES is a list of package directories. | |
326 BASE is a subdirectory name for the hierarchy. | |
327 Returns list of hierarchies." | |
328 (paths-directories-which-exist | |
329 (mapcar #'(lambda (package-directory) | |
3179 | 330 (file-name-as-directory |
331 (concat (file-name-as-directory package-directory) | |
332 base))) | |
2456 | 333 package-directories))) |
428 | 334 |
335 (defun packages-split-path (path) | |
336 "Split PATH at \"\", return pair with two components. | |
337 The second component is shared with PATH." | |
338 (let ((reverse-tail '()) | |
339 (rest path)) | |
340 (while (and rest (null (string-equal "" (car rest)))) | |
341 (setq reverse-tail (cons (car rest) reverse-tail)) | |
342 (setq rest (cdr rest))) | |
343 (if (null rest) | |
344 (cons path nil) | |
345 (cons (nreverse reverse-tail) (cdr rest))))) | |
346 | |
347 (defun packages-split-package-path (package-path) | |
348 "Split up PACKAGE-PATH into early, late and last components. | |
349 The separation is by \"\" components. | |
2456 | 350 This returns |
351 (LIST EARLY-PACKAGE-HIERARCHIES LATE-PACKAGE-HIERARCHIES LAST-PACKAGE-HIERARCHIES)." | |
428 | 352 ;; When in doubt, it's late |
353 (let* ((stuff (packages-split-path package-path)) | |
354 (early (and (cdr stuff) (car stuff))) | |
355 (late+last (or (cdr stuff) (car stuff))) | |
356 (stuff (packages-split-path late+last)) | |
357 (late (car stuff)) | |
358 (last (cdr stuff))) | |
2456 | 359 (list (mapcar #'file-name-as-directory early) |
360 (mapcar #'file-name-as-directory late) | |
361 (mapcar #'file-name-as-directory last)))) | |
428 | 362 |
363 (defun packages-deconstruct (list consumer) | |
2456 | 364 "Deconstruct LIST and feed it to CONSUMER. |
365 CONSUMER is a function that accepts the elements of LISTS as separate arguments." | |
428 | 366 (apply consumer list)) |
367 | |
2456 | 368 (defun packages-find-installation-package-directories (roots) |
369 "Find the package directories in the XEmacs installation. | |
370 ROOTS is a list of installation roots." | |
5003
6b6b0f8ab749
#'union doesn't preserve relative order; use #'delete-duplicates instead.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4919
diff
changeset
|
371 (delete-duplicates |
6b6b0f8ab749
#'union doesn't preserve relative order; use #'delete-duplicates instead.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4919
diff
changeset
|
372 (nconc (paths-find-version-directories roots (list "") nil nil nil t) |
6b6b0f8ab749
#'union doesn't preserve relative order; use #'delete-duplicates instead.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4919
diff
changeset
|
373 (paths-find-site-directories roots (list "") nil)) |
6b6b0f8ab749
#'union doesn't preserve relative order; use #'delete-duplicates instead.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4919
diff
changeset
|
374 :test #'equal)) |
428 | 375 |
3179 | 376 (defun packages-find-package-hierarchies (package-directories &optional envvar default) |
2456 | 377 "Find package hierarchies in a list of package directories. |
378 PACKAGE-DIRECTORIES is a list of package directories. | |
3179 | 379 DEFAULT is a default list of package hierarchies. |
380 ENVVAR is the name of an environment variable that may override | |
381 the default." | |
382 (let* ((envvar-value (and envvar (getenv envvar))) | |
383 (package-directories | |
384 (if envvar-value | |
385 (split-path envvar-value) | |
386 package-directories))) | |
387 | |
388 (or (and (not envvar-value) default) | |
389 (let ((package-hierarchies '()) | |
390 (hierarchy-directories (packages-package-hierarchy-directory-names))) | |
391 (while hierarchy-directories | |
392 (setq package-hierarchies | |
393 (nconc package-hierarchies | |
394 (packages-find-package-hierarchies-named | |
395 package-directories | |
396 (car hierarchy-directories)))) | |
397 (setq hierarchy-directories (cdr hierarchy-directories))) | |
398 package-hierarchies)))) | |
2456 | 399 |
400 (defun packages-find-all-package-hierarchies (roots) | |
3179 | 401 "Find the package hierarchies. |
2456 | 402 ROOTS is a list of installation roots. |
403 Returns a list of three directory lists, the first being the list of early | |
404 hierarchies, the second that of the late hierarchies, and the third the | |
405 list of the last hierarchies." | |
3179 | 406 ;; EMACSPACKAGEPATH is a historical kludge |
428 | 407 (let ((envvar-value (getenv "EMACSPACKAGEPATH"))) |
3179 | 408 (cond |
409 (envvar-value | |
3184 | 410 (packages-deconstruct |
411 (packages-split-package-path (paths-decode-directory-path envvar-value)) | |
412 ;; we get package *directories* | |
413 #'(lambda (early late last) | |
414 (list | |
415 (packages-find-package-hierarchies early | |
416 "EMACSEARLYPACKAGES") | |
417 (packages-find-package-hierarchies late | |
418 "EMACSLATEPACKAGES") | |
419 (packages-find-package-hierarchies last | |
420 "EMACSLATEPACKAGES"))))) | |
421 ;; --with-package-path is also a historical kludge | |
3179 | 422 (configure-package-path |
428 | 423 (packages-deconstruct |
424 (packages-split-package-path configure-package-path) | |
3184 | 425 ;; we get package *hierarchies* |
3179 | 426 #'(lambda (early late last) |
2456 | 427 (list |
428 (packages-find-package-hierarchies (list user-init-directory) | |
3179 | 429 "EMACSEARLYPACKAGES" |
430 early) | |
2456 | 431 (packages-find-package-hierarchies (packages-find-installation-package-directories roots) |
3179 | 432 "EMACSLATEPACKAGES" |
433 | |
434 late) | |
2456 | 435 (packages-find-package-hierarchies '() |
3179 | 436 "EMACSLASTPACKAGES" |
437 last))))) | |
438 (t | |
439 (list | |
440 (packages-find-package-hierarchies (or configure-early-package-directories | |
441 (list user-init-directory)) | |
442 "EMACSEARLYPACKAGES") | |
443 (packages-find-package-hierarchies (or configure-late-package-directories | |
444 (packages-find-installation-package-directories roots)) | |
445 "EMACSLATEPACKAGES") | |
446 (packages-find-package-hierarchies configure-last-package-directories | |
447 "EMACSLASTPACKAGES")))))) | |
448 | |
2456 | 449 (defun packages-find-package-library-path (package-hierarchies suffixes) |
428 | 450 "Construct a path into a component of the packages hierarchy. |
2456 | 451 PACKAGE-HIERARCHIES is a list of package hierarchies. |
452 SUFFIXES is a list of names of hierarchy subdirectories to look for." | |
428 | 453 (let ((directories |
5264
0d43872986b6
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5228
diff
changeset
|
454 (mapcan #'(lambda (hierarchy) |
0d43872986b6
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5228
diff
changeset
|
455 (mapcar #'(lambda (suffix) |
0d43872986b6
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5228
diff
changeset
|
456 (file-name-as-directory (concat hierarchy suffix))) |
0d43872986b6
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5228
diff
changeset
|
457 suffixes)) |
0d43872986b6
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5228
diff
changeset
|
458 package-hierarchies))) |
428 | 459 (paths-directories-which-exist directories))) |
460 | |
2456 | 461 (defun packages-find-package-load-path (package-hierarchies) |
428 | 462 "Construct the load-path component for packages. |
2456 | 463 PACKAGE-HIERARCHIES is a list of package hierarchies." |
428 | 464 (paths-find-recursive-load-path |
2456 | 465 (packages-find-package-library-path package-hierarchies |
428 | 466 '("lisp")) |
467 packages-load-path-depth)) | |
468 | |
2456 | 469 (defun packages-find-package-exec-path (package-hierarchies) |
428 | 470 "Construct the exec-path component for packages. |
2456 | 471 PACKAGE-HIERARCHIES is a list of package hierarchies." |
472 (packages-find-package-library-path package-hierarchies | |
428 | 473 (list (paths-construct-path |
474 (list "bin" system-configuration)) | |
475 "lib-src"))) | |
476 | |
2456 | 477 (defun packages-find-package-info-path (package-hierarchies) |
428 | 478 "Construct the info-path component for packages. |
2456 | 479 PACKAGE-HIERARCHIES is a list of package directories." |
480 (packages-find-package-library-path package-hierarchies '("info"))) | |
428 | 481 |
2456 | 482 (defun packages-find-package-data-path (package-hierarchies) |
428 | 483 "Construct the data-path component for packages. |
2456 | 484 PACKAGE-HIERARCHIES is a list of package hierachies." |
428 | 485 (paths-find-recursive-load-path |
2456 | 486 (packages-find-package-library-path package-hierarchies |
428 | 487 '("etc")) |
488 packages-data-path-depth)) | |
489 | |
490 ;; Loading package initialization files | |
491 | |
492 (defun packages-load-package-lisps (package-load-path base) | |
493 "Load all Lisp files of a certain name along a load path. | |
494 BASE is the base name of the files." | |
495 (mapcar #'(lambda (dir) | |
793 | 496 (let ((file-name (expand-file-name base dir))) |
497 (with-trapping-errors | |
498 :operation (format "Autoload %s" file-name) | |
499 :class 'packages | |
500 (load file-name t t)))) | |
501 package-load-path)) | |
428 | 502 |
503 (defun packages-load-package-auto-autoloads (package-load-path) | |
504 "Load auto-autoload files along a load path." | |
505 (packages-load-package-lisps package-load-path | |
506 (file-name-sans-extension autoload-file-name))) | |
507 | |
508 (defun packages-handle-package-dumped-lisps (handle package-load-path) | |
509 "Load dumped-lisp.el files along a load path. | |
510 Call HANDLE on each file off definitions of PACKAGE-LISP there." | |
511 (mapcar #'(lambda (dir) | |
512 (let ((file-name (expand-file-name "dumped-lisp.el" dir))) | |
513 (if (file-exists-p file-name) | |
514 (let (package-lisp | |
515 ;; 20.4 packages could set this | |
516 preloaded-file-list) | |
517 (load file-name) | |
518 ;; dumped-lisp.el could have set this ... | |
519 (if package-lisp | |
520 (mapcar #'(lambda (base) | |
521 (funcall handle base)) | |
522 package-lisp)))))) | |
523 package-load-path)) | |
524 | |
525 (defun packages-load-package-dumped-lisps (package-load-path) | |
526 "Load dumped-lisp.el files along a load path. | |
444 | 527 Also load files off PACKAGE-LISP definitions there." |
428 | 528 (packages-handle-package-dumped-lisps #'load package-load-path)) |
529 | |
530 (defun packages-collect-package-dumped-lisps (package-load-path) | |
531 "Load dumped-lisp.el files along a load path. | |
444 | 532 Return list of files off PACKAGE-LISP definitions there." |
428 | 533 (let ((*files* '())) |
534 (packages-handle-package-dumped-lisps | |
535 #'(lambda (file) | |
536 (setq *files* (cons file *files*))) | |
537 package-load-path) | |
538 (reverse *files*))) | |
539 | |
540 (provide 'packages) | |
541 | |
542 ;;; packages.el ends here |