Deprecated calling elinstall-arrange-preload explicitly
[elinstall.git] / elinstall.el
blob4372095a6da7be0336a107821972e0af212f0702
1 ;;;_ elinstall.el --- Automatically and flexibly install elisp files
3 ;;;_. Headers
4 ;;;_ , License
5 ;; Copyright (C) 2010 Tom Breton (Tehom)
7 ;; Author: Tom Breton (Tehom) <tehom@panix.com>
8 ;; Keywords: maint, tools, internal
10 ;; This file is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; This file is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24 ;;;_ , Version
25 ;;Version: 1.0
27 ;;;_ , Commentary:
29 ;; Entry points:
30 ;; elinstall Use this for overall loading
32 ;; elinstall-update-directory-autoloads
33 ;; elinstall-update-file-autoloads
34 ;; elinstall-update-directory
35 ;; elinstall-update-file
38 ;;;_ , Requires
40 (require 'autoload)
41 (require 'pp)
42 (require 'cus-edit) ;;Because we save "installedness" manually
43 (require 'byte-compile nil t) ;;
46 ;;;_. Body
47 ;;;_ , Customizations
48 ;;;_ . Group
49 (defgroup elinstall
50 '()
51 "Customizations for elinstall"
52 :group 'development)
53 ;;;_ . elinstall-default-priority
54 (defcustom elinstall-default-priority
56 "Default priority for site-start"
57 :group 'elinstall
58 :type 'integer)
59 ;;;_ . elinstall-default-preload-target
60 (defcustom elinstall-default-preload-target
61 "~/.emacs.d/site-start.d/"
62 "Default preload-target for registering autoloads"
63 :group 'elinstall
64 :type
65 '(choice
66 (const "~/.emacs.d/site-start.d/")
67 (const "/etc/emacs/site-start.d/")
68 (directory "" )
69 (const nil)
70 (const 'dot-emacs)))
71 ;;;_ . elinstall-restrain-install
72 (defcustom elinstall-restrain-install '()
73 "Restrain elinstall for specific packages"
74 :group 'elinstall
75 :type
76 '(repeat
77 (list
78 (choice :format "%[%t%]: %v"
79 (string :tag "Package name")
80 (const :tag "All packages" t))
81 (repeat :tag "Actions to restrain:"
82 (group
83 (choice
84 (const install)
85 (const autoloads)
86 (const byte-compile)
87 (const preloads)
88 (const load-path)
89 (const info-path)
90 (const customizations)
91 (const tests)
92 (const :tag "Use as default" t))
93 (choice
94 (const
95 :tag "Do this unless it's up to date"
96 update)
97 (const
98 :tag "Use the package spec for this"
100 (const
101 :tag "Don't do this at all"
102 nil)
103 (const
104 :tag "Always ask."
105 ask)
106 (const
107 :tag "Ask only when it's up-to-date."
108 ask-for-old)
109 (const
110 :tag "Do everything even if it's up to date."
111 always)))))))
114 ;;;_ . elinstall-already-installed
115 (with-no-warnings
116 (defcustom elinstall-already-installed
118 "(AUTOMATIC) Things that have already been installed.
119 This exists for recording what has been installed.
121 Though it's saved as customizable, user interaction is not
122 contemplated." ))
123 ;;Tell the byte-compiler it's a variable.
124 (defvar elinstall-already-installed)
125 ;;;_ , Types
126 ;;;_ . elinstall-stages
127 (defstruct (elinstall-stages
128 (:constructor elinstall-make-stages)
129 (:conc-name elinstall-stages->)
130 (:copier nil))
131 "The elinstall stages"
132 build-deffiles
133 run-tests
134 byte-compile
135 arrange-preloads)
136 ;;;_ , Data
137 ;;;_ . Regular expressions
138 ;;;_ , elinstall-elisp-regexp
139 (defconst elinstall-elisp-regexp
140 (let ((tmp nil))
141 (dolist
142 (suf (get-load-suffixes))
143 (unless (string-match "\\.elc" suf) (push suf tmp)))
144 (concat "^[^=.].*" (regexp-opt tmp t) "\\'"))
145 "Regular expression that matches elisp files" )
146 ;;;_ , Utilities
147 ;;;_ . elinstall-file-mod-time
148 (defsubst elinstall-file-mod-time (file)
149 "Return the modification time of FILE"
150 (nth 5 (file-attributes file)))
152 ;;;_ . elinstall-directory-true-name
153 (defun elinstall-directory-true-name ()
154 "Get the true name of the directory the calling code lives in.
155 CAUTION: This is sensitive to where it's called. That's the point of it."
156 (file-name-directory
157 (if load-file-name
158 (file-truename load-file-name)
159 (file-truename buffer-file-name))))
160 ;;;_ . Checking installedness
161 ;;;_ , elinstall-get-installation-record
162 (defun elinstall-get-installation-record (project-name)
163 "Return the installation record for PROJECT-NAME."
165 (assoc project-name elinstall-already-installed))
167 ;;;_ , elinstall-already-installed
168 (defun elinstall-already-installed (project-name)
169 "Return non-nil if PROJECT-NAME has been installed."
170 (elinstall-get-installation-record project-name))
172 ;;;_ , elinstall-record-installed
173 (defun elinstall-record-installed (project-name &optional version)
174 "Record that PROJECT-NAME has been installed."
175 (let
176 ((new-item
177 (list
178 project-name
179 (or version "0")
180 (current-time)
181 'installed))
182 (old-item
183 (elinstall-get-installation-record project-name))
184 (print-length nil)
185 (print-level nil))
186 (when old-item
187 (setq elinstall-already-installed
188 (delete old-item elinstall-already-installed)))
189 (push new-item elinstall-already-installed)
190 (customize-save-variable
191 'elinstall-already-installed
192 elinstall-already-installed
193 "Set by elinstall-record-installed")))
194 ;;;_ . Finding deffiles
195 ;;;_ , elinstall-expand-deffile-name
196 (defun elinstall-expand-deffile-name (deffile)
197 "Expand DEFFILE autoload.el's way."
199 (expand-file-name (or deffile "loaddefs.el")
200 (expand-file-name "lisp"
201 source-directory)))
202 ;;;_ . Checking restraint specs
203 ;;;_ , elinstall-call-with-restraints
204 (defun elinstall-call-with-restraints (restraints package func &rest args)
205 "Call FUNC with ARGS, in scope of RESTRAINTS.
206 RESTRAINTS is a list of package restraints. User restraints for the
207 given package will also be applied in scope.
209 PACKAGE can be `t' or a string naming a package."
211 (let*
212 ((elinstall:*pkg-restraints* restraints)
213 (elinstall:*user-restraints*
214 (let
215 ((cell
217 (assoc package elinstall-restrain-install)
218 (assoc t elinstall-restrain-install))))
219 (if cell
220 (second cell)
221 '()))))
222 (declare (special
223 elinstall:*pkg-restraints*
224 elinstall:*user-restraints*))
225 (apply func args)))
226 ;;;_ , elinstall-get-restraint
227 (defun elinstall-get-restraint (topic)
228 "Get the applicable restraint symbol for TOPIC.
229 Call this transitively only thru `elinstall-call-with-restraints'."
230 (check-type topic symbol)
231 (declare (special
232 elinstall:*pkg-restraints*
233 elinstall:*user-restraints*))
234 (unless (and
235 (boundp 'elinstall:*pkg-restraints*)
236 (boundp 'elinstall:*user-restraints*))
237 (error "elinstall-proceed-p called out of scope"))
238 (let*
240 (cell
242 (assq topic elinstall:*user-restraints*)
243 (assq t elinstall:*user-restraints*)))
244 (cell
245 ;;`t' means use the pkg-restraints value instead.
246 (if
247 (or (not cell) (eq (second cell) t))
249 (assq topic elinstall:*pkg-restraints*)
250 (assq t elinstall:*pkg-restraints*))
251 cell)))
252 ;;Default is to just update.
253 (if cell (second cell) 'update)))
255 ;;;_ , elinstall-proceed-p
256 (defun elinstall-proceed-p
257 (topic message-params &optional already-p)
258 "Return non-nil if actions on TOPIC should proceed.
259 Call this transitively only thru `elinstall-call-with-restraints'.
260 TOPIC is a symbol indicating the topic, such as `byte-compile'.
261 MESSAGE-PARAMS is a cons of:
262 * A list of format strings:
263 * To ask whether to do this action
264 * To ask whether to redo this action, for `ask-for-old'
265 * To report that this action was skipped because already done.
266 * The arguments to the formatter.
267 ALREADY-P is an extended boolean whether the task has been done
268 before, if caller can tell."
271 (destructuring-bind
272 ((ask-prompt &optional redo-prompt noredo-msg) &rest message-args)
273 message-params
274 (case (elinstall-get-restraint topic)
275 ((nil)
276 nil)
277 ((t always)
279 (update
280 (if already-p
281 (progn
282 (apply #'message noredo-msg message-args)
283 nil)
285 (ask-for-old
286 (if already-p
287 (y-or-n-p (apply #'format redo-prompt message-args))
289 (ask
290 (y-or-n-p
291 (apply #'format ask-prompt message-args))))))
292 ;;;_ , elinstall-proceed-at-all-p
293 (defsubst elinstall-proceed-at-all-p (topic)
294 "Return non-nil if there's any possibility that actions on TOPIC should proceed."
295 ;;It just so happens that `nil' treatment corresponds to `nil'
296 ;;return value here.
297 (elinstall-get-restraint topic))
299 ;;;_ , Work
300 ;;;_ . Doing actions
302 ;;;_ , Doing autoload actions (adapted from autoload.el)
303 ;;;_ . Utilities about the action list
304 ;;;_ , elinstall-remove-autogen-action
305 (defun elinstall-remove-autogen-action (file actions)
306 "Return ACTIONS minus any add-file-autoloads on FILE removed."
308 (delq nil
309 (mapcar
310 #'(lambda (act)
311 (case (car act)
312 (add-file-autoloads
313 (if (equal file (third act))
315 act))
316 (t act)))
317 actions)))
318 ;;;_ , elinstall-get-autogen-action
319 (defun elinstall-get-autogen-action (file actions)
321 (let
322 ((the-act))
323 (dolist (act actions)
324 (case (car act)
325 (add-file-autoloads
326 (when (equal file (third act))
327 (setq the-act act)))))
328 the-act))
329 ;;;_ . About printing to autoload file
330 ;;;_ , elinstall-insert-section-header
331 (defun elinstall-insert-section-header (outbuf form)
332 "Insert the section-header line,
333 which lists the file name and which functions are in it, etc."
334 (insert generate-autoload-section-header)
335 (prin1 form outbuf)
336 (terpri outbuf)
337 ;; Break that line at spaces, to avoid very long lines.
338 ;; Make each sub-line into a comment.
339 (with-current-buffer outbuf
340 (save-excursion
341 (forward-line -1)
342 (while (not (eolp))
343 (move-to-column 64)
344 (skip-chars-forward "^ \n")
345 (or (eolp)
346 (insert "\n" generate-autoload-section-continuation))))))
348 ;;;_ , elinstall-insert-autoload-section
349 (defun elinstall-insert-autoload-section (text form &optional comment-string)
350 "Insert TEXT into current buffer as an autoload section"
352 (let* (
353 (print-length nil)
354 (print-level nil)
355 ;; This does something in Lucid Emacs.
356 (print-readably t)
357 (float-output-format nil))
359 (elinstall-insert-section-header (current-buffer) form)
360 (when comment-string
361 (insert ";;; " comment-string "\n"))
362 (insert text)
363 (insert generate-autoload-section-trailer)))
365 ;;;_ . Making autoloads
366 ;;;_ , elinstall-make-autoload-action
367 (defun elinstall-make-autoload-action (buf def-file load-path-element full-path)
368 "Return the autoloads for current buffer as a string"
370 ;;We put all the text into a temp buffer, then get that buffer's
371 ;;string.
372 (let
373 ((outbuf
374 (generate-new-buffer " *temp*"))
375 (autoloads-done '())
376 (short-name
377 (file-name-nondirectory full-path))
379 (print-length nil)
380 (print-level nil)
381 ;; Apparently this does something in Lucid Emacs.
382 (print-readably t)
383 (float-output-format nil)
385 ;;load-name relative to a member of load-path.
386 (relative-name
387 (file-name-sans-extension
388 (file-relative-name
389 full-path
390 load-path-element))))
392 (with-current-buffer buf
393 (unwind-protect
394 (save-excursion
395 (save-restriction
396 (widen)
397 (goto-char (point-min))
398 (message "Finding autoloads for %s..." short-name)
399 (while (not (eobp))
400 (skip-chars-forward " \t\n\f")
401 (cond
402 ((looking-at (regexp-quote generate-autoload-cookie))
403 (search-forward generate-autoload-cookie)
404 (skip-chars-forward " \t")
405 (if (eolp)
406 ;; Read the next form and make an autoload.
407 (let* ((form (prog1 (read (current-buffer))
408 (or (bolp) (forward-line 1))))
409 (autoload
410 (make-autoload form relative-name)))
411 (if autoload
412 (push (nth 1 form) autoloads-done)
413 (setq autoload form))
414 (let ((autoload-print-form-outbuf outbuf))
415 (autoload-print-form autoload)))
417 ;; Copy the rest of the line to the output.
418 (princ (buffer-substring
419 (progn
420 ;; Back up over whitespace,
421 ;; to preserve it.
422 (skip-chars-backward " \f\t")
423 (if (= (char-after (1+ (point))) ? )
424 ;; Eat one space.
425 (forward-char 1))
426 (point))
427 (progn (forward-line 1) (point)))
428 outbuf)))
429 ((looking-at ";")
430 ;; Don't read the comment.
431 (forward-line 1))
433 (forward-sexp 1)
434 (forward-line 1))))
435 (message "Finding autoloads for %s...done" short-name))
437 ;;Return this action. The temp buffer's contents is
438 ;;our final string.
439 `(add-file-autoloads
440 ,def-file
441 ,relative-name
442 ,full-path
443 ,(with-current-buffer outbuf (buffer-string))
444 ,autoloads-done))
446 ;;This in unwind-protected
447 (when (buffer-live-p outbuf) (kill-buffer outbuf))))))
450 ;;;_ , elinstall-generate-file-autoloads
452 (defun elinstall-generate-file-autoloads
453 (relative-name full-name text autoloads-done)
454 "Insert at point a loaddefs autoload section for FILE.
455 Autoloads are generated for defuns and defmacros in FILE
456 marked by `generate-autoload-cookie' (which see).
457 If FILE is being visited in a buffer, the contents of the buffer
458 are used.
459 Return non-nil in the case where no autoloads were added at point.
461 FULL-NAME is the absolute name of the file.
462 RELATIVE-NAME is its name respective to some component of load-path."
463 (if (not (equal text ""))
464 ;; Insert the section-header line which lists the file name and
465 ;; which functions are in it, etc.
466 (elinstall-insert-autoload-section
467 text
468 (list 'autoloads
469 autoloads-done
470 relative-name
471 (autoload-trim-file-name full-name)
472 (elinstall-file-mod-time full-name))
473 (concat
474 "Generated autoloads from "
475 (autoload-trim-file-name full-name)))
478 ;;;_ , elinstall-deffile-insert-autoloads
479 (defun elinstall-deffile-insert-autoloads (file args)
480 "Update the autoloads for FILE in current buffer.
481 Return FILE if there was no autoload cookie in it, else nil.
483 Current buffer must be a loaddef-style file.
485 LOAD-NAME is the absolute name of the file.
486 RELATIVE-NAME is its name respective to some component of load-path."
487 (let (
488 (found nil)
489 (no-autoloads nil))
491 (save-excursion
492 (save-restriction
493 (widen)
494 (goto-char (point-min))
495 ;; Look for the section for FILE
496 (while (and (not found)
497 (search-forward generate-autoload-section-header nil t))
498 (let ((form (autoload-read-section-header)))
499 (cond
500 ((equal (nth 2 form) file)
501 ;; We found the section for this file.
502 (let ((begin (match-beginning 0)))
503 (progn
504 (search-forward generate-autoload-section-trailer)
505 (delete-region begin (point))
506 (setq found t))))
507 ((string< file (nth 2 form))
508 ;; We've come to a section alphabetically later than
509 ;; FILE. We assume the file is in order and so
510 ;; there must be no section for FILE. We will
511 ;; insert one before the section here.
512 (goto-char (match-beginning 0))
513 (setq found 'new)))))
514 (unless found
515 (progn
516 (setq found 'new)
517 ;; No later sections in the file. Put before the last page.
518 (goto-char (point-max))
519 (search-backward "\f" nil t)))
520 (setq no-autoloads
521 (apply #'elinstall-generate-file-autoloads
522 file args))))
524 (if no-autoloads file nil)))
525 ;;;_ . Arranging to add to info-path and load-path
526 ;;;_ , elinstall-generate-add-to-path
527 (defun elinstall-generate-add-to-path (path-element type)
528 "Insert code at point to add PATH-ELEMENT to a path.
529 If TYPE is:
530 * `add-to-load-path', add to load-path
531 * `add-to-info-path', add to Info-additional-directory-list
533 Current buffer must be a loaddef-style file."
534 (let ( (path-symbol
535 (case type
536 (add-to-load-path 'load-path)
537 (add-to-info-path 'Info-additional-directory-list)
538 (t (error "Type not recognized"))))
539 (description
540 (case type
541 (add-to-load-path "load-path")
542 (add-to-info-path "info-path")))
543 (autoloads-done '())
544 (print-length nil)
545 (print-level nil)
546 ;; This does something in Lucid Emacs.
547 (print-readably t)
548 (float-output-format nil))
550 (message "Generating %s additions..." description)
552 (elinstall-insert-autoload-section
553 (pp-to-string
554 `(add-to-list ',path-symbol
555 (expand-file-name
556 ,(file-relative-name path-element)
557 (if load-file-name
558 (file-name-directory
559 (file-truename load-file-name))))))
560 (list type (list path-element) nil nil nil)
561 nil)
562 (message "Generating %s additions...done" description)))
565 ;;;_ , elinstall-deffile-insert-add-to-path
566 (defun elinstall-deffile-insert-add-to-path (path-element type)
567 "Insert code in current buffer to add PATH-ELEMENT to a path.
568 If TYPE is:
569 * `add-to-load-path', add to load-path
570 * `add-to-info-path', add to Info-default-directory-list
572 Current buffer must be a loaddef-style file."
573 (let (
574 (found nil)
575 (no-autoloads nil))
577 (save-excursion
578 (save-restriction
579 (widen)
580 (goto-char (point-min))
581 ;; Look for the section for PATH-ELEMENT
582 (while (and (not found)
583 (search-forward generate-autoload-section-header nil t))
584 (let ((form (autoload-read-section-header)))
585 (cond
586 ((and
587 (equal (nth 0 form) type)
588 (member path-element (nth 1 form)))
590 ;; We found the section for this add.
591 (let ((begin (match-beginning 0)))
592 (progn
593 (search-forward generate-autoload-section-trailer)
594 (delete-region begin (point))
595 (setq found t)))))))
597 (unless found
598 (progn
599 (setq found 'new)
600 ;; No later sections in the file. Put before the last page.
601 (goto-char (point-max))
602 (search-backward "\f" nil t)))
604 (elinstall-generate-add-to-path path-element type)))
606 ;;This never belongs in the no-autoloads section.
607 nil))
608 ;;;_ . elinstall-deffile-insert
610 (defun elinstall-deffile-insert (action)
611 "Insert autoloads etc into current file according to ACTION.
612 The format of ACTION is described in the design docs.
614 Return filename if this action belongs in the no-autoload section."
616 (when action
617 (case (car action)
618 (add-file-autoloads
619 (elinstall-deffile-insert-autoloads
620 (third action)
621 (nthcdr 3 action)))
623 (add-to-load-path
624 (elinstall-deffile-insert-add-to-path
625 (third action)
626 'add-to-load-path)
627 nil)
629 (add-to-info-path
630 (elinstall-deffile-insert-add-to-path
631 (third action)
632 'add-to-info-path)
633 nil)
635 ((preload-file run-tests byte-compile)
636 (error "This case should not come here.")))))
638 ;;;_ . elinstall-prepare-deffile
639 (defun elinstall-prepare-deffile (deffile)
640 "Try to ensure that DEFFILE is available for receiving autoloads"
642 (autoload-ensure-default-file deffile)
643 (with-current-buffer (find-file-noselect deffile)
646 ;; We must read/write the file without any code conversion,
647 ;; but still decode EOLs.
648 (let ((coding-system-for-read 'raw-text))
650 ;; This is to make generated-autoload-file have Unix EOLs, so
651 ;; that it is portable to all platforms.
652 (setq buffer-file-coding-system 'raw-text-unix))
653 (or (> (buffer-size) 0)
654 (error "Autoloads file %s does not exist" buffer-file-name))
655 (or (file-writable-p buffer-file-name)
656 (error "Autoloads file %s is not writable"
657 buffer-file-name))))
659 ;;;_ . elinstall-update-deffile
661 ;;Adapted from autoload.el `update-directory-autoloads'.
663 (defun elinstall-update-deffile (target actions &optional use-load-path)
665 Update file TARGET with current autoloads as specified by ACTIONS.
666 Also remove any old definitions pointing to libraries that can no
667 longer be found.
669 ACTIONS must be a list of actions (See the format doc). Each one's
670 filename must be relative to some element of load-path.
672 USE-LOAD-PATH is a list to use as load-path. It should include
673 any new load-path that we are arranging to create. If it's not given,
674 load-path itself is used.
676 This uses `update-file-autoloads' (which see) to do its work.
677 In an interactive call, you must give one argument, the name
678 of a single directory."
679 (let
681 (use-load-path (or use-load-path load-path))
682 (this-time (current-time))
683 ;;files with no autoload cookies.
684 (no-autoloads nil))
686 (elinstall-prepare-deffile target)
687 (with-current-buffer
688 (find-file-noselect target)
689 (save-excursion
690 (setq actions
691 (elinstall-remove-autogen-action
692 (autoload-trim-file-name target)
693 actions))
695 (goto-char (point-min))
696 (while (search-forward generate-autoload-section-header nil t)
697 (let* ((form (autoload-read-section-header))
698 (file (nth 3 form)))
699 (cond ((and (consp file) (stringp (car file)))
700 ;; This is a list of files that have no
701 ;; autoload cookies.
702 ;; There shouldn't be more than one such entry.
703 ;; Remove the obsolete section.
704 (autoload-remove-section (match-beginning 0))
705 (let ((last-time (nth 4 form)))
706 (dolist (file file)
707 (let ((file-time (elinstall-file-mod-time file)))
708 (when (and file-time
709 (not (time-less-p last-time file-time)))
710 ;; file unchanged
711 (push file no-autoloads)
712 (setq actions
713 (elinstall-remove-autogen-action
714 file actions)))))))
715 ((not (stringp file)))
717 (let
718 ((file-path
719 (locate-library file nil use-load-path)))
720 (cond
721 ;;$$MAKE ME SAFER Also check normal
722 ;;load-path in case `use-load-path' is
723 ;;too restrictive.
724 ;;$$MAKE ME SAFER Don't do this for a
725 ;;file we are inserting. Need a boolean
726 ;;return for checking that.
727 ;;File doesn't exist, so remove its
728 ;;section.
729 ((not file-path)
730 (autoload-remove-section
731 (match-beginning 0)))
732 ;;$$IMPROVE ME Consult elinstall-proceed-p.
733 ;; File hasn't changed, so do nothing.
734 ((equal
735 (nth 4 form)
736 (elinstall-file-mod-time file-path))
737 nil)
739 (elinstall-deffile-insert
740 (elinstall-get-autogen-action
741 file actions))))
743 (setq actions
744 (elinstall-remove-autogen-action
745 file actions))))))))
747 ;; Remaining actions have no existing autoload sections yet.
748 (setq no-autoloads
749 (append no-autoloads
750 (delq nil (mapcar #'elinstall-deffile-insert actions))))
751 (when no-autoloads
752 ;; Sort them for better readability.
753 (setq no-autoloads (sort no-autoloads 'string<))
754 ;; Add the `no-autoloads' section.
755 (goto-char (point-max))
756 (search-backward "\f" nil t)
757 (elinstall-insert-autoload-section
759 (list 'autoloads nil nil no-autoloads this-time)))
760 (save-buffer))))
762 ;;;_ . elinstall-stage-update-deffiles
763 (defun elinstall-stage-update-deffiles (segment-list use-load-path)
764 "Update any deffiles mentioned in SEGMENT-LIST.
765 FORCE and USE-LOAD-PATH have the same meaning as in
766 `elinstall-update-deffile'.
768 (mapcar
769 #'(lambda (segment)
770 (let*
771 ((deffile (car segment)))
772 (if (stringp deffile)
773 (elinstall-update-deffile
774 deffile
775 (cdr segment)
776 use-load-path))))
777 segment-list))
779 ;;;_ , Doing actions to arrange preloads
780 ;;;_ . elinstall-symlink-on-emacs-start
781 (defun elinstall-symlink-on-emacs-start
782 (filename target-basename target-dir &optional priority)
783 "Symlink to TARGET-BASENAME.el in TARGET-DIR
785 If PRIORITY is given, it will be used as the priority prefix,
786 otherwise elinstall-default-priority will be.
787 PRIORITY must be an integer or nil."
788 (let*
790 (priority (or priority elinstall-default-priority))
791 (target-name-nodir
792 (format
793 "%d%s.el"
794 priority
795 target-basename))
796 (target
797 (expand-file-name target-name-nodir target-dir)))
800 (cond
801 ;;Path should already exist.
802 ((not
803 (file-exists-p target-dir))
804 (message "The target directory doesn't exist."))
805 ;;$$IMPROVE ME If it is a symlink pointing to the same place,
806 ;;do nothing.
808 ;;$$IMPROVE ME The condition here is really not updating but
809 ;;bulldozing a possibly different symlink. Add another
810 ;;treatment symbol meaning to bulldoze what's in the way.
811 ((elinstall-proceed-p 'preloads
812 (list
813 '( "Symlink %s? "
814 "Really overwrite %s? "
815 "File %s already exists")
816 target)
817 (file-exists-p target))
818 (make-symbolic-link
819 filename
820 target
821 nil)))))
823 ;;;_ . elinstall-add-to-dot-emacs
824 (defun elinstall-add-to-dot-emacs (dot-emacs-name filename &rest r)
825 "Add code to load FILENAME to .emacs.
826 FILENAME should not have an extension"
828 ;;Visit .emacs
829 (with-current-buffer (find-file-noselect dot-emacs-name)
830 (save-excursion
831 ;;add at end of file
832 (goto-char (point-max))
833 (insert "\n;;Added by elinstall")
834 (insert "\n;;Consider using my-site-start to manage .emacs\n")
835 (pp `(load ,filename) (current-buffer))
836 (save-buffer))))
839 ;;;_ . elinstall-arrange-preload
840 (defun elinstall-arrange-preload (filename basename &optional priority)
841 "Arrange for FILENAME to be loaded on emacs start.
842 BASENAME and PRIORITY are used as arguments to
843 `elinstall-symlink-on-emacs-start'.
845 For non-autogenerated files that need to be linked in.
847 Calling this explicitly is deprecated. Instead, write a spec
848 containing \(preload Filename nil Basename Priority)."
850 (let
851 ((preload-target elinstall-default-preload-target))
853 ;;Dispatch the possibilities.
854 (cond
855 ((eq preload-target 'dot-emacs)
856 (elinstall-add-to-dot-emacs "~/.emacs" filename))
857 ((stringp preload-target)
858 (elinstall-symlink-on-emacs-start
859 filename basename preload-target priority))
860 ((null preload-target)
861 (message "Not arranging for preloads"))
863 (message "I don't recognize that")))))
864 ;;;_ . elinstall-stage-arrange-preloads
865 (defun elinstall-stage-arrange-preloads (actions deffiles-used)
866 "Arrange any preloads mentioned in ACTIONS."
868 (mapcar
869 #'(lambda (act)
870 (case (car act)
871 (preload-file
872 (let*
873 ( (filename
874 (caddr act))
875 (proceed-p
876 (case (second act)
877 ((t) t)
878 ((nil) nil)
879 (if-used
880 (member filename deffiles-used)))))
882 (when proceed-p
883 (apply
884 #'elinstall-arrange-preload
885 (cddr act)))))
887 (error
888 "elinstall-stage-arrange-preloads: Action not
889 recognized."))) )
890 actions))
893 ;;;_ , Run tests
894 ;;;_ . elinstall-stage-run-tests
895 (defun elinstall-stage-run-tests (actions)
896 "Run any tests mentioned in ACTIONS."
898 (mapcar
899 #'(lambda (act)
900 (case (car act)
901 (run-tests
902 ;;$$WRITE ME - not a high priority right now.
903 nil)
905 (error
906 "elinstall-stage-run-tests: Action not
907 recognized."))) )
908 actions))
911 ;;;_ , Byte compile
912 ;;;_ . elinstall-stage-byte-compile
913 (defun elinstall-stage-byte-compile (actions)
914 "Do any byte-compilation mentioned in ACTIONS."
916 (mapcar
917 #'(lambda (act)
918 (case (car act)
919 ;;$$IMPROVE ME Understand flags to control second
920 ;;argument (whether to load file after
921 ;;compilation)
922 (byte-compile
923 (byte-compile-file (second act)))
925 (error
926 "elinstall-stage-byte-compile: Action not
927 recognized."))) )
928 actions))
929 ;;;_ . Segregating actions
930 ;;;_ , elinstall-remove-empty-segs
931 (defun elinstall-remove-empty-segs (segment-list)
932 "Return SEGMENT-LIST minus any segments that have no actions.
933 Intended only for the deffile stage data."
934 (delq nil
935 (mapcar
936 #'(lambda (segment)
937 (if (cdr segment)
938 segment
939 nil))
940 segment-list)))
942 ;;;_ , elinstall-segregate-actions
943 (defun elinstall-segregate-actions (actions)
944 "Return actions segregated by deffile.
946 Returns a list whose elements are each a cons of:
947 * deffile filename or nil
948 * A list of actions to be done for that deffile."
950 (let
952 (build-deffiles '())
953 (run-tests '())
954 (byte-compile '())
955 (arrange-preloads '()))
957 (dolist (act actions)
958 (when act
959 (case (car act)
960 ((add-file-autoloads
961 add-to-info-path
962 add-to-load-path)
963 (let*
964 ((deffile-name (second act))
965 (cell-already
966 (assoc deffile-name build-deffiles)))
967 (if cell-already
968 ;;There are already actions on this deffile.
969 ;;Splice this action in.
970 (setcdr cell-already
971 (cons act (cdr cell-already)))
972 ;;There are no actions on this deffile. Add a
973 ;;place for them and include this action.
974 (push (list deffile-name act) build-deffiles))))
975 (preload-file
976 (push act arrange-preloads))
977 (run-tests
978 (push act run-tests))
979 (byte-compile
980 (push act byte-compile)))))
982 (elinstall-make-stages
983 :build-deffiles
984 (elinstall-remove-empty-segs build-deffiles)
985 :run-tests
986 run-tests
987 :byte-compile
988 byte-compile
989 :arrange-preloads
990 arrange-preloads)))
991 ;;;_ . Finding actions
992 ;;;_ , Utility
993 ;;;_ . elinstall-dir-has-info
995 ;;$$IMPROVE ME - Can this test be made more precise?
996 (defun elinstall-dir-has-info (dir)
997 "Return non-nil if DIR has info files in it.
998 DIR should be an absolute path."
1000 (string-match "/info/" dir)
1001 (directory-files dir nil "\\.info\\(-[0-9]+\\)?\\(\\.gz\\)?$")))
1002 ;;;_ . elinstall-directory-files
1003 (defun elinstall-directory-files (dirname)
1004 "Return a list of files in directory DIRNAME, minus certain files.
1005 The following files are omitted:
1006 * Dot files
1007 * Files that match an entry in `block-in-subtree'.
1008 Filenames are relative."
1009 (declare (special
1010 def-file block-in-dir block-in-subtree))
1011 (let*
1013 ;;Relative filenames of this directory's files.
1014 (all-files
1015 ;; Don't include dot files. If user really wants to
1016 ;;explore one he can use (dir ".NAME") or (file ".NAME")
1017 (directory-files dirname nil "[^\\.]"))
1018 ;;We know our def-file isn't really source so remove it.
1019 ;;We'd have removed it anyways after seeing file local vars.
1020 (all-files
1021 (remove def-file all-files))
1023 (all-files
1024 (delq nil
1025 (mapcar
1026 #'(lambda (filename)
1028 (and
1029 block-in-subtree
1030 (some
1031 #'(lambda (blocked)
1032 (string-match blocked filename))
1033 block-in-subtree))
1035 filename))
1036 all-files))))
1037 all-files))
1040 ;;;_ , Workers
1041 ;;;_ . List of special variables used in this section
1042 ;;load-path-element - The relevant element of load-path
1043 ;;def-file - The file the autoload definitions etc will go into.
1044 ;;add-to-load-path-p - Controls whether to add to load-path.
1045 ;;recurse-dirs-p - Whether to recurse into subdirectories.
1047 ;;block-in-dir - (NOT IMPLEMENTED) List of filenames to reject. They
1048 ;;may include wildcards. They apply wrt the original directory.
1050 ;;block-in-subtree - (NOT IMPLEMENTED) List of filenames to reject.
1051 ;;They may include wildcards. They apply wrt any directory in the
1052 ;;tree. Specifically, in the spec tree, which may differ from the
1053 ;;file subtree.
1054 ;;byte-compile - whether to byte-compile at all, t by default.
1055 ;;autoloads - boolean whether to make autoloads, t by default.
1056 ;;preloads - boolean whether to set up preloads, t by default.
1057 (defconst elinstall-find-actions-control-vars
1058 '(add-to-load-path-p recurse-dirs-p byte-compile
1059 autoloads preloads)
1060 "Control special variables that the find-actions tree recognizes" )
1061 ;;;_ . elinstall-actions-for-source-file
1062 (defun elinstall-actions-for-source-file (filename dir)
1063 "Return a list of actions to do for FILENAME in DIR.
1064 Special variables are as noted in \"List of special variables\"."
1065 (declare (special
1066 load-path-element def-file byte-compile))
1067 (let
1068 ((full-path
1069 (expand-file-name filename dir)))
1070 (when
1071 (and
1072 (file-readable-p full-path)
1073 (not (auto-save-file-name-p full-path))
1074 (string-match emacs-lisp-file-regexp filename))
1075 (let*
1077 (visited (get-file-buffer full-path))
1078 (buf
1079 (or
1080 visited
1081 ;;Visit the file cheaply.
1082 ;;hack-local-variables can give errors.
1083 (ignore-errors (autoload-find-file full-path))))
1084 (def-file
1086 (ignore-errors
1087 (with-current-buffer buf
1088 (if (local-variable-p 'generated-autoload-file)
1089 (elinstall-expand-deffile-name
1090 generated-autoload-file)
1091 nil)))
1092 def-file))
1093 ;;Figure out whether to run some actions, by file local vars.
1094 (autoloads-p
1095 (and
1096 (ignore-errors
1097 (with-current-buffer buf
1098 (not no-update-autoloads)))
1099 (elinstall-proceed-p 'autoloads
1100 (list
1101 '( "Do autoloads for %s? ")
1102 filename))))
1104 (do-compile-p
1105 (and
1106 byte-compile
1107 (featurep 'byte-compile)
1108 (ignore-errors
1109 (with-current-buffer buf
1110 (not no-byte-compile)))
1111 (elinstall-proceed-p 'byte-compile
1112 (list
1113 '( "Compile %s? "
1114 "Recompile %s? "
1115 "Already compiled %s.")
1116 filename)
1117 (not
1118 (file-newer-than-file-p
1119 full-path
1120 (byte-compile-dest-file full-path)))))))
1122 (prog1
1123 (list
1124 (if do-compile-p
1125 `(byte-compile ,full-path)
1126 nil)
1127 (if autoloads-p
1128 (elinstall-make-autoload-action
1129 buf def-file load-path-element full-path)
1130 nil))
1131 (unless visited (kill-buffer-if-not-modified buf)))))))
1132 ;;;_ . elinstall-actions-for-dir
1133 (defun elinstall-actions-for-dir (dirname &optional recurse-dirs-p)
1134 "Make actions for DIR.
1135 Recurse just if RECURSE-DIRS-P"
1136 (declare (special
1137 load-path-element def-file add-to-load-path-p))
1138 ;;This does not treat symlinks specially. $$IMPROVE ME it could
1139 ;;treat/not treat them conditional on control variables.
1140 (let*
1142 (files (elinstall-directory-files dirname))
1144 ;;Relative filenames of elisp source
1145 (elisp-source-files
1146 (delq nil
1147 (mapcar
1148 #'(lambda (filename)
1150 (string-match elinstall-elisp-regexp filename)
1151 filename
1152 nil))
1153 files)))
1155 ;;Absolute filenames of subdirectories.
1156 (sub-dirs
1157 (if recurse-dirs-p
1158 (delq nil
1159 (mapcar
1160 #'(lambda (filename)
1161 (let
1162 ((fn (expand-file-name filename dirname)))
1164 (file-directory-p fn)
1166 nil)))
1167 files))
1168 '()))
1170 (load-path-here-p
1171 (and
1172 elisp-source-files ;;If list is not empty.
1173 add-to-load-path-p))
1174 (load-path-element
1175 (if load-path-here-p
1176 dirname
1177 load-path-element)))
1179 (append
1180 ;;$$IMPROVE ME - check `elinstall-proceed-p'. But even if
1181 ;;that says no, we still must use it as our load-path
1182 ;;element, we just don't add it to def-file.
1184 ;;Sometimes arrange to add this directory to load-path.
1185 (if load-path-here-p
1186 `((add-to-load-path
1187 ,def-file
1188 ,load-path-element))
1189 '())
1191 ;;$$IMPROVE ME - check a control variable and
1192 ;;`elinstall-proceed-p'.
1193 ;;Sometimes add this directory to info path.
1195 (elinstall-dir-has-info dirname)
1196 `((add-to-info-path
1197 ,def-file
1198 "."))
1199 '())
1201 (apply #'nconc
1202 (mapcar
1203 #'(lambda (filename)
1204 (elinstall-actions-for-source-file
1205 filename
1206 dirname))
1207 elisp-source-files))
1209 (if recurse-dirs-p
1210 (apply #'nconc
1211 (mapcar
1212 #'(lambda (filename)
1213 (elinstall-find-actions-by-spec-x
1215 (expand-file-name
1216 filename
1217 dirname)))
1218 sub-dirs))
1219 '()))))
1221 ;;;_ . elinstall-find-actions-by-spec-x
1223 (defun elinstall-find-actions-by-spec-x (spec dir)
1224 "Return a list of actions to do, controlled by SPEC."
1225 (declare (special
1226 load-path-element def-file add-to-load-path-p
1227 recurse-dirs-p block-in-dir block-in-subtree))
1229 (if (consp spec)
1230 (case (car spec)
1231 (all
1232 ;;(all . SPEC*)
1233 (apply #'nconc
1234 (mapcar
1235 #'(lambda (sub-spec)
1236 (elinstall-find-actions-by-spec-x
1237 sub-spec
1238 dir))
1239 (cdr spec))))
1240 (block-in-subtree
1241 ;;(block-in-subtree (* FN) SPEC)
1242 (let
1243 ((block-in-subtree (second spec)))
1244 (elinstall-find-actions-by-spec-x
1245 (third spec)
1246 dir)))
1248 ;;Rather than trying to bind all control variables each time
1249 ;;thru, we use `set' and `unwind-protect'.
1250 (control
1251 ;;control TYPE DISPOSITION SPEC
1252 (let
1253 ((key (second spec))
1254 old-value)
1255 (if (memq key elinstall-find-actions-control-vars)
1256 (unwind-protect
1257 (progn
1258 (setq old-value (symbol-value key))
1259 (set key (third spec))
1260 (elinstall-find-actions-by-spec-x
1261 (fourth spec)
1262 dir))
1263 (set key old-value))
1264 (error "Unrecognized control variable %s" key))))
1267 (def-file
1268 ;;(def-file FN ARGS SPEC)
1269 (let
1270 ((def-file
1271 (expand-file-name
1272 (second spec)
1273 dir))
1274 (for-preload (third spec)))
1275 (assert (listp for-preload))
1276 (append
1277 (list
1279 (and for-preload (car for-preload))
1280 `(preload-file
1281 ,(car for-preload)
1282 ,def-file
1283 ,@(cdr for-preload))
1284 '()))
1286 (elinstall-find-actions-by-spec-x
1287 (fourth spec) dir))))
1289 (dir
1290 ;;(dir FN)
1291 (elinstall-actions-for-dir
1292 (expand-file-name
1293 (second spec)
1294 dir)
1295 nil))
1297 (file
1298 ;;(file FN)
1299 (elinstall-actions-for-source-file
1300 (second spec) dir))
1303 ;;(in FN SPEC)
1304 (let
1305 ((new-dir
1306 (expand-file-name
1307 (second spec)
1308 dir)))
1310 (elinstall-find-actions-by-spec-x
1311 (third spec)
1312 new-dir)))
1314 (load-path
1315 ;;(load-path SPEC)
1316 (append
1317 `((add-to-load-path ,def-file ,dir))
1318 (let
1319 ((load-path-element dir)
1320 (add-to-load-path-p nil))
1321 (elinstall-find-actions-by-spec-x
1322 (second spec)
1323 dir))))
1325 (matching
1326 ;;(matching PATTERN SPEC)
1327 (apply #'nconc
1328 (mapcar
1329 #'(lambda (dir)
1330 ;;$$PUNT Assume that `block-in-subtree' and
1331 ;;`block-in-dir' aren't matched.
1332 (elinstall-find-actions-by-spec-x
1333 (third spec)
1334 dir))
1335 (directory-files
1336 dir t (second spec)))))
1337 (preload
1338 ;;(preload FN SYM &rest ARGS)
1339 (let
1340 ((key (third spec)))
1342 (and (symbolp key) (symbol-value key))
1343 `((preload-file
1345 ,(expand-file-name (second spec) dir)
1346 ,@(nthcdr 3 spec)))
1347 '()))))
1349 ;;Single symbols
1350 (case spec
1351 (dir
1352 (elinstall-actions-for-dir dir nil))
1353 ((t)
1354 (elinstall-actions-for-dir dir t)))))
1356 ;;;_ . elinstall-find-actions-by-spec
1357 (defun elinstall-find-actions-by-spec
1358 (spec load-path-element dir def-file)
1359 "Find the list of actions to do according to SPEC."
1361 (let
1363 (def-file-time (elinstall-file-mod-time def-file))
1364 (add-to-load-path-p t)
1365 (recurse-dirs-p t)
1366 (byte-compile t)
1367 (autoloads t)
1368 (preloads t)
1369 (block-in-dir '())
1370 (block-in-subtree '(".git" "RCS" "CVS" "SVN" "^tests\.el")))
1372 (declare (special
1373 load-path-element def-file add-to-load-path-p
1374 recurse-dirs-p byte-compile
1375 block-in-dir block-in-subtree))
1377 (elinstall-find-actions-by-spec-x spec dir)))
1379 ;;;_ . high-level work
1380 ;;;_ , elinstall-get-relevant-load-path
1381 (defun elinstall-get-relevant-load-path (actions)
1383 (delq nil
1384 (mapcar
1385 #'(lambda (act)
1386 (case (car act)
1387 (add-to-load-path
1388 (second act))
1389 (t nil)))
1390 actions)))
1391 ;;;_ , elinstall-get-deffile-list
1392 (defun elinstall-get-deffile-list (stages)
1393 "Get a list of deffile names"
1395 (mapcar
1396 #'car
1397 (elinstall-stages->build-deffiles stages)))
1398 ;;;_ , elinstall-x
1399 (defun elinstall-x (dir spec)
1400 "High-level worker function to install elisp files."
1401 (let*
1403 ;;This is just the default deffile, spec can override it.
1404 (def-file
1405 (elinstall-expand-deffile-name nil))
1406 (actions
1407 (elinstall-find-actions-by-spec
1408 spec
1411 def-file))
1412 (stages (elinstall-segregate-actions actions))
1413 (use-load-path
1414 (elinstall-get-relevant-load-path
1415 actions)))
1417 (elinstall-stage-update-deffiles
1418 (elinstall-stages->build-deffiles stages)
1419 use-load-path)
1420 (when (elinstall-proceed-at-all-p 'preloads)
1421 (elinstall-stage-arrange-preloads
1422 (elinstall-stages->arrange-preloads stages)
1423 (elinstall-get-deffile-list stages)))
1424 (when (elinstall-proceed-at-all-p 'byte-compile)
1425 (elinstall-stage-byte-compile
1426 (elinstall-stages->byte-compile stages)))
1428 ;;;_ , elinstall-package
1429 (defun elinstall-package (project-name path spec version-string)
1430 "Install elisp files. See doc for `elinstall'."
1431 (when
1432 (elinstall-proceed-p 'install
1433 (list
1434 '("Install %s? "
1435 "Re-install %s? "
1436 "Already installed %s.")
1437 project-name)
1438 (elinstall-already-installed project-name))
1439 (elinstall-x
1440 path
1441 `(def-file "loaddefs.el" (if-used ,project-name) ,spec))
1442 (elinstall-record-installed project-name version-string)))
1444 ;;;_ , Entry points
1445 ;;;_ . elinstall
1446 ;;;###autoload
1447 (defun elinstall (project-name path spec &optional force version-string)
1448 "Install elisp files.
1449 They need not be a formal package.
1451 Parameters:
1453 PROJECT-NAME - the name of the project
1455 PATH - Path to the project.
1456 Suggestion: Use (elinstall-directory-true-name) to get the real
1457 current directoery name even from loaded files.
1459 SPEC - a spec for the autoloads etc to make. It can be as simple
1460 as `t'.
1462 If FORCE is `t', install a package even if it has already been
1463 installed. If it's a list or `nil', it's treated as a list of
1464 installation restraints. User customizations override this
1465 argument.
1467 VERSION-STRING, if given, must be a string of the version for this package."
1469 (elinstall-call-with-restraints
1470 (if (eq force t)
1471 '((install always))
1472 force)
1473 project-name
1474 #'elinstall-package
1475 project-name path spec version-string))
1477 ;;;_ . elinstall-update-directory-autoloads
1479 ;;;###autoload
1480 (defun elinstall-update-directory-autoloads (dir)
1481 "Update autoloads for directory DIR"
1483 (interactive "DUpdate autoloads for all elisp files from directory: ")
1484 (elinstall-call-with-restraints
1485 '((autoloads t)
1486 (t nil))
1488 #'elinstall-x
1490 '(dir ".")))
1492 ;;;_ . elinstall-update-directory
1493 ;;;###autoload
1494 (defun elinstall-update-directory (dir)
1495 "Update autoloads for directory DIR"
1497 (interactive "DInstall all elisp files from directory: ")
1498 (elinstall-call-with-restraints
1501 #'elinstall-x
1503 '(dir ".")))
1505 ;;;_ . elinstall-update-file-autoloads
1506 ;;;###autoload
1507 (defun elinstall-update-file-autoloads (file)
1508 "Update autoloads for elisp file FILE"
1510 (interactive "fUpdate autoloads for elisp file: ")
1511 (elinstall-call-with-restraints
1514 #'elinstall-x
1515 (file-name-directory file)
1516 `(file ,(file-name-nondirectory file))))
1518 ;;;_ . elinstall-update-file
1519 ;;;###autoload
1520 (defun elinstall-update-file (file)
1521 "Install elisp file FILE"
1523 (interactive "fInstall elisp file: ")
1524 (elinstall-call-with-restraints
1525 '((autoloads t)
1526 (t nil))
1528 #'elinstall-x
1529 (file-name-directory file)
1530 `(file ,(file-name-nondirectory file))))
1532 ;;;_. Footers
1533 ;;;_ , Provides
1535 (provide 'elinstall)
1537 ;;;_ * Local emacs vars.
1538 ;;;_ + Local variables:
1539 ;;;_ + mode: allout
1540 ;;;_ + End:
1542 ;;;_ , End
1543 ;;; elinstall.el ends here