3f6c8a43fa4a636794b662bf7394b8dae8e8c5be
[elinstall.git] / elinstall.el
blob3f6c8a43fa4a636794b662bf7394b8dae8e8c5be
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 ;;Does nothing if file already exists.
819 (make-directory (file-name-directory target) t)
820 (make-symbolic-link
821 filename
822 target
823 ;;We already checked file-existence wrt user
824 ;;preferences, so force creation.
825 t)))))
827 ;;;_ . elinstall-add-to-dot-emacs
828 (defun elinstall-add-to-dot-emacs (dot-emacs-name filename &rest r)
829 "Add code to load FILENAME to .emacs.
830 FILENAME should not have an extension"
832 ;;Visit .emacs
833 (with-current-buffer (find-file-noselect dot-emacs-name)
834 (save-excursion
835 ;;add at end of file
836 (goto-char (point-max))
837 (insert "\n;;Added by elinstall")
838 (insert "\n;;Consider using my-site-start to manage .emacs\n")
839 (pp `(load ,filename) (current-buffer))
840 (save-buffer))))
843 ;;;_ . elinstall-arrange-preload
844 (defun elinstall-arrange-preload (filename basename &optional priority)
845 "Arrange for FILENAME to be loaded on emacs start.
846 BASENAME and PRIORITY are used as arguments to
847 `elinstall-symlink-on-emacs-start'.
849 For non-autogenerated files that need to be linked in.
851 Calling this explicitly is deprecated. Instead, write a spec
852 containing \(preload Filename nil Basename Priority)."
854 (let
855 ((preload-target elinstall-default-preload-target))
857 ;;Dispatch the possibilities.
858 (cond
859 ((eq preload-target 'dot-emacs)
860 (elinstall-add-to-dot-emacs "~/.emacs" filename))
861 ((stringp preload-target)
862 (elinstall-symlink-on-emacs-start
863 filename basename preload-target priority))
864 ((null preload-target)
865 (message "Not arranging for preloads"))
867 (message "I don't recognize that")))))
868 ;;;_ . elinstall-stage-arrange-preloads
869 (defun elinstall-stage-arrange-preloads (actions deffiles-used)
870 "Arrange any preloads mentioned in ACTIONS."
872 (mapcar
873 #'(lambda (act)
874 (case (car act)
875 (preload-file
876 (let*
877 ( (filename
878 (caddr act))
879 (proceed-p
880 (case (second act)
881 ((t) t)
882 ((nil) nil)
883 (if-used
884 (member filename deffiles-used)))))
886 (when proceed-p
887 (apply
888 #'elinstall-arrange-preload
889 (cddr act)))))
891 (error
892 "elinstall-stage-arrange-preloads: Action not
893 recognized."))) )
894 actions))
897 ;;;_ , Run tests
898 ;;;_ . elinstall-stage-run-tests
899 (defun elinstall-stage-run-tests (actions)
900 "Run any tests mentioned in ACTIONS."
902 (mapcar
903 #'(lambda (act)
904 (case (car act)
905 (run-tests
906 ;;$$WRITE ME - not a high priority right now.
907 nil)
909 (error
910 "elinstall-stage-run-tests: Action not
911 recognized."))) )
912 actions))
915 ;;;_ , Byte compile
916 ;;;_ . elinstall-stage-byte-compile
917 (defun elinstall-stage-byte-compile (actions)
918 "Do any byte-compilation mentioned in ACTIONS."
920 (mapcar
921 #'(lambda (act)
922 (case (car act)
923 ;;$$IMPROVE ME Understand flags to control second
924 ;;argument (whether to load file after
925 ;;compilation)
926 (byte-compile
927 (byte-compile-file (second act)))
929 (error
930 "elinstall-stage-byte-compile: Action not
931 recognized."))) )
932 actions))
933 ;;;_ . Segregating actions
934 ;;;_ , elinstall-remove-empty-segs
935 (defun elinstall-remove-empty-segs (segment-list)
936 "Return SEGMENT-LIST minus any segments that have no actions.
937 Intended only for the deffile stage data."
938 (delq nil
939 (mapcar
940 #'(lambda (segment)
941 (if (cdr segment)
942 segment
943 nil))
944 segment-list)))
946 ;;;_ , elinstall-segregate-actions
947 (defun elinstall-segregate-actions (actions)
948 "Return actions segregated by deffile.
950 Returns a list whose elements are each a cons of:
951 * deffile filename or nil
952 * A list of actions to be done for that deffile."
954 (let
956 (build-deffiles '())
957 (run-tests '())
958 (byte-compile '())
959 (arrange-preloads '()))
961 (dolist (act actions)
962 (when act
963 (case (car act)
964 ((add-file-autoloads
965 add-to-info-path
966 add-to-load-path)
967 (let*
968 ((deffile-name (second act))
969 (cell-already
970 (assoc deffile-name build-deffiles)))
971 (if cell-already
972 ;;There are already actions on this deffile.
973 ;;Splice this action in.
974 (setcdr cell-already
975 (cons act (cdr cell-already)))
976 ;;There are no actions on this deffile. Add a
977 ;;place for them and include this action.
978 (push (list deffile-name act) build-deffiles))))
979 (preload-file
980 (push act arrange-preloads))
981 (run-tests
982 (push act run-tests))
983 (byte-compile
984 (push act byte-compile)))))
986 (elinstall-make-stages
987 :build-deffiles
988 (elinstall-remove-empty-segs build-deffiles)
989 :run-tests
990 run-tests
991 :byte-compile
992 byte-compile
993 :arrange-preloads
994 arrange-preloads)))
995 ;;;_ . Finding actions
996 ;;;_ , Utility
997 ;;;_ . elinstall-dir-has-info
999 ;;$$IMPROVE ME - Can this test be made more precise?
1000 (defun elinstall-dir-has-info (dir)
1001 "Return non-nil if DIR has info files in it.
1002 DIR should be an absolute path."
1004 (string-match "/info/" dir)
1005 (directory-files dir nil "\\.info\\(-[0-9]+\\)?\\(\\.gz\\)?$")))
1006 ;;;_ . elinstall-directory-files
1007 (defun elinstall-directory-files (dirname)
1008 "Return a list of files in directory DIRNAME, minus certain files.
1009 The following files are omitted:
1010 * Dot files
1011 * Files that match an entry in `block-in-subtree'.
1012 Filenames are relative."
1013 (declare (special
1014 def-file block-in-dir block-in-subtree))
1015 (let*
1017 ;;Relative filenames of this directory's files.
1018 (all-files
1019 ;; Don't include dot files. If user really wants to
1020 ;;explore one he can use (dir ".NAME") or (file ".NAME")
1021 (directory-files dirname nil "[^\\.]"))
1022 ;;We know our def-file isn't really source so remove it.
1023 ;;We'd have removed it anyways after seeing file local vars.
1024 (all-files
1025 (remove def-file all-files))
1027 (all-files
1028 (delq nil
1029 (mapcar
1030 #'(lambda (filename)
1032 (and
1033 block-in-subtree
1034 (some
1035 #'(lambda (blocked)
1036 (string-match blocked filename))
1037 block-in-subtree))
1039 filename))
1040 all-files))))
1041 all-files))
1044 ;;;_ , Workers
1045 ;;;_ . List of special variables used in this section
1046 ;;load-path-element - The relevant element of load-path
1047 ;;def-file - The file the autoload definitions etc will go into.
1048 ;;add-to-load-path-p - Controls whether to add to load-path.
1049 ;;recurse-dirs-p - Whether to recurse into subdirectories.
1051 ;;block-in-dir - (NOT IMPLEMENTED) List of filenames to reject. They
1052 ;;may include wildcards. They apply wrt the original directory.
1054 ;;block-in-subtree - (NOT IMPLEMENTED) List of filenames to reject.
1055 ;;They may include wildcards. They apply wrt any directory in the
1056 ;;tree. Specifically, in the spec tree, which may differ from the
1057 ;;file subtree.
1058 ;;byte-compile - whether to byte-compile at all, t by default.
1059 ;;autoloads - boolean whether to make autoloads, t by default.
1060 ;;preloads - boolean whether to set up preloads, t by default.
1061 (defconst elinstall-find-actions-control-vars
1062 '(add-to-load-path-p recurse-dirs-p byte-compile
1063 autoloads preloads)
1064 "Control special variables that the find-actions tree recognizes" )
1065 ;;;_ . elinstall-actions-for-source-file
1066 (defun elinstall-actions-for-source-file (filename dir)
1067 "Return a list of actions to do for FILENAME in DIR.
1068 Special variables are as noted in \"List of special variables\"."
1069 (declare (special
1070 load-path-element def-file byte-compile))
1071 (let
1072 ((full-path
1073 (expand-file-name filename dir)))
1074 (when
1075 (and
1076 (file-readable-p full-path)
1077 (not (auto-save-file-name-p full-path))
1078 (string-match emacs-lisp-file-regexp filename))
1079 (let*
1081 (visited (get-file-buffer full-path))
1082 (buf
1083 (or
1084 visited
1085 ;;Visit the file cheaply.
1086 ;;hack-local-variables can give errors.
1087 (ignore-errors (autoload-find-file full-path))))
1088 (def-file
1090 (ignore-errors
1091 (with-current-buffer buf
1092 (if (local-variable-p 'generated-autoload-file)
1093 (elinstall-expand-deffile-name
1094 generated-autoload-file)
1095 nil)))
1096 def-file))
1097 ;;Figure out whether to run some actions, by file local vars.
1098 (autoloads-p
1099 (and
1100 (ignore-errors
1101 (with-current-buffer buf
1102 (not no-update-autoloads)))
1103 (elinstall-proceed-p 'autoloads
1104 (list
1105 '( "Do autoloads for %s? ")
1106 filename))))
1108 (do-compile-p
1109 (and
1110 byte-compile
1111 (featurep 'byte-compile)
1112 (ignore-errors
1113 (with-current-buffer buf
1114 (not no-byte-compile)))
1115 (elinstall-proceed-p 'byte-compile
1116 (list
1117 '( "Compile %s? "
1118 "Recompile %s? "
1119 "Already compiled %s.")
1120 filename)
1121 (not
1122 (file-newer-than-file-p
1123 full-path
1124 (byte-compile-dest-file full-path)))))))
1126 (prog1
1127 (list
1128 (if do-compile-p
1129 `(byte-compile ,full-path)
1130 nil)
1131 (if autoloads-p
1132 (elinstall-make-autoload-action
1133 buf def-file load-path-element full-path)
1134 nil))
1135 (unless visited (kill-buffer-if-not-modified buf)))))))
1136 ;;;_ . elinstall-actions-for-dir
1137 (defun elinstall-actions-for-dir (dirname &optional recurse-dirs-p)
1138 "Make actions for DIR.
1139 Recurse just if RECURSE-DIRS-P"
1140 (declare (special
1141 load-path-element def-file add-to-load-path-p))
1142 ;;This does not treat symlinks specially. $$IMPROVE ME it could
1143 ;;treat/not treat them conditional on control variables.
1144 (let*
1146 (files (elinstall-directory-files dirname))
1148 ;;Relative filenames of elisp source
1149 (elisp-source-files
1150 (delq nil
1151 (mapcar
1152 #'(lambda (filename)
1154 (string-match elinstall-elisp-regexp filename)
1155 filename
1156 nil))
1157 files)))
1159 ;;Absolute filenames of subdirectories.
1160 (sub-dirs
1161 (if recurse-dirs-p
1162 (delq nil
1163 (mapcar
1164 #'(lambda (filename)
1165 (let
1166 ((fn (expand-file-name filename dirname)))
1168 (file-directory-p fn)
1170 nil)))
1171 files))
1172 '()))
1174 (load-path-here-p
1175 (and
1176 elisp-source-files ;;If list is not empty.
1177 add-to-load-path-p))
1178 (load-path-element
1179 (if load-path-here-p
1180 dirname
1181 load-path-element)))
1183 (append
1184 ;;$$IMPROVE ME - check `elinstall-proceed-p'. But even if
1185 ;;that says no, we still must use it as our load-path
1186 ;;element, we just don't add it to def-file.
1188 ;;Sometimes arrange to add this directory to load-path.
1189 (if load-path-here-p
1190 `((add-to-load-path
1191 ,def-file
1192 ,load-path-element))
1193 '())
1195 ;;$$IMPROVE ME - check a control variable and
1196 ;;`elinstall-proceed-p'.
1197 ;;Sometimes add this directory to info path.
1199 (elinstall-dir-has-info dirname)
1200 `((add-to-info-path
1201 ,def-file
1202 "."))
1203 '())
1205 (apply #'nconc
1206 (mapcar
1207 #'(lambda (filename)
1208 (elinstall-actions-for-source-file
1209 filename
1210 dirname))
1211 elisp-source-files))
1213 (if recurse-dirs-p
1214 (apply #'nconc
1215 (mapcar
1216 #'(lambda (filename)
1217 (elinstall-find-actions-by-spec-x
1219 (expand-file-name
1220 filename
1221 dirname)))
1222 sub-dirs))
1223 '()))))
1225 ;;;_ . elinstall-find-actions-by-spec-x
1227 (defun elinstall-find-actions-by-spec-x (spec dir)
1228 "Return a list of actions to do, controlled by SPEC."
1229 (declare (special
1230 load-path-element def-file add-to-load-path-p
1231 recurse-dirs-p block-in-dir block-in-subtree))
1233 (if (consp spec)
1234 (case (car spec)
1235 (all
1236 ;;(all . SPEC*)
1237 (apply #'nconc
1238 (mapcar
1239 #'(lambda (sub-spec)
1240 (elinstall-find-actions-by-spec-x
1241 sub-spec
1242 dir))
1243 (cdr spec))))
1244 (block-in-subtree
1245 ;;(block-in-subtree (* FN) SPEC)
1246 (let
1247 ((block-in-subtree (second spec)))
1248 (elinstall-find-actions-by-spec-x
1249 (third spec)
1250 dir)))
1252 ;;Rather than trying to bind all control variables each time
1253 ;;thru, we use `set' and `unwind-protect'.
1254 (control
1255 ;;control TYPE DISPOSITION SPEC
1256 (let
1257 ((key (second spec))
1258 old-value)
1259 (if (memq key elinstall-find-actions-control-vars)
1260 (unwind-protect
1261 (progn
1262 (setq old-value (symbol-value key))
1263 (set key (third spec))
1264 (elinstall-find-actions-by-spec-x
1265 (fourth spec)
1266 dir))
1267 (set key old-value))
1268 (error "Unrecognized control variable %s" key))))
1271 (def-file
1272 ;;(def-file FN ARGS SPEC)
1273 (let
1274 ((def-file
1275 (expand-file-name
1276 (second spec)
1277 dir))
1278 (for-preload (third spec)))
1279 (assert (listp for-preload))
1280 (append
1281 (list
1283 (and for-preload (car for-preload))
1284 `(preload-file
1285 ,(car for-preload)
1286 ,def-file
1287 ,@(cdr for-preload))
1288 '()))
1290 (elinstall-find-actions-by-spec-x
1291 (fourth spec) dir))))
1293 (dir
1294 ;;(dir FN)
1295 (elinstall-actions-for-dir
1296 (expand-file-name
1297 (second spec)
1298 dir)
1299 nil))
1301 (file
1302 ;;(file FN)
1303 (elinstall-actions-for-source-file
1304 (second spec) dir))
1307 ;;(in FN SPEC)
1308 (let
1309 ((new-dir
1310 (expand-file-name
1311 (second spec)
1312 dir)))
1314 (elinstall-find-actions-by-spec-x
1315 (third spec)
1316 new-dir)))
1318 (load-path
1319 ;;(load-path SPEC)
1320 (append
1321 `((add-to-load-path ,def-file ,dir))
1322 (let
1323 ((load-path-element dir)
1324 (add-to-load-path-p nil))
1325 (elinstall-find-actions-by-spec-x
1326 (second spec)
1327 dir))))
1329 (matching
1330 ;;(matching PATTERN SPEC)
1331 (apply #'nconc
1332 (mapcar
1333 #'(lambda (dir)
1334 ;;$$PUNT Assume that `block-in-subtree' and
1335 ;;`block-in-dir' aren't matched.
1336 (elinstall-find-actions-by-spec-x
1337 (third spec)
1338 dir))
1339 (directory-files
1340 dir t (second spec)))))
1341 (preload
1342 ;;(preload FN SYM &rest ARGS)
1343 (let
1344 ((key (third spec)))
1346 (and (symbolp key) (symbol-value key))
1347 `((preload-file
1349 ,(expand-file-name (second spec) dir)
1350 ,@(nthcdr 3 spec)))
1351 '()))))
1353 ;;Single symbols
1354 (case spec
1355 (dir
1356 (elinstall-actions-for-dir dir nil))
1357 ((t)
1358 (elinstall-actions-for-dir dir t)))))
1360 ;;;_ . elinstall-find-actions-by-spec
1361 (defun elinstall-find-actions-by-spec
1362 (spec load-path-element dir def-file)
1363 "Find the list of actions to do according to SPEC."
1365 (let
1367 (def-file-time (elinstall-file-mod-time def-file))
1368 (add-to-load-path-p t)
1369 (recurse-dirs-p t)
1370 (byte-compile t)
1371 (autoloads t)
1372 (preloads t)
1373 (block-in-dir '())
1374 (block-in-subtree '(".git" "RCS" "CVS" "SVN" "^tests\.el")))
1376 (declare (special
1377 load-path-element def-file add-to-load-path-p
1378 recurse-dirs-p byte-compile
1379 block-in-dir block-in-subtree))
1381 (elinstall-find-actions-by-spec-x spec dir)))
1383 ;;;_ . high-level work
1384 ;;;_ , elinstall-get-relevant-load-path
1385 (defun elinstall-get-relevant-load-path (actions)
1387 (delq nil
1388 (mapcar
1389 #'(lambda (act)
1390 (case (car act)
1391 (add-to-load-path
1392 (second act))
1393 (t nil)))
1394 actions)))
1395 ;;;_ , elinstall-get-deffile-list
1396 (defun elinstall-get-deffile-list (stages)
1397 "Get a list of deffile names"
1399 (mapcar
1400 #'car
1401 (elinstall-stages->build-deffiles stages)))
1402 ;;;_ , elinstall-x
1403 (defun elinstall-x (dir spec)
1404 "High-level worker function to install elisp files."
1405 (let*
1407 ;;This is just the default deffile, spec can override it.
1408 (def-file
1409 (elinstall-expand-deffile-name nil))
1410 (actions
1411 (elinstall-find-actions-by-spec
1412 spec
1415 def-file))
1416 (stages (elinstall-segregate-actions actions))
1417 (use-load-path
1418 (elinstall-get-relevant-load-path
1419 actions)))
1421 (elinstall-stage-update-deffiles
1422 (elinstall-stages->build-deffiles stages)
1423 use-load-path)
1424 (when (elinstall-proceed-at-all-p 'preloads)
1425 (elinstall-stage-arrange-preloads
1426 (elinstall-stages->arrange-preloads stages)
1427 (elinstall-get-deffile-list stages)))
1428 (when (elinstall-proceed-at-all-p 'byte-compile)
1429 (elinstall-stage-byte-compile
1430 (elinstall-stages->byte-compile stages)))
1432 ;;;_ , elinstall-package
1433 (defun elinstall-package (project-name path spec version-string)
1434 "Install elisp files. See doc for `elinstall'."
1435 (when
1436 (elinstall-proceed-p 'install
1437 (list
1438 '("Install %s? "
1439 "Re-install %s? "
1440 "Already installed %s.")
1441 project-name)
1442 (elinstall-already-installed project-name))
1443 (elinstall-x
1444 path
1445 `(def-file "loaddefs.el" (if-used ,project-name) ,spec))
1446 (elinstall-record-installed project-name version-string)))
1448 ;;;_ , Entry points
1449 ;;;_ . elinstall
1450 ;;;###autoload
1451 (defun elinstall (project-name path spec &optional force version-string)
1452 "Install elisp files.
1453 They need not be a formal package.
1455 Parameters:
1457 PROJECT-NAME - the name of the project
1459 PATH - Path to the project.
1460 Suggestion: Use (elinstall-directory-true-name) to get the real
1461 current directoery name even from loaded files.
1463 SPEC - a spec for the autoloads etc to make. It can be as simple
1464 as `t'.
1466 If FORCE is `t', install a package even if it has already been
1467 installed. If it's a list or `nil', it's treated as a list of
1468 installation restraints. User customizations override this
1469 argument.
1471 VERSION-STRING, if given, must be a string of the version for this package."
1473 (elinstall-call-with-restraints
1474 (if (eq force t)
1475 '((install always))
1476 force)
1477 project-name
1478 #'elinstall-package
1479 project-name path spec version-string))
1481 ;;;_ . elinstall-update-directory-autoloads
1483 ;;;###autoload
1484 (defun elinstall-update-directory-autoloads (dir)
1485 "Update autoloads for directory DIR"
1487 (interactive "DUpdate autoloads for all elisp files from directory: ")
1488 (elinstall-call-with-restraints
1489 '((autoloads t)
1490 (t nil))
1492 #'elinstall-x
1494 '(dir ".")))
1496 ;;;_ . elinstall-update-directory
1497 ;;;###autoload
1498 (defun elinstall-update-directory (dir)
1499 "Update autoloads for directory DIR"
1501 (interactive "DInstall all elisp files from directory: ")
1502 (elinstall-call-with-restraints
1505 #'elinstall-x
1507 '(dir ".")))
1509 ;;;_ . elinstall-update-file-autoloads
1510 ;;;###autoload
1511 (defun elinstall-update-file-autoloads (file)
1512 "Update autoloads for elisp file FILE"
1514 (interactive "fUpdate autoloads for elisp file: ")
1515 (elinstall-call-with-restraints
1518 #'elinstall-x
1519 (file-name-directory file)
1520 `(file ,(file-name-nondirectory file))))
1522 ;;;_ . elinstall-update-file
1523 ;;;###autoload
1524 (defun elinstall-update-file (file)
1525 "Install elisp file FILE"
1527 (interactive "fInstall elisp file: ")
1528 (elinstall-call-with-restraints
1529 '((autoloads t)
1530 (t nil))
1532 #'elinstall-x
1533 (file-name-directory file)
1534 `(file ,(file-name-nondirectory file))))
1536 ;;;_. Footers
1537 ;;;_ , Provides
1539 (provide 'elinstall)
1541 ;;;_ * Local emacs vars.
1542 ;;;_ + Local variables:
1543 ;;;_ + mode: allout
1544 ;;;_ + End:
1546 ;;;_ , End
1547 ;;; elinstall.el ends here